diff --git a/.github/workflows/generate-public-references.yml b/.github/workflows/generate-public-references.yml index 104750c96423d..8ff80eee6d6b9 100644 --- a/.github/workflows/generate-public-references.yml +++ b/.github/workflows/generate-public-references.yml @@ -56,7 +56,9 @@ jobs: base: "develop" title: "chore(docs): Updated API Reference (v2)" labels: "type: chore" - add-paths: www/apps/api-reference/specs + add-paths: | + www/apps/api-reference/specs + www/utils/generated/oas-output branch: "docs/generate-api-ref" branch-suffix: "timestamp" ui: diff --git a/.github/workflows/generate-resources-reference.yml b/.github/workflows/generate-resources-reference.yml index 83f40a167e126..8ad701221dffb 100644 --- a/.github/workflows/generate-resources-reference.yml +++ b/.github/workflows/generate-resources-reference.yml @@ -92,6 +92,7 @@ jobs: add-paths: | www/apps/resources/references/** www/apps/resources/generated/** + www/utils/generated/typedoc-json-output branch: "docs/generate-reference" branch-suffix: "timestamp" body: ${{ steps.pr-message.outputs.body }} diff --git a/integration-tests/environment-helpers/use-db.js b/integration-tests/environment-helpers/use-db.js index 20e1f45601ded..8c86841c05535 100644 --- a/integration-tests/environment-helpers/use-db.js +++ b/integration-tests/environment-helpers/use-db.js @@ -11,7 +11,9 @@ const { dropDatabase } = require("pg-god") const { DataSource } = require("typeorm") const dbFactory = require("./use-template-db") const { ContainerRegistrationKeys } = require("@medusajs/utils") -const { migrateMedusaApp } = require("@medusajs/medusa/dist/loaders/medusa-app") +const { + runMedusaAppMigrations, +} = require("@medusajs/medusa/dist/loaders/medusa-app") const DB_HOST = process.env.DB_HOST const DB_USERNAME = process.env.DB_USERNAME @@ -181,10 +183,7 @@ module.exports = { instance.setPgConnection(pgConnection) - await migrateMedusaApp( - { configModule, container }, - { registerInContainer: false } - ) + await runMedusaAppMigrations({ configModule, container }) } return dbDataSource diff --git a/integration-tests/http/__tests__/product/store/product.spec.ts b/integration-tests/http/__tests__/product/store/product.spec.ts index 0b09b5357f738..e667ee605aaf4 100644 --- a/integration-tests/http/__tests__/product/store/product.spec.ts +++ b/integration-tests/http/__tests__/product/store/product.spec.ts @@ -921,9 +921,17 @@ medusaIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 3000, + raw_calculated_amount: { + value: "3000", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 3000, + raw_original_amount: { + value: "3000", + precision: 20, + }, currency_code: "usd", calculated_price: { id: expect.any(String), @@ -1227,9 +1235,17 @@ medusaIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 3000, + raw_calculated_amount: { + value: "3000", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 3000, + raw_original_amount: { + value: "3000", + precision: 20, + }, currency_code: "usd", calculated_price: { id: expect.any(String), diff --git a/integration-tests/modules/__tests__/order/order.spec.ts b/integration-tests/modules/__tests__/order/order.spec.ts index cbfb0e3396b37..861449245d98e 100644 --- a/integration-tests/modules/__tests__/order/order.spec.ts +++ b/integration-tests/modules/__tests__/order/order.spec.ts @@ -60,7 +60,7 @@ medusaIntegrationTestRunner({ describe("Orders - Admin", () => { it("should get an order", async () => { const created = await orderModule.createOrders({ - region_id: "test_region_idclear", + region_id: "test_region_id", email: "foo@bar.com", items: [ { diff --git a/integration-tests/modules/__tests__/order/workflows/__fixtures__/index.ts b/integration-tests/modules/__tests__/order/workflows/__fixtures__/index.ts index 66498be72ebc3..2bdbe15dde837 100644 --- a/integration-tests/modules/__tests__/order/workflows/__fixtures__/index.ts +++ b/integration-tests/modules/__tests__/order/workflows/__fixtures__/index.ts @@ -205,7 +205,7 @@ export async function createOrderFixture({ ) let order = await orderService.createOrders({ - region_id: "test_region_idclear", + region_id: "test_region_id", email: "foo@bar.com", items: [ { diff --git a/integration-tests/modules/__tests__/order/workflows/begin-order-claim.spec.ts b/integration-tests/modules/__tests__/order/workflows/begin-order-claim.spec.ts new file mode 100644 index 0000000000000..3a9793591ed64 --- /dev/null +++ b/integration-tests/modules/__tests__/order/workflows/begin-order-claim.spec.ts @@ -0,0 +1,439 @@ +import { + beginClaimOrderWorkflow, + createShippingOptionsWorkflow, + orderClaimRequestItemReturnWorkflow, +} from "@medusajs/core-flows" +import { + FulfillmentWorkflow, + IOrderModuleService, + IRegionModuleService, + IStockLocationService, + OrderWorkflow, + ProductDTO, + StockLocationDTO, +} from "@medusajs/types" +import { + ClaimType, + ContainerRegistrationKeys, + ModuleRegistrationName, + Modules, + RuleOperator, + remoteQueryObjectFromString, +} from "@medusajs/utils" +import { medusaIntegrationTestRunner } from "medusa-test-utils" + +jest.setTimeout(500000) + +const env = { MEDUSA_FF_MEDUSA_V2: true } +const providerId = "manual_test-provider" + +async function prepareDataFixtures({ container }) { + const fulfillmentService = container.resolve( + ModuleRegistrationName.FULFILLMENT + ) + const salesChannelService = container.resolve( + ModuleRegistrationName.SALES_CHANNEL + ) + const stockLocationModule: IStockLocationService = container.resolve( + ModuleRegistrationName.STOCK_LOCATION + ) + const productModule = container.resolve(ModuleRegistrationName.PRODUCT) + const pricingModule = container.resolve(ModuleRegistrationName.PRICING) + const inventoryModule = container.resolve(ModuleRegistrationName.INVENTORY) + + const shippingProfile = await fulfillmentService.createShippingProfiles({ + name: "test", + type: "default", + }) + + const fulfillmentSet = await fulfillmentService.createFulfillmentSets({ + name: "Test fulfillment set", + type: "manual_test", + }) + + const serviceZone = await fulfillmentService.createServiceZones({ + name: "Test service zone", + fulfillment_set_id: fulfillmentSet.id, + geo_zones: [ + { + type: "country", + country_code: "US", + }, + ], + }) + + const regionService = container.resolve( + ModuleRegistrationName.REGION + ) as IRegionModuleService + + const [region] = await regionService.createRegions([ + { + name: "Test region", + currency_code: "eur", + countries: ["fr"], + }, + ]) + + const salesChannel = await salesChannelService.createSalesChannels({ + name: "Webshop", + }) + + const location: StockLocationDTO = + await stockLocationModule.createStockLocations({ + name: "Warehouse", + address: { + address_1: "Test", + city: "Test", + country_code: "US", + postal_code: "12345", + phone: "12345", + }, + }) + + const [product] = await productModule.createProducts([ + { + title: "Test product", + variants: [ + { + title: "Test variant", + sku: "test-variant", + }, + ], + }, + ]) + + const inventoryItem = await inventoryModule.createInventoryItems({ + sku: "inv-1234", + }) + + await inventoryModule.createInventoryLevels([ + { + inventory_item_id: inventoryItem.id, + location_id: location.id, + stocked_quantity: 2, + reserved_quantity: 0, + }, + ]) + + const remoteLink = container.resolve(ContainerRegistrationKeys.REMOTE_LINK) + + await remoteLink.create([ + { + [Modules.STOCK_LOCATION]: { + stock_location_id: location.id, + }, + [Modules.FULFILLMENT]: { + fulfillment_set_id: fulfillmentSet.id, + }, + }, + { + [Modules.SALES_CHANNEL]: { + sales_channel_id: salesChannel.id, + }, + [Modules.STOCK_LOCATION]: { + stock_location_id: location.id, + }, + }, + { + [Modules.PRODUCT]: { + variant_id: product.variants[0].id, + }, + [Modules.INVENTORY]: { + inventory_item_id: inventoryItem.id, + }, + }, + ]) + + await pricingModule.createPricePreferences([ + { + attribute: "currency_code", + value: "usd", + is_tax_inclusive: true, + }, + { + attribute: "region_id", + value: region.id, + is_tax_inclusive: true, + }, + ]) + + const shippingOptionData: FulfillmentWorkflow.CreateShippingOptionsWorkflowInput = + { + name: "Return shipping option", + price_type: "flat", + service_zone_id: serviceZone.id, + shipping_profile_id: shippingProfile.id, + provider_id: providerId, + type: { + code: "manual-type", + label: "Manual Type", + description: "Manual Type Description", + }, + prices: [ + { + currency_code: "usd", + amount: 10, + }, + { + region_id: region.id, + amount: 100, + }, + ], + rules: [ + { + attribute: "is_return", + operator: RuleOperator.EQ, + value: '"true"', + }, + ], + } + + const { result } = await createShippingOptionsWorkflow(container).run({ + input: [shippingOptionData], + }) + + const remoteQueryObject = remoteQueryObjectFromString({ + entryPoint: "shipping_option", + variables: { + id: result[0].id, + }, + fields: [ + "id", + "name", + "price_type", + "service_zone_id", + "shipping_profile_id", + "provider_id", + "data", + "metadata", + "type.*", + "created_at", + "updated_at", + "deleted_at", + "shipping_option_type_id", + "prices.*", + ], + }) + + const remoteQuery = container.resolve(ContainerRegistrationKeys.REMOTE_QUERY) + + const [createdShippingOption] = await remoteQuery(remoteQueryObject) + return { + shippingOption: createdShippingOption, + region, + salesChannel, + location, + product, + fulfillmentSet, + } +} + +async function createOrderFixture({ container, product }) { + const orderService: IOrderModuleService = container.resolve( + ModuleRegistrationName.ORDER + ) + let order = await orderService.createOrders({ + region_id: "test_region_id", + email: "foo@bar.com", + items: [ + { + title: "Custom Item 2", + variant_sku: product.variants[0].sku, + variant_title: product.variants[0].title, + quantity: 1, + unit_price: 50, + adjustments: [ + { + code: "VIP_25 ETH", + amount: "0.000000000000000005", + description: "VIP discount", + promotion_id: "prom_123", + provider_id: "coupon_kings", + }, + ], + } as any, + ], + transactions: [ + { + amount: 50, + currency_code: "usd", + }, + ], + sales_channel_id: "test", + shipping_address: { + first_name: "Test", + last_name: "Test", + address_1: "Test", + city: "Test", + country_code: "US", + postal_code: "12345", + phone: "12345", + }, + billing_address: { + first_name: "Test", + last_name: "Test", + address_1: "Test", + city: "Test", + country_code: "US", + postal_code: "12345", + }, + shipping_methods: [ + { + name: "Test shipping method", + amount: 10, + data: {}, + tax_lines: [ + { + description: "shipping Tax 1", + tax_rate_id: "tax_usa_shipping", + code: "code", + rate: 10, + }, + ], + adjustments: [ + { + code: "VIP_10", + amount: 1, + description: "VIP discount", + promotion_id: "prom_123", + }, + ], + }, + ], + currency_code: "usd", + customer_id: "joe", + }) + + await orderService.addOrderAction([ + { + action: "FULFILL_ITEM", + order_id: order.id, + version: order.version, + reference: "fullfilment", + reference_id: "fulfill_123", + details: { + reference_id: order.items![0].id, + quantity: 1, + }, + }, + { + action: "SHIP_ITEM", + order_id: order.id, + version: order.version, + reference: "fullfilment", + reference_id: "fulfill_123", + details: { + reference_id: order.items![0].id, + quantity: 1, + }, + }, + ]) + + await orderService.applyPendingOrderActions(order.id) + + order = await orderService.retrieveOrder(order.id, { + relations: ["items"], + }) + + return order +} + +medusaIntegrationTestRunner({ + env, + testSuite: ({ getContainer }) => { + let container + + beforeAll(() => { + container = getContainer() + }) + + describe("Begin claim order workflow", () => { + let product: ProductDTO + + beforeEach(async () => { + const fixtures = await prepareDataFixtures({ + container, + }) + + product = fixtures.product + }) + + it("should begin a claim order", async () => { + const order = await createOrderFixture({ container, product }) + + const createClaimOrderData: OrderWorkflow.beginOrderClaimWorkflowInput = + { + type: ClaimType.REFUND, + order_id: order.id, + } + + await beginClaimOrderWorkflow(container).run({ + input: createClaimOrderData, + throwOnError: true, + }) + + const remoteQuery = container.resolve( + ContainerRegistrationKeys.REMOTE_QUERY + ) + const remoteQueryObject = remoteQueryObjectFromString({ + entryPoint: "order_claim", + variables: { + order_id: createClaimOrderData.order_id, + }, + fields: ["order_id", "id", "type"], + }) + + const [claimOrder] = await remoteQuery(remoteQueryObject) + + expect(claimOrder.order_id).toEqual(order.id) + expect(claimOrder.type).toEqual("refund") + expect(claimOrder.id).toBeDefined() + + // Request itemm to return + const { result: preview } = + await orderClaimRequestItemReturnWorkflow.run({ + throwOnError: true, + container, + input: { + claim_id: claimOrder.id, + items: [ + { + id: order.items![0].id, + quantity: 1, + }, + ], + }, + }) + + expect(preview.items[0]).toEqual( + expect.objectContaining({ + quantity: 1, + id: order.items![0].id, + detail: expect.objectContaining({ + quantity: 1, + fulfilled_quantity: 1, + return_requested_quantity: 1, + }), + actions: [ + expect.objectContaining({ + order_id: order.id, + claim_id: claimOrder.id, + version: 2, + order_change_id: expect.any(String), + reference: "return", + reference_id: expect.stringContaining("return_"), + action: "RETURN_ITEM", + details: expect.objectContaining({ + quantity: 1, + return_id: expect.stringContaining("return_"), + claim_id: claimOrder.id, + reference_id: order.items![0].id, + }), + }), + ], + }) + ) + }) + }) + }, +}) diff --git a/integration-tests/modules/__tests__/order/workflows/begin-order-exchange.spec.ts b/integration-tests/modules/__tests__/order/workflows/begin-order-exchange.spec.ts new file mode 100644 index 0000000000000..2c4a1ac2ec31f --- /dev/null +++ b/integration-tests/modules/__tests__/order/workflows/begin-order-exchange.spec.ts @@ -0,0 +1,496 @@ +import { + beginExchangeOrderWorkflow, + createShippingOptionsWorkflow, + orderExchangeRequestItemReturnWorkflow, +} from "@medusajs/core-flows" +import { + FulfillmentWorkflow, + IRegionModuleService, + IStockLocationService, + OrderWorkflow, + ProductDTO, + StockLocationDTO, +} from "@medusajs/types" +import { + ContainerRegistrationKeys, + ModuleRegistrationName, + Modules, + RuleOperator, + remoteQueryObjectFromString, +} from "@medusajs/utils" +import { medusaIntegrationTestRunner } from "medusa-test-utils" + +jest.setTimeout(500000) + +const env = { MEDUSA_FF_MEDUSA_V2: true } +const providerId = "manual_test-provider" + +async function prepareDataFixtures({ container }) { + const fulfillmentService = container.resolve( + ModuleRegistrationName.FULFILLMENT + ) + const salesChannelService = container.resolve( + ModuleRegistrationName.SALES_CHANNEL + ) + const stockLocationModule: IStockLocationService = container.resolve( + ModuleRegistrationName.STOCK_LOCATION + ) + const productModule = container.resolve(ModuleRegistrationName.PRODUCT) + const pricingModule = container.resolve(ModuleRegistrationName.PRICING) + const inventoryModule = container.resolve(ModuleRegistrationName.INVENTORY) + + const shippingProfile = await fulfillmentService.createShippingProfiles({ + name: "test", + type: "default", + }) + + const fulfillmentSet = await fulfillmentService.createFulfillmentSets({ + name: "Test fulfillment set", + type: "manual_test", + }) + + const serviceZone = await fulfillmentService.createServiceZones({ + name: "Test service zone", + fulfillment_set_id: fulfillmentSet.id, + geo_zones: [ + { + type: "country", + country_code: "US", + }, + ], + }) + + const regionService = container.resolve( + ModuleRegistrationName.REGION + ) as IRegionModuleService + + const [region] = await regionService.createRegions([ + { + name: "Test region", + currency_code: "eur", + countries: ["fr"], + }, + ]) + + const salesChannel = await salesChannelService.createSalesChannels({ + name: "Webshop", + }) + + const location: StockLocationDTO = + await stockLocationModule.createStockLocations({ + name: "Warehouse", + address: { + address_1: "Test", + city: "Test", + country_code: "US", + postal_code: "12345", + phone: "12345", + }, + }) + + const [product] = await productModule.createProducts([ + { + title: "Test product", + variants: [ + { + title: "Test variant", + sku: "test-variant", + }, + ], + }, + ]) + + const inventoryItem = await inventoryModule.createInventoryItems({ + sku: "inv-1234", + }) + + await inventoryModule.createInventoryLevels([ + { + inventory_item_id: inventoryItem.id, + location_id: location.id, + stocked_quantity: 2, + reserved_quantity: 0, + }, + ]) + + const remoteLink = container.resolve(ContainerRegistrationKeys.REMOTE_LINK) + + await remoteLink.create([ + { + [Modules.STOCK_LOCATION]: { + stock_location_id: location.id, + }, + [Modules.FULFILLMENT]: { + fulfillment_set_id: fulfillmentSet.id, + }, + }, + { + [Modules.SALES_CHANNEL]: { + sales_channel_id: salesChannel.id, + }, + [Modules.STOCK_LOCATION]: { + stock_location_id: location.id, + }, + }, + { + [Modules.PRODUCT]: { + variant_id: product.variants[0].id, + }, + [Modules.INVENTORY]: { + inventory_item_id: inventoryItem.id, + }, + }, + ]) + + await pricingModule.createPricePreferences([ + { + attribute: "currency_code", + value: "usd", + is_tax_inclusive: true, + }, + { + attribute: "region_id", + value: region.id, + is_tax_inclusive: true, + }, + ]) + + const shippingOptionData: FulfillmentWorkflow.CreateShippingOptionsWorkflowInput = + { + name: "Return shipping option", + price_type: "flat", + service_zone_id: serviceZone.id, + shipping_profile_id: shippingProfile.id, + provider_id: providerId, + type: { + code: "manual-type", + label: "Manual Type", + description: "Manual Type Description", + }, + prices: [ + { + currency_code: "usd", + amount: 10, + }, + { + region_id: region.id, + amount: 100, + }, + ], + rules: [ + { + attribute: "is_return", + operator: RuleOperator.EQ, + value: '"true"', + }, + ], + } + + const { result } = await createShippingOptionsWorkflow(container).run({ + input: [shippingOptionData], + }) + + const remoteQueryObject = remoteQueryObjectFromString({ + entryPoint: "shipping_option", + variables: { + id: result[0].id, + }, + fields: [ + "id", + "name", + "price_type", + "service_zone_id", + "shipping_profile_id", + "provider_id", + "data", + "metadata", + "type.*", + "created_at", + "updated_at", + "deleted_at", + "shipping_option_type_id", + "prices.*", + ], + }) + + const remoteQuery = container.resolve(ContainerRegistrationKeys.REMOTE_QUERY) + + const [createdShippingOption] = await remoteQuery(remoteQueryObject) + return { + shippingOption: createdShippingOption, + region, + salesChannel, + location, + product, + fulfillmentSet, + } +} + +async function createOrderFixture({ container, product }) { + const orderService = container.resolve(ModuleRegistrationName.ORDER) + let order = await orderService.createOrders({ + region_id: "test_region_id", + email: "foo@bar.com", + items: [ + { + title: "Custom Item 2", + variant_sku: product.variants[0].sku, + variant_title: product.variants[0].title, + quantity: 5, + unit_price: 50, + adjustments: [ + { + code: "VIP_25 ETH", + amount: "0.000000000000000005", + description: "VIP discount", + promotion_id: "prom_123", + provider_id: "coupon_kings", + }, + ], + } as any, + ], + sales_channel_id: "test", + shipping_address: { + first_name: "Test", + last_name: "Test", + address_1: "Test", + city: "Test", + country_code: "US", + postal_code: "12345", + phone: "12345", + }, + billing_address: { + first_name: "Test", + last_name: "Test", + address_1: "Test", + city: "Test", + country_code: "US", + postal_code: "12345", + }, + shipping_methods: [ + { + name: "Test shipping method", + amount: 10, + data: {}, + tax_lines: [ + { + description: "shipping Tax 1", + tax_rate_id: "tax_usa_shipping", + code: "code", + rate: 10, + }, + ], + adjustments: [ + { + code: "VIP_10", + amount: 1, + description: "VIP discount", + promotion_id: "prom_123", + }, + ], + }, + ], + currency_code: "usd", + customer_id: "joe", + }) + + await orderService.addOrderAction([ + { + action: "FULFILL_ITEM", + order_id: order.id, + version: order.version, + reference: "fullfilment", + reference_id: "fulfill_123", + details: { + reference_id: order.items![0].id, + quantity: 3, + }, + }, + { + action: "SHIP_ITEM", + order_id: order.id, + version: order.version, + reference: "fullfilment", + reference_id: "fulfill_123", + details: { + reference_id: order.items![0].id, + quantity: 1, + }, + }, + ]) + + await orderService.applyPendingOrderActions(order.id) + + order = await orderService.retrieveOrder(order.id, { + relations: ["items"], + }) + + return order +} + +medusaIntegrationTestRunner({ + env, + testSuite: ({ getContainer }) => { + let container + + beforeAll(() => { + container = getContainer() + }) + + describe("Begin exchange order workflow", () => { + let product: ProductDTO + + beforeEach(async () => { + const fixtures = await prepareDataFixtures({ + container, + }) + + product = fixtures.product + }) + + it("should begin an exchange order, request item return", async () => { + const order = await createOrderFixture({ container, product }) + + const createExchangeOrderData: OrderWorkflow.beginOrderExchangeWorkflowInput = + { + order_id: order.id, + metadata: { + reason: "test", + extra: "data", + value: 1234, + }, + } + + await beginExchangeOrderWorkflow.run({ + container, + input: createExchangeOrderData, + }) + + const remoteQuery = container.resolve( + ContainerRegistrationKeys.REMOTE_QUERY + ) + const remoteQueryObject = remoteQueryObjectFromString({ + entryPoint: "order_exchange", + variables: { + order_id: createExchangeOrderData.order_id, + }, + fields: ["order_id", "id", "metadata"], + }) + + const [exchangeOrder] = await remoteQuery(remoteQueryObject) + + expect(exchangeOrder.order_id).toEqual(order.id) + expect(exchangeOrder.metadata).toEqual({ + reason: "test", + extra: "data", + value: 1234, + }) + expect(exchangeOrder.id).toBeDefined() + + // Request itemm to return + const { result: preview } = + await orderExchangeRequestItemReturnWorkflow.run({ + throwOnError: true, + container, + input: { + exchange_id: exchangeOrder.id, + items: [ + { + id: order.items![0].id, + quantity: 1, + }, + ], + }, + }) + + expect(preview.items[0]).toEqual( + expect.objectContaining({ + quantity: 5, + id: order.items![0].id, + detail: expect.objectContaining({ + quantity: 5, + fulfilled_quantity: 3, + return_requested_quantity: 1, + }), + actions: [ + expect.objectContaining({ + order_id: order.id, + exchange_id: exchangeOrder.id, + version: 2, + order_change_id: expect.any(String), + reference: "return", + reference_id: expect.stringContaining("return_"), + action: "RETURN_ITEM", + details: expect.objectContaining({ + quantity: 1, + return_id: expect.stringContaining("return_"), + exchange_id: exchangeOrder.id, + reference_id: order.items![0].id, + }), + }), + ], + }) + ) + + const { errors } = await orderExchangeRequestItemReturnWorkflow.run({ + throwOnError: false, + container, + input: { + exchange_id: exchangeOrder.id, + items: [ + { + id: order.items![0].id, + quantity: 3, + }, + ], + }, + }) + expect(errors[0].error.message).toEqual( + `Cannot request to return more items than what was fulfilled for item ${ + order.items![0].id + }.` + ) + + const { result: anotherPreview } = + await orderExchangeRequestItemReturnWorkflow.run({ + container, + input: { + exchange_id: exchangeOrder.id, + items: [ + { + id: order.items![0].id, + quantity: 2, + }, + ], + }, + }) + + expect(anotherPreview.items[0]).toEqual( + expect.objectContaining({ + detail: expect.objectContaining({ + quantity: 5, + fulfilled_quantity: 3, + return_requested_quantity: 3, + }), + actions: [ + expect.objectContaining({ + reference_id: preview.items[0].actions[0].reference_id, + action: "RETURN_ITEM", + details: expect.objectContaining({ + quantity: 1, + }), + }), + expect.objectContaining({ + reference_id: preview.items[0].actions[0].reference_id, + action: "RETURN_ITEM", + details: expect.objectContaining({ + quantity: 2, + }), + }), + ], + }) + ) + }) + }) + }, +}) diff --git a/integration-tests/modules/__tests__/order/workflows/begin-order-return.spec.ts b/integration-tests/modules/__tests__/order/workflows/begin-order-return.spec.ts new file mode 100644 index 0000000000000..8b8fa369fe070 --- /dev/null +++ b/integration-tests/modules/__tests__/order/workflows/begin-order-return.spec.ts @@ -0,0 +1,391 @@ +import { + beginReturnOrderWorkflow, + createShippingOptionsWorkflow, +} from "@medusajs/core-flows" +import { + FulfillmentWorkflow, + IOrderModuleService, + IRegionModuleService, + IStockLocationService, + OrderWorkflow, + ProductDTO, + StockLocationDTO, +} from "@medusajs/types" +import { + ContainerRegistrationKeys, + ModuleRegistrationName, + Modules, + RuleOperator, + remoteQueryObjectFromString, +} from "@medusajs/utils" +import { medusaIntegrationTestRunner } from "medusa-test-utils" + +jest.setTimeout(500000) + +const env = { MEDUSA_FF_MEDUSA_V2: true } +const providerId = "manual_test-provider" + +async function prepareDataFixtures({ container }) { + const fulfillmentService = container.resolve( + ModuleRegistrationName.FULFILLMENT + ) + const salesChannelService = container.resolve( + ModuleRegistrationName.SALES_CHANNEL + ) + const stockLocationModule: IStockLocationService = container.resolve( + ModuleRegistrationName.STOCK_LOCATION + ) + const productModule = container.resolve(ModuleRegistrationName.PRODUCT) + const pricingModule = container.resolve(ModuleRegistrationName.PRICING) + const inventoryModule = container.resolve(ModuleRegistrationName.INVENTORY) + + const shippingProfile = await fulfillmentService.createShippingProfiles({ + name: "test", + type: "default", + }) + + const fulfillmentSet = await fulfillmentService.createFulfillmentSets({ + name: "Test fulfillment set", + type: "manual_test", + }) + + const serviceZone = await fulfillmentService.createServiceZones({ + name: "Test service zone", + fulfillment_set_id: fulfillmentSet.id, + geo_zones: [ + { + type: "country", + country_code: "US", + }, + ], + }) + + const regionService = container.resolve( + ModuleRegistrationName.REGION + ) as IRegionModuleService + + const [region] = await regionService.createRegions([ + { + name: "Test region", + currency_code: "eur", + countries: ["fr"], + }, + ]) + + const salesChannel = await salesChannelService.createSalesChannels({ + name: "Webshop", + }) + + const location: StockLocationDTO = + await stockLocationModule.createStockLocations({ + name: "Warehouse", + address: { + address_1: "Test", + city: "Test", + country_code: "US", + postal_code: "12345", + phone: "12345", + }, + }) + + const [product] = await productModule.createProducts([ + { + title: "Test product", + variants: [ + { + title: "Test variant", + sku: "test-variant", + }, + ], + }, + ]) + + const inventoryItem = await inventoryModule.createInventoryItems({ + sku: "inv-1234", + }) + + await inventoryModule.createInventoryLevels([ + { + inventory_item_id: inventoryItem.id, + location_id: location.id, + stocked_quantity: 2, + reserved_quantity: 0, + }, + ]) + + const remoteLink = container.resolve(ContainerRegistrationKeys.REMOTE_LINK) + + await remoteLink.create([ + { + [Modules.STOCK_LOCATION]: { + stock_location_id: location.id, + }, + [Modules.FULFILLMENT]: { + fulfillment_set_id: fulfillmentSet.id, + }, + }, + { + [Modules.SALES_CHANNEL]: { + sales_channel_id: salesChannel.id, + }, + [Modules.STOCK_LOCATION]: { + stock_location_id: location.id, + }, + }, + { + [Modules.PRODUCT]: { + variant_id: product.variants[0].id, + }, + [Modules.INVENTORY]: { + inventory_item_id: inventoryItem.id, + }, + }, + ]) + + await pricingModule.createPricePreferences([ + { + attribute: "currency_code", + value: "usd", + is_tax_inclusive: true, + }, + { + attribute: "region_id", + value: region.id, + is_tax_inclusive: true, + }, + ]) + + const shippingOptionData: FulfillmentWorkflow.CreateShippingOptionsWorkflowInput = + { + name: "Return shipping option", + price_type: "flat", + service_zone_id: serviceZone.id, + shipping_profile_id: shippingProfile.id, + provider_id: providerId, + type: { + code: "manual-type", + label: "Manual Type", + description: "Manual Type Description", + }, + prices: [ + { + currency_code: "usd", + amount: 10, + }, + { + region_id: region.id, + amount: 100, + }, + ], + rules: [ + { + attribute: "is_return", + operator: RuleOperator.EQ, + value: '"true"', + }, + ], + } + + const { result } = await createShippingOptionsWorkflow(container).run({ + input: [shippingOptionData], + }) + + const remoteQueryObject = remoteQueryObjectFromString({ + entryPoint: "shipping_option", + variables: { + id: result[0].id, + }, + fields: [ + "id", + "name", + "price_type", + "service_zone_id", + "shipping_profile_id", + "provider_id", + "data", + "metadata", + "type.*", + "created_at", + "updated_at", + "deleted_at", + "shipping_option_type_id", + "prices.*", + ], + }) + + const remoteQuery = container.resolve(ContainerRegistrationKeys.REMOTE_QUERY) + + const [createdShippingOption] = await remoteQuery(remoteQueryObject) + return { + shippingOption: createdShippingOption, + region, + salesChannel, + location, + product, + fulfillmentSet, + } +} + +async function createOrderFixture({ container, product }) { + const orderService: IOrderModuleService = container.resolve( + ModuleRegistrationName.ORDER + ) + let order = await orderService.createOrders({ + region_id: "test_region_id", + email: "foo@bar.com", + items: [ + { + title: "Custom Item 2", + variant_sku: product.variants[0].sku, + variant_title: product.variants[0].title, + quantity: 1, + unit_price: 50, + adjustments: [ + { + code: "VIP_25 ETH", + amount: "0.000000000000000005", + description: "VIP discount", + promotion_id: "prom_123", + provider_id: "coupon_kings", + }, + ], + } as any, + ], + transactions: [ + { + amount: 50, + currency_code: "usd", + }, + ], + sales_channel_id: "test", + shipping_address: { + first_name: "Test", + last_name: "Test", + address_1: "Test", + city: "Test", + country_code: "US", + postal_code: "12345", + phone: "12345", + }, + billing_address: { + first_name: "Test", + last_name: "Test", + address_1: "Test", + city: "Test", + country_code: "US", + postal_code: "12345", + }, + shipping_methods: [ + { + name: "Test shipping method", + amount: 10, + data: {}, + tax_lines: [ + { + description: "shipping Tax 1", + tax_rate_id: "tax_usa_shipping", + code: "code", + rate: 10, + }, + ], + adjustments: [ + { + code: "VIP_10", + amount: 1, + description: "VIP discount", + promotion_id: "prom_123", + }, + ], + }, + ], + currency_code: "usd", + customer_id: "joe", + }) + + await orderService.addOrderAction([ + { + action: "FULFILL_ITEM", + order_id: order.id, + version: order.version, + reference: "fullfilment", + reference_id: "fulfill_123", + details: { + reference_id: order.items![0].id, + quantity: 1, + }, + }, + { + action: "SHIP_ITEM", + order_id: order.id, + version: order.version, + reference: "fullfilment", + reference_id: "fulfill_123", + details: { + reference_id: order.items![0].id, + quantity: 1, + }, + }, + ]) + + await orderService.applyPendingOrderActions(order.id) + + order = await orderService.retrieveOrder(order.id, { + relations: ["items"], + }) + + return order +} + +medusaIntegrationTestRunner({ + env, + testSuite: ({ getContainer }) => { + let container + + beforeAll(() => { + container = getContainer() + }) + + describe("Begin return order workflow", () => { + let product: ProductDTO + + beforeEach(async () => { + const fixtures = await prepareDataFixtures({ + container, + }) + + product = fixtures.product + }) + + it("should begin a return order", async () => { + const order = await createOrderFixture({ container, product }) + + const createReturnOrderData: OrderWorkflow.beginOrderReturnWorkflowInput = + { + order_id: order.id, + } + + await beginReturnOrderWorkflow(container).run({ + input: createReturnOrderData, + throwOnError: true, + }) + + const remoteQuery = container.resolve( + ContainerRegistrationKeys.REMOTE_QUERY + ) + const remoteQueryObject = remoteQueryObjectFromString({ + entryPoint: "return", + variables: { + order_id: createReturnOrderData.order_id, + }, + fields: ["order_id", "id", "status"], + }) + + const [returnOrder] = await remoteQuery(remoteQueryObject) + + expect(returnOrder.order_id).toEqual(order.id) + expect(returnOrder.status).toEqual("requested") + expect(returnOrder.id).toBeDefined() + }) + }) + }, +}) diff --git a/integration-tests/modules/__tests__/order/workflows/create-complete-return.spec.ts b/integration-tests/modules/__tests__/order/workflows/create-complete-return.spec.ts index 94d5def0db629..2b7295712d232 100644 --- a/integration-tests/modules/__tests__/order/workflows/create-complete-return.spec.ts +++ b/integration-tests/modules/__tests__/order/workflows/create-complete-return.spec.ts @@ -235,7 +235,7 @@ async function createOrderFixture({ container, product }) { ModuleRegistrationName.ORDER ) let order = await orderService.createOrders({ - region_id: "test_region_idclear", + region_id: "test_region_id", email: "foo@bar.com", items: [ { @@ -434,7 +434,7 @@ medusaIntegrationTestRunner({ expect.objectContaining({ id: expect.any(String), display_id: 1, - region_id: "test_region_idclear", + region_id: "test_region_id", customer_id: "joe", version: 2, sales_channel_id: "test", // TODO: What about order with a sales channel but a shipping option link to a stock from another channel? diff --git a/integration-tests/modules/__tests__/order/workflows/create-fulfillment.spec.ts b/integration-tests/modules/__tests__/order/workflows/create-fulfillment.spec.ts index 8de1b3a82e5de..5aae561202fc1 100644 --- a/integration-tests/modules/__tests__/order/workflows/create-fulfillment.spec.ts +++ b/integration-tests/modules/__tests__/order/workflows/create-fulfillment.spec.ts @@ -217,7 +217,7 @@ async function createOrderFixture({ container, product, location }) { ModuleRegistrationName.ORDER ) let order = await orderService.createOrders({ - region_id: "test_region_idclear", + region_id: "test_region_id", email: "foo@bar.com", items: [ { diff --git a/integration-tests/modules/__tests__/order/workflows/create-shipment.spec.ts b/integration-tests/modules/__tests__/order/workflows/create-shipment.spec.ts index 89c836df22998..0c648664cfa02 100644 --- a/integration-tests/modules/__tests__/order/workflows/create-shipment.spec.ts +++ b/integration-tests/modules/__tests__/order/workflows/create-shipment.spec.ts @@ -220,7 +220,7 @@ async function createOrderFixture({ container, product, location }) { ModuleRegistrationName.ORDER ) let order = await orderService.createOrders({ - region_id: "test_region_idclear", + region_id: "test_region_id", email: "foo@bar.com", items: [ { diff --git a/integration-tests/modules/__tests__/order/workflows/return/create-return-shipping.spec.ts b/integration-tests/modules/__tests__/order/workflows/return/create-return-shipping.spec.ts new file mode 100644 index 0000000000000..e59bed552d5bb --- /dev/null +++ b/integration-tests/modules/__tests__/order/workflows/return/create-return-shipping.spec.ts @@ -0,0 +1,124 @@ +import { + beginReturnOrderWorkflow, + createReturnShippingMethodWorkflow, +} from "@medusajs/core-flows" +import { OrderDTO, ReturnDTO } from "@medusajs/types" +import { + ContainerRegistrationKeys, + remoteQueryObjectFromString, +} from "@medusajs/utils" +import { medusaIntegrationTestRunner } from "medusa-test-utils" +import { createOrderFixture, prepareDataFixtures } from "../__fixtures__" + +jest.setTimeout(50000) + +medusaIntegrationTestRunner({ + env: { MEDUSA_FF_MEDUSA_V2: true }, + testSuite: ({ getContainer }) => { + let container + + beforeAll(() => { + container = getContainer() + }) + + describe("Order change: Create return shipping", () => { + let order: OrderDTO + let fixtures + + let returnOrder: ReturnDTO + + beforeEach(async () => { + fixtures = await prepareDataFixtures({ container }) + + order = await createOrderFixture({ + container, + product: fixtures.product, + location: fixtures.location, + inventoryItem: fixtures.inventoryItem, + }) + + await beginReturnOrderWorkflow(container).run({ + input: { order_id: order.id }, + throwOnError: true, + }) + + const remoteQuery = container.resolve( + ContainerRegistrationKeys.REMOTE_QUERY + ) + + const remoteQueryObject = remoteQueryObjectFromString({ + entryPoint: "return", + variables: { order_id: order.id }, + fields: ["order_id", "id", "status", "order_change_id"], + }) + + ;[returnOrder] = await remoteQuery(remoteQueryObject) + }) + + describe("createReturnShippingMethodWorkflow", () => { + it("should successfully add return shipping to order changes", async () => { + const shippingOptionId = fixtures.shippingOption.id + + const { result } = await createReturnShippingMethodWorkflow( + container + ).run({ + input: { + returnId: returnOrder.id, + shippingOptionId: shippingOptionId, + }, + }) + + const orderChange = result?.[0] + + expect(orderChange).toEqual( + expect.objectContaining({ + id: expect.any(String), + reference: "order_shipping_method", + reference_id: expect.any(String), + details: { + order_id: returnOrder.order_id, + return_id: returnOrder.id, + }, + raw_amount: { value: "10", precision: 20 }, + applied: false, + action: "SHIPPING_ADD", + amount: 10, + }) + ) + }) + + it("should successfully add return shipping with custom price to order changes", async () => { + const shippingOptionId = fixtures.shippingOption.id + + const { result } = await createReturnShippingMethodWorkflow( + container + ).run({ + input: { + returnId: returnOrder.id, + shippingOptionId: shippingOptionId, + customShippingPrice: 20, + }, + }) + + const orderChange = result?.[0] + + expect(orderChange).toEqual( + expect.objectContaining({ + id: expect.any(String), + reference: "order_shipping_method", + reference_id: expect.any(String), + details: { + order_id: returnOrder.order_id, + return_id: returnOrder.id, + }, + raw_amount: { value: "20", precision: 20 }, + applied: false, + action: "SHIPPING_ADD", + amount: 20, + }) + ) + }) + }) + }) + }, +}) diff --git a/integration-tests/modules/__tests__/order/workflows/return/items.spec.ts b/integration-tests/modules/__tests__/order/workflows/return/items.spec.ts new file mode 100644 index 0000000000000..bd5d12f096001 --- /dev/null +++ b/integration-tests/modules/__tests__/order/workflows/return/items.spec.ts @@ -0,0 +1,228 @@ +import { + beginReturnOrderWorkflow, + requestItemReturnWorkflow, +} from "@medusajs/core-flows" +import { IOrderModuleService, OrderDTO, ReturnDTO } from "@medusajs/types" +import { + ContainerRegistrationKeys, + ModuleRegistrationName, + remoteQueryObjectFromString, +} from "@medusajs/utils" +import { medusaIntegrationTestRunner } from "medusa-test-utils" +import { createOrderFixture, prepareDataFixtures } from "../__fixtures__" + +jest.setTimeout(50000) + +medusaIntegrationTestRunner({ + env: { MEDUSA_FF_MEDUSA_V2: true }, + testSuite: ({ getContainer }) => { + let container + + beforeAll(() => { + container = getContainer() + }) + + describe("Order change action workflows", () => { + let order: OrderDTO + let service: IOrderModuleService + let returnOrder: ReturnDTO + + beforeEach(async () => { + const fixtures = await prepareDataFixtures({ container }) + + order = await createOrderFixture({ + container, + product: fixtures.product, + location: fixtures.location, + inventoryItem: fixtures.inventoryItem, + }) + + await beginReturnOrderWorkflow(container).run({ + input: { order_id: order.id }, + throwOnError: true, + }) + + const remoteQuery = container.resolve( + ContainerRegistrationKeys.REMOTE_QUERY + ) + + const remoteQueryObject = remoteQueryObjectFromString({ + entryPoint: "return", + variables: { order_id: order.id }, + fields: ["order_id", "id", "status", "order_change_id"], + }) + + service = container.resolve(ModuleRegistrationName.ORDER) + ;[returnOrder] = await remoteQuery(remoteQueryObject) + }) + + describe("requestItemReturnWorkflow", () => { + it("should successfully add a return item to order change", async () => { + const item = order.items![0] + const { + result: [returnItem], + } = await requestItemReturnWorkflow(container).run({ + input: { + return_id: returnOrder.id, + items: [ + { + id: item.id, + quantity: 1, + internal_note: "test", + }, + ], + }, + }) + + expect(returnItem).toEqual( + expect.objectContaining({ + id: expect.any(String), + order_id: order.id, + return_id: returnOrder.id, + reference: "return", + reference_id: returnOrder.id, + details: { + reference_id: item.id, + return_id: returnOrder.id, + quantity: 1, + }, + internal_note: "test", + action: "RETURN_ITEM", + }) + ) + }) + + it("should throw an error if return does not exist", async () => { + const item = order.items![0] + const { + errors: [error], + } = await requestItemReturnWorkflow(container).run({ + input: { + return_id: "does-not-exist", + items: [ + { + id: item.id, + quantity: 1, + internal_note: "test", + }, + ], + }, + throwOnError: false, + }) + + expect(error.error.message).toEqual( + "order id not found: does-not-exist" + ) + }) + + it("should throw an error if order does not exist", async () => { + const item = order.items![0] + + await service.deleteOrders(order.id) + + const { + errors: [error], + } = await requestItemReturnWorkflow(container).run({ + input: { + return_id: returnOrder.id, + items: [ + { + id: item.id, + quantity: 1, + internal_note: "test", + }, + ], + }, + throwOnError: false, + }) + + expect(error.error.message).toEqual(`order id not found: ${order.id}`) + }) + + it("should throw an error if order change does not exist", async () => { + const item = order.items![0] + + const [orderChange] = await service.listOrderChanges( + { order_id: order.id }, + {} + ) + + await service.deleteOrderChanges(orderChange.id) + + const { + errors: [error], + } = await requestItemReturnWorkflow(container).run({ + input: { + return_id: returnOrder.id, + items: [ + { + id: item.id, + quantity: 1, + internal_note: "test", + }, + ], + }, + throwOnError: false, + }) + + expect(error.error.message).toEqual( + `An active Order Change is required to proceed` + ) + }) + + it("should throw an error if order change is not active", async () => { + const item = order.items![0] + + const [orderChange] = await service.listOrderChanges( + { order_id: order.id }, + {} + ) + + await service.cancelOrderChange(orderChange.id) + + const { + errors: [error], + } = await requestItemReturnWorkflow(container).run({ + input: { + return_id: returnOrder.id, + items: [ + { + id: item.id, + quantity: 1, + internal_note: "test", + }, + ], + }, + throwOnError: false, + }) + + expect(error.error.message).toEqual( + `Order Change cannot be modified: ${orderChange.id}.` + ) + }) + + it("should throw an error if return item is not present in the order", async () => { + const { + errors: [error], + } = await requestItemReturnWorkflow(container).run({ + input: { + return_id: returnOrder.id, + items: [ + { + id: "does-not-exist", + quantity: 1, + internal_note: "test", + }, + ], + }, + throwOnError: false, + }) + + expect(error.error.message).toEqual( + `Items with ids does-not-exist does not exist in order with id ${order.id}.` + ) + }) + }) + }) + }, +}) diff --git a/packages/admin-next/dashboard/src/components/common/json-view-section/json-view-section.tsx b/packages/admin-next/dashboard/src/components/common/json-view-section/json-view-section.tsx index 6243edb5194cd..ba157b58550ad 100644 --- a/packages/admin-next/dashboard/src/components/common/json-view-section/json-view-section.tsx +++ b/packages/admin-next/dashboard/src/components/common/json-view-section/json-view-section.tsx @@ -1,5 +1,5 @@ import { - ArrowsPointingOut, + ArrowUpRightOnBox, Check, SquareTwoStack, TriangleDownMini, @@ -30,7 +30,7 @@ export const JsonViewSection = ({ data }: JsonViewSectionProps) => {
{t("json.header")} - + {t("json.numberOfKeys", { count: numberOfKeys, })} @@ -41,9 +41,9 @@ export const JsonViewSection = ({ data }: JsonViewSectionProps) => { - + diff --git a/packages/admin-next/dashboard/src/components/common/metadata-section/index.ts b/packages/admin-next/dashboard/src/components/common/metadata-section/index.ts new file mode 100644 index 0000000000000..2281a512a8cca --- /dev/null +++ b/packages/admin-next/dashboard/src/components/common/metadata-section/index.ts @@ -0,0 +1 @@ +export * from "./metadata-section" diff --git a/packages/admin-next/dashboard/src/components/common/metadata-section/metadata-section.tsx b/packages/admin-next/dashboard/src/components/common/metadata-section/metadata-section.tsx new file mode 100644 index 0000000000000..4786bb31d0ae3 --- /dev/null +++ b/packages/admin-next/dashboard/src/components/common/metadata-section/metadata-section.tsx @@ -0,0 +1,49 @@ +import { ArrowUpRightOnBox } from "@medusajs/icons" +import { Badge, Container, Heading, IconButton } from "@medusajs/ui" +import { useTranslation } from "react-i18next" +import { Link } from "react-router-dom" + +type MetadataSectionProps = { + data: TData + href?: string +} + +export const MetadataSection = ({ + data, + href = "metadata/edit", +}: MetadataSectionProps) => { + const { t } = useTranslation() + + if (!data) { + return null + } + + if (!("metadata" in data)) { + return null + } + + const numberOfKeys = data.metadata ? Object.keys(data.metadata).length : 0 + + return ( + +
+ {t("metadata.header")} + + {t("metadata.numberOfKeys", { + count: numberOfKeys, + })} + +
+ + + + + +
+ ) +} diff --git a/packages/admin-next/dashboard/src/components/common/skeleton/skeleton.tsx b/packages/admin-next/dashboard/src/components/common/skeleton/skeleton.tsx index db31eaed4e407..90671af690576 100644 --- a/packages/admin-next/dashboard/src/components/common/skeleton/skeleton.tsx +++ b/packages/admin-next/dashboard/src/components/common/skeleton/skeleton.tsx @@ -229,3 +229,99 @@ export const JsonViewSectionSkeleton = () => { ) } + +type SingleColumnPageSkeletonProps = { + sections?: number + showJSON?: boolean + showMetadata?: boolean +} + +export const SingleColumnPageSkeleton = ({ + sections = 2, + showJSON = false, + showMetadata = false, +}: SingleColumnPageSkeletonProps) => { + return ( +
+ {Array.from({ length: sections }, (_, i) => i).map((section) => { + return ( + + ) + })} + {showMetadata && } + {showJSON && } +
+ ) +} + +type TwoColumnPageSkeletonProps = { + mainSections?: number + sidebarSections?: number + showJSON?: boolean + showMetadata?: boolean +} + +export const TwoColumnPageSkeleton = ({ + mainSections = 2, + sidebarSections = 1, + showJSON = false, + showMetadata = true, +}: TwoColumnPageSkeletonProps) => { + const showExtraData = showJSON || showMetadata + + return ( +
+
+
+ {Array.from({ length: mainSections }, (_, i) => i).map((section) => { + return ( + + ) + })} + {showExtraData && ( +
+ {showMetadata && ( + + )} + {showJSON && } +
+ )} +
+
+ {Array.from({ length: sidebarSections }, (_, i) => i).map( + (section) => { + return ( + + ) + } + )} + {showExtraData && ( +
+ {showMetadata && ( + + )} + {showJSON && } +
+ )} +
+
+
+ ) +} diff --git a/packages/admin-next/dashboard/src/components/forms/metadata-form/index.ts b/packages/admin-next/dashboard/src/components/forms/metadata-form/index.ts new file mode 100644 index 0000000000000..77c403fc70a34 --- /dev/null +++ b/packages/admin-next/dashboard/src/components/forms/metadata-form/index.ts @@ -0,0 +1 @@ +export * from "./metadata-form" diff --git a/packages/admin-next/dashboard/src/components/forms/metadata-form/metadata-form.tsx b/packages/admin-next/dashboard/src/components/forms/metadata-form/metadata-form.tsx new file mode 100644 index 0000000000000..7529453ce3ce0 --- /dev/null +++ b/packages/admin-next/dashboard/src/components/forms/metadata-form/metadata-form.tsx @@ -0,0 +1,415 @@ +import { zodResolver } from "@hookform/resolvers/zod" +import { + Button, + DropdownMenu, + Heading, + IconButton, + clx, + toast, +} from "@medusajs/ui" +import { useFieldArray, useForm } from "react-hook-form" +import { useTranslation } from "react-i18next" +import { z } from "zod" + +import { + ArrowDownMini, + ArrowUpMini, + EllipsisVertical, + Trash, +} from "@medusajs/icons" +import { FetchError } from "@medusajs/js-sdk" +import { ComponentPropsWithoutRef, forwardRef, useRef } from "react" +import { ConditionalTooltip } from "../../common/conditional-tooltip" +import { Form } from "../../common/form" +import { InlineTip } from "../../common/inline-tip" +import { Skeleton } from "../../common/skeleton" +import { RouteDrawer, useRouteModal } from "../../modals" + +type MetaDataSubmitHook = ( + params: { metadata?: Record | null }, + callbacks: { onSuccess: () => void; onError: (error: FetchError) => void } +) => Promise + +type MetadataFormProps = { + metadata?: Record | null + hook: MetaDataSubmitHook + isPending: boolean + isMutating: boolean +} + +const MetadataFieldSchema = z.object({ + key: z.string(), + disabled: z.boolean().optional(), + value: z.any(), +}) + +const MetadataSchema = z.object({ + metadata: z.array(MetadataFieldSchema), +}) + +export const MetadataForm = (props: MetadataFormProps) => { + const { t } = useTranslation() + const { isPending, ...innerProps } = props + + return ( + + + + {t("metadata.edit.header")} + + + {t("metadata.edit.description")} + + + {isPending ? : } + + ) +} + +const METADATA_KEY_LABEL_ID = "metadata-form-key-label" +const METADATA_VALUE_LABEL_ID = "metadata-form-value-label" + +const InnerForm = ({ + metadata, + hook, + isMutating, +}: Omit, "isPending">) => { + const { t } = useTranslation() + const { handleSuccess } = useRouteModal() + + const deletedOriginalRows = useRef([]) + const hasUneditableRows = getHasUneditableRows(metadata) + + const form = useForm>({ + defaultValues: { + metadata: getDefaultValues(metadata), + }, + resolver: zodResolver(MetadataSchema), + }) + + const handleSubmit = form.handleSubmit(async (data) => { + const parsedData = parseValues(data) + + await hook( + { + metadata: parsedData, + }, + { + onSuccess: () => { + toast.success(t("metadata.edit.successToast")) + handleSuccess() + }, + onError: (error) => { + toast.error(error.message) + }, + } + ) + }) + + const { fields, insert, remove } = useFieldArray({ + control: form.control, + name: "metadata", + }) + + function deleteRow(index: number) { + remove(index) + } + + function insertRow(index: number, position: "above" | "below") { + insert(index + (position === "above" ? 0 : 1), { + key: "", + value: "", + disabled: false, + }) + } + + return ( + +
+ +
+
+
+ +
+
+ +
+
+ {fields.map((field, index) => { + const isDisabled = field.disabled || false + let placeholder = "-" + + if (typeof field.value === "object") { + placeholder = "{ ... }" + } + + if (Array.isArray(field.value)) { + placeholder = "[ ... ]" + } + + return ( + +
+
+ { + return ( + + + + + + ) + }} + /> + { + return ( + + + + + + ) + }} + /> +
+ + + + + + + + insertRow(index, "above")} + > + + {t("metadata.edit.actions.insertRowAbove")} + + insertRow(index, "below")} + > + + {t("metadata.edit.actions.insertRowBelow")} + + + deleteRow(index)} + > + + {t("metadata.edit.actions.deleteRow")} + + + +
+
+ ) + })} +
+ {hasUneditableRows && ( + + {t("metadata.edit.complexRow.description")} + + )} +
+ +
+ + + + +
+
+
+
+ ) +} + +const GridInput = forwardRef< + HTMLInputElement, + ComponentPropsWithoutRef<"input"> +>(({ className, ...props }, ref) => { + return ( + + ) +}) +GridInput.displayName = "MetadataForm.GridInput" + +const PlaceholderInner = () => { + return ( +
+ + + + +
+ + +
+
+
+ ) +} + +const EDITABLE_TYPES = ["string", "number", "boolean"] + +function getDefaultValues( + metadata?: Record | null +): z.infer[] { + if (!metadata || !Object.keys(metadata).length) { + return [ + { + key: "", + value: "", + disabled: false, + }, + ] + } + + return Object.entries(metadata).map(([key, value]) => { + if (!EDITABLE_TYPES.includes(typeof value)) { + return { + key, + value: value, + disabled: true, + } + } + + let stringValue = value + + if (typeof value !== "string") { + stringValue = JSON.stringify(value) + } + + return { + key, + value: stringValue, + original_key: key, + } + }) +} + +function parseValues( + values: z.infer +): Record | null { + const metadata = values.metadata + + const isEmpty = + !metadata.length || + (metadata.length === 1 && !metadata[0].key && !metadata[0].value) + + if (isEmpty) { + return null + } + + const update: Record = {} + + metadata.forEach((field) => { + let key = field.key + let value = field.value + const disabled = field.disabled + + if (!key || !value) { + return + } + + if (disabled) { + update[key] = value + return + } + + key = key.trim() + value = value.trim() + + // We try to cast the value to a boolean or number if possible + if (value === "true") { + update[key] = true + } else if (value === "false") { + update[key] = false + } else { + const parsedNumber = parseFloat(value) + if (!isNaN(parsedNumber)) { + update[key] = parsedNumber + } else { + update[key] = value + } + } + }) + + return update +} + +function getHasUneditableRows(metadata?: Record | null) { + if (!metadata) { + return false + } + + return Object.values(metadata).some( + (value) => !EDITABLE_TYPES.includes(typeof value) + ) +} diff --git a/packages/admin-next/dashboard/src/components/forms/metadata/index.ts b/packages/admin-next/dashboard/src/components/forms/metadata/index.ts deleted file mode 100644 index 307c08c118b7a..0000000000000 --- a/packages/admin-next/dashboard/src/components/forms/metadata/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./metadata" diff --git a/packages/admin-next/dashboard/src/components/forms/metadata/metadata.tsx b/packages/admin-next/dashboard/src/components/forms/metadata/metadata.tsx deleted file mode 100644 index 6bc3ba7fbc570..0000000000000 --- a/packages/admin-next/dashboard/src/components/forms/metadata/metadata.tsx +++ /dev/null @@ -1,157 +0,0 @@ -import { useEffect } from "react" -import { useTranslation } from "react-i18next" -import { Alert, Button, Input, Text } from "@medusajs/ui" -import { Trash } from "@medusajs/icons" -import { UseFormReturn } from "react-hook-form" - -import { MetadataField } from "../../../lib/metadata" - -type MetadataProps = { - form: UseFormReturn -} - -type FieldProps = { - field: MetadataField - isLast: boolean - onDelete: () => void - updateKey: (key: string) => void - updateValue: (value: string) => void -} - -function Field({ - field, - updateKey, - updateValue, - onDelete, - isLast, -}: FieldProps) { - const { t } = useTranslation() - - /** - * value on the index of deleted field will be undefined, - * but we need to keep it to preserve list ordering - * so React could correctly render elements when adding/deleting - */ - if (field.isDeleted || field.isIgnored) { - return null - } - - return ( - - - { - updateKey(e.currentTarget.value) - }} - /> - - - { - updateValue(e.currentTarget.value) - }} - /> - {!isLast && ( - - )} - - - ) -} - -export function Metadata({ form }: MetadataProps) { - const { t } = useTranslation() - - const metadataWatch = form.watch("metadata") as MetadataField[] - const ignoredKeys = metadataWatch.filter((k) => k.isIgnored) - - const addKeyPair = () => { - form.setValue( - `metadata.${metadataWatch.length ? metadataWatch.length : 0}`, - { key: "", value: "" } - ) - } - - const onKeyChange = (index: number) => { - return (key: string) => { - form.setValue(`metadata.${index}.key`, key, { shouldDirty: true }) - - if (index === metadataWatch.length - 1) { - addKeyPair() - } - } - } - - const onValueChange = (index: number) => { - return (value: any) => { - form.setValue(`metadata.${index}.value`, value, { shouldDirty: true }) - - if (index === metadataWatch.length - 1) { - addKeyPair() - } - } - } - - const deleteKeyPair = (index: number) => { - return () => { - form.setValue(`metadata.${index}.isDeleted`, true, { shouldDirty: true }) - } - } - - return ( -
- - {t("fields.metadata")} - - - - - - - - - - {metadataWatch.map((field, index) => { - return ( - - ) - })} - -
- - {t("fields.key")} - - - - {t("fields.value")} - -
- {!!ignoredKeys.length && ( - - {t("metadata.warnings.ignoredKeys", { keys: ignoredKeys.join(",") })} - - )} -
- ) -} diff --git a/packages/admin-next/dashboard/src/components/layout/pages/single-column-page/single-column-page.tsx b/packages/admin-next/dashboard/src/components/layout/pages/single-column-page/single-column-page.tsx index 2f4b1da5873dc..fc2758ef023df 100644 --- a/packages/admin-next/dashboard/src/components/layout/pages/single-column-page/single-column-page.tsx +++ b/packages/admin-next/dashboard/src/components/layout/pages/single-column-page/single-column-page.tsx @@ -1,13 +1,27 @@ import { Outlet } from "react-router-dom" import { JsonViewSection } from "../../../common/json-view-section" +import { MetadataSection } from "../../../common/metadata-section" import { PageProps } from "../types" export const SingleColumnPage = ({ children, widgets, + /** + * Data of the page which is passed to Widgets, JSON view, and Metadata view. + */ data, - hasOutlet, + /** + * Whether the page should render an outlet for children routes. Defaults to true. + */ + hasOutlet = true, + /** + * Whether to show JSON view of the data. Defaults to false. + */ showJSON, + /** + * Whether to show metadata view of the data. Defaults to false. + */ + showMetadata, }: PageProps) => { const { before, after } = widgets const widgetProps = { data } @@ -22,6 +36,16 @@ export const SingleColumnPage = ({ showJSON = false } + if (showMetadata && !data) { + if (process.env.NODE_ENV === "development") { + console.warn( + "`showMetadata` is true but no data is provided. To display metadata, provide data prop." + ) + } + + showMetadata = false + } + return (
{before.widgets.map((w, i) => { @@ -31,6 +55,7 @@ export const SingleColumnPage = ({ {after.widgets.map((w, i) => { return })} + {showMetadata && } {showJSON && } {hasOutlet && }
diff --git a/packages/admin-next/dashboard/src/components/layout/pages/two-column-page/two-column-page.tsx b/packages/admin-next/dashboard/src/components/layout/pages/two-column-page/two-column-page.tsx index 99d4e2cc04474..d891150182140 100644 --- a/packages/admin-next/dashboard/src/components/layout/pages/two-column-page/two-column-page.tsx +++ b/packages/admin-next/dashboard/src/components/layout/pages/two-column-page/two-column-page.tsx @@ -2,6 +2,7 @@ import { clx } from "@medusajs/ui" import { Children, ComponentPropsWithoutRef } from "react" import { Outlet } from "react-router-dom" import { JsonViewSection } from "../../../common/json-view-section" +import { MetadataSection } from "../../../common/metadata-section" import { PageProps, WidgetImport, WidgetProps } from "../types" interface TwoColumnWidgetProps extends WidgetProps { @@ -20,13 +21,17 @@ const Root = ({ */ widgets, /** - * Data to be passed to widgets and the JSON view. + * Data to be passed to widgets, JSON view, and Metadata view. */ data, /** - * Whether to show JSON view of the data. Defaults to true. + * Whether to show JSON view of the data. Defaults to false. */ showJSON = false, + /** + * Whether to show metadata view of the data. Defaults to false. + */ + showMetadata = false, /** * Whether to render an outlet for children routes. Defaults to true. */ @@ -45,6 +50,16 @@ const Root = ({ showJSON = false } + if (showMetadata && !data) { + if (process.env.NODE_ENV === "development") { + console.warn( + "`showMetadata` is true but no data is provided. To display metadata, provide data prop." + ) + } + + showMetadata = false + } + const childrenArray = Children.toArray(children) if (childrenArray.length !== 2) { @@ -52,9 +67,10 @@ const Root = ({ } const [main, sidebar] = childrenArray + const showExtraData = showJSON || showMetadata return ( -
+
{before.widgets.map((w, i) => { return })} @@ -64,9 +80,10 @@ const Root = ({ {after.widgets.map((w, i) => { return })} - {showJSON && ( -
- + {showExtraData && ( +
+ {showMetadata && } + {showJSON && }
)}
@@ -78,9 +95,10 @@ const Root = ({ {sideAfter.widgets.map((w, i) => { return })} - {showJSON && ( -
- + {showExtraData && ( +
+ {showMetadata && } + {showJSON && }
)}
diff --git a/packages/admin-next/dashboard/src/components/layout/pages/types.ts b/packages/admin-next/dashboard/src/components/layout/pages/types.ts index 8cbaf9165ec6d..ef602359df713 100644 --- a/packages/admin-next/dashboard/src/components/layout/pages/types.ts +++ b/packages/admin-next/dashboard/src/components/layout/pages/types.ts @@ -18,5 +18,6 @@ export interface PageProps { widgets: WidgetProps data?: TData showJSON?: boolean + showMetadata?: boolean hasOutlet?: boolean } diff --git a/packages/admin-next/dashboard/src/hooks/api/customers.tsx b/packages/admin-next/dashboard/src/hooks/api/customers.tsx index adfbb1e372836..ef992604597c8 100644 --- a/packages/admin-next/dashboard/src/hooks/api/customers.tsx +++ b/packages/admin-next/dashboard/src/hooks/api/customers.tsx @@ -1,3 +1,4 @@ +import { FetchError } from "@medusajs/js-sdk" import { DeleteResponse, HttpTypes, PaginatedResponse } from "@medusajs/types" import { QueryKey, @@ -19,7 +20,7 @@ export const useCustomer = ( options?: Omit< UseQueryOptions< { customer: HttpTypes.AdminCustomer }, - Error, + FetchError, { customer: HttpTypes.AdminCustomer }, QueryKey >, @@ -40,7 +41,7 @@ export const useCustomers = ( options?: Omit< UseQueryOptions< PaginatedResponse<{ customers: HttpTypes.AdminCustomer[] }>, - Error, + FetchError, PaginatedResponse<{ customers: HttpTypes.AdminCustomer[] }>, QueryKey >, @@ -59,7 +60,7 @@ export const useCustomers = ( export const useCreateCustomer = ( options?: UseMutationOptions< { customer: HttpTypes.AdminCustomer }, - Error, + FetchError, HttpTypes.AdminCreateCustomer > ) => { @@ -77,7 +78,7 @@ export const useUpdateCustomer = ( id: string, options?: UseMutationOptions< { customer: HttpTypes.AdminCustomer }, - Error, + FetchError, HttpTypes.AdminUpdateCustomer > ) => { @@ -95,7 +96,7 @@ export const useUpdateCustomer = ( export const useDeleteCustomer = ( id: string, - options?: UseMutationOptions, Error, void> + options?: UseMutationOptions, FetchError, void> ) => { return useMutation({ mutationFn: () => sdk.admin.customer.delete(id), diff --git a/packages/admin-next/dashboard/src/hooks/api/products.tsx b/packages/admin-next/dashboard/src/hooks/api/products.tsx index b9b6ea2c50f60..f66faf8386d20 100644 --- a/packages/admin-next/dashboard/src/hooks/api/products.tsx +++ b/packages/admin-next/dashboard/src/hooks/api/products.tsx @@ -268,15 +268,14 @@ export const useProducts = ( export const useCreateProduct = ( options?: UseMutationOptions< - { product: HttpTypes.AdminProduct }, - Error, + HttpTypes.AdminProductResponse, + FetchError, HttpTypes.AdminCreateProduct > ) => { return useMutation({ - mutationFn: (payload: HttpTypes.AdminCreateProduct) => - sdk.admin.product.create(payload), - onSuccess: (data: any, variables: any, context: any) => { + mutationFn: (payload) => sdk.admin.product.create(payload), + onSuccess: (data, variables, context) => { queryClient.invalidateQueries({ queryKey: productsQueryKeys.lists() }) // if `manage_inventory` is true on created variants that will create inventory items automatically queryClient.invalidateQueries({ @@ -290,12 +289,15 @@ export const useCreateProduct = ( export const useUpdateProduct = ( id: string, - options?: UseMutationOptions + options?: UseMutationOptions< + HttpTypes.AdminProductResponse, + FetchError, + HttpTypes.AdminUpdateProduct + > ) => { return useMutation({ - mutationFn: (payload: HttpTypes.AdminUpdateProduct) => - sdk.admin.product.update(id, payload), - onSuccess: (data: any, variables: any, context: any) => { + mutationFn: (payload) => sdk.admin.product.update(id, payload), + onSuccess: (data, variables, context) => { queryClient.invalidateQueries({ queryKey: productsQueryKeys.lists() }) queryClient.invalidateQueries({ queryKey: productsQueryKeys.detail(id) }) @@ -309,7 +311,7 @@ export const useDeleteProduct = ( id: string, options?: UseMutationOptions< HttpTypes.AdminProductDeleteResponse, - Error, + FetchError, void > ) => { diff --git a/packages/admin-next/dashboard/src/i18n/translations/en.json b/packages/admin-next/dashboard/src/i18n/translations/en.json index 2a62353e5a2ca..ff9e7353628cb 100644 --- a/packages/admin-next/dashboard/src/i18n/translations/en.json +++ b/packages/admin-next/dashboard/src/i18n/translations/en.json @@ -62,6 +62,30 @@ "description": "View the JSON data for this object." } }, + "metadata": { + "header": "Metadata", + "numberOfKeys_one": "{{count}} key", + "numberOfKeys_other": "{{count}} keys", + "edit": { + "header": "Edit Metadata", + "description": "Edit the metadata for this object.", + "successToast": "Metadata was successfully updated.", + "actions": { + "insertRowAbove": "Insert row above", + "insertRowBelow": "Insert row below", + "deleteRow": "Delete row" + }, + "labels": { + "key": "Key", + "value": "Value" + }, + "complexRow": { + "label": "Some rows are disabled", + "description": "This object contains non-primitive metadata, such as arrays or objects, that can't be edited here. To edit the disabled rows, use the API directly.", + "tooltip": "This row is disabled because it contains non-primitive data." + } + } + }, "validation": { "mustBeInt": "The value must be a whole number.", "mustBePositive": "The value must be a positive number." @@ -554,7 +578,7 @@ "reservation": { "header": "Reservation of {{itemName}}", "editItemDetails": "Edit reservation", - "orderID": "Order ID", + "lineItemId": "Line item ID", "description": "Description", "location": "Location", "inStockAtLocation": "In stock at this location", @@ -741,6 +765,22 @@ "allocatedLabel": "Allocated", "notAllocatedLabel": "Not allocated" }, + "allocateItems": { + "action": "Allocate items", + "title": "Allocate order items", + "locationDescription": "Choose which location you want to allocate from.", + "itemsToAllocate": "Items to allocate", + "itemsToAllocateDesc": "Select the number of items you wish to allocate", + "search": "Search items", + "consistsOf": "Consists of {{num}}x inventory items", + "requires": "Requires {{num}} per variant", + "toast": { + "created": "Items successfully allocated" + }, + "error": { + "quantityNotAllocated": "There are unallocated items." + } + }, "shipment": { "title": "Mark fulfillment shipped", "trackingNumber": "Tracking number", @@ -2031,7 +2071,9 @@ }, "labels": { "productVariant": "Product Variant", - "prices": "Prices" + "prices": "Prices", + "available": "Available", + "inStock": "In stock" }, "fields": { "amount": "Amount", @@ -2047,6 +2089,7 @@ "inventoryItems": "Inventory items", "inventoryItem": "Inventory item", "requiredQuantity": "Required quantity", + "qty": "Qty", "description": "Description", "email": "Email", "password": "Password", @@ -2184,11 +2227,6 @@ "draft": "Draft", "values": "Values" }, - "metadata": { - "warnings": { - "ignoredKeys": "This entities metadata contains complex values that we currently don't support editing through the admin UI. Due to this, the following keys are currently not being displayed: {{keys}}. You can still edit these values using the API." - } - }, "dateTime": { "years_one": "Year", "years_other": "Years", diff --git a/packages/admin-next/dashboard/src/lib/metadata.ts b/packages/admin-next/dashboard/src/lib/metadata.ts deleted file mode 100644 index 1b252f48898da..0000000000000 --- a/packages/admin-next/dashboard/src/lib/metadata.ts +++ /dev/null @@ -1,84 +0,0 @@ -export type MetadataField = { - key: string - value: string - /** - * Is the field provided as initial data - */ - isInitial?: boolean - /** - * Whether the row was deleted - */ - isDeleted?: boolean - /** - * True for initial values that are not primitives - */ - isIgnored?: boolean -} - -const isPrimitive = (value: any): boolean => { - return ( - value === null || - value === undefined || - typeof value === "string" || - typeof value === "number" || - typeof value === "boolean" - ) -} - -/** - * Convert metadata property to an array of form filed values. - */ -export const metadataToFormValues = ( - metadata?: Record | null -): MetadataField[] => { - const data: MetadataField[] = [] - - if (metadata) { - Object.entries(metadata).forEach(([key, value]) => { - data.push({ - key, - value: value as string, - isInitial: true, - isIgnored: !isPrimitive(value), - isDeleted: false, - }) - }) - } - - // DEFAULT field for adding a new metadata record - // it's added here so it's registered as a default value - data.push({ - key: "", - value: "", - isInitial: false, - isIgnored: false, - isDeleted: false, - }) - - return data -} - -/** - * Convert a form fields array to a metadata object - */ -export const formValuesToMetadata = ( - data: MetadataField[] -): Record => { - return data.reduce((acc, { key, value, isDeleted, isIgnored, isInitial }) => { - if (isIgnored) { - acc[key] = value - return acc - } - - if (isDeleted && isInitial) { - acc[key] = "" - return acc - } - - if (key) { - acc[key] = value // TODO: since these are primitives should we parse strings to their primitive format e.g. "123" -> 123 , "true" -> true - } - - return acc - }, {} as Record) -} diff --git a/packages/admin-next/dashboard/src/providers/router-provider/route-map.tsx b/packages/admin-next/dashboard/src/providers/router-provider/route-map.tsx index 0dac6873f8eb9..21a05636efde6 100644 --- a/packages/admin-next/dashboard/src/providers/router-provider/route-map.tsx +++ b/packages/admin-next/dashboard/src/providers/router-provider/route-map.tsx @@ -114,6 +114,11 @@ export const RouteMap: RouteObject[] = [ lazy: () => import("../../routes/products/product-create-variant"), }, + { + path: "metadata/edit", + lazy: () => + import("../../routes/products/product-metadata"), + }, ], }, { @@ -212,6 +217,11 @@ export const RouteMap: RouteObject[] = [ lazy: () => import("../../routes/orders/order-create-fulfillment"), }, + { + path: "allocate-items", + lazy: () => + import("../../routes/orders/order-allocate-items"), + }, { path: ":f_id/create-shipment", lazy: () => @@ -427,6 +437,11 @@ export const RouteMap: RouteObject[] = [ "../../routes/customers/customers-add-customer-group" ), }, + { + path: "metadata/edit", + lazy: () => + import("../../routes/customers/customer-metadata"), + }, ], }, ], @@ -475,6 +490,13 @@ export const RouteMap: RouteObject[] = [ "../../routes/customer-groups/customer-group-add-customers" ), }, + { + path: "metadata/edit", + lazy: () => + import( + "../../routes/customer-groups/customer-group-metadata" + ), + }, ], }, ], diff --git a/packages/admin-next/dashboard/src/routes/customer-groups/customer-group-detail/customer-group-detail.tsx b/packages/admin-next/dashboard/src/routes/customer-groups/customer-group-detail/customer-group-detail.tsx index 2b8cd46464757..71917054151d9 100644 --- a/packages/admin-next/dashboard/src/routes/customer-groups/customer-group-detail/customer-group-detail.tsx +++ b/packages/admin-next/dashboard/src/routes/customer-groups/customer-group-detail/customer-group-detail.tsx @@ -1,6 +1,6 @@ -import { Outlet, useLoaderData, useParams } from "react-router-dom" +import { useLoaderData, useParams } from "react-router-dom" -import { JsonViewSection } from "../../../components/common/json-view-section" +import { SingleColumnPage } from "../../../components/layout/pages" import { useCustomerGroup } from "../../../hooks/api/customer-groups" import { CustomerGroupCustomerSection } from "./components/customer-group-customer-section" import { CustomerGroupGeneralSection } from "./components/customer-group-general-section" @@ -8,6 +8,7 @@ import { customerGroupLoader } from "./loader" import after from "virtual:medusa/widgets/customer_group/details/after" import before from "virtual:medusa/widgets/customer_group/details/before" +import { SingleColumnPageSkeleton } from "../../../components/common/skeleton" export const CustomerGroupDetail = () => { const initialData = useLoaderData() as Awaited< @@ -24,7 +25,7 @@ export const CustomerGroupDetail = () => { ) if (isLoading || !customer_group) { - return
Loading...
+ return } if (isError) { @@ -32,25 +33,17 @@ export const CustomerGroupDetail = () => { } return ( -
- {before.widgets.map((w, i) => { - return ( -
- -
- ) - })} + - {after.widgets.map((w, i) => { - return ( -
- -
- ) - })} - - -
+ ) } diff --git a/packages/admin-next/dashboard/src/routes/customer-groups/customer-group-metadata/customer-metadata.tsx b/packages/admin-next/dashboard/src/routes/customer-groups/customer-group-metadata/customer-metadata.tsx new file mode 100644 index 0000000000000..375a39468f2ba --- /dev/null +++ b/packages/admin-next/dashboard/src/routes/customer-groups/customer-group-metadata/customer-metadata.tsx @@ -0,0 +1,26 @@ +import { useParams } from "react-router-dom" +import { MetadataForm } from "../../../components/forms/metadata-form" +import { + useCustomerGroup, + useUpdateCustomerGroup, +} from "../../../hooks/api/customer-groups" + +export const CustomerGroupMetadata = () => { + const { id } = useParams() + + const { customer_group, isPending, isError, error } = useCustomerGroup(id!) + const { mutateAsync, isPending: isMutating } = useUpdateCustomerGroup(id!) + + if (isError) { + throw error + } + + return ( + + ) +} diff --git a/packages/admin-next/dashboard/src/routes/customer-groups/customer-group-metadata/index.ts b/packages/admin-next/dashboard/src/routes/customer-groups/customer-group-metadata/index.ts new file mode 100644 index 0000000000000..f61cc95629a4d --- /dev/null +++ b/packages/admin-next/dashboard/src/routes/customer-groups/customer-group-metadata/index.ts @@ -0,0 +1 @@ +export { CustomerGroupMetadata as Component } from "./customer-metadata" diff --git a/packages/admin-next/dashboard/src/routes/customers/customer-detail/customer-detail.tsx b/packages/admin-next/dashboard/src/routes/customers/customer-detail/customer-detail.tsx index 6a5575f6b7d00..6c13fe989cc93 100644 --- a/packages/admin-next/dashboard/src/routes/customers/customer-detail/customer-detail.tsx +++ b/packages/admin-next/dashboard/src/routes/customers/customer-detail/customer-detail.tsx @@ -1,6 +1,7 @@ -import { Outlet, useLoaderData, useParams } from "react-router-dom" +import { useLoaderData, useParams } from "react-router-dom" -import { JsonViewSection } from "../../../components/common/json-view-section" +import { SingleColumnPageSkeleton } from "../../../components/common/skeleton" +import { SingleColumnPage } from "../../../components/layout/pages" import { useCustomer } from "../../../hooks/api/customers" import { CustomerGeneralSection } from "./components/customer-general-section" import { CustomerGroupSection } from "./components/customer-group-section" @@ -20,7 +21,7 @@ export const CustomerDetail = () => { }) if (isLoading || !customer) { - return
Loading...
+ return } if (isError) { @@ -28,28 +29,21 @@ export const CustomerDetail = () => { } return ( -
- {before.widgets.map((w, i) => { - return ( -
- -
- ) - })} + {/* // TODO: re-add when order endpoints are added to api-v2 */} - {after.widgets.map((w, i) => { - return ( -
- -
- ) - })} - - -
+ ) } diff --git a/packages/admin-next/dashboard/src/routes/customers/customer-edit/components/edit-customer-form/edit-customer-form.tsx b/packages/admin-next/dashboard/src/routes/customers/customer-edit/components/edit-customer-form/edit-customer-form.tsx index bf4fe3ebc3510..7637ed13c0c48 100644 --- a/packages/admin-next/dashboard/src/routes/customers/customer-edit/components/edit-customer-form/edit-customer-form.tsx +++ b/packages/admin-next/dashboard/src/routes/customers/customer-edit/components/edit-customer-form/edit-customer-form.tsx @@ -6,17 +6,11 @@ import { useTranslation } from "react-i18next" import * as zod from "zod" import { ConditionalTooltip } from "../../../../../components/common/conditional-tooltip/index.ts" import { Form } from "../../../../../components/common/form/index.ts" -import { Metadata } from "../../../../../components/forms/metadata/index.ts" import { RouteDrawer, useRouteModal, } from "../../../../../components/modals/index.ts" import { useUpdateCustomer } from "../../../../../hooks/api/customers.tsx" -import { - formValuesToMetadata, - metadataToFormValues, -} from "../../../../../lib/metadata.ts" -import { metadataFormSchema } from "../../../../../lib/validation.ts" type EditCustomerFormProps = { customer: HttpTypes.AdminCustomer @@ -28,7 +22,6 @@ const EditCustomerSchema = zod.object({ last_name: zod.string().optional(), company_name: zod.string().optional(), phone: zod.string().optional(), - metadata: metadataFormSchema, }) export const EditCustomerForm = ({ customer }: EditCustomerFormProps) => { @@ -42,7 +35,6 @@ export const EditCustomerForm = ({ customer }: EditCustomerFormProps) => { last_name: customer.last_name || "", company_name: customer.company_name || "", phone: customer.phone || "", - metadata: metadataToFormValues(customer.metadata), }, resolver: zodResolver(EditCustomerSchema), }) @@ -57,7 +49,6 @@ export const EditCustomerForm = ({ customer }: EditCustomerFormProps) => { last_name: data.last_name || null, phone: data.phone || null, company_name: data.company_name || null, - metadata: formValuesToMetadata(data.metadata), }, { onSuccess: ({ customer }) => { @@ -161,7 +152,6 @@ export const EditCustomerForm = ({ customer }: EditCustomerFormProps) => { ) }} /> -
diff --git a/packages/admin-next/dashboard/src/routes/customers/customer-metadata/customer-metadata.tsx b/packages/admin-next/dashboard/src/routes/customers/customer-metadata/customer-metadata.tsx new file mode 100644 index 0000000000000..b66036e083ccf --- /dev/null +++ b/packages/admin-next/dashboard/src/routes/customers/customer-metadata/customer-metadata.tsx @@ -0,0 +1,23 @@ +import { useParams } from "react-router-dom" +import { MetadataForm } from "../../../components/forms/metadata-form" +import { useCustomer, useUpdateCustomer } from "../../../hooks/api/customers" + +export const CustomerMetadata = () => { + const { id } = useParams() + + const { customer, isPending, isError, error } = useCustomer(id!) + const { mutateAsync, isPending: isMutating } = useUpdateCustomer(id!) + + if (isError) { + throw error + } + + return ( + + ) +} diff --git a/packages/admin-next/dashboard/src/routes/customers/customer-metadata/index.ts b/packages/admin-next/dashboard/src/routes/customers/customer-metadata/index.ts new file mode 100644 index 0000000000000..738d499801f2b --- /dev/null +++ b/packages/admin-next/dashboard/src/routes/customers/customer-metadata/index.ts @@ -0,0 +1 @@ +export { CustomerMetadata as Component } from "./customer-metadata" diff --git a/packages/admin-next/dashboard/src/routes/inventory/inventory-detail/components/inventory-item-general-section.tsx b/packages/admin-next/dashboard/src/routes/inventory/inventory-detail/components/inventory-item-general-section.tsx index a6aa2e7d7f4fc..67b8fdb0f0632 100644 --- a/packages/admin-next/dashboard/src/routes/inventory/inventory-detail/components/inventory-item-general-section.tsx +++ b/packages/admin-next/dashboard/src/routes/inventory/inventory-detail/components/inventory-item-general-section.tsx @@ -1,13 +1,13 @@ import { Container, Heading } from "@medusajs/ui" +import { AdminInventoryItemResponse } from "@medusajs/types" import { ActionMenu } from "../../../../components/common/action-menu" -import { InventoryItemRes } from "../../../../types/api-responses" import { PencilSquare } from "@medusajs/icons" import { SectionRow } from "../../../../components/common/section" import { useTranslation } from "react-i18next" type InventoryItemGeneralSectionProps = { - inventoryItem: InventoryItemRes["inventory_item"] + inventoryItem: AdminInventoryItemResponse["inventory_item"] } export const InventoryItemGeneralSection = ({ inventoryItem, diff --git a/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/components/order-create-fulfillment-form/constants.ts b/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/components/order-create-fulfillment-form/constants.ts new file mode 100644 index 0000000000000..73f62339c88f3 --- /dev/null +++ b/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/components/order-create-fulfillment-form/constants.ts @@ -0,0 +1,6 @@ +import { z } from "zod" + +export const AllocateItemsSchema = z.object({ + location_id: z.string(), + quantity: z.record(z.string(), z.number().or(z.string())), +}) diff --git a/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/components/order-create-fulfillment-form/index.ts b/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/components/order-create-fulfillment-form/index.ts new file mode 100644 index 0000000000000..779dd5dade1b5 --- /dev/null +++ b/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/components/order-create-fulfillment-form/index.ts @@ -0,0 +1 @@ +export * from "./order-allocate-items-form" diff --git a/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/components/order-create-fulfillment-form/order-allocate-items-form.tsx b/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/components/order-create-fulfillment-form/order-allocate-items-form.tsx new file mode 100644 index 0000000000000..ed16d857c226b --- /dev/null +++ b/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/components/order-create-fulfillment-form/order-allocate-items-form.tsx @@ -0,0 +1,330 @@ +import { zodResolver } from "@hookform/resolvers/zod" +import { useEffect, useMemo, useState } from "react" +import { useTranslation } from "react-i18next" +import * as zod from "zod" + +import { AdminOrder, InventoryItemDTO, OrderLineItemDTO } from "@medusajs/types" +import { Alert, Button, Heading, Input, Select, toast } from "@medusajs/ui" +import { useForm, useWatch } from "react-hook-form" + +import { + RouteFocusModal, + useRouteModal, +} from "../../../../../components/modals" +import { Form } from "../../../../../components/common/form" +import { useStockLocations } from "../../../../../hooks/api/stock-locations" +import { useCreateReservationItem } from "../../../../../hooks/api/reservations" +import { OrderAllocateItemsItem } from "./order-allocate-items-item" +import { AllocateItemsSchema } from "./constants" +import { queryClient } from "../../../../../lib/query-client" +import { ordersQueryKeys } from "../../../../../hooks/api/orders" + +type OrderAllocateItemsFormProps = { + order: AdminOrder +} + +export function OrderAllocateItemsForm({ order }: OrderAllocateItemsFormProps) { + const { t } = useTranslation() + const { handleSuccess } = useRouteModal() + + const [disableSubmit, setDisableSubmit] = useState(false) + const [filterTerm, setFilterTerm] = useState("") + + const { mutateAsync: allocateItems, isPending: isMutating } = + useCreateReservationItem() + + const itemsToAllocate = useMemo( + () => + order.items.filter( + (item) => + item.variant.manage_inventory && + item.variant.inventory.length && + item.quantity - item.detail.fulfilled_quantity > 0 + ), + [order.items] + ) + + const filteredItems = useMemo(() => { + return itemsToAllocate.filter( + (i) => + i.variant.title.toLowerCase().includes(filterTerm) || + i.variant.product.title.toLowerCase().includes(filterTerm) + ) + }, [itemsToAllocate, filterTerm]) + + // TODO - empty state UI + const noItemsToAllocate = !itemsToAllocate.length + + const form = useForm>({ + defaultValues: { + location_id: "", + quantity: defaultAllocations(itemsToAllocate), + }, + resolver: zodResolver(AllocateItemsSchema), + }) + + const { stock_locations = [] } = useStockLocations() + + const handleSubmit = form.handleSubmit(async (data) => { + try { + const payload = Object.entries(data.quantity) + .filter(([key]) => !key.endsWith("-")) + .map(([key, quantity]) => [...key.split("-"), quantity]) + + if (payload.some((d) => d[2] === "")) { + form.setError("root.quantityNotAllocated", { + type: "manual", + message: t("orders.allocateItems.error.quantityNotAllocated"), + }) + + return + } + + const promises = payload.map(([itemId, inventoryId, quantity]) => + allocateItems({ + location_id: data.location_id, + inventory_item_id: inventoryId, + line_item_id: itemId, + quantity, + }) + ) + + /** + * TODO: we should have bulk endpoint for this so this is executed in a workflow and can be reverted + */ + await Promise.all(promises) + + // invalidate order details so we get new item.variant.inventory items + await queryClient.invalidateQueries({ + queryKey: ordersQueryKeys.details(), + }) + + handleSuccess(`/orders/${order.id}`) + + toast.success(t("general.success"), { + description: t("orders.allocateItems.toast.created"), + dismissLabel: t("actions.close"), + }) + } catch (e) { + toast.error(t("general.error"), { + description: e.message, + dismissLabel: t("actions.close"), + }) + } + }) + + const onQuantityChange = ( + inventoryItem: InventoryItemDTO, + lineItem: OrderLineItemDTO, + hasInventoryKit: boolean, + value: number | null, + isRoot?: boolean + ) => { + let shouldDisableSubmit = false + + const key = + isRoot && hasInventoryKit + ? `quantity.${lineItem.id}-` + : `quantity.${lineItem.id}-${inventoryItem.id}` + + form.setValue(key, value) + + if (value) { + const location = inventoryItem.location_levels.find( + (l) => l.location_id === selectedLocationId + ) + if (location) { + if (location.available_quantity < value) { + shouldDisableSubmit = true + } + } + } + + if (hasInventoryKit && !isRoot) { + // changed subitem in the kit -> we need to set parent to "-" + form.resetField(`quantity.${lineItem.id}-`, { defaultValue: "" }) + } + + if (hasInventoryKit && isRoot) { + // changed root -> we need to set items to parent quantity x required_quantity + + const item = itemsToAllocate.find((i) => i.id === lineItem.id) + + item.variant.inventory_items.forEach((ii, ind) => { + const num = value || 0 + const inventory = item.variant.inventory[ind] + + form.setValue( + `quantity.${lineItem.id}-${inventory.id}`, + num * ii.required_quantity + ) + + if (value) { + const location = inventory.location_levels.find( + (l) => l.location_id === selectedLocationId + ) + if (location) { + if (location.available_quantity < value) { + shouldDisableSubmit = true + } + } + } + }) + } + + form.clearErrors("root.quantityNotAllocated") + setDisableSubmit(shouldDisableSubmit) + } + + const selectedLocationId = useWatch({ + name: "location_id", + control: form.control, + }) + + useEffect(() => { + if (selectedLocationId) { + form.setValue("quantity", defaultAllocations(itemsToAllocate)) + } + }, [selectedLocationId]) + + const allocationError = + form.formState.errors?.root?.quantityNotAllocated?.message + + return ( + +
+ +
+ + + + +
+
+ +
+
+
+ {t("orders.allocateItems.title")} +
+ { + return ( + +
+
+ {t("fields.location")} + + {t("orders.allocateItems.locationDescription")} + +
+
+ + + +
+
+ +
+ ) + }} + /> + + +
+
+ + {t("orders.allocateItems.itemsToAllocate")} + + + {t("orders.allocateItems.itemsToAllocateDesc")} + +
+
+ setFilterTerm(e.target.value)} + placeholder={t("orders.allocateItems.search")} + autoComplete="off" + type="search" + /> +
+
+ + {allocationError && ( + + {allocationError} + + )} + +
+ {filteredItems.map((item) => ( + + ))} +
+
+
+
+
+
+
+
+
+ ) +} + +function defaultAllocations(items: OrderLineItemDTO) { + const ret = {} + + items.forEach((item) => { + const hasInventoryKit = item.variant.inventory_items.length > 1 + + ret[ + hasInventoryKit + ? `${item.id}-` + : `${item.id}-${item.variant.inventory[0].id}` + ] = "" + + if (hasInventoryKit) { + item.variant.inventory.forEach((i) => { + ret[`${item.id}-${i.id}`] = "" + }) + } + }) + + return ret +} diff --git a/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/components/order-create-fulfillment-form/order-allocate-items-item.tsx b/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/components/order-create-fulfillment-form/order-allocate-items-item.tsx new file mode 100644 index 0000000000000..bf6c7aa03db62 --- /dev/null +++ b/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/components/order-create-fulfillment-form/order-allocate-items-item.tsx @@ -0,0 +1,348 @@ +import { useMemo, useState } from "react" +import { useTranslation } from "react-i18next" +import { InventoryItemDTO, OrderLineItemDTO } from "@medusajs/types" +import { + Component, + ExclamationCircleSolid, + TriangleDownMini, +} from "@medusajs/icons" +import { UseFormReturn, useWatch } from "react-hook-form" +import { Input, Text, clx } from "@medusajs/ui" +import * as zod from "zod" + +import { Thumbnail } from "../../../../../components/common/thumbnail" +import { getFulfillableQuantity } from "../../../../../lib/order-item" +import { Form } from "../../../../../components/common/form" +import { AllocateItemsSchema } from "./constants" + +type OrderEditItemProps = { + item: OrderLineItemDTO + locationId?: string + form: UseFormReturn> + onQuantityChange: ( + inventoryItem: InventoryItemDTO, + lineItem: OrderLineItemDTO, + hasInventoryKit: boolean, + value: number | null, + isRoot?: boolean + ) => {} +} + +export function OrderAllocateItemsItem({ + item, + form, + locationId, + onQuantityChange, +}: OrderEditItemProps) { + const { t } = useTranslation() + + const variant = item.variant + const inventory = item.variant.inventory + + const [isOpen, setIsOpen] = useState(false) + + const quantityField = useWatch({ + control: form.control, + name: "quantity", + }) + + const hasInventoryKit = + !!variant?.inventory_items.length && variant?.inventory_items.length > 1 + + const { availableQuantity, inStockQuantity } = useMemo(() => { + if (!variant || !locationId) { + return {} + } + + const { inventory } = variant + + const locationInventory = inventory[0]?.location_levels?.find( + (inv) => inv.location_id === locationId + ) + + if (!locationInventory) { + return {} + } + + return { + availableQuantity: locationInventory.available_quantity, + inStockQuantity: locationInventory.stocked_quantity, + } + }, [variant, locationId]) + + const hasQuantityError = + !hasInventoryKit && + availableQuantity && + quantityField[`${item.id}-${item.variant.inventory[0].id}`] && + quantityField[`${item.id}-${item.variant.inventory[0].id}`] > + availableQuantity + + const minValue = 0 + const maxValue = Math.min( + getFulfillableQuantity(item), + availableQuantity || Number.MAX_SAFE_INTEGER + ) + + return ( +
+
+
+
+ {hasQuantityError && ( + + )} + +
+
+ + {item.variant.product.title} + + {item.variant.sku && ( + + {" "} + ({item.variant.sku}) + + )} + {hasInventoryKit && ( + + )} +
+ + {item.title} + +
+
+
+ +
+ {!hasInventoryKit && ( + <> +
+
+ +
+ + {t("labels.available")} + + + {availableQuantity || "-"} + {availableQuantity && + !hasInventoryKit && + quantityField[ + `${item.id}-${item.variant.inventory[0].id}` + ] && ( + + - + { + quantityField[ + `${item.id}-${item.variant.inventory[0].id}` + ] + } + + )} + +
+
+ +
+
+ +
+ + {t("labels.inStock")} + + + {inStockQuantity || "-"} + +
+
+ + )} + +
+
+ +
+ { + return ( + + + { + const val = + e.target.value === "" + ? null + : Number(e.target.value) + + onQuantityChange( + item.variant.inventory[0], + item, + hasInventoryKit, + val, + true + ) + }} + /> + + + ) + }} + />{" "} + / {item.quantity} {t("fields.qty")} +
+
+
+
+ + {hasInventoryKit && ( +
+
setIsOpen((o) => !o)} + className="flex items-center gap-x-2" + > + + + {t("orders.allocateItems.consistsOf", { + num: inventory.length, + })} + +
+
+ )} + + {isOpen && + variant.inventory.map((i, ind) => { + const location = i.location_levels.find( + (l) => l.location_id === locationId + ) + + const hasQuantityError = + !!quantityField[`${item.id}-${i.id}`] && + quantityField[`${item.id}-${i.id}`] > location.available_quantity + + return ( +
+
+ {hasQuantityError && ( + + )} +
+ {i.title} + + {t("orders.allocateItems.requires", { + num: variant.inventory_items[ind].required_quantity, + })} + +
+
+ +
+
+
+ +
+ + {t("labels.available")} + + + {location?.available_quantity || "-"} + {location?.available_quantity && + quantityField[`${item.id}-${i.id}`] && ( + + -{quantityField[`${item.id}-${i.id}`]} + + )} + +
+
+ +
+
+ +
+ + {t("labels.inStock")} + + + {location?.stocked_quantity || "-"} + +
+
+ +
+
+ +
+ { + return ( + + + { + const val = + e.target.value === "" + ? null + : Number(e.target.value) + + onQuantityChange( + i, + item, + hasInventoryKit, + val + ) + }} + /> + + + ) + }} + /> + /{" "} + {item.quantity * + variant.inventory_items[ind].required_quantity}{" "} + {t("fields.qty")} +
+
+
+
+ ) + })} +
+ ) +} diff --git a/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/index.ts b/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/index.ts new file mode 100644 index 0000000000000..cffd2a2c634a6 --- /dev/null +++ b/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/index.ts @@ -0,0 +1 @@ +export { OrderAllocateItems as Component } from "./order-allocate-items" diff --git a/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/order-allocate-items.tsx b/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/order-allocate-items.tsx new file mode 100644 index 0000000000000..4616eccad5a0f --- /dev/null +++ b/packages/admin-next/dashboard/src/routes/orders/order-allocate-items/order-allocate-items.tsx @@ -0,0 +1,26 @@ +import { useParams } from "react-router-dom" + +import { useOrder } from "../../../hooks/api/orders" +import { RouteFocusModal } from "../../../components/modals" +import { OrderAllocateItemsForm } from "./components/order-create-fulfillment-form" + +export function OrderAllocateItems() { + const { id } = useParams() + + const { order, isLoading, isError, error } = useOrder(id!, { + fields: + "currency_code,*items,*items.variant,+items.variant.product.title,*items.variant.inventory,*items.variant.inventory.location_levels,*items.variant.inventory_items,*shipping_address", + }) + + if (isError) { + throw error + } + + const ready = !isLoading && order + + return ( + + {ready && } + + ) +} diff --git a/packages/admin-next/dashboard/src/routes/orders/order-detail/components/order-summary-section/order-summary-section.tsx b/packages/admin-next/dashboard/src/routes/orders/order-detail/components/order-summary-section/order-summary-section.tsx index 2d811b57edf6e..41140d9d87574 100644 --- a/packages/admin-next/dashboard/src/routes/orders/order-detail/components/order-summary-section/order-summary-section.tsx +++ b/packages/admin-next/dashboard/src/routes/orders/order-detail/components/order-summary-section/order-summary-section.tsx @@ -3,8 +3,17 @@ import { OrderLineItemDTO, ReservationItemDTO, } from "@medusajs/types" -import { Container, Copy, Heading, StatusBadge, Text } from "@medusajs/ui" +import { + Button, + Container, + Copy, + Heading, + StatusBadge, + Text, +} from "@medusajs/ui" import { useTranslation } from "react-i18next" +import { useNavigate } from "react-router-dom" +import { useMemo } from "react" import { ActionMenu } from "../../../../../components/common/action-menu" import { Thumbnail } from "../../../../../components/common/thumbnail" @@ -12,18 +21,65 @@ import { getLocaleAmount, getStylizedAmount, } from "../../../../../lib/money-amount-helpers" +import { useReservationItems } from "../../../../../hooks/api/reservations" type OrderSummarySectionProps = { order: AdminOrder } export const OrderSummarySection = ({ order }: OrderSummarySectionProps) => { + const { t } = useTranslation() + const navigate = useNavigate() + + const { reservations } = useReservationItems({ + line_item_id: order.items.map((i) => i.id), + }) + + /** + * Show Allocation button only if there are unfulfilled items that don't have reservations + */ + const showAllocateButton = useMemo(() => { + if (!reservations) { + return false + } + + const reservationsMap = new Map( + reservations.map((r) => [r.line_item_id, r.id]) + ) + + for (const item of order.items) { + // Inventory is managed + if (item.variant?.manage_inventory) { + // There are items that are unfulfilled + if (item.quantity - item.detail.fulfilled_quantity > 0) { + // Reservation for this item doesn't exist + if (!reservationsMap.has(item.id)) { + return true + } + } + } + } + + return false + }, [reservations]) + return (
+ + {showAllocateButton && ( +
+ +
+ )} ) } @@ -71,6 +127,7 @@ const Item = ({ reservation?: ReservationItemDTO | null }) => { const { t } = useTranslation() + const isInventoryManaged = item.variant.manage_inventory return (
- - {reservation - ? t("orders.reservations.allocatedLabel") - : t("orders.reservations.notAllocatedLabel")} - + {isInventoryManaged && ( + + {reservation + ? t("orders.reservations.allocatedLabel") + : t("orders.reservations.notAllocatedLabel")} + + )}
@@ -133,27 +192,23 @@ const Item = ({ } const ItemBreakdown = ({ order }: { order: AdminOrder }) => { - // const { reservations, isError, error } = useAdminReservations({ - // line_item_id: order.items.map((i) => i.id), - // }) - - // if (isError) { - // throw error - // } + const { reservations } = useReservationItems({ + line_item_id: order.items.map((i) => i.id), + }) return (
{order.items.map((item) => { - // const reservation = reservations - // ? reservations.find((r) => r.line_item_id === item.id) - // : null + const reservation = reservations + ? reservations.find((r) => r.line_item_id === item.id) + : null return ( ) })} diff --git a/packages/admin-next/dashboard/src/routes/orders/order-detail/constants.ts b/packages/admin-next/dashboard/src/routes/orders/order-detail/constants.ts index 1ab3ceac181d9..7d2c681563829 100644 --- a/packages/admin-next/dashboard/src/routes/orders/order-detail/constants.ts +++ b/packages/admin-next/dashboard/src/routes/orders/order-detail/constants.ts @@ -18,6 +18,7 @@ const DEFAULT_RELATIONS = [ "*customer", "*items", // -> we get LineItem here with added `quantity` and `detail` which is actually an OrderItem (which is a parent object to LineItem in the DB) "*items.variant.options", + "+items.variant.manage_inventory", "*shipping_address", "*billing_address", "*sales_channel", diff --git a/packages/admin-next/dashboard/src/routes/products/common/variant-pricing-form.tsx b/packages/admin-next/dashboard/src/routes/products/common/variant-pricing-form.tsx index 19380c604467b..b6ab0d98fb767 100644 --- a/packages/admin-next/dashboard/src/routes/products/common/variant-pricing-form.tsx +++ b/packages/admin-next/dashboard/src/routes/products/common/variant-pricing-form.tsx @@ -78,7 +78,9 @@ export const useVariantPriceGridColumns = ({ return (
- {entity.title} + + {entity.title} +
) diff --git a/packages/admin-next/dashboard/src/routes/products/product-create/components/product-create-variants-form/product-create-variants-form.tsx b/packages/admin-next/dashboard/src/routes/products/product-create/components/product-create-variants-form/product-create-variants-form.tsx index e4e7dfd9682a2..02e4812977abd 100644 --- a/packages/admin-next/dashboard/src/routes/products/product-create/components/product-create-variants-form/product-create-variants-form.tsx +++ b/packages/admin-next/dashboard/src/routes/products/product-create/components/product-create-variants-form/product-create-variants-form.tsx @@ -26,6 +26,11 @@ export const ProductCreateVariantsForm = ({ const { price_preferences: pricePreferences } = usePricePreferences({}) + const currencyCodes = useMemo( + () => store?.supported_currencies?.map((c) => c.currency_code) || [], + [store] + ) + const variants = useWatch({ control: form.control, name: "variants", @@ -38,9 +43,12 @@ export const ProductCreateVariantsForm = ({ defaultValue: [], }) + /** + * NOTE: anything that goes to the datagrid component needs to be memoised otherwise DataGrid will rerender and inputs will loose focus + */ const columns = useColumns({ options, - currencies: store?.supported_currencies?.map((c) => c.currency_code) || [], + currencies: currencyCodes, regions, pricePreferences, }) diff --git a/packages/admin-next/dashboard/src/routes/products/product-detail/components/product-variant-section/use-variant-table-columns.tsx b/packages/admin-next/dashboard/src/routes/products/product-detail/components/product-variant-section/use-variant-table-columns.tsx index 9813776ebe013..a07fb7c429563 100644 --- a/packages/admin-next/dashboard/src/routes/products/product-detail/components/product-variant-section/use-variant-table-columns.tsx +++ b/packages/admin-next/dashboard/src/routes/products/product-detail/components/product-variant-section/use-variant-table-columns.tsx @@ -1,9 +1,9 @@ import { Buildings, Component, PencilSquare, Trash } from "@medusajs/icons" -import { Badge, usePrompt, clx } from "@medusajs/ui" -import { createColumnHelper } from "@tanstack/react-table" import { HttpTypes, InventoryItemDTO } from "@medusajs/types" -import { useTranslation } from "react-i18next" +import { Badge, clx, usePrompt } from "@medusajs/ui" +import { createColumnHelper } from "@tanstack/react-table" import { useMemo } from "react" +import { useTranslation } from "react-i18next" import { ActionMenu } from "../../../../../components/common/action-menu" import { PlaceholderCell } from "../../../../../components/table/table-cells/common/placeholder-cell" @@ -128,7 +128,7 @@ export const useProductVariantTableColumns = ( {variantOpt.value} diff --git a/packages/admin-next/dashboard/src/routes/products/product-detail/product-detail.tsx b/packages/admin-next/dashboard/src/routes/products/product-detail/product-detail.tsx index 3e03aba316693..cfec4f335b64b 100644 --- a/packages/admin-next/dashboard/src/routes/products/product-detail/product-detail.tsx +++ b/packages/admin-next/dashboard/src/routes/products/product-detail/product-detail.tsx @@ -1,6 +1,6 @@ -import { Outlet, useLoaderData, useParams } from "react-router-dom" +import { useLoaderData, useParams } from "react-router-dom" -import { JsonViewSection } from "../../../components/common/json-view-section" +import { TwoColumnPage } from "../../../components/layout/pages" import { useProduct } from "../../../hooks/api/products" import { ProductAttributeSection } from "./components/product-attribute-section" import { ProductGeneralSection } from "./components/product-general-section" @@ -16,6 +16,7 @@ import after from "virtual:medusa/widgets/product/details/after" import before from "virtual:medusa/widgets/product/details/before" import sideAfter from "virtual:medusa/widgets/product/details/side/after" import sideBefore from "virtual:medusa/widgets/product/details/side/before" +import { TwoColumnPageSkeleton } from "../../../components/common/skeleton" export const ProductDetail = () => { const initialData = useLoaderData() as Awaited< @@ -32,7 +33,14 @@ export const ProductDetail = () => { ) if (isLoading || !product) { - return
Loading...
+ return ( + + ) } if (isError) { @@ -40,55 +48,28 @@ export const ProductDetail = () => { } return ( -
- {before.widgets.map((w, i) => { - return ( -
- -
- ) - })} -
-
- - - - - {after.widgets.map((w, i) => { - return ( -
- -
- ) - })} -
- -
-
-
- {sideBefore.widgets.map((w, i) => { - return ( -
- -
- ) - })} - - - - {sideAfter.widgets.map((w, i) => { - return ( -
- -
- ) - })} -
- -
-
-
- -
+ + + + + + + + + + + + + ) } diff --git a/packages/admin-next/dashboard/src/routes/products/product-metadata/index.ts b/packages/admin-next/dashboard/src/routes/products/product-metadata/index.ts new file mode 100644 index 0000000000000..4b00b89ba30c0 --- /dev/null +++ b/packages/admin-next/dashboard/src/routes/products/product-metadata/index.ts @@ -0,0 +1 @@ +export { ProductMetadata as Component } from "./product-metadata" diff --git a/packages/admin-next/dashboard/src/routes/products/product-metadata/product-metadata.tsx b/packages/admin-next/dashboard/src/routes/products/product-metadata/product-metadata.tsx new file mode 100644 index 0000000000000..cd15d44ecd255 --- /dev/null +++ b/packages/admin-next/dashboard/src/routes/products/product-metadata/product-metadata.tsx @@ -0,0 +1,24 @@ +import { useParams } from "react-router-dom" +import { MetadataForm } from "../../../components/forms/metadata-form/metadata-form" +import { useProduct, useUpdateProduct } from "../../../hooks/api" + +export const ProductMetadata = () => { + const { id } = useParams() + + const { product, isPending, isError, error } = useProduct(id!) + + const { mutateAsync, isPending: isMutating } = useUpdateProduct(product.id!) + + if (isError) { + throw error + } + + return ( + + ) +} diff --git a/packages/admin-next/dashboard/src/routes/promotions/common/edit-rules/components/rule-value-form-field/rule-value-form-field.tsx b/packages/admin-next/dashboard/src/routes/promotions/common/edit-rules/components/rule-value-form-field/rule-value-form-field.tsx index b4ebb6d65f073..530fb5732b258 100644 --- a/packages/admin-next/dashboard/src/routes/promotions/common/edit-rules/components/rule-value-form-field/rule-value-form-field.tsx +++ b/packages/admin-next/dashboard/src/routes/promotions/common/edit-rules/components/rule-value-form-field/rule-value-form-field.tsx @@ -84,6 +84,7 @@ export const RuleValueFormField = ({ className="bg-ui-bg-base" ref={valuesRef} min={1} + disabled={!fieldRule.attribute} /> @@ -97,6 +98,7 @@ export const RuleValueFormField = ({ {...field} onChange={onChange} className="bg-ui-bg-base" + disabled={!fieldRule.attribute} /> @@ -112,6 +114,7 @@ export const RuleValueFormField = ({ Array.isArray(field.value) ? field.value[0] : field.value } onValueChange={onChange} + disabled={!fieldRule.attribute} > @@ -144,6 +147,7 @@ export const RuleValueFormField = ({ options={options} onChange={onChange} className="bg-ui-bg-base" + disabled={!fieldRule.attribute} /> diff --git a/packages/admin-next/dashboard/src/routes/promotions/common/edit-rules/components/rules-form-field/rules-form-field.tsx b/packages/admin-next/dashboard/src/routes/promotions/common/edit-rules/components/rules-form-field/rules-form-field.tsx index 4d34b82c5c3b6..24fdacdaf1a27 100644 --- a/packages/admin-next/dashboard/src/routes/promotions/common/edit-rules/components/rules-form-field/rules-form-field.tsx +++ b/packages/admin-next/dashboard/src/routes/promotions/common/edit-rules/components/rules-form-field/rules-form-field.tsx @@ -213,7 +213,11 @@ export const RulesFormField = ({ return ( -
{ + const service = container.resolve( + ModuleRegistrationName.ORDER + ) + + const orderClaims = await service.createOrderClaims(data) + + const claimIds = orderClaims.map((claim) => claim.id) + + return new StepResponse(orderClaims, claimIds) + }, + async (claimIds, { container }) => { + if (!claimIds) { + return + } + + const service = container.resolve( + ModuleRegistrationName.ORDER + ) + + await service.deleteOrderClaims(claimIds) + } +) diff --git a/packages/core/core-flows/src/order/steps/create-return.ts b/packages/core/core-flows/src/order/steps/create-complete-return.ts similarity index 70% rename from packages/core/core-flows/src/order/steps/create-return.ts rename to packages/core/core-flows/src/order/steps/create-complete-return.ts index eef5c2b3ecaea..4ca9f58821b4c 100644 --- a/packages/core/core-flows/src/order/steps/create-return.ts +++ b/packages/core/core-flows/src/order/steps/create-complete-return.ts @@ -2,12 +2,12 @@ import { CreateOrderReturnDTO, IOrderModuleService } from "@medusajs/types" import { ModuleRegistrationName } from "@medusajs/utils" import { StepResponse, createStep } from "@medusajs/workflows-sdk" -type CreateReturnStepInput = CreateOrderReturnDTO +type CreateCompleteReturnStepInput = CreateOrderReturnDTO -export const createReturnStepId = "create-return" -export const createReturnStep = createStep( - createReturnStepId, - async (data: CreateReturnStepInput, { container }) => { +export const createCompleteReturnStepId = "create-complete-return" +export const createCompleteReturnStep = createStep( + createCompleteReturnStepId, + async (data: CreateCompleteReturnStepInput, { container }) => { const service = container.resolve( ModuleRegistrationName.ORDER ) diff --git a/packages/core/core-flows/src/order/steps/create-exchanges.ts b/packages/core/core-flows/src/order/steps/create-exchanges.ts new file mode 100644 index 0000000000000..eac3c8ae37380 --- /dev/null +++ b/packages/core/core-flows/src/order/steps/create-exchanges.ts @@ -0,0 +1,32 @@ +import { CreateOrderExchangeDTO, IOrderModuleService } from "@medusajs/types" +import { ModuleRegistrationName } from "@medusajs/utils" +import { StepResponse, createStep } from "@medusajs/workflows-sdk" + +type CreateOrderExchangesStepInput = CreateOrderExchangeDTO[] + +export const createOrderExchangesStepId = "create-order-exchanges" +export const createOrderExchangesStep = createStep( + createOrderExchangesStepId, + async (data: CreateOrderExchangesStepInput, { container }) => { + const service = container.resolve( + ModuleRegistrationName.ORDER + ) + + const orderExchanges = await service.createOrderExchanges(data) + + const exchangeIds = orderExchanges.map((exchange) => exchange.id) + + return new StepResponse(orderExchanges, exchangeIds) + }, + async (exchangeIds, { container }) => { + if (!exchangeIds) { + return + } + + const service = container.resolve( + ModuleRegistrationName.ORDER + ) + + await service.deleteOrderExchanges(exchangeIds) + } +) diff --git a/packages/core/core-flows/src/order/steps/create-order-shipping-methods.ts b/packages/core/core-flows/src/order/steps/create-order-shipping-methods.ts new file mode 100644 index 0000000000000..2394761512b56 --- /dev/null +++ b/packages/core/core-flows/src/order/steps/create-order-shipping-methods.ts @@ -0,0 +1,37 @@ +import { + CreateOrderShippingMethodDTO, + IOrderModuleService, +} from "@medusajs/types" +import { ModuleRegistrationName } from "@medusajs/utils" +import { createStep, StepResponse } from "@medusajs/workflows-sdk" + +interface StepInput { + shipping_methods: CreateOrderShippingMethodDTO[] +} + +export const createOrderShippingMethods = createStep( + "create-order-shipping-methods", + async (input: StepInput, { container }) => { + const service = container.resolve( + ModuleRegistrationName.ORDER + ) + + const created = await service.createShippingMethods(input.shipping_methods) + + return new StepResponse( + created, + created.map((c) => c.id) + ) + }, + async (createdMethodIds, { container }) => { + if (!createdMethodIds) { + return + } + + const service = container.resolve( + ModuleRegistrationName.ORDER + ) + + await service.deleteShippingMethods(createdMethodIds) + } +) diff --git a/packages/core/core-flows/src/order/steps/create-returns.ts b/packages/core/core-flows/src/order/steps/create-returns.ts new file mode 100644 index 0000000000000..4d54c0c14a072 --- /dev/null +++ b/packages/core/core-flows/src/order/steps/create-returns.ts @@ -0,0 +1,32 @@ +import { CreateOrderReturnDTO, IOrderModuleService } from "@medusajs/types" +import { ModuleRegistrationName } from "@medusajs/utils" +import { StepResponse, createStep } from "@medusajs/workflows-sdk" + +type CreateReturnsStepInput = CreateOrderReturnDTO[] + +export const createReturnsStepId = "create-returns" +export const createReturnsStep = createStep( + createReturnsStepId, + async (data: CreateReturnsStepInput, { container }) => { + const service = container.resolve( + ModuleRegistrationName.ORDER + ) + + const orderReturns = await service.createReturns(data) + + const returnIds = orderReturns.map((ret) => ret.id) + + return new StepResponse(orderReturns, returnIds) + }, + async (returnIds, { container }) => { + if (!returnIds) { + return + } + + const service = container.resolve( + ModuleRegistrationName.ORDER + ) + + await service.deleteReturns(returnIds) + } +) diff --git a/packages/core/core-flows/src/order/steps/index.ts b/packages/core/core-flows/src/order/steps/index.ts index d7e3260aad8c9..c6a681f339864 100644 --- a/packages/core/core-flows/src/order/steps/index.ts +++ b/packages/core/core-flows/src/order/steps/index.ts @@ -5,15 +5,21 @@ export * from "./cancel-order-change" export * from "./cancel-orders" export * from "./cancel-return" export * from "./complete-orders" +export * from "./create-claims" +export * from "./create-complete-return" +export * from "./create-exchanges" export * from "./create-order-change" export * from "./create-order-change-actions" export * from "./create-orders" +export * from "./create-returns" export * from "./decline-order-change" export * from "./delete-order-change" export * from "./delete-order-change-actions" export * from "./get-item-tax-lines" +export * from "./preview-order-change" export * from "./register-fulfillment" export * from "./register-shipment" export * from "./set-tax-lines-for-items" export * from "./update-order-change-actions" +export * from "./update-order-exchanges" export * from "./update-tax-lines" diff --git a/packages/core/core-flows/src/order/steps/preview-order-change.ts b/packages/core/core-flows/src/order/steps/preview-order-change.ts new file mode 100644 index 0000000000000..23cc0d23afd20 --- /dev/null +++ b/packages/core/core-flows/src/order/steps/preview-order-change.ts @@ -0,0 +1,17 @@ +import { IOrderModuleService } from "@medusajs/types" +import { ModuleRegistrationName } from "@medusajs/utils" +import { StepResponse, createStep } from "@medusajs/workflows-sdk" + +export const previewOrderChangeStepId = "preview-order-change" +export const previewOrderChangeStep = createStep( + previewOrderChangeStepId, + async (orderId: string, { container }) => { + const service = container.resolve( + ModuleRegistrationName.ORDER + ) + + const preview = await service.previewOrderChange(orderId) + + return new StepResponse(preview) + } +) diff --git a/packages/core/core-flows/src/order/steps/update-order-claims.ts b/packages/core/core-flows/src/order/steps/update-order-claims.ts new file mode 100644 index 0000000000000..23ac9b8277dac --- /dev/null +++ b/packages/core/core-flows/src/order/steps/update-order-claims.ts @@ -0,0 +1,55 @@ +import { IOrderModuleService, UpdateOrderClaimDTO } from "@medusajs/types" +import { + ModuleRegistrationName, + getSelectsAndRelationsFromObjectArray, +} from "@medusajs/utils" +import { StepResponse, createStep } from "@medusajs/workflows-sdk" + +export const updateOrderClaimsStepId = "update-order-claim" +export const updateOrderClaimsStep = createStep( + updateOrderClaimsStepId, + async (data: UpdateOrderClaimDTO[], { container }) => { + const service = container.resolve( + ModuleRegistrationName.ORDER + ) + + const { selects, relations } = getSelectsAndRelationsFromObjectArray(data, { + objectFields: ["metadata"], + }) + const dataBeforeUpdate = await service.listOrderClaims( + { id: data.map((d) => d.id) }, + { relations, select: selects } + ) + + const updated = await service.updateOrderClaims( + data.map((dt) => { + const { id, ...rest } = dt + return { + selector: { id }, + data: rest, + } + }) + ) + + return new StepResponse(updated, dataBeforeUpdate) + }, + async (dataBeforeUpdate, { container }) => { + if (!dataBeforeUpdate?.length) { + return + } + + const service = container.resolve( + ModuleRegistrationName.ORDER + ) + + await service.updateOrderClaims( + dataBeforeUpdate.map((dt) => { + const { id, ...rest } = dt + return { + selector: { id }, + data: rest, + } + }) + ) + } +) diff --git a/packages/core/core-flows/src/order/steps/update-order-exchanges.ts b/packages/core/core-flows/src/order/steps/update-order-exchanges.ts new file mode 100644 index 0000000000000..b949b5d860217 --- /dev/null +++ b/packages/core/core-flows/src/order/steps/update-order-exchanges.ts @@ -0,0 +1,55 @@ +import { IOrderModuleService, UpdateOrderExchangeDTO } from "@medusajs/types" +import { + ModuleRegistrationName, + getSelectsAndRelationsFromObjectArray, +} from "@medusajs/utils" +import { StepResponse, createStep } from "@medusajs/workflows-sdk" + +export const updateOrderExchangesStepId = "update-order-exchange" +export const updateOrderExchangesStep = createStep( + updateOrderExchangesStepId, + async (data: UpdateOrderExchangeDTO[], { container }) => { + const service = container.resolve( + ModuleRegistrationName.ORDER + ) + + const { selects, relations } = getSelectsAndRelationsFromObjectArray(data, { + objectFields: ["metadata"], + }) + const dataBeforeUpdate = await service.listOrderExchanges( + { id: data.map((d) => d.id) }, + { relations, select: selects } + ) + + const updated = await service.updateOrderExchanges( + data.map((dt) => { + const { id, ...rest } = dt + return { + selector: { id }, + data: rest, + } + }) + ) + + return new StepResponse(updated, dataBeforeUpdate) + }, + async (dataBeforeUpdate, { container }) => { + if (!dataBeforeUpdate?.length) { + return + } + + const service = container.resolve( + ModuleRegistrationName.ORDER + ) + + await service.updateOrderExchanges( + dataBeforeUpdate.map((dt) => { + const { id, ...rest } = dt + return { + selector: { id }, + data: rest, + } + }) + ) + } +) diff --git a/packages/core/core-flows/src/order/utils/order-validation.ts b/packages/core/core-flows/src/order/utils/order-validation.ts index 2df92b8c951bd..b544b849131c5 100644 --- a/packages/core/core-flows/src/order/utils/order-validation.ts +++ b/packages/core/core-flows/src/order/utils/order-validation.ts @@ -1,5 +1,15 @@ -import { OrderDTO, OrderWorkflow, ReturnDTO } from "@medusajs/types" -import { MedusaError, OrderStatus, arrayDifference } from "@medusajs/utils" +import { + OrderChangeDTO, + OrderDTO, + OrderWorkflow, + ReturnDTO, +} from "@medusajs/types" +import { + MedusaError, + OrderStatus, + arrayDifference, + isPresent, +} from "@medusajs/utils" export function throwIfOrderIsCancelled({ order }: { order: OrderDTO }) { if (order.status === OrderStatus.CANCELED) { @@ -18,7 +28,7 @@ export function throwIfItemsDoesNotExistsInOrder({ inputItems: OrderWorkflow.CreateOrderFulfillmentWorkflowInput["items"] }) { const orderItemIds = order.items?.map((i) => i.id) ?? [] - const inputItemIds = inputItems.map((i) => i.id) + const inputItemIds = inputItems?.map((i) => i.id) const diff = arrayDifference(inputItemIds, orderItemIds) if (diff.length) { @@ -31,15 +41,38 @@ export function throwIfItemsDoesNotExistsInOrder({ } } -export function throwIfReturnIsCancelled({ - orderReturn, +export function throwIfIsCancelled( + obj: unknown & { id: string; canceled_at?: any }, + type: string +) { + if (obj.canceled_at) { + throw new MedusaError( + MedusaError.Types.INVALID_DATA, + `${type} with id ${obj.id} has been canceled.` + ) + } +} + +export function throwIfOrderChangeIsNotActive({ + orderChange, }: { - orderReturn: ReturnDTO + orderChange: OrderChangeDTO }) { - if (orderReturn.canceled_at) { + if (!isPresent(orderChange)) { + throw new MedusaError( + MedusaError.Types.INVALID_DATA, + `An active Order Change is required to proceed` + ) + } + + if ( + orderChange.canceled_at || + orderChange.confirmed_at || + orderChange.declined_at + ) { throw new MedusaError( MedusaError.Types.INVALID_DATA, - `return with id ${orderReturn.id} has been canceled.` + `Order change ${orderChange?.id} is not active to be modified` ) } } diff --git a/packages/core/core-flows/src/order/workflows/begin-order-claim.ts b/packages/core/core-flows/src/order/workflows/begin-order-claim.ts new file mode 100644 index 0000000000000..c02813f4fc9f5 --- /dev/null +++ b/packages/core/core-flows/src/order/workflows/begin-order-claim.ts @@ -0,0 +1,59 @@ +import { OrderChangeDTO, OrderDTO, OrderWorkflow } from "@medusajs/types" +import { + WorkflowData, + createStep, + createWorkflow, + transform, +} from "@medusajs/workflows-sdk" +import { useRemoteQueryStep } from "../../common" +import { createOrderClaimsStep } from "../steps/create-claims" +import { createOrderChangeStep } from "../steps/create-order-change" +import { throwIfOrderIsCancelled } from "../utils/order-validation" + +const validationStep = createStep( + "begin-claim-order-validation", + async function ({ order }: { order: OrderDTO }) { + throwIfOrderIsCancelled({ order }) + } +) + +export const beginClaimOrderWorkflowId = "begin-claim-order" +export const beginClaimOrderWorkflow = createWorkflow( + beginClaimOrderWorkflowId, + function ( + input: WorkflowData + ): WorkflowData { + const order: OrderDTO = useRemoteQueryStep({ + entry_point: "orders", + fields: ["id", "status"], + variables: { id: input.order_id }, + list: false, + throw_if_key_not_found: true, + }) + + validationStep({ order }) + + const created = createOrderClaimsStep([ + { + type: input.type, + order_id: input.order_id, + metadata: input.metadata, + }, + ]) + + const orderChangeInput = transform( + { created, input }, + ({ created, input }) => { + return { + change_type: "claim" as const, + order_id: input.order_id, + claim_id: created[0].id, + created_by: input.created_by, + description: input.description, + internal_note: input.internal_note, + } + } + ) + return createOrderChangeStep(orderChangeInput) + } +) diff --git a/packages/core/core-flows/src/order/workflows/begin-order-exchange.ts b/packages/core/core-flows/src/order/workflows/begin-order-exchange.ts new file mode 100644 index 0000000000000..45183b15233aa --- /dev/null +++ b/packages/core/core-flows/src/order/workflows/begin-order-exchange.ts @@ -0,0 +1,58 @@ +import { OrderChangeDTO, OrderDTO, OrderWorkflow } from "@medusajs/types" +import { + WorkflowData, + createStep, + createWorkflow, + transform, +} from "@medusajs/workflows-sdk" +import { useRemoteQueryStep } from "../../common" +import { createOrderExchangesStep } from "../steps/create-exchanges" +import { createOrderChangeStep } from "../steps/create-order-change" +import { throwIfOrderIsCancelled } from "../utils/order-validation" + +const validationStep = createStep( + "begin-exchange-order-validation", + async function ({ order }: { order: OrderDTO }) { + throwIfOrderIsCancelled({ order }) + } +) + +export const beginExchangeOrderWorkflowId = "begin-exchange-order" +export const beginExchangeOrderWorkflow = createWorkflow( + beginExchangeOrderWorkflowId, + function ( + input: WorkflowData + ): WorkflowData { + const order: OrderDTO = useRemoteQueryStep({ + entry_point: "orders", + fields: ["id", "status"], + variables: { id: input.order_id }, + list: false, + throw_if_key_not_found: true, + }) + + validationStep({ order }) + + const created = createOrderExchangesStep([ + { + order_id: input.order_id, + metadata: input.metadata, + }, + ]) + + const orderChangeInput = transform( + { created, input }, + ({ created, input }) => { + return { + change_type: "exchange" as const, + order_id: input.order_id, + exchange_id: created[0].id, + created_by: input.created_by, + description: input.description, + internal_note: input.internal_note, + } + } + ) + return createOrderChangeStep(orderChangeInput) + } +) diff --git a/packages/core/core-flows/src/order/workflows/begin-return.ts b/packages/core/core-flows/src/order/workflows/begin-return.ts new file mode 100644 index 0000000000000..3d4629bee3d89 --- /dev/null +++ b/packages/core/core-flows/src/order/workflows/begin-return.ts @@ -0,0 +1,58 @@ +import { OrderChangeDTO, OrderDTO, OrderWorkflow } from "@medusajs/types" +import { + WorkflowData, + createStep, + createWorkflow, + transform, +} from "@medusajs/workflows-sdk" +import { useRemoteQueryStep } from "../../common" +import { createOrderChangeStep } from "../steps/create-order-change" +import { createReturnsStep } from "../steps/create-returns" +import { throwIfOrderIsCancelled } from "../utils/order-validation" + +const validationStep = createStep( + "begin-return-order-validation", + async function ({ order }: { order: OrderDTO }) { + throwIfOrderIsCancelled({ order }) + } +) + +export const beginReturnOrderWorkflowId = "begin-return-order" +export const beginReturnOrderWorkflow = createWorkflow( + beginReturnOrderWorkflowId, + function ( + input: WorkflowData + ): WorkflowData { + const order: OrderDTO = useRemoteQueryStep({ + entry_point: "orders", + fields: ["id", "status"], + variables: { id: input.order_id }, + list: false, + throw_if_key_not_found: true, + }) + + validationStep({ order }) + + const created = createReturnsStep([ + { + order_id: input.order_id, + metadata: input.metadata, + }, + ]) + + const orderChangeInput = transform( + { created, input }, + ({ created, input }) => { + return { + change_type: "return" as const, + order_id: input.order_id, + return_id: created[0].id, + created_by: input.created_by, + description: input.description, + internal_note: input.internal_note, + } + } + ) + return createOrderChangeStep(orderChangeInput) + } +) diff --git a/packages/core/core-flows/src/order/workflows/cancel-return.ts b/packages/core/core-flows/src/order/workflows/cancel-return.ts index 332213642dd5f..f0f82f39e9a2f 100644 --- a/packages/core/core-flows/src/order/workflows/cancel-return.ts +++ b/packages/core/core-flows/src/order/workflows/cancel-return.ts @@ -12,7 +12,7 @@ import { } from "@medusajs/workflows-sdk" import { useRemoteQueryStep } from "../../common" import { cancelOrderReturnStep } from "../steps" -import { throwIfReturnIsCancelled } from "../utils/order-validation" +import { throwIfIsCancelled } from "../utils/order-validation" const validateOrder = createStep( "validate-return", @@ -27,7 +27,7 @@ const validateOrder = createStep( fulfillments: FulfillmentDTO[] } - throwIfReturnIsCancelled({ orderReturn }) + throwIfIsCancelled(orderReturn, "Return") const throwErrorIf = ( arr: unknown[], diff --git a/packages/core/core-flows/src/order/workflows/claim-request-item-return.ts b/packages/core/core-flows/src/order/workflows/claim-request-item-return.ts new file mode 100644 index 0000000000000..41991259b55d4 --- /dev/null +++ b/packages/core/core-flows/src/order/workflows/claim-request-item-return.ts @@ -0,0 +1,163 @@ +import { + OrderChangeDTO, + OrderClaimDTO, + OrderDTO, + OrderWorkflow, + ReturnDTO, +} from "@medusajs/types" +import { ChangeActionType } from "@medusajs/utils" +import { + WorkflowData, + createStep, + createWorkflow, + transform, + when, +} from "@medusajs/workflows-sdk" +import { useRemoteQueryStep } from "../../common" +import { createOrderChangeActionsStep } from "../steps/create-order-change-actions" +import { createReturnsStep } from "../steps/create-returns" +import { previewOrderChangeStep } from "../steps/preview-order-change" +import { updateOrderClaimsStep } from "../steps/update-order-claims" +import { + throwIfIsCancelled, + throwIfItemsDoesNotExistsInOrder, + throwIfOrderChangeIsNotActive, + throwIfOrderIsCancelled, +} from "../utils/order-validation" + +const validationStep = createStep( + "claim-request-item-return-validation", + async function ({ + order, + orderChange, + orderReturn, + orderClaim, + items, + }: { + order: OrderDTO + orderReturn: ReturnDTO + orderClaim: OrderClaimDTO + orderChange: OrderChangeDTO + items: OrderWorkflow.OrderClaimRequestItemReturnWorkflowInput["items"] + }) { + throwIfOrderIsCancelled({ order }) + throwIfIsCancelled(orderClaim, "Claim") + throwIfIsCancelled(orderReturn, "Return") + throwIfOrderChangeIsNotActive({ orderChange }) + throwIfItemsDoesNotExistsInOrder({ order, inputItems: items }) + } +) + +export const orderClaimRequestItemReturnWorkflowId = "claim-request-item-return" +export const orderClaimRequestItemReturnWorkflow = createWorkflow( + orderClaimRequestItemReturnWorkflowId, + function ( + input: WorkflowData + ): WorkflowData { + const orderClaim = useRemoteQueryStep({ + entry_point: "order_claim", + fields: ["id", "order_id", "return_id"], + variables: { id: input.claim_id }, + list: false, + throw_if_key_not_found: true, + }).config({ name: "claim-query" }) + + const existingOrderReturn = when({ orderClaim }, ({ orderClaim }) => { + return orderClaim.return_id + }).then(() => { + return useRemoteQueryStep({ + entry_point: "return", + fields: ["id", "status", "order_id"], + variables: { id: orderClaim.return_id }, + list: false, + throw_if_key_not_found: true, + }).config({ name: "return-query" }) as ReturnDTO + }) + + const createdReturn = when({ orderClaim }, ({ orderClaim }) => { + return !orderClaim.return_id + }).then(() => { + return createReturnsStep([ + { + order_id: orderClaim.order_id, + claim_id: orderClaim.id, + }, + ]) + }) + + const orderReturn: ReturnDTO = transform( + { createdReturn, existingOrderReturn, orderClaim }, + ({ createdReturn, existingOrderReturn, orderClaim }) => { + return existingOrderReturn ?? (createdReturn[0] as ReturnDTO) + } + ) + + const order: OrderDTO = useRemoteQueryStep({ + entry_point: "orders", + fields: ["id", "status", "items.*"], + variables: { id: orderClaim.order_id }, + list: false, + throw_if_key_not_found: true, + }).config({ name: "order-query" }) + + const orderChange: OrderChangeDTO = useRemoteQueryStep({ + entry_point: "order_change", + fields: ["id", "status"], + variables: { order_id: orderClaim.order_id }, + list: false, + }).config({ name: "order-change-query" }) + + validationStep({ + order, + items: input.items, + orderClaim, + orderReturn, + orderChange, + }) + + when({ orderClaim }, ({ orderClaim }) => { + return !orderClaim.return_id + }).then(() => { + const createdReturnId = transform( + { createdReturn }, + ({ createdReturn }) => { + return createdReturn[0]!.id + } + ) + updateOrderClaimsStep([ + { + id: orderClaim.id, + return_id: createdReturnId, + }, + ]) + }) + + const orderChangeActionInput = transform( + { order, orderChange, orderClaim, orderReturn, items: input.items }, + ({ order, orderChange, orderClaim, orderReturn, items }) => { + return items.map((item) => ({ + order_change_id: orderChange.id, + order_id: order.id, + claim_id: orderClaim.id, + return_id: orderReturn.id, + version: orderChange.version, + action: ChangeActionType.RETURN_ITEM, + internal_note: item.internal_note, + reference: "return", + reference_id: orderReturn.id, + details: { + reference_id: item.id, + claim_id: orderClaim.id, + return_id: orderReturn.id, + quantity: item.quantity, + metadata: item.metadata, + }, + })) + } + ) + + createOrderChangeActionsStep(orderChangeActionInput) + + return previewOrderChangeStep(orderClaim.order_id) + } +) diff --git a/packages/core/core-flows/src/order/workflows/create-complete-return.ts b/packages/core/core-flows/src/order/workflows/create-complete-return.ts index 23ff38e5fc5c0..a421fbe5d016d 100644 --- a/packages/core/core-flows/src/order/workflows/create-complete-return.ts +++ b/packages/core/core-flows/src/order/workflows/create-complete-return.ts @@ -25,7 +25,7 @@ import { } from "@medusajs/workflows-sdk" import { createRemoteLinkStep, useRemoteQueryStep } from "../../common" import { createReturnFulfillmentWorkflow } from "../../fulfillment" -import { createReturnStep } from "../steps/create-return" +import { createCompleteReturnStep } from "../steps/create-complete-return" import { receiveReturnStep } from "../steps/receive-return" import { throwIfItemsDoesNotExistsInOrder, @@ -273,6 +273,13 @@ const validationStep = createStep( }, context ) { + if (!input.items) { + throw new MedusaError( + MedusaError.Types.INVALID_DATA, + `Items are required to create a return.` + ) + } + throwIfOrderIsCancelled({ order }) throwIfItemsDoesNotExistsInOrder({ order, inputItems: input.items }) await validateReturnReasons( @@ -359,7 +366,7 @@ export const createAndCompleteReturnOrderWorkflow = createWorkflow( ) const [returnCreated] = parallelize( - createReturnStep({ + createCompleteReturnStep({ order_id: input.order_id, items: input.items, shipping_method: shippingMethodData, diff --git a/packages/core/core-flows/src/order/workflows/create-return-shipping-method.ts b/packages/core/core-flows/src/order/workflows/create-return-shipping-method.ts new file mode 100644 index 0000000000000..50b7cffa57ffd --- /dev/null +++ b/packages/core/core-flows/src/order/workflows/create-return-shipping-method.ts @@ -0,0 +1,138 @@ +import { + BigNumberInput, + OrderChangeDTO, + OrderDTO, + ReturnDTO, +} from "@medusajs/types" +import { ChangeActionType } from "@medusajs/utils" +import { + createStep, + createWorkflow, + transform, + WorkflowData, +} from "@medusajs/workflows-sdk" +import { useRemoteQueryStep } from "../../common" +import { createOrderChangeActionsStep } from "../steps/create-order-change-actions" +import { createOrderShippingMethods } from "../steps/create-order-shipping-methods" +import { + throwIfIsCancelled, + throwIfOrderChangeIsNotActive +} from "../utils/order-validation" + +const validationStep = createStep( + "validate-create-return-shipping-method", + async function ({ + order, + orderChange, + orderReturn, + }: { + order: OrderDTO + orderReturn: ReturnDTO + orderChange: OrderChangeDTO + }) { + throwIfIsCancelled(order, "Order") + throwIfIsCancelled(orderReturn, "Return") + throwIfOrderChangeIsNotActive({ orderChange }) + } +) + +export const createReturnShippingMethodWorkflowId = + "create-return-shipping-method" +export const createReturnShippingMethodWorkflow = createWorkflow( + createReturnShippingMethodWorkflowId, + function (input: { + returnId: string + shippingOptionId: string + customShippingPrice?: BigNumberInput + }): WorkflowData { + const orderReturn: ReturnDTO = useRemoteQueryStep({ + entry_point: "return", + fields: ["id", "status", "order_id"], + variables: { id: input.returnId }, + list: false, + throw_if_key_not_found: true, + }) + + const order: OrderDTO = useRemoteQueryStep({ + entry_point: "orders", + fields: ["id", "status", "currency_code"], + variables: { id: orderReturn.order_id }, + list: false, + throw_if_key_not_found: true, + }).config({ name: "order-query" }) + + const shippingOptions = useRemoteQueryStep({ + entry_point: "shipping_option", + fields: [ + "id", + "name", + "calculated_price.calculated_amount", + "calculated_price.is_calculated_price_tax_inclusive", + ], + variables: { + id: input.shippingOptionId, + calculated_price: { + context: { currency_code: order.currency_code }, + }, + }, + }).config({ name: "fetch-shipping-option" }) + + const shippingMethodInput = transform( + { orderReturn, shippingOptions }, + (data) => { + const option = data.shippingOptions[0] + + return { + shipping_option_id: option.id, + amount: option.calculated_price.calculated_amount, + is_tax_inclusive: + !!option.calculated_price.is_calculated_price_tax_inclusive, + data: option.data ?? {}, + name: option.name, + order_id: data.orderReturn.order_id, + return_id: data.orderReturn.id, + } + } + ) + + const createdMethods = createOrderShippingMethods({ + shipping_methods: [shippingMethodInput], + }) + + const orderChange: OrderChangeDTO = useRemoteQueryStep({ + entry_point: "order_change", + fields: ["id", "status"], + variables: { order_id: orderReturn.order_id }, + list: false, + }).config({ name: "order-change-query" }) + + validationStep({ order, orderReturn, orderChange }) + + const orderChangeActionInput = transform( + { + orderId: order.id, + returnId: orderReturn.id, + shippingOption: shippingOptions[0], + methodId: createdMethods[0].id, + customPrice: input.customShippingPrice, + }, + ({ shippingOption, returnId, orderId, methodId, customPrice }) => { + const methodPrice = + customPrice ?? shippingOption.calculated_price.calculated_amount + + return { + action: ChangeActionType.SHIPPING_ADD, + reference: "order_shipping_method", + reference_id: methodId, + amount: methodPrice, + details: { + order_id: orderId, + return_id: returnId, + }, + } + } + ) + + return createOrderChangeActionsStep([orderChangeActionInput]) + } +) diff --git a/packages/core/core-flows/src/order/workflows/exchange-request-item-return.ts b/packages/core/core-flows/src/order/workflows/exchange-request-item-return.ts new file mode 100644 index 0000000000000..45defbe778758 --- /dev/null +++ b/packages/core/core-flows/src/order/workflows/exchange-request-item-return.ts @@ -0,0 +1,164 @@ +import { + OrderChangeDTO, + OrderDTO, + OrderExchangeDTO, + OrderWorkflow, + ReturnDTO, +} from "@medusajs/types" +import { ChangeActionType } from "@medusajs/utils" +import { + WorkflowData, + createStep, + createWorkflow, + transform, + when, +} from "@medusajs/workflows-sdk" +import { useRemoteQueryStep } from "../../common" +import { createOrderChangeActionsStep } from "../steps/create-order-change-actions" +import { createReturnsStep } from "../steps/create-returns" +import { previewOrderChangeStep } from "../steps/preview-order-change" +import { updateOrderExchangesStep } from "../steps/update-order-exchanges" +import { + throwIfIsCancelled, + throwIfItemsDoesNotExistsInOrder, + throwIfOrderChangeIsNotActive, + throwIfOrderIsCancelled, +} from "../utils/order-validation" + +const validationStep = createStep( + "exchange-request-item-return-validation", + async function ({ + order, + orderChange, + orderReturn, + orderExchange, + items, + }: { + order: OrderDTO + orderReturn: ReturnDTO + orderExchange: OrderExchangeDTO + orderChange: OrderChangeDTO + items: OrderWorkflow.OrderExchangeRequestItemReturnWorkflowInput["items"] + }) { + throwIfOrderIsCancelled({ order }) + throwIfIsCancelled(orderExchange, "Exchange") + throwIfIsCancelled(orderReturn, "Return") + throwIfOrderChangeIsNotActive({ orderChange }) + throwIfItemsDoesNotExistsInOrder({ order, inputItems: items }) + } +) + +export const orderExchangeRequestItemReturnWorkflowId = + "exchange-request-item-return" +export const orderExchangeRequestItemReturnWorkflow = createWorkflow( + orderExchangeRequestItemReturnWorkflowId, + function ( + input: WorkflowData + ): WorkflowData { + const orderExchange = useRemoteQueryStep({ + entry_point: "order_exchange", + fields: ["id", "order_id", "return_id"], + variables: { id: input.exchange_id }, + list: false, + throw_if_key_not_found: true, + }).config({ name: "exchange-query" }) + + const existingOrderReturn = when({ orderExchange }, ({ orderExchange }) => { + return orderExchange.return_id + }).then(() => { + return useRemoteQueryStep({ + entry_point: "return", + fields: ["id", "status", "order_id"], + variables: { id: orderExchange.return_id }, + list: false, + throw_if_key_not_found: true, + }).config({ name: "return-query" }) as ReturnDTO + }) + + const createdReturn = when({ orderExchange }, ({ orderExchange }) => { + return !orderExchange.return_id + }).then(() => { + return createReturnsStep([ + { + order_id: orderExchange.order_id, + exchange_id: orderExchange.id, + }, + ]) + }) + + const orderReturn: ReturnDTO = transform( + { createdReturn, existingOrderReturn, orderExchange }, + ({ createdReturn, existingOrderReturn, orderExchange }) => { + return existingOrderReturn ?? (createdReturn[0] as ReturnDTO) + } + ) + + const order: OrderDTO = useRemoteQueryStep({ + entry_point: "orders", + fields: ["id", "status", "items.*"], + variables: { id: orderExchange.order_id }, + list: false, + throw_if_key_not_found: true, + }).config({ name: "order-query" }) + + const orderChange: OrderChangeDTO = useRemoteQueryStep({ + entry_point: "order_change", + fields: ["id", "status"], + variables: { order_id: orderExchange.order_id }, + list: false, + }).config({ name: "order-change-query" }) + + validationStep({ + order, + items: input.items, + orderExchange, + orderReturn, + orderChange, + }) + + when({ orderExchange }, ({ orderExchange }) => { + return !orderExchange.return_id + }).then(() => { + const createdReturnId = transform( + { createdReturn }, + ({ createdReturn }) => { + return createdReturn[0]!.id + } + ) + updateOrderExchangesStep([ + { + id: orderExchange.id, + return_id: createdReturnId, + }, + ]) + }) + + const orderChangeActionInput = transform( + { order, orderChange, orderExchange, orderReturn, items: input.items }, + ({ order, orderChange, orderExchange, orderReturn, items }) => { + return items.map((item) => ({ + order_change_id: orderChange.id, + order_id: order.id, + exchange_id: orderExchange.id, + return_id: orderReturn.id, + version: orderChange.version, + action: ChangeActionType.RETURN_ITEM, + internal_note: item.internal_note, + reference: "return", + reference_id: orderReturn.id, + details: { + reference_id: item.id, + exchange_id: orderExchange.id, + return_id: orderReturn.id, + quantity: item.quantity, + metadata: item.metadata, + }, + })) + } + ) + + createOrderChangeActionsStep(orderChangeActionInput) + + return previewOrderChangeStep(orderExchange.order_id) + } +) diff --git a/packages/core/core-flows/src/order/workflows/index.ts b/packages/core/core-flows/src/order/workflows/index.ts index 229924348d125..cab76dd0a7194 100644 --- a/packages/core/core-flows/src/order/workflows/index.ts +++ b/packages/core/core-flows/src/order/workflows/index.ts @@ -1,20 +1,28 @@ export * from "./archive-orders" +export * from "./begin-order-claim" +export * from "./begin-order-exchange" +export * from "./begin-return" export * from "./cancel-order" export * from "./cancel-order-change" export * from "./cancel-order-fulfillment" export * from "./cancel-return" +export * from "./claim-request-item-return" export * from "./complete-orders" export * from "./create-complete-return" export * from "./create-fulfillment" export * from "./create-order-change" export * from "./create-order-change-actions" export * from "./create-orders" +export * from "./create-return-shipping-method" export * from "./create-shipment" export * from "./decline-order-change" export * from "./delete-order-change" export * from "./delete-order-change-actions" +export * from "./exchange-request-item-return" export * from "./get-order-detail" export * from "./get-orders-list" export * from "./receive-return" +export * from "./request-item-return" export * from "./update-order-change-actions" export * from "./update-tax-lines" + diff --git a/packages/core/core-flows/src/order/workflows/receive-return.ts b/packages/core/core-flows/src/order/workflows/receive-return.ts index bb6735ce00fe0..ee4dcdb4c583d 100644 --- a/packages/core/core-flows/src/order/workflows/receive-return.ts +++ b/packages/core/core-flows/src/order/workflows/receive-return.ts @@ -9,8 +9,8 @@ import { useRemoteQueryStep } from "../../common" import { ReturnDTO } from "@medusajs/types" import { receiveReturnStep } from "../steps/receive-return" import { + throwIfIsCancelled, throwIfItemsDoesNotExistsInReturn, - throwIfReturnIsCancelled, } from "../utils/order-validation" const validationStep = createStep( @@ -25,7 +25,7 @@ const validationStep = createStep( }, context ) { - throwIfReturnIsCancelled({ orderReturn }) + throwIfIsCancelled(orderReturn, "Return") throwIfItemsDoesNotExistsInReturn({ orderReturn, inputItems: input.items }) } ) diff --git a/packages/core/core-flows/src/order/workflows/request-item-return.ts b/packages/core/core-flows/src/order/workflows/request-item-return.ts new file mode 100644 index 0000000000000..e374bea1c109f --- /dev/null +++ b/packages/core/core-flows/src/order/workflows/request-item-return.ts @@ -0,0 +1,99 @@ +import { + OrderChangeActionDTO, + OrderChangeDTO, + OrderDTO, + OrderWorkflow, + ReturnDTO, +} from "@medusajs/types" +import { ChangeActionType } from "@medusajs/utils" +import { + WorkflowData, + createStep, + createWorkflow, + transform, +} from "@medusajs/workflows-sdk" +import { useRemoteQueryStep } from "../../common" +import { createOrderChangeActionsStep } from "../steps/create-order-change-actions" +import { + throwIfIsCancelled, + throwIfItemsDoesNotExistsInOrder, + throwIfOrderChangeIsNotActive, + throwIfOrderIsCancelled, +} from "../utils/order-validation" + +const validationStep = createStep( + "request-item-return-validation", + async function ({ + order, + orderChange, + orderReturn, + items, + }: { + order: OrderDTO + orderReturn: ReturnDTO + orderChange: OrderChangeDTO + items: OrderWorkflow.RequestItemReturnWorkflowInput["items"] + }) { + throwIfOrderIsCancelled({ order }) + throwIfIsCancelled(orderReturn, "Return") + throwIfOrderChangeIsNotActive({ orderChange }) + throwIfItemsDoesNotExistsInOrder({ order, inputItems: items }) + } +) + +export const requestItemReturnWorkflowId = "request-item-return" +export const requestItemReturnWorkflow = createWorkflow( + requestItemReturnWorkflowId, + function ( + input: WorkflowData + ): WorkflowData { + const orderReturn: ReturnDTO = useRemoteQueryStep({ + entry_point: "return", + fields: ["id", "status", "order_id"], + variables: { id: input.return_id }, + list: false, + throw_if_key_not_found: true, + }) + + const order: OrderDTO = useRemoteQueryStep({ + entry_point: "orders", + fields: ["id", "status", "items.*"], + variables: { id: orderReturn.order_id }, + list: false, + throw_if_key_not_found: true, + }).config({ name: "order-query" }) + + const orderChange: OrderChangeDTO = useRemoteQueryStep({ + entry_point: "order_change", + fields: ["id", "status"], + variables: { order_id: orderReturn.order_id }, + list: false, + }).config({ name: "order-change-query" }) + + validationStep({ order, items: input.items, orderReturn, orderChange }) + + const orderChangeActionInput = transform( + { order, orderChange, orderReturn, items: input.items }, + ({ order, orderChange, orderReturn, items }) => { + return items.map((item) => ({ + order_change_id: orderChange.id, + order_id: order.id, + return_id: orderReturn.id, + version: orderChange.version, + action: ChangeActionType.RETURN_ITEM, + internal_note: item.internal_note, + reference: "return", + reference_id: orderReturn.id, + details: { + reference_id: item.id, + return_id: orderReturn.id, + quantity: item.quantity, + metadata: item.metadata, + }, + })) + } + ) + + return createOrderChangeActionsStep(orderChangeActionInput) + } +) diff --git a/packages/core/medusa-test-utils/src/medusa-test-runner-utils/use-db.ts b/packages/core/medusa-test-utils/src/medusa-test-runner-utils/use-db.ts index bcfa93d29bd4b..9f29260d65872 100644 --- a/packages/core/medusa-test-utils/src/medusa-test-runner-utils/use-db.ts +++ b/packages/core/medusa-test-utils/src/medusa-test-runner-utils/use-db.ts @@ -39,9 +39,9 @@ export async function initDb({ try { const { - migrateMedusaApp, + runMedusaAppMigrations, } = require("@medusajs/medusa/dist/loaders/medusa-app") - await migrateMedusaApp({ configModule, container }) + await runMedusaAppMigrations({ configModule, container }) } catch (err) { console.error("Something went wrong while running the migrations") throw err diff --git a/packages/core/modules-sdk/src/loaders/utils/load-internal.ts b/packages/core/modules-sdk/src/loaders/utils/load-internal.ts index cc4f9f7618ba6..df25cbacfe7c0 100644 --- a/packages/core/modules-sdk/src/loaders/utils/load-internal.ts +++ b/packages/core/modules-sdk/src/loaders/utils/load-internal.ts @@ -2,6 +2,7 @@ import { Constructor, IModuleService, InternalModuleDeclaration, + LoaderOptions, Logger, MedusaContainer, ModuleExports, @@ -32,6 +33,11 @@ type ModuleResource = { normalizedPath: string } +type MigrationFunction = ( + options: LoaderOptions, + moduleDeclaration?: InternalModuleDeclaration +) => Promise + export async function loadInternalModule( container: MedusaContainer, resolution: ModuleResolution, @@ -171,7 +177,11 @@ export async function loadInternalModule( export async function loadModuleMigrations( resolution: ModuleResolution, moduleExports?: ModuleExports -): Promise<[Function | undefined, Function | undefined]> { +): Promise<{ + runMigrations?: MigrationFunction + revertMigration?: MigrationFunction + generateMigration?: MigrationFunction +}> { let loadedModule: ModuleExports try { loadedModule = @@ -179,8 +189,8 @@ export async function loadModuleMigrations( let runMigrations = loadedModule.runMigrations let revertMigration = loadedModule.revertMigration + let generateMigration = loadedModule.generateMigration - // Generate migration scripts if they are not present if (!runMigrations || !revertMigration) { const moduleResources = await loadResources( resolution, @@ -191,7 +201,7 @@ export async function loadModuleMigrations( const migrationScriptOptions = { moduleName: resolution.definition.key, models: moduleResources.models, - pathToMigrations: moduleResources.normalizedPath + "/migrations", + pathToMigrations: join(moduleResources.normalizedPath, "migrations"), } runMigrations ??= ModulesSdkUtils.buildMigrationScript( @@ -201,11 +211,15 @@ export async function loadModuleMigrations( revertMigration ??= ModulesSdkUtils.buildRevertMigrationScript( migrationScriptOptions ) + + generateMigration ??= ModulesSdkUtils.buildGenerateMigrationScript( + migrationScriptOptions + ) } - return [runMigrations, revertMigration] + return { runMigrations, revertMigration, generateMigration } } catch { - return [undefined, undefined] + return {} } } diff --git a/packages/core/modules-sdk/src/medusa-app.ts b/packages/core/modules-sdk/src/medusa-app.ts index 535782b6b1aae..84f42d93cd430 100644 --- a/packages/core/modules-sdk/src/medusa-app.ts +++ b/packages/core/modules-sdk/src/medusa-app.ts @@ -8,6 +8,7 @@ import type { LoadedModule, Logger, MedusaContainer, + ModuleBootstrapDeclaration, ModuleDefinition, ModuleExports, ModuleJoinerConfig, @@ -21,6 +22,7 @@ import { createMedusaContainer, isObject, isString, + MedusaError, ModuleRegistrationName, Modules, ModulesSdkUtils, @@ -29,7 +31,11 @@ import { import { asValue } from "awilix" import type { Knex } from "knex" import { MODULE_PACKAGE_NAMES } from "./definitions" -import { MedusaModule, RegisterModuleJoinerConfig } from "./medusa-module" +import { + MedusaModule, + MigrationOptions, + RegisterModuleJoinerConfig, +} from "./medusa-module" import { RemoteLink } from "./remote-link" import { RemoteQuery } from "./remote-query" import { MODULE_RESOURCE_TYPE, MODULE_SCOPE } from "./types" @@ -47,10 +53,9 @@ declare module "@medusajs/types" { } } -export type RunMigrationFn = ( - options?: ModuleServiceInitializeOptions, - injectedDependencies?: Record -) => Promise +export type RunMigrationFn = () => Promise +export type RevertMigrationFn = (moduleNames: string[]) => Promise +export type GenerateMigrations = (moduleNames: string[]) => Promise export type MedusaModuleConfig = { [key: string | Modules]: @@ -176,11 +181,11 @@ async function initializeLinks({ } } catch (err) { console.warn("Error initializing link modules.", err) - return { remoteLink: undefined, linkResolution: undefined, - runMigrations: undefined, + runMigrations: () => void 0, + revertMigrations: () => void 0, } } } @@ -224,7 +229,8 @@ export type MedusaAppOutput = { entitiesMap?: Record notFound?: Record> runMigrations: RunMigrationFn - revertMigrations: RunMigrationFn + revertMigrations: RevertMigrationFn + generateMigrations: GenerateMigrations onApplicationShutdown: () => Promise onApplicationPrepareShutdown: () => Promise sharedContainer?: MedusaContainer @@ -317,10 +323,12 @@ async function MedusaApp_({ delete modules[LinkModulePackage] delete modules[Modules.LINK] - let linkModuleOptions = {} + let linkModuleOrOptions: + | Partial + | Partial = {} if (isObject(linkModule)) { - linkModuleOptions = linkModule + linkModuleOrOptions = linkModule } for (const injectedDependency of Object.keys(injectedDependencies)) { @@ -352,6 +360,9 @@ async function MedusaApp_({ revertMigrations: async () => { throw new Error("Revert migrations not allowed in loaderOnly mode") }, + generateMigrations: async () => { + throw new Error("Generate migrations not allowed in loaderOnly mode") + }, } } @@ -380,7 +391,7 @@ async function MedusaApp_({ runMigrations: linkModuleMigration, revertMigrations: revertLinkModuleMigration, } = await initializeLinks({ - config: linkModuleOptions, + config: linkModuleOrOptions, linkModules, injectedDependencies, moduleExports: isMedusaModule(linkModule) ? linkModule : undefined, @@ -402,10 +413,37 @@ async function MedusaApp_({ return await remoteQuery.query(query, variables, options) } - const applyMigration = async (linkModuleOptions, revert = false) => { - for (const moduleName of Object.keys(allModules)) { - const moduleResolution = MedusaModule.getModuleResolutions(moduleName) + const applyMigration = async ({ + modulesNames, + action = "run", + }: { + modulesNames: string[] + action?: "run" | "revert" | "generate" + }) => { + const moduleResolutions = modulesNames.map((moduleName) => { + return { + moduleName, + resolution: MedusaModule.getModuleResolutions(moduleName), + } + }) + const missingModules = moduleResolutions + .filter(({ resolution }) => !resolution) + .map(({ moduleName }) => moduleName) + + if (missingModules.length) { + const error = new MedusaError( + MedusaError.Types.UNKNOWN_MODULES, + `Cannot ${action} migrations for unknown module(s) ${missingModules.join( + "," + )}`, + MedusaError.Codes.UNKNOWN_MODULES + ) + error["allModules"] = Object.keys(allModules) + throw error + } + + for (const { resolution: moduleResolution } of moduleResolutions) { if (!moduleResolution.options?.database) { moduleResolution.options ??= {} moduleResolution.options.database = { @@ -413,59 +451,86 @@ async function MedusaApp_({ } } - if (revert) { - await MedusaModule.migrateDown( - moduleResolution.definition.key, - moduleResolution.resolutionPath as string, - moduleResolution.options, - moduleResolution.moduleExports - ) + const migrationOptions: MigrationOptions = { + moduleKey: moduleResolution.definition.key, + modulePath: moduleResolution.resolutionPath as string, + container: sharedContainer, + options: moduleResolution.options, + moduleExports: moduleResolution.moduleExports, + } + + if (action === "revert") { + await MedusaModule.migrateDown(migrationOptions) + } else if (action === "run") { + await MedusaModule.migrateUp(migrationOptions) } else { - await MedusaModule.migrateUp( - moduleResolution.definition.key, - moduleResolution.resolutionPath as string, - moduleResolution.options, - moduleResolution.moduleExports - ) + await MedusaModule.migrateGenerate(migrationOptions) } } + } - const linkModuleOpt = { ...(linkModuleOptions ?? {}) } - linkModuleOpt.database ??= { - ...(sharedResourcesConfig?.database ?? {}), - } + const runMigrations: RunMigrationFn = async (): Promise => { + await applyMigration({ + modulesNames: Object.keys(allModules), + }) - if (revert) { - revertLinkModuleMigration && - (await revertLinkModuleMigration( - { - options: linkModuleOpt, - injectedDependencies, - }, - linkModules - )) - } else { - linkModuleMigration && - (await linkModuleMigration( - { - options: linkModuleOpt, - injectedDependencies, - }, - linkModules - )) + const options: Partial = + "scope" in linkModuleOrOptions + ? { ...linkModuleOrOptions.options } + : { + ...(linkModuleOrOptions as Partial), + } + + options.database ??= { + ...sharedResourcesConfig?.database, } + + await linkModuleMigration( + { + options, + injectedDependencies, + }, + linkModules + ) } - const runMigrations: RunMigrationFn = async ( - linkModuleOptions + const revertMigrations: RevertMigrationFn = async ( + modulesNames ): Promise => { - await applyMigration(linkModuleOptions) + await applyMigration({ + modulesNames, + action: "revert", + }) + + // TODO: Temporarely disabling this part until we discussed a more appropriate approach to sync the link + // Currently it would revert all link as soon as the revert is run + /*const options: Partial = + "scope" in linkModuleOrOptions + ? { ...linkModuleOrOptions.options } + : { + ...(linkModuleOrOptions as Partial), + } + + options.database ??= { + ...sharedResourcesConfig?.database, + } + + await revertLinkModuleMigration( + { + options, + injectedDependencies, + }, + linkModules + )*/ } - const revertMigrations: RunMigrationFn = async ( - linkModuleOptions + const generateMigrations: GenerateMigrations = async ( + modulesNames ): Promise => { - await applyMigration(linkModuleOptions, true) + await applyMigration({ + modulesNames, + action: "generate", + }) } return { @@ -478,6 +543,7 @@ async function MedusaApp_({ notFound, runMigrations, revertMigrations, + generateMigrations, sharedContainer: sharedContainer_, } } @@ -506,6 +572,7 @@ export async function MedusaAppMigrateUp( } export async function MedusaAppMigrateDown( + moduleNames: string[], options: MedusaAppOptions = {} ): Promise { const migrationOnly = true @@ -515,5 +582,19 @@ export async function MedusaAppMigrateDown( migrationOnly, }) - await revertMigrations().finally(MedusaModule.clearInstances) + await revertMigrations(moduleNames).finally(MedusaModule.clearInstances) +} + +export async function MedusaAppMigrateGenerate( + moduleNames: string[], + options: MedusaAppOptions = {} +): Promise { + const migrationOnly = true + + const { generateMigrations } = await MedusaApp_({ + ...options, + migrationOnly, + }) + + await generateMigrations(moduleNames).finally(MedusaModule.clearInstances) } diff --git a/packages/core/modules-sdk/src/medusa-module.ts b/packages/core/modules-sdk/src/medusa-module.ts index 8d0be67e6ff8e..9f6d2dc29e4dd 100644 --- a/packages/core/modules-sdk/src/medusa-module.ts +++ b/packages/core/modules-sdk/src/medusa-module.ts @@ -12,6 +12,7 @@ import { ModuleResolution, } from "@medusajs/types" import { + ContainerRegistrationKeys, createMedusaContainer, promiseAll, simpleHash, @@ -51,6 +52,14 @@ type ModuleAlias = { main?: boolean } +export type MigrationOptions = { + moduleKey: string + modulePath: string + container?: MedusaContainer + options?: Record + moduleExports?: ModuleExports +} + export type ModuleBootstrapOptions = { moduleKey: string defaultPath: string @@ -344,7 +353,9 @@ class MedusaModule { ) const logger_ = - container.resolve("logger", { allowUnregistered: true }) ?? logger + container.resolve(ContainerRegistrationKeys.LOGGER, { + allowUnregistered: true, + }) ?? logger try { await moduleLoader({ @@ -475,7 +486,9 @@ class MedusaModule { ) const logger_ = - container.resolve("logger", { allowUnregistered: true }) ?? logger + container.resolve(ContainerRegistrationKeys.LOGGER, { + allowUnregistered: true, + }) ?? logger try { await moduleLoader({ @@ -531,12 +544,13 @@ class MedusaModule { return services } - public static async migrateUp( - moduleKey: string, - modulePath: string, - options?: Record, - moduleExports?: ModuleExports - ): Promise { + public static async migrateGenerate({ + options, + container, + moduleExports, + moduleKey, + modulePath, + }: MigrationOptions): Promise { const moduleResolutions = registerMedusaModule(moduleKey, { scope: MODULE_SCOPE.INTERNAL, resources: MODULE_RESOURCE_TYPE.ISOLATED, @@ -544,27 +558,36 @@ class MedusaModule { options, }) + const logger_ = + container?.resolve(ContainerRegistrationKeys.LOGGER, { + allowUnregistered: true, + }) ?? logger + + container ??= createMedusaContainer() + for (const mod in moduleResolutions) { - const [migrateUp] = await loadModuleMigrations( + const { generateMigration } = await loadModuleMigrations( moduleResolutions[mod], moduleExports ) - if (typeof migrateUp === "function") { - await migrateUp({ + if (typeof generateMigration === "function") { + await generateMigration({ options, - logger, + container: container!, + logger: logger_, }) } } } - public static async migrateDown( - moduleKey: string, - modulePath: string, - options?: Record, - moduleExports?: ModuleExports - ): Promise { + public static async migrateUp({ + options, + container, + moduleExports, + moduleKey, + modulePath, + }: MigrationOptions): Promise { const moduleResolutions = registerMedusaModule(moduleKey, { scope: MODULE_SCOPE.INTERNAL, resources: MODULE_RESOURCE_TYPE.ISOLATED, @@ -572,16 +595,61 @@ class MedusaModule { options, }) + const logger_ = + container?.resolve(ContainerRegistrationKeys.LOGGER, { + allowUnregistered: true, + }) ?? logger + + container ??= createMedusaContainer() + + for (const mod in moduleResolutions) { + const { runMigrations } = await loadModuleMigrations( + moduleResolutions[mod], + moduleExports + ) + + if (typeof runMigrations === "function") { + await runMigrations({ + options, + container: container!, + logger: logger_, + }) + } + } + } + + public static async migrateDown({ + options, + container, + moduleExports, + moduleKey, + modulePath, + }: MigrationOptions): Promise { + const moduleResolutions = registerMedusaModule(moduleKey, { + scope: MODULE_SCOPE.INTERNAL, + resources: MODULE_RESOURCE_TYPE.ISOLATED, + resolve: modulePath, + options, + }) + + const logger_ = + container?.resolve(ContainerRegistrationKeys.LOGGER, { + allowUnregistered: true, + }) ?? logger + + container ??= createMedusaContainer() + for (const mod in moduleResolutions) { - const [, migrateDown] = await loadModuleMigrations( + const { revertMigration } = await loadModuleMigrations( moduleResolutions[mod], moduleExports ) - if (typeof migrateDown === "function") { - await migrateDown({ + if (typeof revertMigration === "function") { + await revertMigration({ options, - logger, + container: container!, + logger: logger_, }) } } diff --git a/packages/core/orchestration/src/joiner/remote-joiner.ts b/packages/core/orchestration/src/joiner/remote-joiner.ts index 19af02a210fd9..d54da54db9f04 100644 --- a/packages/core/orchestration/src/joiner/remote-joiner.ts +++ b/packages/core/orchestration/src/joiner/remote-joiner.ts @@ -434,6 +434,7 @@ export class RemoteJoiner { }) if (notFound.size > 0) { + // TODO: This should say "entryPoint" resource not found and not "serviceName" resource not found throw new MedusaError( MedusaError.Types.NOT_FOUND, `${expand.serviceConfig.serviceName} ${pkField} not found: ` + diff --git a/packages/core/types/src/modules-sdk/index.ts b/packages/core/types/src/modules-sdk/index.ts index d6caf986d3cd3..d770bad69c1d3 100644 --- a/packages/core/types/src/modules-sdk/index.ts +++ b/packages/core/types/src/modules-sdk/index.ts @@ -235,6 +235,10 @@ export type ModuleExports> = { options: LoaderOptions, moduleDeclaration?: InternalModuleDeclaration ): Promise + generateMigration?( + options: LoaderOptions, + moduleDeclaration?: InternalModuleDeclaration + ): Promise } export interface ModuleServiceInitializeOptions { diff --git a/packages/core/types/src/order/common.ts b/packages/core/types/src/order/common.ts index 6337c6547de6e..deb0223d8c65e 100644 --- a/packages/core/types/src/order/common.ts +++ b/packages/core/types/src/order/common.ts @@ -1141,6 +1141,7 @@ type ReturnStatus = "requested" | "received" | "partially_received" | "canceled" export interface ReturnDTO extends Omit { status: ReturnStatus refund_amount?: BigNumberValue + order_id: string } export interface OrderClaimDTO @@ -1198,7 +1199,7 @@ export interface OrderChangeDTO { /** * The version of the order change */ - version: string + version: number /** * The type of the order change */ @@ -1609,13 +1610,39 @@ export interface FilterableOrderItemProps item_id?: string | string[] | OperatorMap } -export interface FilterableOrderReturnReasonProps { +export interface FilterableOrderReturnReasonProps + extends BaseFilterable { id?: string | string[] value?: string | string[] label?: string description?: string } +export interface FilterableReturnProps + extends BaseFilterable { + id?: string | string[] + order_id?: string | string[] + claim_id?: string | string[] + exchange_id?: string | string[] + status?: string | string[] + refund_amount?: string | string[] +} + +export interface FilterableOrderClaimProps + extends BaseFilterable { + id?: string | string[] + order_id?: string | string[] + return_id?: string | string[] +} + +export interface FilterableOrderExchangeProps + extends BaseFilterable { + id?: string | string[] + order_id?: string | string[] + return_id?: string | string[] + allow_backorder?: boolean +} + export interface OrderChangeReturn { items: { item_id: string diff --git a/packages/core/types/src/order/mutations.ts b/packages/core/types/src/order/mutations.ts index 75dc6ddbc0bfa..06ef8740b3943 100644 --- a/packages/core/types/src/order/mutations.ts +++ b/packages/core/types/src/order/mutations.ts @@ -1,10 +1,13 @@ import { BigNumberInput } from "../totals" import { ChangeActionType, + OrderClaimDTO, + OrderExchangeDTO, OrderItemDTO, OrderLineItemDTO, OrderReturnReasonDTO, OrderTransactionDTO, + ReturnDTO, } from "./common" /** ADDRESS START */ @@ -256,6 +259,7 @@ export interface CreateOrderChangeDTO { return_id?: string claim_id?: string exchange_id?: string + change_type?: "return" | "exchange" | "claim" | "edit" description?: string internal_note?: string | null requested_by?: string @@ -322,6 +326,7 @@ export interface CreateOrderChangeActionDTO { export interface UpdateOrderChangeActionDTO { id: string internal_note?: string | null + metadata?: Record | null } /** ORDER TRANSACTION START */ @@ -412,24 +417,67 @@ export interface CancelOrderFulfillmentDTO extends BaseOrderBundledActionsDTO { } export interface RegisterOrderShipmentDTO extends BaseOrderBundledActionsDTO { - items: BaseOrderBundledItemActionsDTO[] + items?: BaseOrderBundledItemActionsDTO[] no_notification?: boolean } export interface CreateOrderReturnDTO extends BaseOrderBundledActionsDTO { - items: { + items?: { id: string quantity: BigNumberInput internal_note?: string | null note?: string | null reason_id?: string | null - metadata?: Record + metadata?: Record | null }[] shipping_method?: Omit | string refund_amount?: BigNumberInput no_notification?: boolean + claim_id?: string + exchange_id?: string +} + +export interface UpdateReturnDTO { + id: string + refund_amount?: BigNumberInput + no_notification?: boolean + claim_id?: string + exchange_id?: string + metadata?: Record | null +} + +export interface UpdateOrderClaimDTO { + id: string + refund_amount?: BigNumberInput + no_notification?: boolean + return_id?: string + type?: OrderClaimType + metadata?: Record | null +} + +export interface UpdateOrderExchangeDTO { + id: string + difference_due?: BigNumberInput + no_notification?: boolean + return_id?: string + allow_backorder?: boolean + metadata?: Record | null +} + +export interface UpdateOrderReturnWithSelectorDTO { + selector: Partial + data: Partial +} + +export interface UpdateOrderClaimWithSelectorDTO { + selector: Partial + data: Partial } +export interface UpdateOrderExchangeWithSelectorDTO { + selector: Partial + data: Partial +} export interface CancelOrderReturnDTO extends Omit { return_id: string @@ -443,11 +491,11 @@ export type ClaimReason = | "other" export interface CreateOrderClaimDTO extends BaseOrderBundledActionsDTO { type: OrderClaimType - claim_items: (BaseOrderBundledItemActionsDTO & { + claim_items?: (BaseOrderBundledItemActionsDTO & { reason: ClaimReason images?: { url: string - metadata?: Record + metadata?: Record | null }[] })[] additional_items?: BaseOrderBundledItemActionsDTO[] diff --git a/packages/core/types/src/order/service.ts b/packages/core/types/src/order/service.ts index 5aae2327f63a1..7ad5fb75da8ec 100644 --- a/packages/core/types/src/order/service.ts +++ b/packages/core/types/src/order/service.ts @@ -5,6 +5,8 @@ import { Context } from "../shared-context" import { FilterableOrderAddressProps, FilterableOrderChangeActionProps, + FilterableOrderClaimProps, + FilterableOrderExchangeProps, FilterableOrderLineItemAdjustmentProps, FilterableOrderLineItemProps, FilterableOrderLineItemTaxLineProps, @@ -14,6 +16,7 @@ import { FilterableOrderShippingMethodProps, FilterableOrderShippingMethodTaxLineProps, FilterableOrderTransactionProps, + FilterableReturnProps, OrderAddressDTO, OrderChangeActionDTO, OrderChangeDTO, @@ -62,7 +65,11 @@ import { UpdateOrderAddressDTO, UpdateOrderChangeActionDTO, UpdateOrderChangeDTO, + UpdateOrderClaimDTO, + UpdateOrderClaimWithSelectorDTO, UpdateOrderDTO, + UpdateOrderExchangeDTO, + UpdateOrderExchangeWithSelectorDTO, UpdateOrderItemDTO, UpdateOrderItemWithSelectorDTO, UpdateOrderLineItemDTO, @@ -70,8 +77,10 @@ import { UpdateOrderLineItemWithSelectorDTO, UpdateOrderReturnReasonDTO, UpdateOrderReturnReasonWithSelectorDTO, + UpdateOrderReturnWithSelectorDTO, UpdateOrderShippingMethodAdjustmentDTO, UpdateOrderShippingMethodTaxLineDTO, + UpdateReturnDTO, UpsertOrderLineItemAdjustmentDTO, } from "./mutations" @@ -1865,13 +1874,128 @@ export interface IOrderModuleService extends IModuleService { ): Promise softDeleteReturnReasons( - storeIds: string[], + ids: string[], config?: SoftDeleteReturn, sharedContext?: Context ): Promise | void> restoreReturnReasons( - storeIds: string[], + ids: string[], + config?: RestoreReturn, + sharedContext?: Context + ): Promise | void> + + createReturns( + data: CreateOrderReturnDTO, + sharedContext?: Context + ): Promise + + createReturns( + data: CreateOrderReturnDTO[], + sharedContext?: Context + ): Promise + + updateReturns(data: UpdateOrderReturnWithSelectorDTO[]): Promise + + updateReturns( + selector: Partial, + data: Partial, + sharedContext?: Context + ): Promise + updateReturns( + id: string, + data: Partial, + sharedContext?: Context + ): Promise + + deleteReturns(ids: string[], sharedContext?: Context): Promise + + softDeleteReturns( + ids: string[], + config?: SoftDeleteReturn, + sharedContext?: Context + ): Promise | void> + + restoreReturns( + ids: string[], + config?: RestoreReturn, + sharedContext?: Context + ): Promise | void> + + createOrderClaims( + data: CreateOrderClaimDTO, + sharedContext?: Context + ): Promise + + createOrderClaims( + data: CreateOrderClaimDTO[], + sharedContext?: Context + ): Promise + + updateOrderClaims( + data: UpdateOrderClaimWithSelectorDTO[] + ): Promise + + updateOrderClaims( + selector: Partial, + data: Partial, + sharedContext?: Context + ): Promise + updateOrderClaims( + id: string, + data: Partial, + sharedContext?: Context + ): Promise + + deleteOrderClaims(ids: string[], sharedContext?: Context): Promise + + softDeleteOrderClaims( + ids: string[], + config?: SoftDeleteReturn, + sharedContext?: Context + ): Promise | void> + + restoreOrderClaims( + ids: string[], + config?: RestoreReturn, + sharedContext?: Context + ): Promise | void> + + createOrderExchanges( + data: CreateOrderExchangeDTO, + sharedContext?: Context + ): Promise + + createOrderExchanges( + data: CreateOrderExchangeDTO[], + sharedContext?: Context + ): Promise + + updateOrderExchanges( + data: UpdateOrderExchangeWithSelectorDTO[] + ): Promise + + updateOrderExchanges( + selector: Partial, + data: Partial, + sharedContext?: Context + ): Promise + updateOrderExchanges( + id: string, + data: Partial, + sharedContext?: Context + ): Promise + + deleteOrderExchanges(ids: string[], sharedContext?: Context): Promise + + softDeleteOrderExchanges( + ids: string[], + config?: SoftDeleteReturn, + sharedContext?: Context + ): Promise | void> + + restoreOrderExchanges( + ids: string[], config?: RestoreReturn, sharedContext?: Context ): Promise | void> diff --git a/packages/core/types/src/pricing/common/price-set.ts b/packages/core/types/src/pricing/common/price-set.ts index 69e8e6cead0f2..486533e8adb0e 100644 --- a/packages/core/types/src/pricing/common/price-set.ts +++ b/packages/core/types/src/pricing/common/price-set.ts @@ -1,6 +1,6 @@ import { BaseFilterable } from "../../dal" import { Context } from "../../shared-context" -import { BigNumberInput, BigNumberValue } from "../../totals" +import { BigNumberInput, BigNumberRawValue, BigNumberValue } from "../../totals" import { CreateMoneyAmountDTO, FilterableMoneyAmountProps, @@ -83,7 +83,8 @@ export interface CalculatedPriceSetDTO { /** * The calculated amount. It can possibly be `null` if there's no price set up for the provided context. */ - amount: string | null + amount: BigNumberValue | null + raw_amount: BigNumberRawValue | null /** * The currency code of the calculated price. It can possibly be `null`. */ @@ -129,6 +130,7 @@ export interface CalculatedPriceSet { * The amount of the calculated price, or `null` if there isn't a calculated price. */ calculated_amount: BigNumberValue | null + raw_calculated_amount: BigNumberRawValue | null /** * Whether the original price is associated with a price list. During the calculation process, if the price list of the calculated price is of type override, @@ -143,6 +145,7 @@ export interface CalculatedPriceSet { * The amount of the original price, or `null` if there isn't a calculated price. */ original_amount: BigNumberValue | null + raw_original_amount: BigNumberRawValue | null /** * The currency code of the calculated price, or null if there isn't a calculated price. diff --git a/packages/core/types/src/workflow/order/begin-claim-order.ts b/packages/core/types/src/workflow/order/begin-claim-order.ts new file mode 100644 index 0000000000000..f5c07214882e0 --- /dev/null +++ b/packages/core/types/src/workflow/order/begin-claim-order.ts @@ -0,0 +1,10 @@ +import { OrderClaimType } from "../../order/mutations" + +export interface beginOrderClaimWorkflowInput { + type: OrderClaimType + order_id: string + created_by?: string + internal_note?: string + description?: string + metadata?: Record | null +} diff --git a/packages/core/types/src/workflow/order/begin-exchange-order.ts b/packages/core/types/src/workflow/order/begin-exchange-order.ts new file mode 100644 index 0000000000000..aa03e074c6bb6 --- /dev/null +++ b/packages/core/types/src/workflow/order/begin-exchange-order.ts @@ -0,0 +1,7 @@ +export interface beginOrderExchangeWorkflowInput { + order_id: string + created_by?: string + internal_note?: string + description?: string + metadata?: Record | null +} diff --git a/packages/core/types/src/workflow/order/begin-return-order.ts b/packages/core/types/src/workflow/order/begin-return-order.ts new file mode 100644 index 0000000000000..45b3aaecf93a2 --- /dev/null +++ b/packages/core/types/src/workflow/order/begin-return-order.ts @@ -0,0 +1,7 @@ +export interface beginOrderReturnWorkflowInput { + order_id: string + created_by?: string + internal_note?: string + description?: string + metadata?: Record | null +} diff --git a/packages/core/types/src/workflow/order/create-return-order.ts b/packages/core/types/src/workflow/order/create-return-order.ts index ff0284c68cb99..18ddb25bb094e 100644 --- a/packages/core/types/src/workflow/order/create-return-order.ts +++ b/packages/core/types/src/workflow/order/create-return-order.ts @@ -1,6 +1,6 @@ import { BigNumberInput } from "../../totals" -interface CreateReturnItem { +export interface CreateReturnItem { id: string quantity: BigNumberInput internal_note?: string | null diff --git a/packages/core/types/src/workflow/order/index.ts b/packages/core/types/src/workflow/order/index.ts index 1783ad2855adb..d59380f4f464a 100644 --- a/packages/core/types/src/workflow/order/index.ts +++ b/packages/core/types/src/workflow/order/index.ts @@ -1,3 +1,6 @@ +export * from "./begin-claim-order" +export * from "./begin-exchange-order" +export * from "./begin-return-order" export * from "./cancel-claim" export * from "./cancel-exchange" export * from "./cancel-fulfillment" @@ -7,3 +10,4 @@ export * from "./create-fulfillment" export * from "./create-return-order" export * from "./create-shipment" export * from "./receive-return" +export * from "./request-item-return" diff --git a/packages/core/types/src/workflow/order/request-item-return.ts b/packages/core/types/src/workflow/order/request-item-return.ts new file mode 100644 index 0000000000000..18748d4e35ced --- /dev/null +++ b/packages/core/types/src/workflow/order/request-item-return.ts @@ -0,0 +1,16 @@ +import { CreateReturnItem } from "./create-return-order" + +export interface RequestItemReturnWorkflowInput { + return_id: string + items: CreateReturnItem[] +} + +export interface OrderExchangeRequestItemReturnWorkflowInput { + exchange_id: string + items: CreateReturnItem[] +} + +export interface OrderClaimRequestItemReturnWorkflowInput { + claim_id: string + items: CreateReturnItem[] +} diff --git a/packages/core/utils/package.json b/packages/core/utils/package.json index f1d3b5ef08700..d03d36330e292 100644 --- a/packages/core/utils/package.json +++ b/packages/core/utils/package.json @@ -48,6 +48,6 @@ "build": "rimraf dist && tsc --build", "watch": "tsc --build --watch", "test": "jest --silent --bail --maxWorkers=50% --forceExit --testPathIgnorePatterns='/integration-tests/' -- src/**/__tests__/**/*.ts", - "test:integration": "jest --silent --bail --maxWorkers=50% --forceExit -- src/**/integration-tests/__tests__/**/*.ts" + "test:integration": "jest --silent --bail --runInBand --forceExit -- src/**/integration-tests/__tests__/**/*.ts" } } diff --git a/packages/core/utils/src/common/errors.ts b/packages/core/utils/src/common/errors.ts index 0dc1b3a646b23..31c50ddb6bda9 100644 --- a/packages/core/utils/src/common/errors.ts +++ b/packages/core/utils/src/common/errors.ts @@ -13,6 +13,7 @@ export const MedusaErrorTypes = { NOT_ALLOWED: "not_allowed", UNEXPECTED_STATE: "unexpected_state", CONFLICT: "conflict", + UNKNOWN_MODULES: "unknown_modules", PAYMENT_AUTHORIZATION_ERROR: "payment_authorization_error", PAYMENT_REQUIRES_MORE_ERROR: "payment_requires_more_error", } @@ -20,6 +21,7 @@ export const MedusaErrorTypes = { export const MedusaErrorCodes = { INSUFFICIENT_INVENTORY: "insufficient_inventory", CART_INCOMPATIBLE_STATE: "cart_incompatible_state", + UNKNOWN_MODULES: "unknown_modules", } /** diff --git a/packages/core/utils/src/dal/mikro-orm/__tests__/ts-migration-generator.spec.ts b/packages/core/utils/src/dal/mikro-orm/__tests__/ts-migration-generator.spec.ts index b6328a421cdb1..71d7b4de21221 100644 --- a/packages/core/utils/src/dal/mikro-orm/__tests__/ts-migration-generator.spec.ts +++ b/packages/core/utils/src/dal/mikro-orm/__tests__/ts-migration-generator.spec.ts @@ -1,14 +1,14 @@ -import { TSMigrationGenerator } from "../mikro-orm-create-connection" +import { CustomTsMigrationGenerator } from "../mikro-orm-create-connection" function unwrapSql(sql: string) { return sql.match(/this.addSql\('(.*?)'\)/)?.[1] } -describe("TSMigrationGenerator", () => { +describe("CustomTsMigrationGenerator", () => { it('should add "if not exists" to "create table" statements', () => { const sql = "create table my_table (id int)" const result = unwrapSql( - TSMigrationGenerator.prototype.createStatement(sql, 0) + CustomTsMigrationGenerator.prototype.createStatement(sql, 0) ) expect(result).toBe("create table if not exists my_table (id int)") }) @@ -16,7 +16,7 @@ describe("TSMigrationGenerator", () => { it('should add "if exists" to "alter table" statements as well as to the add column', () => { const sql = "alter table my_table add column name varchar(100)" const result = unwrapSql( - TSMigrationGenerator.prototype.createStatement(sql, 0) + CustomTsMigrationGenerator.prototype.createStatement(sql, 0) ) expect(result).toBe( "alter table if exists my_table add column if not exists name varchar(100)" @@ -26,27 +26,17 @@ describe("TSMigrationGenerator", () => { it('should add "if exists" to "alter table" statements as well as to the drop column', () => { const sql = "alter table my_table drop column name" const result = unwrapSql( - TSMigrationGenerator.prototype.createStatement(sql, 0) + CustomTsMigrationGenerator.prototype.createStatement(sql, 0) ) expect(result).toBe( "alter table if exists my_table drop column if exists name" ) }) - it('should add "if exists" to "alter table" statements as well as to the alter column', () => { - const sql = "alter table my_table alter column name" - const result = unwrapSql( - TSMigrationGenerator.prototype.createStatement(sql, 0) - ) - expect(result).toBe( - "alter table if exists my_table alter column if exists name" - ) - }) - it('should add "if not exists" to "create index" statements', () => { const sql = "create index idx_name on my_table(name)" const result = unwrapSql( - TSMigrationGenerator.prototype.createStatement(sql, 0) + CustomTsMigrationGenerator.prototype.createStatement(sql, 0) ) expect(result).toBe("create index if not exists idx_name on my_table(name)") }) @@ -54,7 +44,7 @@ describe("TSMigrationGenerator", () => { it('should add "if exists" to "drop index" statements', () => { const sql = "drop index idx_name" const result = unwrapSql( - TSMigrationGenerator.prototype.createStatement(sql, 0) + CustomTsMigrationGenerator.prototype.createStatement(sql, 0) ) expect(result).toBe("drop index if exists idx_name") }) @@ -62,7 +52,7 @@ describe("TSMigrationGenerator", () => { it('should add "if not exists" to "create unique index" statements', () => { const sql = "create unique index idx_unique_name on my_table(name)" const result = unwrapSql( - TSMigrationGenerator.prototype.createStatement(sql, 0) + CustomTsMigrationGenerator.prototype.createStatement(sql, 0) ) expect(result).toBe( "create unique index if not exists idx_unique_name on my_table(name)" @@ -72,7 +62,7 @@ describe("TSMigrationGenerator", () => { it('should add "if exists" to "drop unique index" statements', () => { const sql = "drop unique index idx_unique_name" const result = unwrapSql( - TSMigrationGenerator.prototype.createStatement(sql, 0) + CustomTsMigrationGenerator.prototype.createStatement(sql, 0) ) expect(result).toBe("drop unique index if exists idx_unique_name") }) @@ -80,7 +70,7 @@ describe("TSMigrationGenerator", () => { it('should add "if not exists" to "add column" statements', () => { const sql = "add column name varchar(100)" const result = unwrapSql( - TSMigrationGenerator.prototype.createStatement(sql, 0) + CustomTsMigrationGenerator.prototype.createStatement(sql, 0) ) expect(result).toBe("add column if not exists name varchar(100)") }) @@ -88,23 +78,15 @@ describe("TSMigrationGenerator", () => { it('should add "if exists" to "drop column" statements', () => { const sql = "drop column name" const result = unwrapSql( - TSMigrationGenerator.prototype.createStatement(sql, 0) + CustomTsMigrationGenerator.prototype.createStatement(sql, 0) ) expect(result).toBe("drop column if exists name") }) - it('should add "if exists" to "alter column" statements', () => { - const sql = "alter column name" - const result = unwrapSql( - TSMigrationGenerator.prototype.createStatement(sql, 0) - ) - expect(result).toBe("alter column if exists name") - }) - it('should add "if exists" to "drop constraint" statements', () => { const sql = "drop constraint fk_name" const result = unwrapSql( - TSMigrationGenerator.prototype.createStatement(sql, 0) + CustomTsMigrationGenerator.prototype.createStatement(sql, 0) ) expect(result).toBe("drop constraint if exists fk_name") }) diff --git a/packages/core/utils/src/dal/mikro-orm/mikro-orm-create-connection.ts b/packages/core/utils/src/dal/mikro-orm/mikro-orm-create-connection.ts index 745b1d4e5ca10..9fd34dbc922c8 100644 --- a/packages/core/utils/src/dal/mikro-orm/mikro-orm-create-connection.ts +++ b/packages/core/utils/src/dal/mikro-orm/mikro-orm-create-connection.ts @@ -3,71 +3,42 @@ import { TSMigrationGenerator } from "@mikro-orm/migrations" import { isString } from "../../common" import { FilterDef } from "@mikro-orm/core/typings" -// Monkey patch due to the compilation version issue which prevents us from creating a proper class that extends the TSMigrationGenerator -const originalCreateStatement = TSMigrationGenerator.prototype.createStatement - -/** - * Safe migration generation for MikroORM - * - * @param sql The sql statement - * @param padLeft The padding - * - * @example see test file - */ -TSMigrationGenerator.prototype.createStatement = function ( - sql: string, - padLeft: number -) { - if (isString(sql)) { - if (!sql.includes("create table if not exists")) { - sql = sql.replace("create table", "create table if not exists") - } - - if (!sql.includes("alter table if exists")) { - sql = sql.replace("alter table", "alter table if exists") - } - - if (!sql.includes("create index if not exists")) { - sql = sql.replace("create index", "create index if not exists") - } - - if (!sql.includes("drop index if exists")) { - sql = sql.replace("drop index", "drop index if exists") - } - - if (!sql.includes("create unique index if not exists")) { +export class CustomTsMigrationGenerator extends TSMigrationGenerator { + createStatement(sql: string, padLeft: number): string { + if (isString(sql)) { sql = sql.replace( - "create unique index", - "create unique index if not exists" + /create table (?!if not exists)/g, + "create table if not exists " + ) + sql = sql.replace(/alter table (?!if exists)/g, "alter table if exists ") + sql = sql.replace( + /create index (?!if not exists)/g, + "create index if not exists " + ) + sql = sql.replace(/drop index (?!if exists)/g, "drop index if exists ") + sql = sql.replace( + /create unique index (?!if not exists)/g, + "create unique index if not exists " + ) + sql = sql.replace( + /drop unique index (?!if exists)/g, + "drop unique index if exists " + ) + sql = sql.replace( + /add column (?!if not exists)/g, + "add column if not exists " + ) + sql = sql.replace(/drop column (?!if exists)/g, "drop column if exists ") + sql = sql.replace( + /drop constraint (?!if exists)/g, + "drop constraint if exists " ) } - if (!sql.includes("drop unique index if exists")) { - sql = sql.replace("drop unique index", "drop unique index if exists") - } - - if (!sql.includes("add column if not exists")) { - sql = sql.replace("add column", "add column if not exists") - } - - if (!sql.includes("alter column if exists exists")) { - sql = sql.replace("alter column", "alter column if exists") - } - - if (!sql.includes("drop column if exists")) { - sql = sql.replace("drop column", "drop column if exists") - } - - if (!sql.includes("drop constraint if exists")) { - sql = sql.replace("drop constraint", "drop constraint if exists") - } + return super.createStatement(sql, padLeft) } - - return originalCreateStatement(sql, padLeft) } -export { TSMigrationGenerator } - export type Filter = { name?: string } & Omit @@ -99,7 +70,7 @@ export async function mikroOrmCreateConnection( const { MikroORM } = await import("@mikro-orm/postgresql") return await MikroORM.init({ - discovery: { disableDynamicFileAccess: true, warnWhenNoEntities: false, }, + discovery: { disableDynamicFileAccess: true, warnWhenNoEntities: false }, entities, debug: database.debug ?? process.env.NODE_ENV?.startsWith("dev") ?? false, baseDir: process.cwd(), @@ -112,7 +83,7 @@ export async function mikroOrmCreateConnection( migrations: { disableForeignKeys: false, path: pathToMigrations, - generator: TSMigrationGenerator, + generator: CustomTsMigrationGenerator, silent: !( database.debug ?? process.env.NODE_ENV?.startsWith("dev") ?? @@ -120,7 +91,7 @@ export async function mikroOrmCreateConnection( ), }, schemaGenerator: { - disableForeignKeys: false + disableForeignKeys: false, }, pool: database.pool as any, }) diff --git a/packages/core/utils/src/dml/__tests__/entity-builder.spec.ts b/packages/core/utils/src/dml/__tests__/entity-builder.spec.ts index 70d19edffb055..b3fc5023ddfab 100644 --- a/packages/core/utils/src/dml/__tests__/entity-builder.spec.ts +++ b/packages/core/utils/src/dml/__tests__/entity-builder.spec.ts @@ -7,6 +7,8 @@ import { toMikroOrmEntities, toMikroORMEntity, } from "../helpers/create-mikro-orm-entity" +import { User } from "@medusajs/icons" +import { DuplicateIdPropertyError } from "../errors" describe("Entity builder", () => { beforeEach(() => { @@ -548,6 +550,26 @@ describe("Entity builder", () => { }) }) + test("should throw on duplicate id definition", () => { + const user = model.define("user", { + id: model.id().primaryKey(), + uuid: model.id(), + name: model.text(), + }) + + let err + try { + toMikroORMEntity(user) + } catch (e) { + err = e + } + + expect(err).toBeInstanceOf(DuplicateIdPropertyError) + expect(err.message).toBe( + "The model User can only have one usage of the id() property" + ) + }) + test("should mark a property as searchable", () => { const user = model.define("user", { id: model.number(), diff --git a/packages/core/utils/src/dml/errors.ts b/packages/core/utils/src/dml/errors.ts new file mode 100644 index 0000000000000..25b633d24700f --- /dev/null +++ b/packages/core/utils/src/dml/errors.ts @@ -0,0 +1,5 @@ +export class DuplicateIdPropertyError extends Error { + constructor(modelName: string) { + super(`The model ${modelName} can only have one usage of the id() property`) + } +} diff --git a/packages/core/utils/src/dml/helpers/create-mikro-orm-entity.ts b/packages/core/utils/src/dml/helpers/create-mikro-orm-entity.ts index cefe53edac434..4b2c3db732cc1 100644 --- a/packages/core/utils/src/dml/helpers/create-mikro-orm-entity.ts +++ b/packages/core/utils/src/dml/helpers/create-mikro-orm-entity.ts @@ -13,6 +13,8 @@ import { defineProperty } from "./entity-builder/define-property" import { defineRelationship } from "./entity-builder/define-relationship" import { parseEntityName } from "./entity-builder/parse-entity-name" import { applyEntityIndexes, applyIndexes } from "./mikro-orm/apply-indexes" +import { IdProperty } from "../properties/id" +import { DuplicateIdPropertyError } from "../errors" /** * Factory function to create the mikro orm entity builder. The return @@ -62,6 +64,8 @@ export function createMikrORMEntity() { MANY_TO_MANY_TRACKED_REALTIONS, } + let hasIdAlreadyDefined = false + /** * Processing schema fields */ @@ -69,6 +73,13 @@ export function createMikrORMEntity() { const field = property.parse(name) if ("fieldName" in field) { + if (IdProperty.isIdProperty(field)) { + if (hasIdAlreadyDefined) { + throw new DuplicateIdPropertyError(modelName) + } + hasIdAlreadyDefined = true + } + defineProperty(MikroORMEntity, name, property as PropertyType) applyIndexes(MikroORMEntity, tableName, field) applySearchable(MikroORMEntity, field) diff --git a/packages/core/utils/src/dml/helpers/entity-builder/define-property.ts b/packages/core/utils/src/dml/helpers/entity-builder/define-property.ts index 25ac7e2b21ae6..23874af6d68a0 100644 --- a/packages/core/utils/src/dml/helpers/entity-builder/define-property.ts +++ b/packages/core/utils/src/dml/helpers/entity-builder/define-property.ts @@ -190,7 +190,8 @@ export function defineProperty( /** * Hook to generate entity within the code */ - MikroORMEntity.prototype.generateId = function () { + const generateIdMethodName = `generateId` + MikroORMEntity.prototype[generateIdMethodName] = function () { this[field.fieldName] = generateEntityId( this[field.fieldName], field.dataType.options?.prefix @@ -200,8 +201,8 @@ export function defineProperty( /** * Execute hook via lifecycle decorators */ - BeforeCreate()(MikroORMEntity.prototype, "generateId") - OnInit()(MikroORMEntity.prototype, "generateId") + BeforeCreate()(MikroORMEntity.prototype, generateIdMethodName) + OnInit()(MikroORMEntity.prototype, generateIdMethodName) return } diff --git a/packages/core/utils/src/dml/integration-tests/enum.spec.ts b/packages/core/utils/src/dml/integration-tests/__tests__/enum.spec.ts similarity index 72% rename from packages/core/utils/src/dml/integration-tests/enum.spec.ts rename to packages/core/utils/src/dml/integration-tests/__tests__/enum.spec.ts index 40ebcd03586af..5ce2b0dab1cb4 100644 --- a/packages/core/utils/src/dml/integration-tests/enum.spec.ts +++ b/packages/core/utils/src/dml/integration-tests/__tests__/enum.spec.ts @@ -3,41 +3,34 @@ import { MetadataStorage, MikroORM, } from "@mikro-orm/core" -import { model } from "../entity-builder" -import { toMikroOrmEntities } from "../helpers/create-mikro-orm-entity" +import { model } from "../../entity-builder" +import { toMikroOrmEntities } from "../../helpers/create-mikro-orm-entity" import { createDatabase, dropDatabase } from "pg-god" -import { mikroOrmSerializer } from "../../dal" -import { FileSystem } from "../../common" -import { join } from "path" +import { CustomTsMigrationGenerator, mikroOrmSerializer } from "../../../dal" import { EntityConstructor } from "@medusajs/types" +import { pgGodCredentials } from "../utils" +import { FileSystem } from "../../../common" +import { join } from "path" -const DB_HOST = process.env.DB_HOST -const DB_USERNAME = process.env.DB_USERNAME -const DB_PASSWORD = process.env.DB_PASSWORD - -const pgGodCredentials = { - user: DB_USERNAME, - password: DB_PASSWORD, - host: DB_HOST, -} - -const fileSystem = new FileSystem(join(__dirname, "../../migrations")) +export const fileSystem = new FileSystem( + join(__dirname, "../../integration-tests-migrations-enum") +) describe("EntityBuilder | enum", () => { const dbName = "EntityBuilder-enum" let orm!: MikroORM - let Team: EntityConstructor, User: EntityConstructor + let User: EntityConstructor - afterAll(() => { - fileSystem.cleanup() + afterAll(async () => { + await fileSystem.cleanup() }) beforeEach(async () => { MetadataStorage.clear() const user = model.define("user", { - id: model.id(), + id: model.id().primaryKey(), username: model.text(), role: model.enum(["admin", "moderator", "editor"]), }) @@ -50,8 +43,14 @@ describe("EntityBuilder | enum", () => { entities: [User], tsNode: true, dbName, - debug: true, + password: pgGodCredentials.password, + host: pgGodCredentials.host, + user: pgGodCredentials.user, type: "postgresql", + migrations: { + generator: CustomTsMigrationGenerator, + path: fileSystem.basePath, + }, }) const migrator = orm.getMigrator() diff --git a/packages/core/utils/src/dml/integration-tests/many-to-many.spec.ts b/packages/core/utils/src/dml/integration-tests/__tests__/many-to-many.spec.ts similarity index 84% rename from packages/core/utils/src/dml/integration-tests/many-to-many.spec.ts rename to packages/core/utils/src/dml/integration-tests/__tests__/many-to-many.spec.ts index 6e7525a2e15f4..54c5afa0173b5 100644 --- a/packages/core/utils/src/dml/integration-tests/many-to-many.spec.ts +++ b/packages/core/utils/src/dml/integration-tests/__tests__/many-to-many.spec.ts @@ -1,23 +1,16 @@ import { MetadataStorage, MikroORM } from "@mikro-orm/core" -import { model } from "../entity-builder" -import { toMikroOrmEntities } from "../helpers/create-mikro-orm-entity" +import { model } from "../../entity-builder" +import { toMikroOrmEntities } from "../../helpers/create-mikro-orm-entity" import { createDatabase, dropDatabase } from "pg-god" -import { mikroOrmSerializer, TSMigrationGenerator } from "../../dal" -import { FileSystem } from "../../common" -import { join } from "path" +import { CustomTsMigrationGenerator, mikroOrmSerializer } from "../../../dal" import { EntityConstructor } from "@medusajs/types" +import { pgGodCredentials } from "../utils" +import { FileSystem } from "../../../common" +import { join } from "path" -const DB_HOST = process.env.DB_HOST -const DB_USERNAME = process.env.DB_USERNAME -const DB_PASSWORD = process.env.DB_PASSWORD - -const pgGodCredentials = { - user: DB_USERNAME, - password: DB_PASSWORD, - host: DB_HOST, -} - -const fileSystem = new FileSystem(join(__dirname, "../../migrations")) +export const fileSystem = new FileSystem( + join(__dirname, "../../integration-tests-migrations-many-to-many") +) describe("manyToMany - manyToMany", () => { const dbName = "EntityBuilder-ManyToMany" @@ -28,15 +21,15 @@ describe("manyToMany - manyToMany", () => { User: EntityConstructor, Squad: EntityConstructor - afterAll(() => { - fileSystem.cleanup() + afterAll(async () => { + await fileSystem.cleanup() }) beforeEach(async () => { MetadataStorage.clear() const team = model.define("team", { - id: model.id(), + id: model.id().primaryKey(), name: model.text(), users: model.manyToMany(() => user, { pivotEntity: () => squad, @@ -45,13 +38,13 @@ describe("manyToMany - manyToMany", () => { }) const squad = model.define("teamUsers", { - id: model.id(), + id: model.id().primaryKey(), user: model.belongsTo(() => user, { mappedBy: "squads" }), squad: model.belongsTo(() => team, { mappedBy: "users" }), }) const user = model.define("user", { - id: model.id(), + id: model.id().primaryKey(), username: model.text(), squads: model.manyToMany(() => team, { pivotEntity: () => squad, @@ -67,10 +60,13 @@ describe("manyToMany - manyToMany", () => { entities: [Team, User, Squad], tsNode: true, dbName, - debug: true, + password: pgGodCredentials.password, + host: pgGodCredentials.host, + user: pgGodCredentials.user, type: "postgresql", migrations: { - generator: TSMigrationGenerator, + generator: CustomTsMigrationGenerator, + path: fileSystem.basePath, }, }) diff --git a/packages/core/utils/src/dml/integration-tests/many-to-one.spec.ts b/packages/core/utils/src/dml/integration-tests/__tests__/many-to-one.spec.ts similarity index 79% rename from packages/core/utils/src/dml/integration-tests/many-to-one.spec.ts rename to packages/core/utils/src/dml/integration-tests/__tests__/many-to-one.spec.ts index 2f54b291e40a7..ec0ab4b329fba 100644 --- a/packages/core/utils/src/dml/integration-tests/many-to-one.spec.ts +++ b/packages/core/utils/src/dml/integration-tests/__tests__/many-to-one.spec.ts @@ -1,23 +1,16 @@ import { MetadataStorage, MikroORM } from "@mikro-orm/core" -import { model } from "../entity-builder" -import { toMikroOrmEntities } from "../helpers/create-mikro-orm-entity" +import { model } from "../../entity-builder" +import { toMikroOrmEntities } from "../../helpers/create-mikro-orm-entity" import { createDatabase, dropDatabase } from "pg-god" -import { mikroOrmSerializer } from "../../dal" -import { FileSystem } from "../../common" -import { join } from "path" +import { CustomTsMigrationGenerator, mikroOrmSerializer } from "../../../dal" import { EntityConstructor } from "@medusajs/types" +import { pgGodCredentials } from "../utils" +import { FileSystem } from "../../../common" +import { join } from "path" -const DB_HOST = process.env.DB_HOST -const DB_USERNAME = process.env.DB_USERNAME -const DB_PASSWORD = process.env.DB_PASSWORD - -const pgGodCredentials = { - user: DB_USERNAME, - password: DB_PASSWORD, - host: DB_HOST, -} - -const fileSystem = new FileSystem(join(__dirname, "../../migrations")) +export const fileSystem = new FileSystem( + join(__dirname, "../../integration-tests-migrations-many-to-one") +) describe("manyToOne - belongTo", () => { const dbName = "EntityBuilder-ManyToOne" @@ -25,21 +18,21 @@ describe("manyToOne - belongTo", () => { let orm!: MikroORM let Team: EntityConstructor, User: EntityConstructor - afterAll(() => { - fileSystem.cleanup() + afterAll(async () => { + await fileSystem.cleanup() }) beforeEach(async () => { MetadataStorage.clear() const team = model.define("team", { - id: model.id(), + id: model.id().primaryKey(), name: model.text(), user: model.belongsTo(() => user, { mappedBy: "teams" }), }) const user = model.define("user", { - id: model.id(), + id: model.id().primaryKey(), username: model.text(), teams: model.hasMany(() => team, { mappedBy: "user" }), }) @@ -52,8 +45,14 @@ describe("manyToOne - belongTo", () => { entities: [Team, User], tsNode: true, dbName, - debug: true, + password: pgGodCredentials.password, + host: pgGodCredentials.host, + user: pgGodCredentials.user, type: "postgresql", + migrations: { + generator: CustomTsMigrationGenerator, + path: fileSystem.basePath, + }, }) const migrator = orm.getMigrator() diff --git a/packages/core/utils/src/dml/integration-tests/utils.ts b/packages/core/utils/src/dml/integration-tests/utils.ts new file mode 100644 index 0000000000000..687c8942fd600 --- /dev/null +++ b/packages/core/utils/src/dml/integration-tests/utils.ts @@ -0,0 +1,9 @@ +const DB_HOST = process.env.DB_HOST ?? "localhost" +const DB_USERNAME = process.env.DB_USERNAME ?? "" +const DB_PASSWORD = process.env.DB_PASSWORD ?? "" + +export const pgGodCredentials = { + user: DB_USERNAME, + password: DB_PASSWORD, + host: DB_HOST, +} diff --git a/packages/core/utils/src/dml/properties/id.ts b/packages/core/utils/src/dml/properties/id.ts index ab2be6efc8d7e..c836972239e7c 100644 --- a/packages/core/utils/src/dml/properties/id.ts +++ b/packages/core/utils/src/dml/properties/id.ts @@ -11,7 +11,7 @@ export class IdProperty extends BaseProperty { [IsIdProperty] = true static isIdProperty(value: any): value is IdProperty { - return !!value?.[IsIdProperty] + return !!value?.[IsIdProperty] || value?.dataType?.name === "id" } protected dataType: { diff --git a/packages/core/utils/src/migrations/index.ts b/packages/core/utils/src/migrations/index.ts index d8112ab404d52..b69321eab54fe 100644 --- a/packages/core/utils/src/migrations/index.ts +++ b/packages/core/utils/src/migrations/index.ts @@ -5,6 +5,9 @@ import { UmzugMigration, } from "@mikro-orm/migrations" import { MikroORM, MikroORMOptions } from "@mikro-orm/core" +import { PostgreSqlDriver } from "@mikro-orm/postgresql" +import { dirname } from "path" +import { access, mkdir, writeFile } from "fs/promises" /** * Events emitted by the migrations class @@ -14,17 +17,20 @@ export type MigrationsEvents = { migrated: [UmzugMigration] reverting: [UmzugMigration] reverted: [UmzugMigration] + "revert:skipped": [UmzugMigration & { reason: string }] } /** * Exposes the API to programmatically manage Mikro ORM migrations */ export class Migrations extends EventEmitter { - #config: Partial + #configOrConnection: Partial | MikroORM - constructor(config: Partial) { + constructor( + configOrConnection: Partial | MikroORM + ) { super() - this.#config = config + this.#configOrConnection = configOrConnection } /** @@ -32,10 +38,14 @@ export class Migrations extends EventEmitter { * one */ async #getConnection() { + if ("connect" in this.#configOrConnection) { + return this.#configOrConnection as MikroORM + } + return await MikroORM.init({ - ...this.#config, + ...this.#configOrConnection, migrations: { - ...this.#config.migrations, + ...this.#configOrConnection.migrations, silent: true, }, }) @@ -48,7 +58,9 @@ export class Migrations extends EventEmitter { async generate(): Promise { const connection = await this.#getConnection() const migrator = connection.getMigrator() + try { + await this.ensureSnapshot(migrator["snapshotPath"]) return await migrator.createMigration() } finally { await connection.close(true) @@ -98,9 +110,63 @@ export class Migrations extends EventEmitter { try { return await migrator.down(options) + } catch (error) { + /** + * This is a very ugly hack to recover from an exception thrown by + * MikrORM when the `down` method is not implemented by the + * migration. + * + * We cannot check if "down" method exists on the migration, because it + * always exists (as inherited from the parent class). Also, throwing + * an exception is important, so that Mikro ORM does not consider the + * given migration as reverted. + */ + if ( + error?.migration && + error?.cause?.message === "This migration cannot be reverted" + ) { + this.emit("revert:skipped", { + ...error.migration, + reason: "Missing down method", + }) + return [] + } + + throw error } finally { migrator["umzug"].clearListeners() await connection.close(true) } } + + /** + * Generate a default snapshot file if it does not already exists. This + * prevent from creating a database to manage the migrations and instead + * rely on the snapshot. + * + * @param snapshotPath + * @protected + */ + protected async ensureSnapshot(snapshotPath: string): Promise { + await mkdir(dirname(snapshotPath), { recursive: true }) + + const doesFileExists = await access(snapshotPath) + .then(() => true) + .catch(() => false) + + if (doesFileExists) { + return + } + + const emptySnapshotContent = JSON.stringify( + { + tables: [], + namespaces: [], + }, + null, + 2 + ) + + await writeFile(snapshotPath, emptySnapshotContent, "utf-8") + } } diff --git a/packages/core/utils/src/migrations/integration-tests/__tests__/migrations-generate.spec.ts b/packages/core/utils/src/migrations/integration-tests/__tests__/migrations-generate.spec.ts index 08732b5002edb..b6fb09f245361 100644 --- a/packages/core/utils/src/migrations/integration-tests/__tests__/migrations-generate.spec.ts +++ b/packages/core/utils/src/migrations/integration-tests/__tests__/migrations-generate.spec.ts @@ -1,7 +1,6 @@ import { join } from "path" import { setTimeout } from "timers/promises" import { MetadataStorage } from "@mikro-orm/core" -import { createDatabase, dropDatabase } from "pg-god" import { Migrations } from "../../index" import { FileSystem } from "../../../common" @@ -22,22 +21,12 @@ const pgGodCredentials = { host: DB_HOST, } -// TODO: Reenable once flakiness is taken care of -describe.skip("Generate migrations", () => { +describe("Generate migrations", () => { beforeEach(async () => { - await dropDatabase( - { databaseName: dbName, errorIfNonExist: false }, - pgGodCredentials - ) await fs.cleanup() - await createDatabase({ databaseName: dbName }, pgGodCredentials) }) afterEach(async () => { - await dropDatabase( - { databaseName: dbName, errorIfNonExist: false }, - pgGodCredentials - ) await fs.cleanup() MetadataStorage.clear() }, 300 * 1000) diff --git a/packages/core/utils/src/modules-sdk/define-link.ts b/packages/core/utils/src/modules-sdk/define-link.ts index 4a48e92eb80af..4de85a5073e90 100644 --- a/packages/core/utils/src/modules-sdk/define-link.ts +++ b/packages/core/utils/src/modules-sdk/define-link.ts @@ -142,10 +142,24 @@ export function defineLink( )! if (!serviceAInfo) { - throw new Error(`Service ${serviceAObj.module} was not found`) + throw new Error(`Service ${serviceAObj.module} was not found. If this is your module, make sure you set isQueryable to true in medusa-config.js: + +${serviceAObj.module}: { + // ... + definition: { + isQueryable: true + } +}`) } if (!serviceBInfo) { - throw new Error(`Service ${serviceBObj.module} was not found`) + throw new Error(`Service ${serviceBObj.module} was not found. If this is your module, make sure you set isQueryable to true in medusa-config.js: + +${serviceBObj.module}: { + // ... + definition: { + isQueryable: true + } +}`) } const serviceAKeyEntity = serviceAInfo.linkableKeys?.[serviceAObj.key] diff --git a/packages/core/utils/src/modules-sdk/migration-scripts/index.ts b/packages/core/utils/src/modules-sdk/migration-scripts/index.ts index 125b5cdbe6e5c..53e4c33a0c26d 100644 --- a/packages/core/utils/src/modules-sdk/migration-scripts/index.ts +++ b/packages/core/utils/src/modules-sdk/migration-scripts/index.ts @@ -1,3 +1,4 @@ export * from "./migration-down" export * from "./migration-up" +export * from "./migration-generate" export * from "./seed" diff --git a/packages/core/utils/src/modules-sdk/migration-scripts/migration-down.ts b/packages/core/utils/src/modules-sdk/migration-scripts/migration-down.ts index cd2bbbb12f612..bf8fd491d3a8d 100644 --- a/packages/core/utils/src/modules-sdk/migration-scripts/migration-down.ts +++ b/packages/core/utils/src/modules-sdk/migration-scripts/migration-down.ts @@ -1,23 +1,17 @@ import { LoaderOptions, Logger, ModulesSdkTypes } from "@medusajs/types" - -import { EntitySchema } from "@mikro-orm/core" -import { upperCaseFirst } from "../../common" import { mikroOrmCreateConnection } from "../../dal" -import { DmlEntity, toMikroORMEntity } from "../../dml" import { loadDatabaseConfig } from "../load-module-database-config" +import { Migrations } from "../../migrations" + +const TERMINAL_SIZE = process.stdout.columns /** * Utility function to build a migration script that will revert the migrations. * Only used in mikro orm based modules. * @param moduleName - * @param models * @param pathToMigrations */ -export function buildRevertMigrationScript({ - moduleName, - models, - pathToMigrations, -}) { +export function buildRevertMigrationScript({ moduleName, pathToMigrations }) { /** * This script is only valid for mikro orm managers. If a user provide a custom manager * he is in charge of reverting the migrations. @@ -34,34 +28,33 @@ export function buildRevertMigrationScript({ > = {}) { logger ??= console as unknown as Logger - const dbData = loadDatabaseConfig(moduleName, options)! - const entities = Object.values(models).map((model) => { - if (DmlEntity.isDmlEntity(model)) { - return toMikroORMEntity(model) - } - - return model - }) as unknown as EntitySchema[] + console.log(new Array(TERMINAL_SIZE).join("-")) + console.log("") + logger.info(`MODULE: ${moduleName}`) - const orm = await mikroOrmCreateConnection( - dbData, - entities, - pathToMigrations - ) + const dbData = loadDatabaseConfig(moduleName, options)! + const orm = await mikroOrmCreateConnection(dbData, [], pathToMigrations) + const migrations = new Migrations(orm) + + migrations.on("reverting", (migration) => { + logger.info(` ● Reverting ${migration.name}`) + }) + migrations.on("reverted", (migration) => { + logger.info(` ✔ Reverted ${migration.name}`) + }) + migrations.on("revert:skipped", (migration) => { + logger.info(` ✔ Skipped ${migration.name}. ${migration.reason}`) + }) try { - const migrator = orm.getMigrator() - await migrator.down() - - logger?.info(`${upperCaseFirst(moduleName)} module migration executed`) + const result = await migrations.revert() + if (result.length) { + logger.info("Reverted successfully") + } else { + logger.info("Skipped. Nothing to revert") + } } catch (error) { - logger?.error( - `${upperCaseFirst( - moduleName - )} module migration failed to run - Error: ${error.errros ?? error}` - ) + logger.error(`Failed with error ${error.message}`, error) } - - await orm.close() } } diff --git a/packages/core/utils/src/modules-sdk/migration-scripts/migration-generate.ts b/packages/core/utils/src/modules-sdk/migration-scripts/migration-generate.ts new file mode 100644 index 0000000000000..b682be3606589 --- /dev/null +++ b/packages/core/utils/src/modules-sdk/migration-scripts/migration-generate.ts @@ -0,0 +1,63 @@ +import { LoaderOptions, Logger, ModulesSdkTypes } from "@medusajs/types" +import { mikroOrmCreateConnection } from "../../dal" +import { loadDatabaseConfig } from "../load-module-database-config" +import { Migrations } from "../../migrations" +import { toMikroOrmEntities } from "../../dml" + +const TERMINAL_SIZE = process.stdout.columns + +/** + * Utility function to build a migration generation script that will generate the migrations. + * Only used in mikro orm based modules. + * @param moduleName + * @param models + * @param pathToMigrations + */ +export function buildGenerateMigrationScript({ + moduleName, + models, + pathToMigrations, +}) { + /** + * This script is only valid for mikro orm managers. If a user provide a custom manager + * he is in charge of running the migrations. + * @param options + * @param logger + * @param moduleDeclaration + */ + return async function ({ + options, + logger, + }: Pick< + LoaderOptions, + "options" | "logger" + > = {}) { + logger ??= console as unknown as Logger + + console.log(new Array(TERMINAL_SIZE).join("-")) + console.log("") + logger.info(`MODULE: ${moduleName}`) + + const dbData = loadDatabaseConfig(moduleName, options)! + + const normalizedModels = toMikroOrmEntities(models) + const orm = await mikroOrmCreateConnection( + dbData, + normalizedModels, + pathToMigrations + ) + + const migrations = new Migrations(orm) + + try { + const { fileName } = await migrations.generate() + if (fileName) { + logger.info(`Generated successfully (${fileName}).`) + } else { + logger.info(`Skipped. No changes detected in your models.`) + } + } catch (error) { + logger.error(`Failed with error ${error.message}`, error) + } + } +} diff --git a/packages/core/utils/src/modules-sdk/migration-scripts/migration-up.ts b/packages/core/utils/src/modules-sdk/migration-scripts/migration-up.ts index 5ef1f9e7bb35c..a79aa7613377c 100644 --- a/packages/core/utils/src/modules-sdk/migration-scripts/migration-up.ts +++ b/packages/core/utils/src/modules-sdk/migration-scripts/migration-up.ts @@ -1,18 +1,17 @@ import { LoaderOptions, Logger, ModulesSdkTypes } from "@medusajs/types" -import { EntitySchema } from "@mikro-orm/core" -import { upperCaseFirst } from "../../common" import { mikroOrmCreateConnection } from "../../dal" -import { DmlEntity, toMikroORMEntity } from "../../dml" import { loadDatabaseConfig } from "../load-module-database-config" +import { Migrations } from "../../migrations" + +const TERMINAL_SIZE = process.stdout.columns /** * Utility function to build a migration script that will run the migrations. * Only used in mikro orm based modules. * @param moduleName - * @param models * @param pathToMigrations */ -export function buildMigrationScript({ moduleName, models, pathToMigrations }) { +export function buildMigrationScript({ moduleName, pathToMigrations }) { /** * This script is only valid for mikro orm managers. If a user provide a custom manager * he is in charge of running the migrations. @@ -29,48 +28,30 @@ export function buildMigrationScript({ moduleName, models, pathToMigrations }) { > = {}) { logger ??= console as unknown as Logger - const dbData = loadDatabaseConfig(moduleName, options)! - const entities = Object.values(models).map((model) => { - if (DmlEntity.isDmlEntity(model)) { - return toMikroORMEntity(model) - } + console.log(new Array(TERMINAL_SIZE).join("-")) + console.log("") + logger.info(`MODULE: ${moduleName}`) - return model - }) as unknown as EntitySchema[] + const dbData = loadDatabaseConfig(moduleName, options)! + const orm = await mikroOrmCreateConnection(dbData, [], pathToMigrations) + const migrations = new Migrations(orm) - const orm = await mikroOrmCreateConnection( - dbData, - entities, - pathToMigrations - ) + migrations.on("migrating", (migration) => { + logger.info(` ● Migrating ${migration.name}`) + }) + migrations.on("migrated", (migration) => { + logger.info(` ✔ Migrated ${migration.name}`) + }) try { - const migrator = orm.getMigrator() - const pendingMigrations = await migrator.getPendingMigrations() - - if (pendingMigrations.length) { - logger.info( - `Pending migrations: ${JSON.stringify(pendingMigrations, null, 2)}` - ) - - await migrator.up({ - migrations: pendingMigrations.map((m) => m.name), - }) - - logger.info( - `${upperCaseFirst(moduleName)} module: ${ - pendingMigrations.length - } migration files executed` - ) + const result = await migrations.run() + if (result.length) { + logger.info("Completed successfully") + } else { + logger.info(`Skipped. Database is up-to-date for module.`) } } catch (error) { - logger.error( - `${upperCaseFirst( - moduleName - )} module migration failed to run - Error: ${error.errros ?? error}` - ) + logger.error(`Failed with error ${error.message}`, error) } - - await orm.close() } } diff --git a/packages/core/utils/src/modules-sdk/mikro-orm-cli-config-builder.ts b/packages/core/utils/src/modules-sdk/mikro-orm-cli-config-builder.ts index 6670acde82fe2..4e416df4e314d 100644 --- a/packages/core/utils/src/modules-sdk/mikro-orm-cli-config-builder.ts +++ b/packages/core/utils/src/modules-sdk/mikro-orm-cli-config-builder.ts @@ -1,6 +1,6 @@ import { MikroORMOptions } from "@mikro-orm/core/utils/Configuration" import { DmlEntity, toMikroOrmEntities } from "../dml" -import { TSMigrationGenerator } from "../dal" +import { CustomTsMigrationGenerator } from "../dal" import type { AnyEntity, EntityClass, @@ -59,7 +59,7 @@ export function defineMikroOrmCliConfig( ...options, entities, migrations: { - generator: TSMigrationGenerator, + generator: CustomTsMigrationGenerator, ...options.migrations, }, } diff --git a/packages/core/utils/src/totals/shipping-method/index.ts b/packages/core/utils/src/totals/shipping-method/index.ts index f6c4ccc9b6ca5..ca485111cfe30 100644 --- a/packages/core/utils/src/totals/shipping-method/index.ts +++ b/packages/core/utils/src/totals/shipping-method/index.ts @@ -34,7 +34,7 @@ export interface GetShippingMethodTotalOutput { export function getShippingMethodsTotals( shippingMethods: GetShippingMethodTotalInput[], context: GetShippingMethodsTotalsContext -) { +): Record { const { includeTax } = context const shippingMethodsTotals = {} diff --git a/packages/core/workflows-sdk/src/utils/composer/__tests__/index.spec.ts b/packages/core/workflows-sdk/src/utils/composer/__tests__/index.spec.ts index ed87b950f0ea6..b537f6a70e2c8 100644 --- a/packages/core/workflows-sdk/src/utils/composer/__tests__/index.spec.ts +++ b/packages/core/workflows-sdk/src/utils/composer/__tests__/index.spec.ts @@ -120,9 +120,17 @@ describe("Workflow composer", () => { } ) - const { result } = await workflow.run({ input: { callSubFlow: true } }) + const { result } = await workflow.run({ + input: { callSubFlow: true }, + }) expect(result).toEqual({ result: "hi from outside" }) + + const { result: res2 } = await workflow.run({ + input: { callSubFlow: false }, + }) + + expect(res2).toEqual({ result: "default response" }) }) it("should revert the workflow and sub workflow on failure", async function () { diff --git a/packages/medusa/src/api/admin/customer-groups/validators.ts b/packages/medusa/src/api/admin/customer-groups/validators.ts index 6c44f48afd3c8..f36b0ea433d7d 100644 --- a/packages/medusa/src/api/admin/customer-groups/validators.ts +++ b/packages/medusa/src/api/admin/customer-groups/validators.ts @@ -65,6 +65,6 @@ export type AdminUpdateCustomerGroupType = z.infer< typeof AdminUpdateCustomerGroup > export const AdminUpdateCustomerGroup = z.object({ - name: z.string(), + name: z.string().optional(), metadata: z.record(z.unknown()).nullish(), }) diff --git a/packages/medusa/src/api/admin/returns/route.ts b/packages/medusa/src/api/admin/returns/route.ts index f07ae8f763aea..1c707cfca9a2b 100644 --- a/packages/medusa/src/api/admin/returns/route.ts +++ b/packages/medusa/src/api/admin/returns/route.ts @@ -1,4 +1,4 @@ -import { createAndCompleteReturnOrderWorkflow } from "@medusajs/core-flows" +import { beginReturnOrderWorkflow } from "@medusajs/core-flows" import { ContainerRegistrationKeys, remoteQueryObjectFromString, @@ -42,7 +42,7 @@ export const POST = async ( ) => { const input = req.validatedBody as AdminPostReturnsReqSchemaType - const workflow = createAndCompleteReturnOrderWorkflow(req.scope) + const workflow = beginReturnOrderWorkflow(req.scope) const { result } = await workflow.run({ input, }) diff --git a/packages/medusa/src/api/admin/returns/validators.ts b/packages/medusa/src/api/admin/returns/validators.ts index a57166ae2852b..576784701d514 100644 --- a/packages/medusa/src/api/admin/returns/validators.ts +++ b/packages/medusa/src/api/admin/returns/validators.ts @@ -1,3 +1,4 @@ +import { ClaimType } from "@medusajs/utils" import { z } from "zod" import { createFindParams, @@ -37,31 +38,44 @@ export const AdminGetOrdersParams = createFindParams({ export type AdminGetOrdersParamsType = z.infer -const ReturnShippingSchema = z.object({ - option_id: z.string(), - price: z.number().optional(), -}) - const ItemSchema = z.object({ id: z.string(), quantity: z.number().min(1), reason_id: z.string().nullish(), - note: z.string().nullish(), + note: z.string().optional(), }) export const AdminPostReturnsReqSchema = z.object({ order_id: z.string(), - items: z.array(ItemSchema), - return_shipping: ReturnShippingSchema.optional(), - internal_note: z.string().nullish(), - receive_now: z.boolean().optional(), - refund_amount: z.number().optional(), - location_id: z.string().nullish(), + description: z.string().optional(), + internal_note: z.string().optional(), + metadata: z.record(z.unknown()).nullish(), }) export type AdminPostReturnsReqSchemaType = z.infer< typeof AdminPostReturnsReqSchema > +export const AdminPostOrderClaimsReqSchema = z.object({ + type: z.nativeEnum(ClaimType), + order_id: z.string(), + description: z.string().optional(), + internal_note: z.string().optional(), + metadata: z.record(z.unknown()).nullish(), +}) +export type AdminPostOrderClaimsReqSchemaType = z.infer< + typeof AdminPostOrderClaimsReqSchema +> + +export const AdminPostOrderExchangesReqSchema = z.object({ + order_id: z.string(), + description: z.string().optional(), + internal_note: z.string().optional(), + metadata: z.record(z.unknown()).nullish(), +}) +export type AdminPostOrderExchangesReqSchemaType = z.infer< + typeof AdminPostOrderExchangesReqSchema +> + export const AdminPostReceiveReturnsReqSchema = z.object({ return_id: z.string(), items: z.array(ItemSchema), diff --git a/packages/medusa/src/commands/migrate.ts b/packages/medusa/src/commands/migrate.ts index aa5752fa5b7f7..41f147e675e4a 100644 --- a/packages/medusa/src/commands/migrate.ts +++ b/packages/medusa/src/commands/migrate.ts @@ -1,16 +1,50 @@ import Logger from "../loaders/logger" -import { migrateMedusaApp, revertMedusaApp } from "../loaders/medusa-app" +import { runMedusaAppMigrations } from "../loaders/medusa-app" import { initializeContainer } from "../loaders" -import { ContainerRegistrationKeys } from "@medusajs/utils" +import { ContainerRegistrationKeys, MedusaError } from "@medusajs/utils" import { getResolvedPlugins } from "../loaders/helpers/resolve-plugins" import { resolvePluginsLinks } from "../loaders/helpers/resolve-plugins-links" +const TERMINAL_SIZE = process.stdout.columns + +type Action = "run" | "revert" | "generate" | "show" + +function validateInputArgs({ + action, + modules, +}: { + action: Action + modules: string[] +}) { + const actionsRequiringModules = ["revert", "generate"] + + if (modules.length && !actionsRequiringModules.includes(action)) { + Logger.error( + ` cannot be specified with the "${action}" action. Please remove the argument and try again.` + ) + process.exit(1) + } + + if (!modules.length && actionsRequiringModules.includes(action)) { + Logger.error( + "Please provide the modules for which you want to revert migrations" + ) + Logger.error(`For example: "npx medusa migration revert "`) + process.exit(1) + } +} + const main = async function ({ directory }) { const args = process.argv args.shift() args.shift() args.shift() + const action = args[0] as "run" | "revert" | "generate" | "show" + const modules = args.splice(1) + + validateInputArgs({ action, modules }) + const container = await initializeContainer(directory) const configModule = container.resolve( @@ -20,21 +54,62 @@ const main = async function ({ directory }) { const plugins = getResolvedPlugins(directory, configModule, true) || [] const pluginLinks = await resolvePluginsLinks(plugins, container) - if (args[0] === "run") { - await migrateMedusaApp({ + if (action === "run") { + Logger.info("Running migrations...") + + await runMedusaAppMigrations({ configModule, linkModules: pluginLinks, container, + action: "run", }) - Logger.info("Migrations completed.") + console.log(new Array(TERMINAL_SIZE).join("-")) + Logger.info("Migrations completed") process.exit() - } else if (args[0] === "revert") { - await revertMedusaApp({ configModule, linkModules: pluginLinks, container }) + } else if (action === "revert") { + Logger.info("Reverting migrations...") + + try { + await runMedusaAppMigrations({ + moduleNames: modules, + configModule, + linkModules: pluginLinks, + container, + action: "revert", + }) + console.log(new Array(TERMINAL_SIZE).join("-")) + Logger.info("Migrations reverted") + process.exit() + } catch (error) { + console.log(new Array(TERMINAL_SIZE).join("-")) + if (error.code && error.code === MedusaError.Codes.UNKNOWN_MODULES) { + Logger.error(error.message) + const modulesList = error.allModules.map( + (name: string) => ` - ${name}` + ) + Logger.error(`Available modules:\n${modulesList.join("\n")}`) + } else { + Logger.error(error.message, error) + } + process.exit(1) + } + } else if (action === "generate") { + Logger.info("Generating migrations...") - Logger.info("Migrations reverted.") - } else if (args[0] === "show") { - Logger.info("not supported") + await runMedusaAppMigrations({ + moduleNames: modules, + configModule, + linkModules: pluginLinks, + container, + action: "generate", + }) + + console.log(new Array(TERMINAL_SIZE).join("-")) + Logger.info("Migrations generated") + process.exit() + } else if (action === "show") { + Logger.info("Action not supported yet") process.exit(0) } } diff --git a/packages/medusa/src/commands/utils/get-migrations.js b/packages/medusa/src/commands/utils/get-migrations.js index 4d4af59481ddf..b7c1b32f322c1 100644 --- a/packages/medusa/src/commands/utils/get-migrations.js +++ b/packages/medusa/src/commands/utils/get-migrations.js @@ -126,11 +126,11 @@ export const runIsolatedModulesMigration = async (configModule) => { continue } - await MedusaModule.migrateUp( - moduleResolution.definition.key, - moduleResolution.resolutionPath, - moduleResolution.options - ) + await MedusaModule.migrateUp({ + moduleKey: moduleResolution.definition.key, + modulePath: moduleResolution.resolutionPath, + options: moduleResolution.options, + }) } } @@ -151,10 +151,10 @@ export const revertIsolatedModulesMigration = async (configModule) => { continue } - await MedusaModule.migrateDown( - moduleResolution.definition.key, - moduleResolution.resolutionPath, - moduleResolution.options - ) + await MedusaModule.migrateDown({ + moduleKey: moduleResolution.definition.key, + modulePath: moduleResolution.resolutionPath, + options: moduleResolution.options, + }) } } diff --git a/packages/medusa/src/loaders/medusa-app.ts b/packages/medusa/src/loaders/medusa-app.ts index 0bb78812edd22..2c1c3160954ad 100644 --- a/packages/medusa/src/loaders/medusa-app.ts +++ b/packages/medusa/src/loaders/medusa-app.ts @@ -1,6 +1,7 @@ import { MedusaApp, MedusaAppMigrateDown, + MedusaAppMigrateGenerate, MedusaAppMigrateUp, MedusaAppOptions, MedusaAppOutput, @@ -57,11 +58,21 @@ export function mergeDefaultModules( return configModules } -async function runMedusaAppMigrations({ +/** + * Run, Revert or Generate the migrations for the medusa app. + * + * @param configModule + * @param container + * @param moduleNames + * @param linkModules + * @param action + */ +export async function runMedusaAppMigrations({ configModule, container, - revert = false, + moduleNames, linkModules, + action = "run", }: { configModule: { modules?: CommonTypes.ConfigModule["modules"] @@ -69,8 +80,16 @@ async function runMedusaAppMigrations({ } linkModules?: MedusaAppOptions["linkModules"] container: MedusaContainer - revert?: boolean -}): Promise { +} & ( + | { + moduleNames?: never + action: "run" + } + | { + moduleNames: string[] + action: "revert" | "generate" + } +)): Promise { const injectedDependencies = { [ContainerRegistrationKeys.PG_CONNECTION]: container.resolve( ContainerRegistrationKeys.PG_CONNECTION @@ -92,62 +111,21 @@ async function runMedusaAppMigrations({ } const configModules = mergeDefaultModules(configModule.modules) - if (revert) { - await MedusaAppMigrateDown({ - modulesConfig: configModules, - sharedContainer: container, - linkModules, - sharedResourcesConfig, - injectedDependencies, - }) - } else { - await MedusaAppMigrateUp({ - modulesConfig: configModules, - sharedContainer: container, - linkModules, - sharedResourcesConfig, - injectedDependencies, - }) - } -} - -export async function migrateMedusaApp({ - configModule, - linkModules, - container, -}: { - configModule: { - modules?: CommonTypes.ConfigModule["modules"] - projectConfig: CommonTypes.ConfigModule["projectConfig"] - } - container: MedusaContainer - linkModules?: MedusaAppOptions["linkModules"] -}): Promise { - await runMedusaAppMigrations({ - configModule, - container, + const migrationOptions = { + modulesConfig: configModules, + sharedContainer: container, linkModules, - }) -} + sharedResourcesConfig, + injectedDependencies, + } -export async function revertMedusaApp({ - configModule, - linkModules, - container, -}: { - configModule: { - modules?: CommonTypes.ConfigModule["modules"] - projectConfig: CommonTypes.ConfigModule["projectConfig"] + if (action === "revert") { + await MedusaAppMigrateDown(moduleNames!, migrationOptions) + } else if (action === "run") { + await MedusaAppMigrateUp(migrationOptions) + } else { + await MedusaAppMigrateGenerate(moduleNames!, migrationOptions) } - container: MedusaContainer - linkModules?: MedusaAppOptions["linkModules"] -}): Promise { - await runMedusaAppMigrations({ - configModule, - container, - revert: true, - linkModules, - }) } export const loadMedusaApp = async ( diff --git a/packages/modules/auth/src/migrations/Migration20240529080336.ts b/packages/modules/auth/src/migrations/Migration20240529080336.ts index 0394962a9b7ba..77fa4c1ee96cf 100644 --- a/packages/modules/auth/src/migrations/Migration20240529080336.ts +++ b/packages/modules/auth/src/migrations/Migration20240529080336.ts @@ -1,30 +1,56 @@ -import { Migration } from '@mikro-orm/migrations'; +import { Migration } from "@mikro-orm/migrations" export class Migration20240529080336 extends Migration { - async up(): Promise { - this.addSql('create table if not exists "provider_identity" ("id" text not null, "entity_id" text not null, "provider" text not null, "auth_identity_id" text not null, "user_metadata" jsonb null, "provider_metadata" jsonb null, "created_at" timestamptz not null default now(), "updated_at" timestamptz not null default now(), constraint "provider_identity_pkey" primary key ("id"));'); - this.addSql('CREATE INDEX IF NOT EXISTS "IDX_provider_identity_auth_identity_id" ON "provider_identity" (auth_identity_id);'); - this.addSql('CREATE UNIQUE INDEX IF NOT EXISTS "IDX_provider_identity_provider_entity_id" ON "provider_identity" (entity_id, provider);'); - - this.addSql('alter table if exists "provider_identity" add constraint "provider_identity_auth_identity_id_foreign" foreign key ("auth_identity_id") references "auth_identity" ("id") on update cascade on delete cascade;'); - - this.addSql('alter table if exists "auth_identity" add column if not exists "created_at" timestamptz not null default now(), add column "updated_at" timestamptz not null default now();'); - - this.addSql('alter table if exists "auth_identity" drop constraint if exists "IDX_auth_identity_provider_entity_id";'); - this.addSql('alter table if exists "auth_identity" drop column if exists "entity_id";'); - this.addSql('alter table if exists "auth_identity" drop column if exists "provider";'); - this.addSql('alter table if exists "auth_identity" drop column if exists "user_metadata";'); - this.addSql('alter table if exists "auth_identity" drop column if exists "provider_metadata";'); + this.addSql( + 'create table if not exists "provider_identity" ("id" text not null, "entity_id" text not null, "provider" text not null, "auth_identity_id" text not null, "user_metadata" jsonb null, "provider_metadata" jsonb null, "created_at" timestamptz not null default now(), "updated_at" timestamptz not null default now(), constraint "provider_identity_pkey" primary key ("id"));' + ) + this.addSql( + 'CREATE INDEX IF NOT EXISTS "IDX_provider_identity_auth_identity_id" ON "provider_identity" (auth_identity_id);' + ) + this.addSql( + 'CREATE UNIQUE INDEX IF NOT EXISTS "IDX_provider_identity_provider_entity_id" ON "provider_identity" (entity_id, provider);' + ) + + this.addSql( + 'alter table if exists "provider_identity" add constraint "provider_identity_auth_identity_id_foreign" foreign key ("auth_identity_id") references "auth_identity" ("id") on update cascade on delete cascade;' + ) + + this.addSql( + 'alter table if exists "auth_identity" add column if not exists "created_at" timestamptz not null default now(), add column "updated_at" timestamptz not null default now();' + ) + + this.addSql( + 'alter table if exists "auth_identity" drop constraint if exists "IDX_auth_identity_provider_entity_id";' + ) + this.addSql( + 'alter table if exists "auth_identity" drop column if exists "entity_id";' + ) + this.addSql( + 'alter table if exists "auth_identity" drop column if exists "provider";' + ) + this.addSql( + 'alter table if exists "auth_identity" drop column if exists "user_metadata";' + ) + this.addSql( + 'alter table if exists "auth_identity" drop column if exists "provider_metadata";' + ) } async down(): Promise { - this.addSql('drop table if exists "provider_identity" cascade;'); - - this.addSql('alter table if exists "auth_identity" add column if not exists "entity_id" text not null, add column "provider" text not null, add column "user_metadata" jsonb null, add column "provider_metadata" jsonb null;'); - this.addSql('alter table if exists "auth_identity" alter column if exists "app_metadata" type jsonb using ("app_metadata"::jsonb);'); - this.addSql('alter table if exists "auth_identity" alter column if exists "app_metadata" set not null;'); - this.addSql('alter table if exists "auth_identity" add constraint "IDX_auth_identity_provider_entity_id" unique ("provider", "entity_id");'); + this.addSql('drop table if exists "provider_identity" cascade;') + + this.addSql( + 'alter table if exists "auth_identity" add column if not exists "entity_id" text not null, add column "provider" text not null, add column "user_metadata" jsonb null, add column "provider_metadata" jsonb null;' + ) + this.addSql( + 'alter table if exists "auth_identity" alter column "app_metadata" type jsonb using ("app_metadata"::jsonb);' + ) + this.addSql( + 'alter table if exists "auth_identity" alter column "app_metadata" set not null;' + ) + this.addSql( + 'alter table if exists "auth_identity" add constraint "IDX_auth_identity_provider_entity_id" unique ("provider", "entity_id");' + ) } - } diff --git a/packages/modules/order/src/services/actions/register-shipment.ts b/packages/modules/order/src/services/actions/register-shipment.ts index 27de51705275b..68175aeeea56d 100644 --- a/packages/modules/order/src/services/actions/register-shipment.ts +++ b/packages/modules/order/src/services/actions/register-shipment.ts @@ -12,7 +12,7 @@ export async function registerShipment( ): Promise { let shippingMethodId - const actions: CreateOrderChangeActionDTO[] = data.items.map((item) => { + const actions: CreateOrderChangeActionDTO[] = data.items!.map((item) => { return { action: ChangeActionType.SHIP_ITEM, internal_note: item.internal_note, diff --git a/packages/modules/order/src/services/order-module-service.ts b/packages/modules/order/src/services/order-module-service.ts index 350f797afbceb..93dd17cf0ae38 100644 --- a/packages/modules/order/src/services/order-module-service.ts +++ b/packages/modules/order/src/services/order-module-service.ts @@ -1718,6 +1718,134 @@ export default class OrderModuleService< }) } + // @ts-ignore + async createReturns( + data: OrderTypes.CreateOrderReturnDTO, + sharedContext?: Context + ): Promise + + async createReturns( + data: OrderTypes.CreateOrderReturnDTO[], + sharedContext?: Context + ): Promise + + @InjectTransactionManager("baseRepository_") + async createReturns( + data: OrderTypes.CreateOrderReturnDTO | OrderTypes.CreateOrderReturnDTO[], + @MedusaContext() sharedContext?: Context + ): Promise { + const created = await this.createOrderRelatedEntity_( + data, + this.returnService_, + sharedContext + ) + + return await this.baseRepository_.serialize( + !Array.isArray(data) ? created[0] : created, + { + populate: true, + } + ) + } + + // @ts-ignore + async createOrderClaims( + data: OrderTypes.CreateOrderClaimDTO, + sharedContext?: Context + ): Promise + + async createOrderClaims( + data: OrderTypes.CreateOrderClaimDTO[], + sharedContext?: Context + ): Promise + + @InjectTransactionManager("baseRepository_") + async createOrderClaims( + data: OrderTypes.CreateOrderClaimDTO | OrderTypes.CreateOrderClaimDTO[], + @MedusaContext() sharedContext?: Context + ): Promise { + const created = await this.createOrderRelatedEntity_( + data, + this.orderClaimService_, + sharedContext + ) + + return await this.baseRepository_.serialize( + !Array.isArray(data) ? created[0] : created, + { + populate: true, + } + ) + } + + // @ts-ignore + async createOrderExchanges( + data: OrderTypes.CreateOrderExchangeDTO, + sharedContext?: Context + ): Promise + + async createOrderExchanges( + data: OrderTypes.CreateOrderExchangeDTO[], + sharedContext?: Context + ): Promise + + @InjectTransactionManager("baseRepository_") + async createOrderExchanges( + data: + | OrderTypes.CreateOrderExchangeDTO + | OrderTypes.CreateOrderExchangeDTO[], + @MedusaContext() sharedContext?: Context + ): Promise { + const created = await this.createOrderRelatedEntity_( + data, + this.orderExchangeService_, + sharedContext + ) + + return await this.baseRepository_.serialize( + !Array.isArray(data) ? created[0] : created, + { + populate: true, + } + ) + } + + @InjectTransactionManager("baseRepository_") + private async createOrderRelatedEntity_( + data: any, + service: any, + sharedContext?: Context + ) { + const data_ = Array.isArray(data) ? data : [data] + + const inputDataMap = data_.reduce((acc, curr) => { + acc[curr.order_id] = curr + return acc + }, {}) + + const orderIds = data_.map((d) => d.order_id) + const orders = await this.orderService_.list( + { id: orderIds }, + { select: ["id", "version"] }, + sharedContext + ) + + if (orders.length !== orderIds.length) { + const foundOrders = orders.map((o) => o.id) + const missing = orderIds.filter((id) => !foundOrders.includes(id)) + throw new MedusaError( + MedusaError.Types.INVALID_DATA, + `Order could not be found: ${missing.join(", ")}` + ) + } + + for (const order of orders) { + inputDataMap[order.id].order_version = order.version + } + + return await service.create(data_, sharedContext) + } + async createOrderChange( data: CreateOrderChangeDTO, sharedContext?: Context @@ -1770,7 +1898,7 @@ export default class OrderModuleService< dataMap[change.order_id] = change } - const orders = await this.listOrders( + const orders = await this.orderService_.list( { id: orderIds }, { select: ["id", "version"] }, sharedContext @@ -1804,9 +1932,28 @@ export default class OrderModuleService< return await this.orderChangeService_.create(input, sharedContext) } - async previewOrderChange(orderChangeId: string, sharedContext?: Context) { + @InjectManager("baseRepository_") + async previewOrderChange(orderId: string, sharedContext?: Context) { + const order = await this.retrieveOrder( + orderId, + { + select: ["id", "version", "items.detail", "summary", "total"], + relations: [ + "transactions", + "items", + "items.detail", + "shipping_methods", + ], + }, + sharedContext + ) + + if (!order.order_change) { + return order + } + const orderChange = await super.retrieveOrderChange( - orderChangeId, + order.order_change.id, { relations: ["actions"] }, sharedContext ) @@ -1822,20 +1969,6 @@ export default class OrderModuleService< } }) - const order = await this.retrieveOrder( - orderChange.order_id, - { - select: ["id", "version", "items.detail", "summary", "total"], - relations: [ - "transactions", - "items", - "items.detail", - "shipping_methods", - ], - }, - sharedContext - ) - const calculated = calculateOrderChange({ order: order as any, actions: orderChange.actions, @@ -2013,7 +2146,7 @@ export default class OrderModuleService< ): Promise { const orderIds = Array.isArray(orderId) ? orderId : [orderId] - const orders = await this.listOrders( + const orders = await this.orderService_.list( { id: orderIds }, { select: ["id", "version"], diff --git a/packages/modules/order/src/utils/transform-order.ts b/packages/modules/order/src/utils/transform-order.ts index 71c5f704f1f84..0ba0aac1cd2d8 100644 --- a/packages/modules/order/src/utils/transform-order.ts +++ b/packages/modules/order/src/utils/transform-order.ts @@ -97,7 +97,7 @@ function cleanNestedRelations(obj) { } function formatOrderReturn(orderReturn, mainOrder) { - orderReturn.items.forEach((orderItem) => { + orderReturn.items?.forEach((orderItem) => { const item = mainOrder.items?.find((item) => item.id === orderItem.item_id) orderItem.detail = item?.detail diff --git a/packages/modules/pricing/integration-tests/__tests__/services/pricing-module/calculate-price.spec.ts b/packages/modules/pricing/integration-tests/__tests__/services/pricing-module/calculate-price.spec.ts index 8c5e3116d1aa3..915c0d9107e27 100644 --- a/packages/modules/pricing/integration-tests/__tests__/services/pricing-module/calculate-price.spec.ts +++ b/packages/modules/pricing/integration-tests/__tests__/services/pricing-module/calculate-price.spec.ts @@ -57,6 +57,7 @@ moduleIntegrationTestRunner({ const priceSetsData = [ { id: "price-set-EUR" }, { id: "price-set-PLN" }, + { id: "price-set-ETH" }, ] as unknown as CreatePriceSetDTO[] const pricesData = [ @@ -70,6 +71,18 @@ moduleIntegrationTestRunner({ max_quantity: 10, rules_count: 0, }, + { + id: "price-ETH", + title: "price ETH", + price_set_id: "price-set-ETH", + currency_code: "ETH", + amount: { + value: "12345678988754.00000010000000085", + }, + min_quantity: 1, + max_quantity: 10, + rules_count: 0, + }, { id: "price-company_id-EUR", title: "price EUR - company_id", @@ -321,9 +334,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 1000, + raw_calculated_amount: { + value: "1000", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 1000, + raw_original_amount: { + value: "1000", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: "price-PLN", @@ -343,6 +364,50 @@ moduleIntegrationTestRunner({ ]) }) + it("should return filled prices when 1 context is present and price is setup for ETH", async () => { + const priceSetsResult = await service.calculatePrices( + { id: ["price-set-ETH"] }, + { + context: { currency_code: "ETH" }, + } + ) + + expect(priceSetsResult).toEqual([ + { + id: "price-set-ETH", + is_calculated_price_price_list: false, + is_calculated_price_tax_inclusive: false, + calculated_amount: 12345678988754.000000100000001, + raw_calculated_amount: { + value: "12345678988754.00000010000000085", + precision: 20, + }, + is_original_price_price_list: false, + is_original_price_tax_inclusive: false, + original_amount: 12345678988754.000000100000001, + raw_original_amount: { + value: "12345678988754.00000010000000085", + precision: 20, + }, + currency_code: "ETH", + calculated_price: { + id: "price-ETH", + price_list_id: null, + price_list_type: null, + min_quantity: 1, + max_quantity: 10, + }, + original_price: { + id: "price-ETH", + price_list_id: null, + price_list_type: null, + min_quantity: 1, + max_quantity: 10, + }, + }, + ]) + }) + it("should return filled prices when 1 context is present and price is setup for PLN region_id", async () => { const priceSetsResult = await service.calculatePrices( { id: ["price-set-EUR", "price-set-PLN"] }, @@ -357,9 +422,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 300, + raw_calculated_amount: { + value: "300", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 300, + raw_original_amount: { + value: "300", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: "price-region_id-PLN", @@ -393,9 +466,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 1000, + raw_calculated_amount: { + value: "1000", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 1000, + raw_original_amount: { + value: "1000", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: "price-PLN", @@ -440,9 +521,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 300, + raw_calculated_amount: { + value: "300", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 300, + raw_original_amount: { + value: "300", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: "price-region_id-PLN", @@ -476,9 +565,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 1000, + raw_calculated_amount: { + value: "1000", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 1000, + raw_original_amount: { + value: "1000", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: "price-PLN", @@ -512,9 +609,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 250, + raw_calculated_amount: { + value: "250", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 250, + raw_original_amount: { + value: "250", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: "price-region_id-PLN-5-qty", @@ -553,9 +658,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 300, + raw_calculated_amount: { + value: "300", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 300, + raw_original_amount: { + value: "300", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: "price-region_id-PLN", @@ -595,9 +708,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 100, + raw_calculated_amount: { + value: "100", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 100, + raw_original_amount: { + value: "100", + precision: 20, + }, currency_code: "EUR", calculated_price: { id: "price-region_id_company_id-PL-EUR-customer-group", @@ -637,9 +758,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 300, + raw_calculated_amount: { + value: "300", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 300, + raw_original_amount: { + value: "300", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: "price-region_id-PLN", @@ -679,9 +808,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 1000, + raw_calculated_amount: { + value: "1000", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 1000, + raw_original_amount: { + value: "1000", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: "price-PLN", @@ -730,9 +867,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 300, + raw_calculated_amount: { + value: "300", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 300, + raw_original_amount: { + value: "300", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: "price-region_id-PLN", @@ -774,9 +919,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: true, is_calculated_price_tax_inclusive: false, calculated_amount: 232, + raw_calculated_amount: { + value: "232", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 400, + raw_original_amount: { + value: "400", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: expect.any(String), @@ -825,9 +978,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: true, is_calculated_price_tax_inclusive: false, calculated_amount: 232, + raw_calculated_amount: { + value: "232", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 400, + raw_original_amount: { + value: "400", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: expect.any(String), @@ -868,9 +1029,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: true, is_calculated_price_tax_inclusive: false, calculated_amount: 232, + raw_calculated_amount: { + value: "232", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 400, + raw_original_amount: { + value: "400", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: expect.any(String), @@ -908,9 +1077,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: true, is_calculated_price_tax_inclusive: false, calculated_amount: 232, + raw_calculated_amount: { + value: "232", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 1000, + raw_original_amount: { + value: "1000", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: expect.any(String), @@ -951,9 +1128,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: true, is_calculated_price_tax_inclusive: false, calculated_amount: 232, + raw_calculated_amount: { + value: "232", + precision: 20, + }, is_original_price_price_list: true, is_original_price_tax_inclusive: false, original_amount: 232, + raw_original_amount: { + value: "232", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: expect.any(String), @@ -993,9 +1178,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 300, + raw_calculated_amount: { + value: "300", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 300, + raw_original_amount: { + value: "300", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: "price-region_id-PLN", @@ -1035,9 +1228,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 300, + raw_calculated_amount: { + value: "300", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 300, + raw_original_amount: { + value: "300", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: expect.any(String), @@ -1090,9 +1291,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: true, is_calculated_price_tax_inclusive: false, calculated_amount: 232, + raw_calculated_amount: { + value: "232", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 400, + raw_original_amount: { + value: "400", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: expect.any(String), @@ -1146,9 +1355,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 400, + raw_calculated_amount: { + value: "400", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 400, + raw_original_amount: { + value: "400", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: "price-company_id-PLN", @@ -1201,9 +1418,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: false, is_calculated_price_tax_inclusive: false, calculated_amount: 400, + raw_calculated_amount: { + value: "400", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 400, + raw_original_amount: { + value: "400", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: "price-company_id-PLN", @@ -1258,9 +1483,14 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: true, is_calculated_price_tax_inclusive: false, calculated_amount: 200, + raw_calculated_amount: { + value: "200", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: null, + raw_original_amount: null, currency_code: "EUR", calculated_price: { id: expect.any(String), @@ -1311,9 +1541,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: true, is_calculated_price_tax_inclusive: false, calculated_amount: 111, + raw_calculated_amount: { + value: "111", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 400, + raw_original_amount: { + value: "400", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: expect.any(String), @@ -1364,9 +1602,17 @@ moduleIntegrationTestRunner({ is_calculated_price_price_list: true, is_calculated_price_tax_inclusive: false, calculated_amount: 232, + raw_calculated_amount: { + value: "232", + precision: 20, + }, is_original_price_price_list: false, is_original_price_tax_inclusive: false, original_amount: 400, + raw_original_amount: { + value: "400", + precision: 20, + }, currency_code: "PLN", calculated_price: { id: expect.any(String), @@ -1409,8 +1655,16 @@ moduleIntegrationTestRunner({ id: "price-set-PLN", is_calculated_price_tax_inclusive: true, calculated_amount: 1000, + raw_calculated_amount: { + value: "1000", + precision: 20, + }, is_original_price_tax_inclusive: true, original_amount: 1000, + raw_original_amount: { + value: "1000", + precision: 20, + }, currency_code: "PLN", }), ]) @@ -1442,8 +1696,16 @@ moduleIntegrationTestRunner({ id: "price-set-PLN", is_calculated_price_tax_inclusive: true, calculated_amount: 300, + raw_calculated_amount: { + value: "300", + precision: 20, + }, is_original_price_tax_inclusive: true, original_amount: 300, + raw_original_amount: { + value: "300", + precision: 20, + }, currency_code: "PLN", }), ]) @@ -1475,8 +1737,16 @@ moduleIntegrationTestRunner({ id: "price-set-PLN", is_calculated_price_tax_inclusive: true, calculated_amount: 300, + raw_calculated_amount: { + value: "300", + precision: 20, + }, is_original_price_tax_inclusive: true, original_amount: 300, + raw_original_amount: { + value: "300", + precision: 20, + }, currency_code: "PLN", }), ]) @@ -1512,8 +1782,16 @@ moduleIntegrationTestRunner({ id: "price-set-PLN", is_calculated_price_tax_inclusive: false, calculated_amount: 232, + raw_calculated_amount: { + value: "232", + precision: 20, + }, is_original_price_tax_inclusive: true, original_amount: 300, + raw_original_amount: { + value: "300", + precision: 20, + }, currency_code: "PLN", }), ]) diff --git a/packages/modules/pricing/src/repositories/pricing.ts b/packages/modules/pricing/src/repositories/pricing.ts index 95208123ab7bd..55865d308a72c 100644 --- a/packages/modules/pricing/src/repositories/pricing.ts +++ b/packages/modules/pricing/src/repositories/pricing.ts @@ -63,6 +63,7 @@ export class PricingRepository .select({ id: "price.id", amount: "price.amount", + raw_amount: "price.raw_amount", min_quantity: "price.min_quantity", max_quantity: "price.max_quantity", currency_code: "price.currency_code", @@ -152,6 +153,7 @@ export class PricingRepository id: "price.id", price_set_id: "ps.id", amount: "price.amount", + raw_amount: "price.raw_amount", min_quantity: "price.min_quantity", max_quantity: "price.max_quantity", currency_code: "price.currency_code", diff --git a/packages/modules/pricing/src/services/pricing-module.ts b/packages/modules/pricing/src/services/pricing-module.ts index 0101d2497b151..71fcd1d5a67c7 100644 --- a/packages/modules/pricing/src/services/pricing-module.ts +++ b/packages/modules/pricing/src/services/pricing-module.ts @@ -42,15 +42,15 @@ import { Price, PriceList, PriceListRule, + PricePreference, PriceRule, PriceSet, - PricePreference, } from "@models" import { ServiceTypes } from "@types" import { eventBuilders, validatePriceListDates } from "@utils" -import { joinerConfig } from "../joiner-config" import { CreatePriceListDTO, UpsertPriceDTO } from "src/types/services" +import { joinerConfig } from "../joiner-config" type InjectedDependencies = { baseRepository: DAL.RepositoryService @@ -338,7 +338,9 @@ export default class PricingModuleService calculatedPrice.currency_code!, pricingContext.context?.region_id as string ), - calculated_amount: parseInt(calculatedPrice?.amount || "") || null, + calculated_amount: + parseFloat((calculatedPrice?.amount as string) || "") || null, + raw_calculated_amount: calculatedPrice?.raw_amount || null, is_original_price_price_list: !!originalPrice?.price_list_id, is_original_price_tax_inclusive: originalPrice?.id @@ -349,7 +351,9 @@ export default class PricingModuleService pricingContext.context?.region_id as string ) : false, - original_amount: parseInt(originalPrice?.amount || "") || null, + original_amount: + parseFloat((originalPrice?.amount as string) || "") || null, + raw_original_amount: originalPrice?.raw_amount || null, currency_code: calculatedPrice?.currency_code || null, diff --git a/www/apps/api-reference/specs/admin/code_samples/Shell/admin_orders_{id}_fulfillments_{fulfillment_id}_shipments/post.sh b/www/apps/api-reference/specs/admin/code_samples/Shell/admin_orders_{id}_fulfillments_{fulfillment_id}_shipments/post.sh index ecf3ffe4f655a..c626abc98a973 100644 --- a/www/apps/api-reference/specs/admin/code_samples/Shell/admin_orders_{id}_fulfillments_{fulfillment_id}_shipments/post.sh +++ b/www/apps/api-reference/specs/admin/code_samples/Shell/admin_orders_{id}_fulfillments_{fulfillment_id}_shipments/post.sh @@ -4,8 +4,8 @@ curl -X POST '{backend_url}/admin/orders/{id}/fulfillments/{fulfillment_id}/ship --data-raw '{ "items": [ { - "id": "id_5sTwO6Lz9h9W7f1U", - "quantity": 395722780311552 + "id": "id_rnSpxwfxEfbXVCA7", + "quantity": 3643591194836992 } ], "metadata": {} diff --git a/www/apps/api-reference/specs/admin/components/schemas/AdminPostReceiveReturnsReqSchema.yaml b/www/apps/api-reference/specs/admin/components/schemas/AdminPostReceiveReturnsReqSchema.yaml index d097909bcc3d7..c5a60d0da0fa9 100644 --- a/www/apps/api-reference/specs/admin/components/schemas/AdminPostReceiveReturnsReqSchema.yaml +++ b/www/apps/api-reference/specs/admin/components/schemas/AdminPostReceiveReturnsReqSchema.yaml @@ -20,7 +20,6 @@ properties: - id - quantity - reason_id - - note properties: id: type: string diff --git a/www/apps/api-reference/specs/admin/components/schemas/AdminPostReturnsReqSchema.yaml b/www/apps/api-reference/specs/admin/components/schemas/AdminPostReturnsReqSchema.yaml index 16bc9766b54ff..3422c2cca993f 100644 --- a/www/apps/api-reference/specs/admin/components/schemas/AdminPostReturnsReqSchema.yaml +++ b/www/apps/api-reference/specs/admin/components/schemas/AdminPostReturnsReqSchema.yaml @@ -3,69 +3,20 @@ description: SUMMARY x-schemaName: AdminPostReturnsReqSchema required: - order_id - - items - - internal_note - - location_id + - metadata properties: order_id: type: string title: order_id description: The return's order id. - items: - type: array - description: The return's items. - items: - type: object - description: The item's items. - required: - - id - - quantity - - reason_id - - note - properties: - id: - type: string - title: id - description: The item's ID. - quantity: - type: number - title: quantity - description: The item's quantity. - reason_id: - type: string - title: reason_id - description: The item's reason id. - note: - type: string - title: note - description: The item's note. - return_shipping: - type: object - description: The return's return shipping. - required: - - option_id - properties: - option_id: - type: string - title: option_id - description: The return shipping's option id. - price: - type: number - title: price - description: The return shipping's price. + description: + type: string + title: description + description: The return's description. internal_note: type: string title: internal_note description: The return's internal note. - receive_now: - type: boolean - title: receive_now - description: The return's receive now. - refund_amount: - type: number - title: refund_amount - description: The return's refund amount. - location_id: - type: string - title: location_id - description: The return's location id. + metadata: + type: object + description: The return's metadata. diff --git a/www/apps/api-reference/specs/admin/components/schemas/AdminUpdateCustomerGroup.yaml b/www/apps/api-reference/specs/admin/components/schemas/AdminUpdateCustomerGroup.yaml index b8e6cbca8774c..71ce5dbe47c24 100644 --- a/www/apps/api-reference/specs/admin/components/schemas/AdminUpdateCustomerGroup.yaml +++ b/www/apps/api-reference/specs/admin/components/schemas/AdminUpdateCustomerGroup.yaml @@ -2,7 +2,6 @@ type: object description: SUMMARY x-schemaName: AdminUpdateCustomerGroup required: - - name - metadata properties: name: diff --git a/www/apps/api-reference/specs/admin/openapi.full.yaml b/www/apps/api-reference/specs/admin/openapi.full.yaml index bb6c7d4b59b61..95ebd7008da3f 100644 --- a/www/apps/api-reference/specs/admin/openapi.full.yaml +++ b/www/apps/api-reference/specs/admin/openapi.full.yaml @@ -7612,8 +7612,8 @@ paths: --data-raw '{ "items": [ { - "id": "id_5sTwO6Lz9h9W7f1U", - "quantity": 395722780311552 + "id": "id_rnSpxwfxEfbXVCA7", + "quantity": 3643591194836992 } ], "metadata": {} @@ -39931,7 +39931,6 @@ components: - id - quantity - reason_id - - note properties: id: type: string @@ -39959,72 +39958,23 @@ components: x-schemaName: AdminPostReturnsReqSchema required: - order_id - - items - - internal_note - - location_id + - metadata properties: order_id: type: string title: order_id description: The return's order id. - items: - type: array - description: The return's items. - items: - type: object - description: The item's items. - required: - - id - - quantity - - reason_id - - note - properties: - id: - type: string - title: id - description: The item's ID. - quantity: - type: number - title: quantity - description: The item's quantity. - reason_id: - type: string - title: reason_id - description: The item's reason id. - note: - type: string - title: note - description: The item's note. - return_shipping: - type: object - description: The return's return shipping. - required: - - option_id - properties: - option_id: - type: string - title: option_id - description: The return shipping's option id. - price: - type: number - title: price - description: The return shipping's price. + description: + type: string + title: description + description: The return's description. internal_note: type: string title: internal_note description: The return's internal note. - receive_now: - type: boolean - title: receive_now - description: The return's receive now. - refund_amount: - type: number - title: refund_amount - description: The return's refund amount. - location_id: - type: string - title: location_id - description: The return's location id. + metadata: + type: object + description: The return's metadata. AdminPrice: type: object description: The price's prices. @@ -41275,7 +41225,6 @@ components: description: SUMMARY x-schemaName: AdminUpdateCustomerGroup required: - - name - metadata properties: name: diff --git a/www/apps/api-reference/specs/store/components/schemas/AdminPostReceiveReturnsReqSchema.yaml b/www/apps/api-reference/specs/store/components/schemas/AdminPostReceiveReturnsReqSchema.yaml index d097909bcc3d7..c5a60d0da0fa9 100644 --- a/www/apps/api-reference/specs/store/components/schemas/AdminPostReceiveReturnsReqSchema.yaml +++ b/www/apps/api-reference/specs/store/components/schemas/AdminPostReceiveReturnsReqSchema.yaml @@ -20,7 +20,6 @@ properties: - id - quantity - reason_id - - note properties: id: type: string diff --git a/www/apps/api-reference/specs/store/components/schemas/AdminPostReturnsReqSchema.yaml b/www/apps/api-reference/specs/store/components/schemas/AdminPostReturnsReqSchema.yaml index 16bc9766b54ff..3422c2cca993f 100644 --- a/www/apps/api-reference/specs/store/components/schemas/AdminPostReturnsReqSchema.yaml +++ b/www/apps/api-reference/specs/store/components/schemas/AdminPostReturnsReqSchema.yaml @@ -3,69 +3,20 @@ description: SUMMARY x-schemaName: AdminPostReturnsReqSchema required: - order_id - - items - - internal_note - - location_id + - metadata properties: order_id: type: string title: order_id description: The return's order id. - items: - type: array - description: The return's items. - items: - type: object - description: The item's items. - required: - - id - - quantity - - reason_id - - note - properties: - id: - type: string - title: id - description: The item's ID. - quantity: - type: number - title: quantity - description: The item's quantity. - reason_id: - type: string - title: reason_id - description: The item's reason id. - note: - type: string - title: note - description: The item's note. - return_shipping: - type: object - description: The return's return shipping. - required: - - option_id - properties: - option_id: - type: string - title: option_id - description: The return shipping's option id. - price: - type: number - title: price - description: The return shipping's price. + description: + type: string + title: description + description: The return's description. internal_note: type: string title: internal_note description: The return's internal note. - receive_now: - type: boolean - title: receive_now - description: The return's receive now. - refund_amount: - type: number - title: refund_amount - description: The return's refund amount. - location_id: - type: string - title: location_id - description: The return's location id. + metadata: + type: object + description: The return's metadata. diff --git a/www/apps/api-reference/specs/store/components/schemas/AdminUpdateCustomerGroup.yaml b/www/apps/api-reference/specs/store/components/schemas/AdminUpdateCustomerGroup.yaml index b8e6cbca8774c..71ce5dbe47c24 100644 --- a/www/apps/api-reference/specs/store/components/schemas/AdminUpdateCustomerGroup.yaml +++ b/www/apps/api-reference/specs/store/components/schemas/AdminUpdateCustomerGroup.yaml @@ -2,7 +2,6 @@ type: object description: SUMMARY x-schemaName: AdminUpdateCustomerGroup required: - - name - metadata properties: name: diff --git a/www/apps/api-reference/specs/store/openapi.full.yaml b/www/apps/api-reference/specs/store/openapi.full.yaml index ab81ba48e7a56..b6d7ff7b365ce 100644 --- a/www/apps/api-reference/specs/store/openapi.full.yaml +++ b/www/apps/api-reference/specs/store/openapi.full.yaml @@ -5140,7 +5140,6 @@ components: - id - quantity - reason_id - - note properties: id: type: string @@ -5168,72 +5167,23 @@ components: x-schemaName: AdminPostReturnsReqSchema required: - order_id - - items - - internal_note - - location_id + - metadata properties: order_id: type: string title: order_id description: The return's order id. - items: - type: array - description: The return's items. - items: - type: object - description: The item's items. - required: - - id - - quantity - - reason_id - - note - properties: - id: - type: string - title: id - description: The item's ID. - quantity: - type: number - title: quantity - description: The item's quantity. - reason_id: - type: string - title: reason_id - description: The item's reason id. - note: - type: string - title: note - description: The item's note. - return_shipping: - type: object - description: The return's return shipping. - required: - - option_id - properties: - option_id: - type: string - title: option_id - description: The return shipping's option id. - price: - type: number - title: price - description: The return shipping's price. + description: + type: string + title: description + description: The return's description. internal_note: type: string title: internal_note description: The return's internal note. - receive_now: - type: boolean - title: receive_now - description: The return's receive now. - refund_amount: - type: number - title: refund_amount - description: The return's refund amount. - location_id: - type: string - title: location_id - description: The return's location id. + metadata: + type: object + description: The return's metadata. AdminPrice: type: object description: The price's prices. @@ -6484,7 +6434,6 @@ components: description: SUMMARY x-schemaName: AdminUpdateCustomerGroup required: - - name - metadata properties: name: diff --git a/www/apps/book/app/advanced-development/data-models/relationships/page.mdx b/www/apps/book/app/advanced-development/data-models/relationships/page.mdx index 0db3719ce9c34..ddf61e4d8ce61 100644 --- a/www/apps/book/app/advanced-development/data-models/relationships/page.mdx +++ b/www/apps/book/app/advanced-development/data-models/relationships/page.mdx @@ -12,6 +12,18 @@ Data model relationships are in active development and may change. + + +- You want to create a relation between data models in the same module. + + + + + +- You want to create a relationship between data models in different modules. Use module links instead. + + + ## What is a Relationship Property? A relationship property is defined using relation methods, such as `hasOne` or `belongsTo`. It represents a relationship between two data models in a module. diff --git a/www/apps/book/app/advanced-development/events-and-subscribers/data-payload/page.mdx b/www/apps/book/app/advanced-development/events-and-subscribers/data-payload/page.mdx index d54acd1fc5a2a..34caeb54e5bb7 100644 --- a/www/apps/book/app/advanced-development/events-and-subscribers/data-payload/page.mdx +++ b/www/apps/book/app/advanced-development/events-and-subscribers/data-payload/page.mdx @@ -1,3 +1,5 @@ +import { TypeList } from "docs-ui" + export const metadata = { title: `${pageNumber} Event Data Payload`, } @@ -10,14 +12,13 @@ In this chapter, you'll learn how subscribers receive an event's data payload. When events are emitted, they’re emitted with a data payload. -The object that the subscriber function receives as a parameter has a `data` property, which is the event's data payload. +The object that the subscriber function receives as a parameter has a `data` property, which is an object holding the event payload with additional context. For example: export const highlights = [ ["7", "", "The event's data payload."], ["8", "{ id: string }", "The type of expected data payloads."], - ["9", '"data" in data ? data.data.id : data.id', "The payload data is either in `data.data` or directly in `data`."] ] ```ts title="src/subscribers/product-created.ts" highlights={highlights} collapsibleLines="1-5" expandButtonLabel="Show Imports" @@ -29,7 +30,7 @@ import type { export default async function productCreateHandler({ data, }: SubscriberArgs<{ id: string }>) { - const productId = "data" in data ? data.data.id : data.id + const productId = data.data.id console.log(`The product ${productId} was created`) } @@ -38,6 +39,27 @@ export const config: SubscriberConfig = { } ``` +The `data` object has the following properties: + + + This logs the product ID received in the `product.created` event’s data payload to the console. --- diff --git a/www/apps/book/app/advanced-development/modules/module-links/page.mdx b/www/apps/book/app/advanced-development/modules/module-links/page.mdx index deebd0fb84aed..ef0f5dead821e 100644 --- a/www/apps/book/app/advanced-development/modules/module-links/page.mdx +++ b/www/apps/book/app/advanced-development/modules/module-links/page.mdx @@ -18,6 +18,18 @@ A module link forms an association between two data models of different modules, You can then retrieve data across the linked modules, and manage their linked records. + + +- You want to create a relation between data models from different modules. + + + + + +- You want to create a relationship between data models in the same module. Use data model relationships instead. + + + --- ## Prerequisite: isQueryable Configuration @@ -27,10 +39,13 @@ Before you define a module link, you must enable the `isQueryable` configuration For example: ```js +import { HELLO_MODULE } from "./src/modules/hello" +// ... + module.exports = defineConfig({ // ... modules: { - helloModuleService: { + [HELLO_MODULE]: { resolve: "./modules/hello", definition: { isQueryable: true, diff --git a/www/apps/book/app/advanced-development/modules/options/page.mdx b/www/apps/book/app/advanced-development/modules/options/page.mdx index cbe7478862606..09f3fe658098f 100644 --- a/www/apps/book/app/advanced-development/modules/options/page.mdx +++ b/www/apps/book/app/advanced-development/modules/options/page.mdx @@ -23,10 +23,13 @@ To pass options to a module, add an `options` property to the module’s configu For example: ```js title="medusa-config.js" +import { HELLO_MODULE } from "./src/modules/hello" +// ... + module.exports = defineConfig({ // ... modules: { - helloModuleService: { + [HELLO_MODULE]: { resolve: "./modules/hello", options: { capitalize: true, diff --git a/www/apps/book/app/advanced-development/modules/service-factory/page.mdx b/www/apps/book/app/advanced-development/modules/service-factory/page.mdx index bd0e2918c4ac0..ea64e8c1a4578 100644 --- a/www/apps/book/app/advanced-development/modules/service-factory/page.mdx +++ b/www/apps/book/app/advanced-development/modules/service-factory/page.mdx @@ -1,4 +1,4 @@ -import { Table } from "docs-ui" +import { Tabs, TabsContent, TabsContentWrapper, TabsList, TabsTrigger } from "docs-ui" export const metadata = { title: `${pageNumber} Service Factory`, @@ -60,118 +60,216 @@ The method's names are the operation's name, suffixed by the data model's name. For example, the following methods are generated for the code snippet above: - - - - Method - Description - - - - - - - `listMyCustoms` - - - - - Retrieves an array of records based on filters and pagination configurations. - - - - - - - `listAndCountMyCustoms` - - - - - Retrieves a tuple of an array of records and the total count of available records based on the filters and pagination configurations provided. - - - - - - - `retrieveMyCustom` - - - - - Retrieves a record by its ID. - - - - - - - `createMyCustoms` - - - - - Create and retrieve records of the data model. - - - - - - - `updateMyCustoms` - - - - - Update and retrieve records of the data model. - - - - - - - `deleteMyCustoms` - - - - - Deletes records by an ID or filter. - - - - - - - `softDeleteMyCustoms` - - - - - Soft-deletes records using an array of IDs or an object of filters. - - - - - - - `restoreMyCustoms` - - - - - Restores soft-deleted records using an array of IDs or an object of filters. - - - - -
- - - -Except for the `retrieve` method, the suffixed data model's name is plural. + + + listMyCustoms + listAndCountMyCustoms + retrieveMyCustom + createMyCustoms + updateMyCustoms + deleteMyCustoms + softDeleteMyCustoms + restoreMyCustoms + + + - + ### listMyCustoms + + This method retrieves an array of records based on filters and pagination configurations. + + For example: + + ```ts + const myCustoms = await helloModuleService + .listMyCustoms() + + // with filters + const myCustoms = await helloModuleService + .listMyCustoms({ + id: ["123"] + }) + ``` + + + + + ### listAndCountMyCustoms + + This method retrieves a tuple of an array of records and the total count of available records based on the filters and pagination configurations provided. + + For example: + + ```ts + const [ + myCustoms, + count + ] = await helloModuleService.listAndCountMyCustoms() + + // with filters + const [ + myCustoms, + count + ] = await helloModuleService.listAndCountMyCustoms({ + id: ["123"] + }) + ``` + + + + + ### retrieveMyCustom + + This method retrieves a record by its ID. + + For example: + + ```ts + const myCustom = await helloModuleService + .retrieveMyCustom("123") + ``` + + + + + ### createMyCustoms + + This method creates and retrieves records of the data model. + + For example: + + ```ts + const myCustom = await helloModuleService + .createMyCustoms({ + name: "test" + }) + + // create multiple + const myCustoms = await helloModuleService + .createMyCustoms([ + { + name: "test" + }, + { + name: "test 2" + }, + ]) + ``` + + + + + ### updateMyCustoms + + This method updates and retrieves records of the data model. + + For example: + + ```ts + const myCustom = await helloModuleService + .updateMyCustoms({ + id: "123", + name: "test" + }) + + // update multiple + const myCustoms = await helloModuleService + .updateMyCustoms([ + { + id: "123", + name: "test" + }, + { + id: "321", + name: "test 2" + }, + ]) + + // use filters + const myCustoms = await helloModuleService + .updateMyCustoms([ + { + selector: { + id: ["123", "321"] + }, + data: { + name: "test" + } + }, + ]) + ``` + + + + + ### deleteMyCustoms + + This method deletes records by an ID or filter. + + For example: + + ```ts + await helloModuleService.deleteMyCustoms("123") + + // delete multiple + await helloModuleService.deleteMyCustoms([ + "123", "321" + ]) + + // use filters + await helloModuleService.deleteMyCustoms({ + selector: { + id: ["123", "321"] + } + }) + ``` + + + + + ### softDeleteMyCustoms + + This method soft-deletes records using an array of IDs or an object of filters. + + For example: + + ```ts + await helloModuleService.softDeleteMyCustoms("123") + + // soft-delete multiple + await helloModuleService.softDeleteMyCustoms([ + "123", "321" + ]) + + // use filters + await helloModuleService.softDeleteMyCustoms({ + id: ["123", "321"] + }) + ``` + + + + + ### restoreMyCustoms + + This method restores soft-deleted records using an array of IDs or an object of filters. + + For example: + + ```ts + await helloModuleService.restoreMyCustoms([ + "123", "321" + ]) + + // use filters + await helloModuleService.restoreMyCustoms({ + id: ["123", "321"] + }) + ``` + + + + ### Using a Constructor diff --git a/www/apps/book/app/advanced-development/workflows/conditions/page.mdx b/www/apps/book/app/advanced-development/workflows/conditions/page.mdx new file mode 100644 index 0000000000000..2d4939f6bce1b --- /dev/null +++ b/www/apps/book/app/advanced-development/workflows/conditions/page.mdx @@ -0,0 +1,62 @@ +export const metadata = { + title: `${pageNumber} Conditions in Workflow with When-Then`, +} + +# {metadata.title} + +In this chapter, you'll learn how to execute an action based on a condition in a workflow using the when-then utility. + +## What is the When-Then Utility? + +The when-then utility executes an action if a condition is satisfied. + +Since if-conditions aren't allowed in the workflow constructor function, use the when-then utility if you want to execute a step based on a condition. + +--- + +## How to Use the When-Then Utility? + +For example: + +export const highlights = [ + ["15", "input", "The data to pass as a parameter to the function in the second parameter"], + ["17", "return", "The function must return a boolean value indicating whether\nthe callback function passed to `then` should be executed."], + ["19", "() => {", "The function to execute if `when`'s second parameter returns a `true` value."] +] + +```ts highlights={highlights} +import { + createWorkflow, + when +} from "@medusajs/workflows-sdk" +// step imports... + +type WorkflowInput = { + is_active: boolean +} + +const workflow = createWorkflow + + ("workflow", function (input) { + const result = when( + input, + (input) => { + return input.is_active + } + ).then(() => { + const stepResult = isActiveStep() + return stepResult + }) + + // executed without condition + return anotherStep(result) + } +) +``` + +Then `when` utility is a function imported from `@medusajs/workflows-sdk`. It accepts the following parameters: + +1. An object or the workflow's input. This data is passed as a parameter to the function in `when`'s second parameter. +2. A function that returns a boolean indicating whether to execute the action. + +To specify the action to perform if the condition is satisfied, chain a `then` function to `when` and pass it a callback function. The callback function is only executed if `when`'s second parameter function returns a `true` value. \ No newline at end of file diff --git a/www/apps/book/app/advanced-development/workflows/constructor-constraints/page.mdx b/www/apps/book/app/advanced-development/workflows/constructor-constraints/page.mdx index 825956f2ad059..ccd6bb59beb0f 100644 --- a/www/apps/book/app/advanced-development/workflows/constructor-constraints/page.mdx +++ b/www/apps/book/app/advanced-development/workflows/constructor-constraints/page.mdx @@ -75,6 +75,35 @@ const myWorkflow = createWorkflow< }) ``` +### No If Conditions + +You can't use if-conditions in a workflow. Instead, use the when-then utility function explained in the next chapter: + +```ts +// Don't +const myWorkflow = createWorkflow< + WorkflowInput, + WorkflowOutput +>("hello-world", function (input) { + if (input.is_active) { + // perform an action + } +}) + +// Do (explained in the next chapter) +const myWorkflow = createWorkflow< + WorkflowInput, + WorkflowOutput +>("hello-world", function (input) { + when(input, (input) => { + return input.is_active + }) + .then(() => { + // perform an action + }) +}) +``` + --- ## Step Constraints diff --git a/www/apps/book/app/basics/data-models/page.mdx b/www/apps/book/app/basics/data-models/page.mdx index ec2da01a2537d..9eff6440218cd 100644 --- a/www/apps/book/app/basics/data-models/page.mdx +++ b/www/apps/book/app/basics/data-models/page.mdx @@ -39,7 +39,7 @@ export default MyCustom You define a data model using the `model`'s `define` method. It accepts two parameters: -1. The first one is the name of the data model's table in the database. +1. The first one is the name of the data model's table in the database. It should be in snake-case form. 2. The second is an object, which is the data model's schema. The schema's properties are defined using the `model`'s methods. The example above defines the data model `MyCustom` with the properties `id` and `name`. @@ -58,12 +58,13 @@ A migration is a class created in a TypeScript or JavaScript file under a module 1. Create the file `src/modules/hello/migrations-config.ts` with the following content: - ```ts highlights={[["7", '"medusa-hello"', "Use any database name relevant for your module."]]} + ```ts import { defineMikroOrmCliConfig } from "@medusajs/utils" import path from "path" import MyCustom from "./models/my-custom" + import { HELLO_MODULE } from "." - export default defineMikroOrmCliConfig("hello", { + export default defineMikroOrmCliConfig(HELLO_MODULE, { entities: [MyCustom] as any[], migrations: { path: path.join(__dirname, "migrations"), diff --git a/www/apps/book/app/basics/events-and-subscribers/page.mdx b/www/apps/book/app/basics/events-and-subscribers/page.mdx index cdbb0ca209615..3a641af9ffc70 100644 --- a/www/apps/book/app/basics/events-and-subscribers/page.mdx +++ b/www/apps/book/app/basics/events-and-subscribers/page.mdx @@ -98,7 +98,7 @@ export default async function productCreateHandler({ const productModuleService: IProductModuleService = container.resolve(ModuleRegistrationName.PRODUCT) - const productId = "data" in data ? data.data.id : data.id + const productId = data.data.id const product = await productModuleService.retrieveProduct( productId diff --git a/www/apps/book/app/basics/modules-and-services/page.mdx b/www/apps/book/app/basics/modules-and-services/page.mdx index 15e01c33adf36..f370a383edf0d 100644 --- a/www/apps/book/app/basics/modules-and-services/page.mdx +++ b/www/apps/book/app/basics/modules-and-services/page.mdx @@ -48,11 +48,13 @@ A module must have an `index.ts` file in its root directory that exports its def For example, create the file `src/modules/hello/index.ts` with the following content: -```ts title="src/modules/hello/index.ts" highlights={[["5", "", "The main service of the module."]]} +```ts title="src/modules/hello/index.ts" highlights={[["7", "", "The main service of the module."]]} import HelloModuleService from "./service" import { Module } from "@medusajs/utils" -export default Module("helloModuleService", { +export const HELLO_MODULE = "helloModuleService" + +export default Module(HELLO_MODULE, { service: HelloModuleService, }) ``` @@ -68,18 +70,21 @@ The last step is to add the module in Medusa’s configurations. In `medusa-config.js`, add a `modules` property and pass to it your custom module: -```js title="medusa-config.js" highlights={[["4", "helloModuleService", "The key of the main service to be registered in the Medusa container."]]} +```js title="medusa-config.js" highlights={[["7", "HELLO_MODULE", "The key of the main service to be registered in the Medusa container."]]} +import { HELLO_MODULE } from "./src/modules/hello" +// ... + module.exports = defineConfig({ // ... modules: { - helloModuleService: { + [HELLO_MODULE]: { resolve: "./modules/hello", }, }, }) ``` -Its key (`helloModuleService`) is the name of the module’s main service. It will be registered in the Medusa container with that name. It should also be the same name passed as the first parameter to the `Module` function in the module's definition. +Its key (`helloModuleService` or `HELLO_MODULE`) is the name of the module’s main service. It will be registered in the Medusa container with that name. It should also be the same name passed as the first parameter to the `Module` function in the module's definition. Its value is an object having the `resolve` property, whose value is either a path to module's directory relative to `src`(it shouldn't include `src` in the path), or an `npm` package’s name. @@ -94,13 +99,14 @@ For example, create the API route `src/api/store/custom/route.ts` with the follo ```ts title="src/api/store/custom/route.ts" import { MedusaRequest, MedusaResponse } from "@medusajs/medusa" import HelloModuleService from "../../../modules/hello/service" +import { HELLO_MODULE } from "../../../modules/hello" export async function GET( req: MedusaRequest, res: MedusaResponse ): Promise { const helloModuleService: HelloModuleService = req.scope.resolve( - "helloModuleService" + HELLO_MODULE ) res.json({ diff --git a/www/apps/book/app/basics/workflows/page.mdx b/www/apps/book/app/basics/workflows/page.mdx index 2909d276afbb9..3b1a1610b5aa9 100644 --- a/www/apps/book/app/basics/workflows/page.mdx +++ b/www/apps/book/app/basics/workflows/page.mdx @@ -133,7 +133,7 @@ To execute the workflow, invoke it passing the Medusa container as a parameter. data, container, }: SubscriberArgs<{ id: string }>) { - const userId = "data" in data ? data.data.id : data.id + const userId = data.data.id const userModuleService: IUserModuleService = container.resolve( ModuleRegistrationName.USER ) diff --git a/www/apps/book/app/cheatsheet/page.mdx b/www/apps/book/app/cheatsheet/page.mdx index 9da723135ad97..d269c9d8a52b2 100644 --- a/www/apps/book/app/cheatsheet/page.mdx +++ b/www/apps/book/app/cheatsheet/page.mdx @@ -45,6 +45,19 @@ This chapter provides a cheat sheet for Medusa's resources on when to use or not + + Module Links + + + - You want to create a relation between data models from different modules. + + + + + - You want to create a relationship between data models in the same module. Use data model relationships instead. + + + Data Models @@ -58,6 +71,19 @@ This chapter provides a cheat sheet for Medusa's resources on when to use or not + + Data Model Relationships + + + - You want to create a relation between data models in the same module. + + + + + - You want to create a relationship between data models in different modules. Use module links instead. + + + Loaders diff --git a/www/apps/book/app/favicon.ico b/www/apps/book/app/favicon.ico index 718d6fea4835e..bebbf17e40c11 100644 Binary files a/www/apps/book/app/favicon.ico and b/www/apps/book/app/favicon.ico differ diff --git a/www/apps/book/app/icon.ico b/www/apps/book/app/icon.ico new file mode 100644 index 0000000000000..bebbf17e40c11 Binary files /dev/null and b/www/apps/book/app/icon.ico differ diff --git a/www/apps/book/app/opengraph-image.jpg b/www/apps/book/app/opengraph-image.jpg new file mode 100644 index 0000000000000..8e6f6515dd5a0 Binary files /dev/null and b/www/apps/book/app/opengraph-image.jpg differ diff --git a/www/apps/book/app/twitter-image.jpg b/www/apps/book/app/twitter-image.jpg new file mode 100644 index 0000000000000..8e6f6515dd5a0 Binary files /dev/null and b/www/apps/book/app/twitter-image.jpg differ diff --git a/www/apps/book/sidebar.mjs b/www/apps/book/sidebar.mjs index 359be4c9726b4..81f39e41ebfd5 100644 --- a/www/apps/book/sidebar.mjs +++ b/www/apps/book/sidebar.mjs @@ -191,6 +191,10 @@ export const sidebar = sidebarAttachHrefCommonOptions( path: "/advanced-development/workflows/constructor-constraints", title: "Workflow Constraints", }, + { + path: "/advanced-development/workflows/conditions", + title: "Conditions in Workflows", + }, { path: "/advanced-development/workflows/compensation-function", title: "Compensation Function", diff --git a/www/apps/resources/app/architectural-modules/notification/send-notification/page.mdx b/www/apps/resources/app/architectural-modules/notification/send-notification/page.mdx index 22979153f2dc3..52b6c6cd74924 100644 --- a/www/apps/resources/app/architectural-modules/notification/send-notification/page.mdx +++ b/www/apps/resources/app/architectural-modules/notification/send-notification/page.mdx @@ -51,7 +51,7 @@ export default async function productCreateHandler({ to: "shahednasser@gmail.com", channel: "email", template: "product-created", - data: "data" in data ? data.data : data, + data: data.data, }) } diff --git a/www/apps/resources/app/architectural-modules/notification/sendgrid/page.mdx b/www/apps/resources/app/architectural-modules/notification/sendgrid/page.mdx index 4f48719b08fd6..c864b1d1bfcff 100644 --- a/www/apps/resources/app/architectural-modules/notification/sendgrid/page.mdx +++ b/www/apps/resources/app/architectural-modules/notification/sendgrid/page.mdx @@ -145,7 +145,7 @@ export default async function productCreateHandler({ to: "test@gmail.com", channel: "email", template: "product-created", - data: "data" in data ? data.data : data, + data: data.data, }) } diff --git a/www/apps/resources/app/favicon.ico b/www/apps/resources/app/favicon.ico index 718d6fea4835e..bebbf17e40c11 100644 Binary files a/www/apps/resources/app/favicon.ico and b/www/apps/resources/app/favicon.ico differ diff --git a/www/apps/resources/app/icon.ico b/www/apps/resources/app/icon.ico new file mode 100644 index 0000000000000..bebbf17e40c11 Binary files /dev/null and b/www/apps/resources/app/icon.ico differ diff --git a/www/apps/resources/app/medusa-cli/page.mdx b/www/apps/resources/app/medusa-cli/page.mdx index b60a77d589b54..2882764f0a95c 100644 --- a/www/apps/resources/app/medusa-cli/page.mdx +++ b/www/apps/resources/app/medusa-cli/page.mdx @@ -340,12 +340,20 @@ npx medusa start -### migrations +### migrations run -Perform migration actions to reflect changes on the database, such as running or reverting migrations. +Run the latest migrations to reflect changes on the database. ```bash -npx medusa migrations +npx medusa migrations run +``` + +### migration revert + +Revert the last migrations ran on one or more modules. + +```bash +npx medusa migrations revert ``` #### Arguments @@ -362,15 +370,12 @@ npx medusa migrations - `action` + `module_names` - The action to perform. Values can be `run`, `show`, or `revert`. - `run` is used to run the migrations; `show` is used to only show - what migrations are available to run; and `revert` is to undo the - last migration. + The name of one or more module, separated by spaces. For example, `helloModuleService`. diff --git a/www/apps/resources/app/opengraph-image.jpg b/www/apps/resources/app/opengraph-image.jpg new file mode 100644 index 0000000000000..89c90792caa93 Binary files /dev/null and b/www/apps/resources/app/opengraph-image.jpg differ diff --git a/www/apps/resources/app/recipes/commerce-automation/page.mdx b/www/apps/resources/app/recipes/commerce-automation/page.mdx index e97761245f50f..551f48d098658 100644 --- a/www/apps/resources/app/recipes/commerce-automation/page.mdx +++ b/www/apps/resources/app/recipes/commerce-automation/page.mdx @@ -291,7 +291,7 @@ export const subscriberHighlights = [ Modules.NOTIFICATION ) - const inventoryItemId = "data" in data ? data.data.id : data.id + const inventoryItemId = data.data.id const inventoryVariantLinkService = remoteLink.getLinkModule( Modules.PRODUCT, @@ -798,7 +798,7 @@ The `order.placed` event is currently not emitted. data, container, }: SubscriberArgs<{ id: string }>) { - const orderId = "data" in data ? data.data.id : data.id + const orderId = data.data.id const orderModuleService: IOrderModuleService = container .resolve(ModuleRegistrationName.ORDER) diff --git a/www/apps/resources/app/recipes/digital-products/page.mdx b/www/apps/resources/app/recipes/digital-products/page.mdx index f0055d932a88d..926c000e1a1ec 100644 --- a/www/apps/resources/app/recipes/digital-products/page.mdx +++ b/www/apps/resources/app/recipes/digital-products/page.mdx @@ -1126,7 +1126,7 @@ In the subscriber, you can send a notification, such as an email, to the custome "digitalProductModuleService" ) - const orderId = "data" in data ? data.data.id : data.id + const orderId = data.data.id const order = await orderModuleService.retrieveOrder(orderId, { relations: ["items"], diff --git a/www/apps/resources/app/recipes/integrate-ecommerce-stack/page.mdx b/www/apps/resources/app/recipes/integrate-ecommerce-stack/page.mdx index 623a62eb53cc9..ee66a31d748c1 100644 --- a/www/apps/resources/app/recipes/integrate-ecommerce-stack/page.mdx +++ b/www/apps/resources/app/recipes/integrate-ecommerce-stack/page.mdx @@ -269,7 +269,7 @@ export const workflowHighlights = [ createProductWorkflow(container) .run({ input: { - productId: "data" in data ? data.data.id : data.id + productId: data.data.id } }) .then(() => { diff --git a/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx b/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx new file mode 100644 index 0000000000000..15efaeaa17bf3 --- /dev/null +++ b/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx @@ -0,0 +1,1374 @@ +import { Github, PlaySolid } from "@medusajs/icons" + +export const metadata = { + title: `Marketplace Recipe: Vendors Example`, +} + +# {metadata.title} + +This document provides an example of implementing the marketplace recipe. + + + +You can implement the marketplace as you see fit for your use case. This is only an example of one way to implement it. + + + +## Features + +By following this example, you’ll have a marketplace with the following features: + +1. Multiple vendors, each having vendor admins. +2. Vendor admins manage the vendor’s products and orders. +3. On order creation, the order is split into multiple orders for each vendor. +4. All other commerce features that Medusa provides. + +, + showLinkIcon: false + }, + { + href: "https://res.cloudinary.com/dza7lstvk/raw/upload/v1720603521/OpenApi/Marketplace_OpenApi_n458oh.yml", + title: "OpenApi Specs for Postman", + text: "Imported this OpenApi Specs file into tools like Postman.", + startIcon: , + showLinkIcon: false + }, +]} /> + +--- + + + +- [A new Medusa application installed.](!docs!#get-started) + + + +## Step 1: Create Marketplace Module + +The first step is to create a marketplace module that holds the data models for a vendor and an admin. + +Create the directory `src/modules/marketplace`. + +### Create Data Models + +Create the file `src/modules/marketplace/models/vendor.ts` with the following content: + +```ts title="src/modules/marketplace/models/vendor.ts" +import { model } from "@medusajs/utils" +import VendorAdmin from "./vendor-admin" + +const Vendor = model.define("vendor", { + id: model.id().primaryKey(), + handle: model.text(), + name: model.text(), + logo: model.text().nullable(), + admins: model.hasMany(() => VendorAdmin) +}) + +export default Vendor +``` + +This creates a `Vendor` data model, which represents a business that sells its products in the marketplace. + +Notice that the `Vendor` has many admins whose data model you’ll create next. + +Create the file `src/modules/marketplace/models/vendor-admin.ts` with the following content: + +```ts title="src/modules/marketplace/models/vendor-admin.ts" +import { model } from "@medusajs/utils" +import Vendor from "./vendor" + +const VendorAdmin = model.define("vendor_admin", { + id: model.id().primaryKey(), + first_name: model.text().nullable(), + last_name: model.text().nullable(), + email: model.text().unique(), + vendor: model.belongsTo(() => Vendor, { + mappedBy: "admins" + }) +}) + +export default VendorAdmin +``` + +This creates a `VendorAdmin` data model, which represents an admin of a vendor. + +### Generate Migrations + +To create tables for the data models in the database, you need to generate migrations for them. + +Create the file `src/modules/marketplace/migrations-config.ts` with the following content: + +```ts +import { defineMikroOrmCliConfig } from "@medusajs/utils" +import path from "path" +import Vendor from "./models/vendor" +import VendorAdmin from "./models/vendor-admin" + +export default defineMikroOrmCliConfig("marketplace", { + entities: [Vendor, VendorAdmin] as any[], + migrations: { + path: path.join(__dirname, "migrations"), + }, +}) +``` + +Then, run the following command to generate the migration: + +```bash +npx cross-env MIKRO_ORM_CLI=./src/modules/marketplace/migrations-config.ts mikro-orm migration:create +``` + +This generates a migration in the `src/modules/marketeplace/migrations` directory. + +### Create Main Module Service + +Next, create the main service of the module at `src/modules/marketplace/service.ts` with the following content: + +```ts title="src/modules/marketplace/service.ts" +import { MedusaService } from "@medusajs/utils" +import Vendor from "./models/vendor" +import VendorAdmin from "./models/vendor-admin" +import { CreateVendorData, VendorData } from "./types" + +class MarketplaceModuleService extends MedusaService({ + Vendor, + VendorAdmin +}) { +} + +export default MarketplaceModuleService +``` + +The service extends the [service factory](!docs!/advanced-development/modules/service-factory), which provides basic data-management features. + +### Create Module Definition + +After that, create the module definition at `src/modules/marketplace/index.ts` with the following content: + +```ts title="src/modules/marketplace/index.ts" +import { Module } from "@medusajs/utils" +import MarketplaceModuleService from "./service" + +export const MARKETPLACE_MODULE = "marketplaceModuleService" + +export default Module(MARKETPLACE_MODULE, { + service: MarketplaceModuleService +}) +``` + +### Add Module to Medusa Configuration + +Finally, add the module to the list of modules in `medusa-config.js`: + +```ts title="medusa-config.js" +import { MARKETPLACE_MODULE } from './src/modules/marketplace' + +// ... + +module.exports = defineConfig({ + // ... + modules: { + [MARKETPLACE_MODULE]: { + resolve: "./modules/marketplace", + definition: { + isQueryable: true + } + } + } +}) +``` + +### Further Reads + +- [How to Create a Module](!docs!/basics/modules-and-services) +- [How to Create Data Models](!docs!/basics/data-models) + +--- + +## Step 2: Define Links to Product and Order Data Models + +Each vendor has products and orders. So, in this step, you’ll define links between the `Vendor` data model and the `Product` and `Order` data models from the Product and Order modules, respectively. + + + +If your use case requires linking the vendor to other data models, such as `SalesChannel`, define those links in a similar manner. + + + +Create the file `src/links/vendor-product.ts` with the following content: + +```ts title="src/links/vendor-product.ts" +import { defineLink } from "@medusajs/utils" +import MarketplaceModule from "../modules/marketplace" +import ProductModule from "@medusajs/product" + +export default defineLink( + MarketplaceModule.linkable.vendor, + { + linkable: ProductModule.linkable.product, + isList: true + } +) +``` + +This adds a list link between the `Vendor` and `Product` data models, indicating that a vendor record can be linked to many product records. + +Then, create the file `src/links/vendor-order.ts` with the following content: + +```ts title="src/links/vendor-order.ts" +import { defineLink } from "@medusajs/utils" +import MarketplaceModule from "../modules/marketplace" +import OrderModule from "@medusajs/order" + +export default defineLink( + MarketplaceModule.linkable.vendor, + { + linkable: OrderModule.linkable.order, + isList: true + } +) +``` + +This adds a list link between the `Vendor` and `Order` data models, indicating that a vendor record can be linked to many order records. + +### Further Read + +- [How to Define Module Links](!docs!/advanced-development/modules/module-links) + +--- + +## Step 3: Run Migrations + +To reflect the module’s data models and the module links in the database, run the following command: + +```bash +npx medusa migrations run +``` + +--- + +## Step 4: Create Vendor Admin Workflow + +In this step, you’ll create the workflow used to create a vendor admin. + +The workflow’s steps are: + +1. Create the vendor admin using the Marketplace Module’s main service. +2. Create a `vendor` [actor type](../../../../commerce-modules/auth/auth-identity-and-actor-types/page.mdx) to authenticate the vendor admin using the Auth Module. + +First, create the file `src/workflows/marketplace/create-vendor-admin/steps/create-vendor-admin.ts` with the following content: + +```ts title="src/workflows/marketplace/create-vendor-admin/steps/create-vendor-admin.ts" +import { + createStep, + StepResponse, +} from "@medusajs/workflows-sdk" +import { CreateVendorAdminWorkflowInput } from ".." +import MarketplaceModuleService from "../../../../modules/marketplace/service" +import { MARKETPLACE_MODULE } from "../../../../modules/marketplace" + +const createVendorAdminStep = createStep( + "create-vendor-admin-step", + async ({ + admin: adminData, + }: Pick, + { container }) => { + const marketplaceModuleService: MarketplaceModuleService = + container.resolve(MARKETPLACE_MODULE) + + const vendorAdmin = await marketplaceModuleService.createVendorAdmins( + adminData + ) + + return new StepResponse(vendorAdmin) + } +) + +export default createVendorAdminStep +``` + +This is the first step that creates the vendor admin and returns it. + +Then, create the workflow at `src/workflows/marketplace/create-vendor-admin/index.ts` with the following content: + +export const vendorAdminWorkflowHighlights = [ + ["33", "setAuthAppMetadataStep", "Step is imported from `@medusajs/core-flows`."] +] + +```ts title="src/workflows/marketplace/create-vendor-admin/index.ts" highlights={vendorAdminWorkflowHighlights} +import { createWorkflow } from "@medusajs/workflows-sdk" +import { + setAuthAppMetadataStep, +} from "@medusajs/core-flows" +import createVendorAdminStep from "./steps/create-vendor-admin" + +export type CreateVendorAdminWorkflowInput = { + admin: { + email: string + first_name?: string + last_name?: string + vendor_id: string + } + authIdentityId: string +} + +type CreateVendorAdminWorkflowOutput = { + id: string + first_name: string + last_name: string + email: string +} + +const createVendorAdminWorkflow = createWorkflow< + CreateVendorAdminWorkflowInput, CreateVendorAdminWorkflowOutput +>( + "create-vendor-admin", + function (input) { + const vendorAdmin = createVendorAdminStep({ + admin: input.admin, + }) + + setAuthAppMetadataStep({ + authIdentityId: input.authIdentityId, + actorType: "vendor", + value: vendorAdmin.id, + }) + + return vendorAdmin + } +) + +export default createVendorAdminWorkflow +``` + +This runs the `createVendorAdminStep`, then the `setAuthAppMetadataStep` imported from `@medusajs/core-flows`, which creates the `vendor` actor type. + +The workflow returns the created vendor admin. + +### Further Read + +- [How to Create a Workflow](!docs!/basics/workflows) +- [What is an Actor Type](../../../../commerce-modules/auth/auth-identity-and-actor-types/page.mdx) +- [How to Create an Actor Type](../../../../commerce-modules/auth/create-actor-type/page.mdx) + +--- + +## Step 5: Create Vendor API Route + +In this step, you’ll create the API route that runs the workflow from the previous step. + +Start by creating the file `src/api/vendors/route.ts` with the following content: + +export const vendorRouteSchemaHighlights = [ + ["10", "schema", "Define the fields expected in the request body."], +] + +```ts title="src/api/vendors/route.ts" highlights={vendorRouteSchemaHighlights} +import { + AuthenticatedMedusaRequest, + MedusaResponse +} from "@medusajs/medusa" +import { MedusaError } from "@medusajs/utils" +import { z } from "zod" +import MarketplaceModuleService from "../../modules/marketplace/service"; +import createVendorAdminWorkflow from "../../workflows/marketplace/create-vendor-admin"; + +const schema = z.object({ + name: z.string(), + handle: z.string().optional(), + logo: z.string().optional(), + admin: z.object({ + email: z.string(), + first_name: z.string().optional(), + last_name: z.string().optional() + }).strict() +}).strict() + +type RequestBody = { + name: string, + handle?: string, + logo?: string, + admin: { + email: string, + first_name?: string, + last_name?: string + } +} + +``` + +This defines the schema to be accepted in the request body. + +Then, add the route handler to the same file: + +export const vendorRouteHighlights = [ + ["14", "parse", "Validate the request body and, if valid, retrieve it as an object."], + ["20", "createVendors", "Create the vendor using the Marketplace Module's main service."], + ["23", "createVendorAdminWorkflow", "Execute the workflow created in the first step."], +] + +```ts title="src/api/vendors/route.ts" highlights={vendorRouteHighlights} +export const POST = async ( + req: AuthenticatedMedusaRequest, + res: MedusaResponse +) => { + // If `actor_id` is present, the request carries + // authentication for an existing vendor admin + if (req.auth_context?.actor_id) { + throw new MedusaError( + MedusaError.Types.INVALID_DATA, + "Request already authenticated as a vendor." + ) + } + + const { admin, ...vendorData } = schema.parse(req.body) as RequestBody + + const marketplaceModuleService: MarketplaceModuleService = req.scope + .resolve("marketplaceModuleService") + + // create vendor + let vendor = await marketplaceModuleService.createVendors([vendorData]) + + // create vendor admin + await createVendorAdminWorkflow(req.scope) + .run({ + input: { + admin: { + ...admin, + vendor_id: vendor[0].id + }, + authIdentityId: req.auth_context.auth_identity_id, + } + }) + + // retrieve vendor again with admins + vendor = await marketplaceModuleService.retrieveVendor(vendor[0].id, { + relations: ["admins"] + }) + + res.json({ + vendor, + }) +} +``` + +This API route expects the request header to contain a new vendor admin’s authentication JWT token. + +The route handler creates a vendor using the Marketplace Module’s main service and then uses the `createVendorAdminWorkflow` to create an admin for the vendor. + +Next, create the file `src/api/middlewares.ts` with the following content: + +```ts title="src/api/middlewares.ts" +import { MiddlewaresConfig, authenticate } from "@medusajs/medusa" + +export const config: MiddlewaresConfig = { + routes: [ + { + matcher: "/vendors", + method: "POST", + middlewares: [ + authenticate("vendor", ["session", "bearer"], { + allowUnregistered: true, + }), + ], + }, + { + matcher: "/vendors/*", + middlewares: [ + authenticate("vendor", ["session", "bearer"]), + ] + }, + ], +} +``` + +This applies two middlewares: + +1. On the `/vendors` POST API route; it requires authentication but allows unregistered users. +2. On the `/vendors/*` API routes, which you’ll implement in upcoming sections; it requires an authenticated vendor admin. + +### Test it Out + +To test out the above API route: + +1. Start the Medusa application: + +```bash npm2yarn +npm run dev +``` + +2. Retrieve a JWT token from the `/auth/vendor/emailpass` API route: + +```bash apiTesting testApiUrl="http://localhost:9000/auth/vendor/emailpass" testApiMethod="POST" testBodyParams={{ "email": "admin@medusa-test.com", "password": "supersecret" }} +curl -X POST 'http://localhost:9000/auth/vendor/emailpass' \ +-H 'Content-Type: application/json' \ +--data-raw '{ + "email": "admin@medusa-test.com", + "password": "supersecret" +}' +``` + + + +This route is available because you created the `vendor` actor type previously. + + + +3. Send a request to the `/vendors` API route, passing the token retrieved from the previous response in the request header: + +```bash +curl -X POST 'http://localhost:9000/vendors' \ +-H 'Content-Type: application/json' \ +-H 'Authorization: Bearer {token}' \ +--data-raw '{ + "name": "Acme", + "admin": { + "email": "admin@medusa-test.com", + "first_name": "Admin", + "last_name": "Acme" + } +}' +``` + +This returns the created vendor and admin. + +4. Retrieve an authenticated token of the vendor admin by sending another request to the `/auth/vendor/emailpass` API route: + +```bash apiTesting testApiUrl="http://localhost:9000/auth/vendor/emailpass" testApiMethod="POST" testBodyParams={{ "email": "admin@medusa-test.com", "password": "supersecret" }} +curl -X POST 'http://localhost:9000/auth/vendor/emailpass' \ +-H 'Content-Type: application/json' \ +--data-raw '{ + "email": "admin@medusa-test.com", + "password": "supersecret" +}' +``` + +Use this token in the header of later requests that require authentication. + +### Further Reads + +- [How to Create an API route](!docs!/basics/api-routes) +- [How to Create a Middleware](!docs!/advanced-development/api-routes/middlewares) +- [Learn more about the /auth route](../../../../commerce-modules/auth/authentication-route/page.mdx) + +--- + +## Step 6: Add Product API Routes + +In this section, you’ll add two API routes: one to retrieve the vendor’s products and one to create a product. + +To create the API route that retrieves the vendor’s products, create the file `src/api/vendors/products/route.ts` with the following content: + +export const retrieveProductHighlights = [ + ["16", "retrieveVendorAdmin", "Retrive the vendor admin to retrieve its vendor's ID."], + ["33", "remoteQuery", "Retrieve the vendor's products using remote query."] +] + +```ts title="src/api/vendors/products/route.ts" highlights={retrieveProductHighlights} +import { AuthenticatedMedusaRequest, MedusaResponse } from "@medusajs/medusa"; +import { + remoteQueryObjectFromString, +} from "@medusajs/utils" +import MarketplaceModuleService from "../../../modules/marketplace/service"; +import { MARKETPLACE_MODULE } from "../../../modules/marketplace"; + +export const GET = async ( + req: AuthenticatedMedusaRequest, + res: MedusaResponse +) => { + const remoteQuery = req.scope.resolve("remoteQuery") + const marketplaceModuleService: MarketplaceModuleService = + req.scope.resolve(MARKETPLACE_MODULE) + + const vendorAdmin = await marketplaceModuleService.retrieveVendorAdmin( + req.auth_context.actor_id, + { + relations: ["vendor"] + } + ) + + const query = remoteQueryObjectFromString({ + entryPoint: "vendor", + fields: ["products.*"], + variables: { + filters: { + id: [vendorAdmin.vendor.id] + } + } + }) + + const result = await remoteQuery(query) + + res.json({ + products: result[0].products + }) +} +``` + +This adds a `GET` API route at `/vendors/products` that, using the remote query, retrieves the list of products of the vendor and returns them in the response. + +To add the create product API route, add to the same file the following: + +export const createProducts1Highlights = [ + ["15", "CreateProductWorkflowInputDTO", "Accept the same request body as Medusa's Create Product API route"], + ["32", "retrieveVendorAdmin", "Retrive the vendor admin to retrieve its vendor's ID."], +] + +```ts title="src/api/vendors/products/route.ts" highlights={createProducts1Highlights} +// other imports... +import { createProductsWorkflow } from "@medusajs/core-flows" +import { + CreateProductWorkflowInputDTO, + IProductModuleService, + ISalesChannelModuleService +} from "@medusajs/types" +import { + Modules, + ModuleRegistrationName +} from "@medusajs/utils" + +// GET method... + +type RequestType = CreateProductWorkflowInputDTO + +export const POST = async ( + req: AuthenticatedMedusaRequest, + res: MedusaResponse +) => { + const remoteLink = req.scope.resolve("remoteLink") + const marketplaceModuleService: MarketplaceModuleService = + req.scope.resolve(MARKETPLACE_MODULE) + const productModuleService: IProductModuleService = req.scope + .resolve(ModuleRegistrationName.PRODUCT) + const salesChannelModuleService: ISalesChannelModuleService = req.scope + .resolve(ModuleRegistrationName.SALES_CHANNEL) + // Retrieve default sales channel to make the product available in. + // Alternatively, you can link sales channels to vendors and allow vendors + // to manage sales channels + const salesChannels = await salesChannelModuleService.listSalesChannels() + const vendorAdmin = await marketplaceModuleService.retrieveVendorAdmin( + req.auth_context.actor_id, + { + relations: ["vendor"] + } + ) + + // TODO create and link product +} +``` + +This adds a `POST` API route at `/vendors/products`. It resolves the necessary modules' main services, and retrieves the sales channels and vendor admin. + +In the place of the `TODO`, add the following: + +export const createProducts2Highlights = [ + ["1", "createProductsWorkflow", "Use Medusa's workflow to create a product."], + ["12", "create", "Create a link between the created product and the vendor."] +] + +```ts title="src/api/vendors/products/route.ts" highlights={createProducts2Highlights} +const { result } = await createProductsWorkflow(req.scope) + .run({ + input: { + products: [{ + ...req.body, + sales_channels: salesChannels + }] + } + }) + +// link product to vendor +await remoteLink.create({ + [MARKETPLACE_MODULE]: { + vendor_id: vendorAdmin.vendor.id + }, + [Modules.PRODUCT]: { + product_id: result[0].id + } +}) + +// retrieve product again +const product = await productModuleService.retrieveProduct( + result[0].id +) + +res.json({ + product +}) +``` + +This creates a product, links it to the vendor, and returns the product in the response. + + + +In the route handler, you add the product to the default sales channel. You can, instead, link sales channels with vendors similar to the steps explained in step 2. + + + +Finally, apply a middleware on the create products route to validate the request body before executing the route handler: + +```ts +import { MiddlewaresConfig, authenticate } from "@medusajs/medusa" +import { validateAndTransformBody } from "@medusajs/medusa/dist/api/utils/validate-body" +import { AdminCreateProduct } from "@medusajs/medusa/dist/api/admin/products/validators" + +export const config: MiddlewaresConfig = { + routes: [ + // ... + { + matcher: "/vendors/products", + method: "POST", + middlewares: [ + authenticate("vendor", ["session", "bearer"]), + validateAndTransformBody(AdminCreateProduct), + ] + } + ], +} +``` + +### Test it Out + +To test out the new API routes: + +1. Send a `POST` request to `/vendors/products` to create a product: + +```bash +curl -X POST 'http://localhost:9000/vendors/products' \ +-H 'Content-Type: application/json' \ +-H 'Authorization: Bearer {token}' \ +--data '{ + "title": "T-Shirt", + "status": "published", + "options": [ + { + "title": "Color", + "values": ["Blue"] + } + ], + "variants": [ + { + "title": "T-Shirt", + "prices": [ + { + "currency_code": "eur", + "amount": 10 + } + ], + "manage_inventory": false, + "options": { + "Color": "Blue" + } + } + ] +}' +``` + +2. Send a `GET` request to `/vendors/products` to retrieve the vendor’s products: + +```bash +curl 'http://localhost:9000/vendors/products' \ +-H 'Authorization: Bearer {token}' +``` + +### Further Reads + +- [How to use the Remote Query](!docs!/advanced-development/modules/remote-query) +- [How to use the Remote Link](!docs!/advanced-development/modules/remote-link) + +--- + +## Step 7: Create Vendor Order Workflow + +In this step, you’ll create a workflow that’s executed when the customer places an order. It has the following steps: + +```mermaid +graph TD + retrieveCartStep --> createParentOrderStep + createParentOrderStep --> groupVendorItemsStep + groupVendorItemsStep --> createVendorOrdersStep +``` + +1. Retrieve the customer’s cart using its ID. +2. Create a parent order for the cart and its items. +3. Group the cart items by their product’s associated vendor. +4. For each vendor, create a child order with the cart items of their products. + +### retrieveCartStep + +Start by creating the first step in the file `src/workflows/marketplace/create-vendor-orders/steps/retrieve-cart.ts`: + +```ts title="src/workflows/marketplace/create-vendor-orders/steps/retrieve-cart.ts" +import { + createStep, + StepResponse, +} from "@medusajs/workflows-sdk" +import { ModuleRegistrationName } from "@medusajs/utils" +import { ICartModuleService } from "@medusajs/types" + +type StepInput = { + cart_id: string +} + +const retrieveCartStep = createStep( + "retrieve-cart", + async ({ cart_id }: StepInput, { container }) => { + const cartModuleService: ICartModuleService = container + .resolve(ModuleRegistrationName.CART) + + const cart = await cartModuleService.retrieveCart(cart_id, { + relations: ["items"] + }) + + return new StepResponse({ + cart + }) + } +) + +export default retrieveCartStep +``` + +This step retrieves the cart by its ID using the Cart Module’s main service and returns it. + +### createParentOrderStep + +Then, create the second step in the file `src/workflows/marketplace/create-vendor-orders/steps/create-parent-order.ts`: + +export const parentOrderHighlights = [ + ["14", "completeCartWorkflow", "Use Medusa's workflow to complete the cart and create an order."] +] + +```ts title="src/workflows/marketplace/create-vendor-orders/steps/create-parent-order.ts" highlights={parentOrderHighlights} +import { + createStep, + StepResponse, +} from "@medusajs/workflows-sdk" +import { completeCartWorkflow } from "@medusajs/core-flows" + +type StepInput = { + cart_id: string +} + +const createParentOrderStep = createStep( + "create-parent-order", + async ({ cart_id }: StepInput, { container }) => { + const { result } = await completeCartWorkflow(container) + .run({ + input: { + id: cart_id + } + }) + + return new StepResponse({ + order: result + }) + } +) + +export default createParentOrderStep +``` + +This step uses the `completeCartWorkflow` implemented by Medusa to create a parent order and return it. + +### groupVendorItemsStep + +Next, create the third step in the file `src/workflows/marketplace/create-vendor-orders/steps/group-vendor-items.ts`: + +```ts title="src/workflows/marketplace/create-vendor-orders/steps/group-vendor-items.ts" +import { + createStep, + StepResponse, +} from "@medusajs/workflows-sdk" +import { CartDTO, CartLineItemDTO } from "@medusajs/types" +import { remoteQueryObjectFromString } from "@medusajs/utils" + +type StepInput = { + cart: CartDTO +} + +const groupVendorItemsStep = createStep( + "group-vendor-items", + async ({ cart }: StepInput, { container }) => { + const remoteQuery = container.resolve("remoteQuery") + + const vendorsItems: Record = {} + + await Promise.all(cart.items?.map(async (item) => { + const query = remoteQueryObjectFromString({ + entryPoint: "product", + fields: ["vendor.*"], + variables: { + filters: { + id: [item.product_id] + } + } + }) + + const result = await remoteQuery(query) + + const vendorId = result[0].vendor?.id + + if (!vendorId) { + return + } + vendorsItems[vendorId] = [ + ...(vendorsItems[vendorId] || []), + item + ] + })) + + return new StepResponse({ + vendorsItems + }) + } +) + +export default groupVendorItemsStep +``` + +This step groups the items by the vendor associated with the product into an object and returns the object. + +### createVendorOrdersStep + +Lastly, create the fourth step in the file `src/workflows/marketplace/create-vendor-orders/steps/create-vendor-orders.ts`: + +export const vendorOrder1Highlights = [ + ["28", "", "If the `vendorItems` object is empty, return."], +] + +```ts title="src/workflows/marketplace/create-vendor-orders/steps/create-vendor-orders.ts" collapsibleLines="1-15" expandMoreLabel="Show Imports" highlights={vendorOrder1Highlights} +import { + createStep, + StepResponse, +} from "@medusajs/workflows-sdk" +import { + CartLineItemDTO, + OrderDTO, +} from "@medusajs/types" +import { Modules } from "@medusajs/utils" +import { createOrdersWorkflow } from "@medusajs/core-flows" +import MarketplaceModuleService from "../../../../modules/marketplace/service" +import { MARKETPLACE_MODULE } from "../../../../modules/marketplace" +import { VendorData } from "../../../../modules/marketplace/types" + +export type VendorOrder = (OrderDTO & { + vendor: VendorData +}) + +type StepInput = { + parentOrder: OrderDTO + vendorsItems: Record +} + +const createVendorOrdersStep = createStep( + "create-vendor-orders", + async ({ vendorsItems, parentOrder }: StepInput, { container }) => { + const vendorIds = Object.keys(vendorsItems) + if (vendorIds.length === 0) { + return new StepResponse({ + orders: [] + }) + } + const remoteLink = container.resolve("remoteLink") + const marketplaceModuleService: MarketplaceModuleService = + container.resolve(MARKETPLACE_MODULE) + const isOnlyOneVendorOrder = vendorIds.length === 1 + + // TODO handle creating child orders + } +) + +export default createVendorOrdersStep +``` + +This creates a step that receives the grouped vendor items and the parent order. For now, it only checks if there are any items in `vendorItems` before returning. + +Replace the `TODO` with the following: + +export const vendorOrder2Highlights = [ + ["1", "isOnlyOneVendorOrder", "If the order has items for one vendor only, the parent order is linked to the vendor."], +] + +```ts title="src/workflows/marketplace/create-vendor-orders/steps/create-vendor-orders.ts" highlights={vendorOrder2Highlights} +if (isOnlyOneVendorOrder) { + const vendorId = vendorIds[0] + const vendor = await marketplaceModuleService.retrieveVendor( + vendorId + ) + // link the parent order to the vendor instead of creating child orders + await remoteLink.create({ + [MARKETPLACE_MODULE]: { + vendor_id: vendorId + }, + [Modules.ORDER]: { + order_id: parentOrder.id + } + }) + + return new StepResponse({ + orders: [ + { + ...parentOrder, + vendor + } + ] + }) +} + +// TODO create multiple child orders +``` + +In the above snippet, if there's only one vendor in the group, the parent order is returned instead of creating child orders. + +Replace the new `TODO` with the following snippet: + +export const vendorOrder3Highlights = [ + ["4", "map", "Loop over the vendor IDs and create a child order with only their items."], + ["15", "parent_order_id", "Set the ID of the parent order in the `metadata` property of the child order."], + ["52", "create", "Create a link between the vendor and the child order."] +] + +```ts title="src/workflows/marketplace/create-vendor-orders/steps/create-vendor-orders.ts" highlights={vendorOrder3Highlights} +const createdOrders: VendorOrder[] = [] + +await Promise.all( + vendorIds.map(async (vendorId) => { + const items = vendorsItems[vendorId] + const vendor = await marketplaceModuleService.retrieveVendor( + vendorId + ) + // create an child order + const { result: childOrder } = await createOrdersWorkflow(container) + .run({ + input: { + items, + metadata: { + parent_order_id: parentOrder.id + }, + // use info from parent + region_id: parentOrder.region_id, + customer_id: parentOrder.customer_id, + sales_channel_id: parentOrder.sales_channel_id, + email: parentOrder.email, + currency_code: parentOrder.currency_code, + shipping_address_id: parentOrder.shipping_address?.id, + billing_address_id: parentOrder.billing_address?.id, + // A better solution would be to have shipping methods for each + // item/vendor. This requires changes in the storefront to commodate that + // and passing the item/vendor ID in the `data` property, for example. + // For simplicity here we just use the same shipping method. + shipping_methods: parentOrder.shipping_methods.map((shippingMethod) => ({ + name: shippingMethod.name, + amount: shippingMethod.amount, + shipping_option_id: shippingMethod.shipping_option_id, + data: shippingMethod.data, + tax_lines: shippingMethod.tax_lines.map((taxLine) => ({ + code: taxLine.code, + rate: taxLine.rate, + provider_id: taxLine.provider_id, + tax_rate_id: taxLine.tax_rate_id, + description: taxLine.description + })), + adjustments: shippingMethod.adjustments.map((adjustment) => ({ + code: adjustment.code, + amount: adjustment.amount, + description: adjustment.description, + promotion_id: adjustment.promotion_id, + provider_id: adjustment.provider_id + })) + })), + } + }) + + await remoteLink.create({ + [MARKETPLACE_MODULE]: { + vendor_id: vendorId + }, + [Modules.ORDER]: { + order_id: childOrder.id + } + }) + + createdOrders.push({ + ...childOrder, + vendor + }) + }) +) + +return new StepResponse({ + orders: createdOrders +}) +``` + +In this snippet, you create multiple child orders for each vendor and link the orders to the vendors. + +The created orders are returned in the response. + + + +When creating the child orders, the shipping method of the parent is used as-is for simplicity. A better practice would be to allow the customer to choose different shipping methods for each vendor’s items and then store those details in the `data` property of the shipping method. + + + +### Create Workflow + +Finally, create the workflow at the file `src/workflows/marketplace/create-vendor-orders/index.ts`: + +```ts title="src/workflows/marketplace/create-vendor-orders/index.ts" collapsibleLines="1-7" expandMoreLabel="Show Imports" +import { createWorkflow, transform } from "@medusajs/workflows-sdk" +import { OrderDTO } from "@medusajs/types" +import retrieveCartStep from "./steps/retrieve-cart" +import groupVendorItemsStep from "./steps/group-vendor-items" +import createParentOrderStep from "./steps/create-parent-order" +import createVendorOrdersStep, { VendorOrder } from "./steps/create-vendor-orders" + +type WorkflowInput = { + cart_id: string +} + +type WorkflowOutput = { + parent_order: OrderDTO + vendor_orders: VendorOrder[] +} + +const createVendorOrdersWorkflow = createWorkflow< + WorkflowInput, WorkflowOutput +>( + "create-vendor-order", + (input) => { + const { cart } = retrieveCartStep(input) + + const { order } = createParentOrderStep(input) + + const { vendorsItems } = groupVendorItemsStep( + transform({ + cart + }, + (data) => data + ) + ) + + const { orders } = createVendorOrdersStep( + transform({ + order, + vendorsItems + }, + (data) => { + return { + parentOrder: data.order, + vendorsItems: data.vendorsItems + } + } + ) + ) + + return transform({ + order, + orders + }, + (data) => ({ + parent_order: data.order, + vendor_orders: data.orders + }) + ) + } +) + +export default createVendorOrdersWorkflow +``` + +This workflow runs the steps and returns the parent and vendor orders. + +### Create API Route Executing the Workflow + +You’ll now create the API route that executes the workflow. + +Create the file `src/api/store/carts/[id]/complete/route.ts` with the following content: + +```ts title="src/api/store/carts/[id]/complete/route.ts" +import { + AuthenticatedMedusaRequest, + MedusaResponse +} from "@medusajs/medusa"; +import createVendorOrdersWorkflow from "../../../../../workflows/marketplace/create-vendor-orders"; + +export const POST = async ( + req: AuthenticatedMedusaRequest, + res: MedusaResponse +) => { + const cartId = req.params.id + + const { result } = await createVendorOrdersWorkflow(req.scope) + .run({ + input: { + cart_id: cartId + } + }) + + res.json({ + type: "order", + order: result.parent_order + }) +} +``` + +This API route replaces the [existing API route in the Medusa application](!api!/store#carts_postcartsidcomplete) used to complete the cart and place an order. It executes the workflow and returns the parent order in the response. + +### Test it Out + +To test this out, it’s recommended to install the [Next.js Starter storefront](../../../../nextjs-starter/page.mdx). Then, add products to the cart and place an order. You can also try placing an order with products from different vendors. + +--- + +## Step 8: Retrieve Vendor Orders API Route + +In this step, you’ll create an API route that retrieves a vendor’s orders. + +Create the file `src/api/vendors/orders/route.ts` with the following content: + +export const getOrderHighlights = [ + ["15", "retrieveVendorAdmin", "Retrive the vendor admin to retrieve its vendor's ID."], + ["32", "remoteQuery", "Retrieve the orders of the vendor."], + ["34", "getOrdersListWorkflow", "Use Medusa's workflow to retrieve the list of orders."], +] + +```ts title="src/api/vendors/orders/route.ts" highlights={getOrderHighlights} collapsibleLines="1-6" expandMoreLabel="Show Imports" +import { AuthenticatedMedusaRequest, MedusaResponse } from "@medusajs/medusa"; +import { remoteQueryObjectFromString } from "@medusajs/utils" +import { getOrdersListWorkflow } from "@medusajs/core-flows" +import MarketplaceModuleService from "../../../modules/marketplace/service"; +import { MARKETPLACE_MODULE } from "../../../modules/marketplace"; + +export const GET = async ( + req: AuthenticatedMedusaRequest, + res: MedusaResponse +) => { + const remoteQuery = req.scope.resolve("remoteQuery") + const marketplaceModuleService: MarketplaceModuleService = + req.scope.resolve(MARKETPLACE_MODULE) + + const vendorAdmin = await marketplaceModuleService.retrieveVendorAdmin( + req.auth_context.actor_id, + { + relations: ["vendor"] + } + ) + + const query = remoteQueryObjectFromString({ + entryPoint: "vendor", + fields: ["orders.*"], + variables: { + filters: { + id: [vendorAdmin.vendor.id] + } + } + }) + + const result = await remoteQuery(query) + + const { result: orders } = await getOrdersListWorkflow(req.scope) + .run({ + input: { + fields: [ + "metadata", + "total", + "subtotal", + "shipping_total", + "tax_total", + "items.*", + "items.tax_lines", + "items.adjustments", + "items.variant", + "items.variant.product", + "items.detail", + "shipping_methods", + "payment_collections", + "fulfillments", + ], + variables: { + filters: { + id: result[0].orders.map((order) => order.id) + } + } + } + }) + + res.json({ + orders + }) +} +``` + +This adds a `GET` API route at `/vendors/orders` that returns a vendor’s list of orders. + +### Test it Out + +To test it out, send a `GET` request to `/vendors/orders` : + +```bash +curl 'http://localhost:9000/vendors/orders' \ +-H 'Authorization: Bearer {token}' +``` + +Make sure to replace the `{token}` with the vendor admin’s token. + +You’ll receive in the response the orders of the vendor created in the previous step. + +--- + +## Next Steps + +The next steps of this example depend on your use case. This section provides some insight into implementing them. + +### Use Existing Features + +You can use [Medusa’s admin API routes for orders](!api!/admin) to allow vendors to manage their orders. This requires you to add the following middleware in `src/api/middlewares.ts`: + +```ts title="src/api/middlewares.ts" +export const config: MiddlewaresConfig = { + routes: [ + // ... + { + matcher: "/admin/orders/*", + method: "POST", + middlewares: [ + authenticate("vendor", ["session", "bearer"]), + ], + }, + ] +} +``` + +You can also re-create or override any of the existing API routes, similar to what you did with the complete cart API route. + +### Link Other Data Models to Vendors + +Similar to linking an order and a product to a vendor, you can link other data models to vendors as well. + +For example, you can link sales channels to vendors or other settings. + + + +[Learn more about module links](!docs!/advanced-development/modules/module-links). + + + +### Storefront Development + +Medusa provides a Next.js Starter storefront that you can customize to your use case. + +You can also create a custom storefront. Check out the [Storefront Development](../../../../storefront-development/page.mdx) section to learn how to create a storefront. + +### Admin Development + +The Medusa Admin is extendable, allowing you to add widgets to existing pages or create new pages. Learn more about it in [this documentation](!docs!/advanced-development/admin). + +If your use case requires bigger customizations to the admin, such as showing different products and orders based on the logged-in vendor, use the [admin API routes](!api!/admin) to build a custom admin. diff --git a/www/apps/resources/app/recipes/marketplace/page.mdx b/www/apps/resources/app/recipes/marketplace/page.mdx index 951a5ad2efbf7..f5b72568cd153 100644 --- a/www/apps/resources/app/recipes/marketplace/page.mdx +++ b/www/apps/resources/app/recipes/marketplace/page.mdx @@ -8,17 +8,11 @@ export const metadata = { This recipe provides the general steps to implement a marketplace in your Medusa application. - - -This recipe is a work in progress, as some features are not ready yet in Medusa V2. - - - ## Overview A marketplace is an online commerce store that allows different vendors to sell their products within the same commerce system. Customers can purchase products from any of these vendors, and vendors can manage their orders separately. -In Medusa, you can create a Marketplace Module that establishes the relations between a store, users, products, and orders. Using these relations, you can implement different stores for different users, with products and orders associated with that store. +In Medusa, you can create a Marketplace Module that implements custom data models, such as vendors or sellers, and link those data models to existing ones such as products and orders. You also expose custom features using API routes, and implement complex flows using workflows. @@ -28,797 +22,129 @@ In Medusa, you can create a Marketplace Module that establishes the relations be --- -## Create Relationships Between Data Models +## Create Custom Module with Data Models -In a marketplace, an admin user has a store where they manage their products and orders, among other details. +In a marketplace, a business or a vendor has a user, and they can use that user to authenticate and manage the vendor's data. -Create a Marketplace Module that holds and manages these relationships. - - - -Module Relationships is coming soon. - - +You can create a marketplace module that implements data models for vendors, their admins, anything else that fits your use case. , showLinkIcon: false }, { - href: "!docs!/advanced-development/modules/module-relationships", - title: "Module Relationships", - text: "Create relationships between modules.", + href: "!docs!/basics/data-models", + title: "Create Data Models", + text: "Create data models in the module.", startIcon: , showLinkIcon: false }, ]} /> -
- - In this section, you’ll create a Marketplace Module with the necessary relationships and functionalities in the main service. - - Start by creating the directory `src/modules/marketplace`. - - Then, create the file `src/modules/marketplace/models/store-user.ts` with the following content: - - ```ts title="src/modules/marketplace/models/store-user.ts" - import { model } from "@medusajs/utils" - - const StoreUser = model.define("store_user", { - id: model.id().primaryKey(), - store_id: model.text(), - user_id: model.text(), - }) - - export default StoreUser - ``` - - This creates a `StoreUser` data model with the `store_id` and `user_id` properties. - - {/* These properties will be used later to establish relationships to the Store and User modules. */} - - Next, create the file `src/modules/marketplace/models/store-product.ts` with the following content: - - ```ts title="src/modules/marketplace/models/store-product.ts" - import { model } from "@medusajs/utils" - - const StoreProduct = model.define("store_product", { - id: model.id().primaryKey(), - store_id: model.text(), - product_id: model.text(), - }) - - export default StoreProduct - ``` - - This creates a `StoreProduct` data model with the `store_id` and `product_id` properties. - - {/* These properties will be used later to establish relationships to the Store and Product modules. */} - - Finally, create the file `src/modules/marketplace/models/store-order.ts` with the following content: - - ```ts title="src/modules/marketplace/models/store-order.ts" - import { model } from "@medusajs/utils" - - const StoreOrder = model.define("store_order", { - id: model.id().primaryKey(), - store_id: model.text(), - order_id: model.text(), - parent_order_id: model.text(), - }) - - export default StoreOrder - ``` - - This creates a `StoreOrder` data model with the `store_id`, `order_id`, and `parent_order_id` properties. - - {/* The `store_id` and `order_id` properties will be used to establish relationships to the Store and Order modules. You’ll learn about the use of `parent_order_id` in a later section. */} - - To reflect these changes on the database, create the migration `src/modules/marketplace/migrations/Migration20240514143248.ts` with the following content: - - ```ts title="src/modules/marketplace/migrations/Migration20240514143248.ts" - import { Migration } from "@mikro-orm/migrations" - - export class Migration20240514143248 extends Migration { - - async up(): Promise { - this.addSql("create table if not exists \"store_order\" (\"id\" varchar(255) not null, \"store_id\" text not null, \"order_id\" text not null, \"parent_order_id\" text not null, constraint \"store_order_pkey\" primary key (\"id\"));") - - this.addSql("create table if not exists \"store_product\" (\"id\" varchar(255) not null, \"store_id\" text not null, \"product_id\" text not null, constraint \"store_product_pkey\" primary key (\"id\"));") - - this.addSql("create table if not exists \"store_user\" (\"id\" varchar(255) not null, \"store_id\" text not null, \"user_id\" text not null, constraint \"store_user_pkey\" primary key (\"id\"));") - } - - async down(): Promise { - this.addSql("drop table if exists \"store_order\" cascade;") - - this.addSql("drop table if exists \"store_product\" cascade;") - - this.addSql("drop table if exists \"store_user\" cascade;") - } - - } - ``` - - You’ll run the migration after registering the module in the Medusa configurations. - - Then, create the module’s main service at `src/modules/marketplace/service.ts` with the following content: - -export const mainServiceHighlights = [ - ["6", "MedusaService", "Extends the service factory to generate data management features."] -] - - ```ts title="src/modules/marketplace/service.ts" highlights={mainServiceHighlights} collapsibleLines="1-5" expandButtonLabel="Show Imports" - import { MedusaService } from "@medusajs/utils" - import StoreUser from "./models/store-user" - import StoreProduct from "./models/store-product" - import StoreOrder from "./models/store-order" - - class MarketplaceModuleService extends MedusaService({ - StoreUser, - StoreProduct, - StoreOrder, - }){ - // TODO add custom methods - } - - export default MarketplaceModuleService - ``` - - The module’s main service extends the service factory to generate data management features for the `StoreUser`, `StoreProduct`, and `StoreOrder` data models. - - Finally, create the module definition at `src/modules/marketplace/index.ts` with the following content: - - ```ts title="src/modules/marketplace/index.ts" - import MarketplaceModuleService from "./service" - import { Module } from "@medusajs/utils" - - export default Module("marketplace", { - service: MarketplaceModuleService, - }) - ``` - - To use the module, add it to the `modules` object in `medusa-config.js`: - - ```js title="medusa-config.js" - module.exports = defineConfig({ - // ... - modules: { - marketplaceModuleService: { - resolve: "./modules/marketplace", - definition: { - isQueryable: true, - }, - }, - }, - }) - ``` - - Then, run the migrations of the module: - - ```bash npm2yarn - npx medusa migrations run - ``` - -
- - --- -## Attach Users to Stores - -To attach admin users to their own stores, create a subscriber that listens to the `user.created` event and attaches the user to the store. +## Define Module Links - +Since a vendor has products, orders, and other models based on your use case, define module links between your module's data models and the commerce module's data models. -- The `user.created` event is currently not emitted. -- Module Relationships is coming soon. - - +For example, if you defined a vendor data model in a marketplace module, you can define a module link between the vendor and the Product Module's product data model. } showLinkIcon={false} /> -{/*
- - Create the file `src/subscribers/user-created.ts` with the following content: - -export const userSubscriberHighlights = [ - ["13", "data", "The event data payload with the created user's ID."], - ["27", "retrieveUser", "Retrieve the created user."], - ["29", "createStores", "Create a store for that user using the Store Module."], - ["33", "createStoreUsers", "Create a relationship between the user and the store by creating a `StoreUser` record."] -] - - ```ts title="src/subscribers/user-created.ts" highlights={userSubscriberHighlights} collapsibleLines="1-11" expandButtonLabel="Show Imports" - import type { - SubscriberArgs, - SubscriberConfig, - } from "@medusajs/medusa" - import { ModuleRegistrationName } from "@medusajs/utils" - import { - IUserModuleService, - IStoreModuleService, - } from "@medusajs/types" - import MarketplaceModuleService from "../modules/marketplace/service" - - export default async function userCreatedHandler({ - data, - container, - }: SubscriberArgs<{ id: string }>) { - const { id } = "data" in data ? data.data : data - const userModuleService: IUserModuleService = container.resolve( - ModuleRegistrationName.USER - ) - const storeModuleService: IStoreModuleService = container.resolve( - ModuleRegistrationName.STORE - ) - const marketplaceModuleService: MarketplaceModuleService = container.resolve( - "marketplaceModuleService" - ) - - const user = await userModuleService.retrieveUser(id) - - const store = await storeModuleService.createStores({ - name: `${user.first_name}'s Store`, - }) - - const storeUser = await marketplaceModuleService.createStoreUsers({ - store_id: store.id, - user_id: user.id, - }) - - console.log(`Created StoreUser ${storeUser.id}`) - } - - export const config: SubscriberConfig = { - event: "user.created", - } - ``` - - This adds a subscriber to the `user.created` event. In the subscriber, you: - - - Retrieve the created user. The created user’s ID is passed in the event’s data payload. - - Create a store for that user using the Store Module. - - Create a relationship between the user and the store by creating a `StoreUser` record. - - To test it out, use the `medusa user` command to create a user: - - ```bash npm2yarn - npx medusa user -e my-admin@medusa-test.com -p supersecret - ``` - - At the end of the output, you should see the message `Created StoreUser {store_user_id}` where the `{store_user_id}` is the ID of the created `StoreUser`. - -
*/} - --- -## Attach Products to Stores +## Allow Vendor Admins to Authenticate -Similar to the previous section, to attach products to stores, create a subscriber that listens to the `product.created` event. In the subscriber, you attach the product to the store it’s created in. +If your marketplace module implements admins for sellers or vendors, you can create an actor type for it. - - -- The `product.created` event is currently not emitted. -- Module Relationships is coming soon. - - +Then, you guard custom API routes to only allow authenticated vendor admins. } showLinkIcon={false} /> -{/*
- - Create the file `src/subscribers/product-created.ts` with the following content: - -export const productSubscriberHighlights = [ - ["24", "retrieveProduct", "Retrieve the created product."], - ["26", "", "This subscriber requires the store ID to be set in `product.metadata.store_id`. If not, the subscriber ends execution."], - ["30", "createStoreProducts", "Create a relationship between the product and the store by creating a `StoreProduct` record."] -] - - ```ts title="src/subscribers/product-created.ts" highlights={productSubscriberHighlights} collapsibleLines="1-10" expandButtonLabel="Show Imports" - import type { - SubscriberArgs, - SubscriberConfig, - } from "@medusajs/medusa" - import { ModuleRegistrationName } from "@medusajs/utils" - import { - IProductModuleService, - } from "@medusajs/types" - import MarketplaceModuleService from "../modules/marketplace/service" - - export default async function productCreateHandler({ - data, - container, - }: SubscriberArgs<{ id: string }>) { - const { id } = "data" in data ? data.data : data - const productModuleService: IProductModuleService = container.resolve( - ModuleRegistrationName.PRODUCT - ) - - const marketplaceModuleService: MarketplaceModuleService = container.resolve( - "marketplaceModuleService" - ) - - const product = await productModuleService.retrieveProduct(id) - - if (!product.metadata?.store_id) { - return - } - - await marketplaceModuleService.createStoreProducts({ - store_id: product.metadata.store_id as string, - product_id: id, - }) - } - - export const config: SubscriberConfig = { - event: "product.created", - } - ``` - - This adds a subscriber to the `product.created` event. In the subscriber, you: - - - Retrieve the created product. - - This subscriber requires the store ID to be set in `product.metadata.store_id`. If not, the subscriber ends execution. - - If the store ID is found, create a relationship between the product and the store by creating a `StoreProduct` record. - - To test it out, start the Medusa application: - - ```bash npm2yarn - npm run dev - ``` - - Then, send an authenticated `POST` request to `/admin/products`: - - ```bash - curl -X POST 'http://localhost:9000/admin/products' \ - -H 'Content-Type: application/json' \ - -H 'Authorization: Bearer {jwt_token}' \ - --data '{ - "title": "My Shirt 13", - "metadata": { - "store_id": "store_01HXV74JCCAHA3F2X3EWZTZG5R" - } - }' - ``` - - This returns the created product. In the next section, you’ll implement the API route to fetch the products of a store. - -
*/} - - --- -## Retrieve Store’s Products +## Create Vendor API Routes -To allow admin users to view their store’s products, create an API route that uses the remote query to fetch the products based on the logged-in user’s store. - - - -Retrieving module relationship data using the remote query is coming soon. - - +If you provide vendor or sellers with custom features, or a different way of managing products and orders, create API routes only accessible by vendors exposing your custom features. , showLinkIcon: false }, { - href: "!docs!/advanced-development/modules/remote-query", - title: "Remote Query", - text: "Use the remote query to fetch data across modules.", + href: "!docs!/advanced-development/api-routes/protected-routes", + title: "Protect Routes", + text: "Learn how to guard routes to allow authenticated users only.", startIcon: , showLinkIcon: false }, ]} /> -{/*
- - Create the file `src/api/admin/marketplace/products/route.ts` with the following content: - -export const productRoutesHighlights = [ - ["26", "storeUsers", "Retrieve the store of the logged-in user."], - ["38", "query", "Build a query that retrieves the products of that store."], - ["50", "remoteQuery", "Retrieve the products using remote query."] -] - - ```ts title="src/api/admin/marketplace/products/route.ts" highlights={productRoutesHighlights} collapsibleLines="1-13" expandButtonLabel="Show Imports" - import { - AuthenticatedMedusaRequest, - MedusaResponse, - } from "@medusajs/medusa" - import { RemoteQueryFunction } from "@medusajs/modules-sdk" - import { - remoteQueryObjectFromString, - ContainerRegistrationKeys, - MedusaError, - } from "@medusajs/utils" - import MarketplaceModuleService - from "../../../../modules/marketplace/service" - - export async function GET( - req: AuthenticatedMedusaRequest, - res: MedusaResponse - ): Promise { - const marketplaceModuleService: MarketplaceModuleService = - req.scope.resolve( - "marketplaceModuleService" - ) - const remoteQuery: RemoteQueryFunction = req.scope.resolve( - ContainerRegistrationKeys.REMOTE_QUERY - ) - - const storeUsers = await marketplaceModuleService - .listStoreUsers({ - user_id: req.auth_context.actor_id, - }) - - if (!storeUsers.length) { - throw new MedusaError( - MedusaError.Types.NOT_FOUND, - "This user doesn't have an associated store." - ) - } - - const query = remoteQueryObjectFromString({ - entryPoint: "store_product", - fields: [ - "product.*", - ], - variables: { - filters: { - store_id: storeUsers[0].store_id, - }, - }, - }) - - const result = await remoteQuery(query) - - res.json({ - store_id: storeUsers[0].store_id, - products: result.map((data) => data.product), - }) - } - ``` - - This creates a `GET` API route at `/admin/marketplace/products`. In the API route, you: - - - Retrieve the store of the logged-in user. - - Build a query that retrieves the products of that store. - - Retrieve the products using remote query and return them. - - Next, create the file `src/api/middlewares.ts` with the following content: - - ```ts title="src/api/middlewares.ts" - import { - MiddlewaresConfig, - authenticate, - } from "@medusajs/medusa" - - export const config: MiddlewaresConfig = { - routes: [ - { - matcher: "/admin/marketplace*", - middlewares: [ - authenticate( - "admin", - ["session", "bearer", "api-key"] - ), - ], - }, - ], - } - ``` - - This ensures that only authenticated admin users can access your API route. - - To test it out, start the Medusa application. Then, send a `GET` request to `/admin/marketplace/products`: - - ```bash - curl 'localhost:9000/admin/marketplace/products' \ - -H 'Authorization: Bearer {jwt_token}' - ``` - - This will return the product you created in the previous section, if the `{jwt_token}` belongs to the user of the same store ID. - -
*/} - - --- -## Split Orders Based on Stores - -An order may contain items from different stores. To ensure that users can only view and manage their orders, create a subscriber that listens to the `order.placed` event and handles splitting the order into multiple orders based on the items’ stores. +## Split Orders Based on Vendors - +If your use case allows a customer's orders to have items from different vendors, you can override the [Complete Cart API route](https://docs.medusajs.com/v2/api/store#carts_postcartsidcomplete) to change how the order should be created. -The `order.placed` event is still not emitted in Medusa V2. - - +If your flow requires different steps, such as creating a parent order then creating a child order, create a workflow and execute it from the API route. } showLinkIcon={false} /> -{/*
- - Create the file `src/subscribers/order-created.ts` with the following content: - -export const orderSubscriberHighlights = [ - ["35", "", "Loop over the created order’s items."], - ["57", "", "Group the items by their store ID."], - ["72", "createStoreOrders", "If the items have the same store ID, then associate the created order with the store."], - ["88", "createStoreOrders", "If there are items from more than one store in the order, create child orders and associate each of them with the store."], - ["91", "parent_order_id", "The `parent_order_id` property in the `StoreOrder` data model points to the original order."] -] - - ```ts title="src/subscribers/order-created.ts" highlights={orderSubscriberHighlights} collapsibleLines="1-13" expandButtonLabel="Show Imports" - import type { - SubscriberArgs, - SubscriberConfig, - } from "@medusajs/medusa" - import { ModuleRegistrationName } from "@medusajs/utils" - import { - IOrderModuleService, - CreateOrderDTO, - } from "@medusajs/types" - import MarketplaceModuleService - from "../modules/marketplace/service" - import { createOrdersWorkflow } from "@medusajs/core-flows" - - export default async function orderCreatedHandler({ - data, - container, - }: SubscriberArgs<{ id: string }>) { - const { id } = "data" in data ? data.data : data - const orderModuleService: IOrderModuleService = - container.resolve( - ModuleRegistrationName.ORDER - ) - - const marketplaceModuleService: MarketplaceModuleService = - container.resolve( - "marketplaceModuleService" - ) - - const storeToOrders: Record = {} - - const order = await orderModuleService.retrieveOrder(id, { - relations: ["items"], - }) - - await Promise.all(order.items?.map(async (item) => { - const storeProduct = await marketplaceModuleService - .listStoreProducts({ - product_id: item.product_id, - }) - - if (!storeProduct.length) { - return - } - - const storeId = storeProduct[0].store_id - - if (!storeToOrders[storeId]) { - const { id, ...orderDetails } = order - storeToOrders[storeId] = { - ...orderDetails, - items: [], - } - } - - const { id, ...itemDetails } = item - - storeToOrders[storeId].items.push(itemDetails) - })) - - const storeToOrdersKeys = Object.keys(storeToOrders) - - if (!storeToOrdersKeys.length) { - return - } - - if ( - storeToOrdersKeys.length === 1 && - storeToOrders[0].items.length === order.items.length - ) { - // The order is composed of items from one store, so - // associate the order as-is with the store. - await marketplaceModuleService.createStoreOrders({ - store_id: storeToOrdersKeys[0], - order_id: order.id, - }) - - return - } - - // create store orders for each child order - await Promise.all( - storeToOrdersKeys.map(async (storeId) => { - const { result } = await createOrdersWorkflow(container) - .run({ - input: storeToOrders[storeId], - }) - - await marketplaceModuleService.createStoreOrders({ - store_id: storeId, - order_id: result.id, - parent_order_id: order.id, - }) - }) - ) - } - - export const config: SubscriberConfig = { - event: "order.placed", - } - ``` - - This adds a subscriber to the `order.placed` event. In the subscriber, you: - - - Loop over the created order’s items. - - Group the items by their store ID. - - If the items have the same store ID, then associate the created order with the store. - - If there are items from more than one store in the order, create child orders and associate each of them with the store. Here, you use the `parent_order_id` property in the `StoreOrder` data model to point to the original order. - - To test this out, create an order in your store. That will run the subscriber and create the child orders. - - The next section covers how to retrieve the store’s orders. - -
*/} - - --- -## Retrieve Store’s Orders - -Similar to products, to allow admin users to view their store’s orders, create an API route that uses the remote query to fetch the orders based on the logged-in user’s store. - - +## Customize Storefront -Retrieving module relationship data using the remote query is coming soon. +Medusa provides a Next.js Starter storefront that you can customize for your use case. - +You can also create a custom storefront from scratch. , showLinkIcon: false }, { - href: "!docs!/advanced-development/modules/remote-query", - title: "Remote Query", - text: "Use the remote query to fetch data across modules.", + href: "/storefront-development", + title: "Storefront Development", + text: "Find useful guides for creating a custom storefront.", startIcon: , showLinkIcon: false }, ]} /> -{/*
- - Create the file `src/api/admin/marketplace/orders/route.ts` with the following content: - -export const orderRoutesHighlights = [ - ["25", "", "Retrieve the store of the logged-in user."], - ["29", "", "Build a query that retrieves the orders of that store."], - ["41", "", "Retrieve the orders using remote query."] -] - - ```ts title="src/api/admin/marketplace/orders/route.ts" highlights={orderRoutesHighlights} collapsibleLines="1-12" expandButtonLabel="Show Imports" - import { - AuthenticatedMedusaRequest, - MedusaResponse, - } from "@medusajs/medusa" - import { RemoteQueryFunction } from "@medusajs/modules-sdk" - import { - remoteQueryObjectFromString, - ContainerRegistrationKeys, - } from "@medusajs/utils" - import MarketplaceModuleService - from "../../../../modules/marketplace/service" - - export async function GET( - req: AuthenticatedMedusaRequest, - res: MedusaResponse - ): Promise { - const marketplaceModuleService: MarketplaceModuleService = - req.scope.resolve( - "marketplaceModuleService" - ) - const remoteQuery: RemoteQueryFunction = req.scope.resolve( - ContainerRegistrationKeys.REMOTE_QUERY - ) - - const storeUsers = await marketplaceModuleService.listStoreUsers({ - user_id: req.auth_context.actor_id, - }) - - const query = remoteQueryObjectFromString({ - entryPoint: "store_order", - fields: [ - "order.*", - ], - variables: { - filters: { - store_id: storeUsers[0].store_id, - }, - }, - }) - - const result = await remoteQuery(query) - - res.json({ - orders: result.map((data) => data.order), - }) - } - ``` - - This creates a `GET` API route at `/admin/marketplace/orders`. In the API route, you: - - - Retrieve the store of the logged-in user. - - Build a query that retrieves the orders of that store. - - Retrieve the orders using remote query and return them. - - To test it out, start the Medusa application. Then, send a `GET` request to `/admin/marketplace/orders`: - - ```bash - curl 'localhost:9000/admin/marketplace/orders' \ - -H 'Authorization: Bearer {jwt_token}' - ``` - - This will return the orders you created in the previous section if the `{jwt_token}` belongs to the user of the same store ID. - -
*/} - --- -## Customize Storefront - -Medusa provides a Next.js storefront to use with your application. You can either customize it or build your own to represent your marketplace features. +## Customize Admin -For example, you can create an API route that retrieves available stores and another API route that retrieves the products of each store using the remote query as done in previous sections. +The Medusa Admin is extendable, allowing you to add widgets to existing pages or create new pages. -, - showLinkIcon: false - }, - { - href: "!docs!/storefront-development/tips", - title: "Storefront Tips", - text: "Find tips on developing a custom storefront.", - startIcon: , - showLinkIcon: false - }, -]} /> +If your use case requires bigger customizations to the admin, such as showing different products and orders based on the logged-in vendor, use the [admin API routes](!api!/admin) to build a custom admin. diff --git a/www/apps/resources/app/recipes/page.mdx b/www/apps/resources/app/recipes/page.mdx new file mode 100644 index 0000000000000..a0758ec21579d --- /dev/null +++ b/www/apps/resources/app/recipes/page.mdx @@ -0,0 +1,11 @@ +import { ChildDocs } from "docs-ui" + +export const metadata = { + title: `Recipes`, +} + +# {metadata.title} + +This section of the documentation provides recipes for common use cases with example implementations. + + \ No newline at end of file diff --git a/www/apps/resources/app/twitter-image.jpg b/www/apps/resources/app/twitter-image.jpg new file mode 100644 index 0000000000000..89c90792caa93 Binary files /dev/null and b/www/apps/resources/app/twitter-image.jpg differ diff --git a/www/apps/resources/generated/files-map.mjs b/www/apps/resources/generated/files-map.mjs index 49308e5f8aaac..672b06013d180 100644 --- a/www/apps/resources/generated/files-map.mjs +++ b/www/apps/resources/generated/files-map.mjs @@ -731,6 +731,10 @@ export const filesMap = [ "filePath": "/www/apps/resources/app/recipes/integrate-ecommerce-stack/page.mdx", "pathname": "/recipes/integrate-ecommerce-stack" }, + { + "filePath": "/www/apps/resources/app/recipes/marketplace/examples/vendors/page.mdx", + "pathname": "/recipes/marketplace/examples/vendors" + }, { "filePath": "/www/apps/resources/app/recipes/marketplace/page.mdx", "pathname": "/recipes/marketplace" @@ -747,6 +751,10 @@ export const filesMap = [ "filePath": "/www/apps/resources/app/recipes/oms/page.mdx", "pathname": "/recipes/oms" }, + { + "filePath": "/www/apps/resources/app/recipes/page.mdx", + "pathname": "/recipes" + }, { "filePath": "/www/apps/resources/app/recipes/personalized-products/page.mdx", "pathname": "/recipes/personalized-products" @@ -4543,6 +4551,14 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderChange/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderChange" }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderClaims/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderClaims" + }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderExchanges/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderExchanges" + }, { "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrders/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrders" @@ -4555,6 +4571,10 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturnReasons/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturnReasons" }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturns/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturns" + }, { "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createShippingMethodAdjustments/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.createShippingMethodAdjustments" @@ -4595,6 +4615,14 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderChanges/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderChanges" }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderClaims/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderClaims" + }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderExchanges/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderExchanges" + }, { "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrders/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrders" @@ -4603,6 +4631,10 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteReturnReasons/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteReturnReasons" }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteReturns/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteReturns" + }, { "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteShippingMethodAdjustments/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteShippingMethodAdjustments" @@ -4651,6 +4683,10 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.listLineItems/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.listLineItems" }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.listOrderChangeActions/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.listOrderChangeActions" + }, { "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.listOrderClaims/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.listOrderClaims" @@ -4727,6 +4763,14 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderChanges/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderChanges" }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderClaims/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderClaims" + }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderExchanges/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderExchanges" + }, { "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrders/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrders" @@ -4735,6 +4779,10 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturnReasons/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturnReasons" }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturns/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturns" + }, { "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreShippingMethodAdjustments/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreShippingMethodAdjustments" @@ -4763,6 +4811,10 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChange/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChange" }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChangeAction/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChangeAction" + }, { "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderClaim/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderClaim" @@ -4823,6 +4875,14 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderChanges/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderChanges" }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderClaims/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderClaims" + }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderExchanges/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderExchanges" + }, { "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrders/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrders" @@ -4831,6 +4891,10 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturnReasons/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturnReasons" }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturns/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturns" + }, { "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteShippingMethodAdjustments/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteShippingMethodAdjustments" @@ -4855,10 +4919,22 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateLineItems/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateLineItems" }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChangeActions/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChangeActions" + }, { "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChanges/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChanges" }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderClaims/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderClaims" + }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderExchanges/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderExchanges" + }, { "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderItem/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderItem" @@ -4871,6 +4947,10 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturnReasons/page.mdx", "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturnReasons" }, + { + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturns/page.mdx", + "pathname": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturns" + }, { "filePath": "/www/apps/resources/references/order/interfaces/order.BaseFilterable/page.mdx", "pathname": "/references/order/interfaces/order.BaseFilterable" @@ -4987,6 +5067,18 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/interfaces/order.FilterableOrderAddressProps/page.mdx", "pathname": "/references/order/interfaces/order.FilterableOrderAddressProps" }, + { + "filePath": "/www/apps/resources/references/order/interfaces/order.FilterableOrderChangeActionProps/page.mdx", + "pathname": "/references/order/interfaces/order.FilterableOrderChangeActionProps" + }, + { + "filePath": "/www/apps/resources/references/order/interfaces/order.FilterableOrderClaimProps/page.mdx", + "pathname": "/references/order/interfaces/order.FilterableOrderClaimProps" + }, + { + "filePath": "/www/apps/resources/references/order/interfaces/order.FilterableOrderExchangeProps/page.mdx", + "pathname": "/references/order/interfaces/order.FilterableOrderExchangeProps" + }, { "filePath": "/www/apps/resources/references/order/interfaces/order.FilterableOrderLineItemAdjustmentProps/page.mdx", "pathname": "/references/order/interfaces/order.FilterableOrderLineItemAdjustmentProps" @@ -5023,6 +5115,10 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/interfaces/order.FilterableOrderTransactionProps/page.mdx", "pathname": "/references/order/interfaces/order.FilterableOrderTransactionProps" }, + { + "filePath": "/www/apps/resources/references/order/interfaces/order.FilterableReturnProps/page.mdx", + "pathname": "/references/order/interfaces/order.FilterableReturnProps" + }, { "filePath": "/www/apps/resources/references/order/interfaces/order.FindConfig/page.mdx", "pathname": "/references/order/interfaces/order.FindConfig" @@ -5159,14 +5255,34 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderAdjustmentDTO/page.mdx", "pathname": "/references/order/interfaces/order.UpdateOrderAdjustmentDTO" }, + { + "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderChangeActionDTO/page.mdx", + "pathname": "/references/order/interfaces/order.UpdateOrderChangeActionDTO" + }, { "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderChangeDTO/page.mdx", "pathname": "/references/order/interfaces/order.UpdateOrderChangeDTO" }, + { + "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderClaimDTO/page.mdx", + "pathname": "/references/order/interfaces/order.UpdateOrderClaimDTO" + }, + { + "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderClaimWithSelectorDTO/page.mdx", + "pathname": "/references/order/interfaces/order.UpdateOrderClaimWithSelectorDTO" + }, { "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderDTO/page.mdx", "pathname": "/references/order/interfaces/order.UpdateOrderDTO" }, + { + "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderExchangeDTO/page.mdx", + "pathname": "/references/order/interfaces/order.UpdateOrderExchangeDTO" + }, + { + "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderExchangeWithSelectorDTO/page.mdx", + "pathname": "/references/order/interfaces/order.UpdateOrderExchangeWithSelectorDTO" + }, { "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderItemDTO/page.mdx", "pathname": "/references/order/interfaces/order.UpdateOrderItemDTO" @@ -5187,6 +5303,10 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderLineItemWithSelectorDTO/page.mdx", "pathname": "/references/order/interfaces/order.UpdateOrderLineItemWithSelectorDTO" }, + { + "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderReturnDTO/page.mdx", + "pathname": "/references/order/interfaces/order.UpdateOrderReturnDTO" + }, { "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderReturnReasonDTO/page.mdx", "pathname": "/references/order/interfaces/order.UpdateOrderReturnReasonDTO" @@ -5195,6 +5315,10 @@ export const filesMap = [ "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderReturnReasonWithSelectorDTO/page.mdx", "pathname": "/references/order/interfaces/order.UpdateOrderReturnReasonWithSelectorDTO" }, + { + "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderReturnWithSelectorDTO/page.mdx", + "pathname": "/references/order/interfaces/order.UpdateOrderReturnWithSelectorDTO" + }, { "filePath": "/www/apps/resources/references/order/interfaces/order.UpdateOrderShippingMethodAdjustmentDTO/page.mdx", "pathname": "/references/order/interfaces/order.UpdateOrderShippingMethodAdjustmentDTO" diff --git a/www/apps/resources/generated/sidebar.mjs b/www/apps/resources/generated/sidebar.mjs index 72b7b41d5f5df..fe9f7f30c906f 100644 --- a/www/apps/resources/generated/sidebar.mjs +++ b/www/apps/resources/generated/sidebar.mjs @@ -2486,6 +2486,20 @@ export const generatedSidebar = [ "title": "createOrderChange", "children": [] }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/createOrderClaims", + "title": "createOrderClaims", + "children": [] + }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/createOrderExchanges", + "title": "createOrderExchanges", + "children": [] + }, { "loaded": true, "isPathHref": true, @@ -2507,6 +2521,13 @@ export const generatedSidebar = [ "title": "createReturnReasons", "children": [] }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/createReturns", + "title": "createReturns", + "children": [] + }, { "loaded": true, "isPathHref": true, @@ -2577,6 +2598,20 @@ export const generatedSidebar = [ "title": "deleteOrderChanges", "children": [] }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/deleteOrderClaims", + "title": "deleteOrderClaims", + "children": [] + }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/deleteOrderExchanges", + "title": "deleteOrderExchanges", + "children": [] + }, { "loaded": true, "isPathHref": true, @@ -2591,6 +2626,13 @@ export const generatedSidebar = [ "title": "deleteReturnReasons", "children": [] }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/deleteReturns", + "title": "deleteReturns", + "children": [] + }, { "loaded": true, "isPathHref": true, @@ -2675,6 +2717,13 @@ export const generatedSidebar = [ "title": "listLineItems", "children": [] }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/listOrderChangeActions", + "title": "listOrderChangeActions", + "children": [] + }, { "loaded": true, "isPathHref": true, @@ -2808,6 +2857,20 @@ export const generatedSidebar = [ "title": "restoreOrderChanges", "children": [] }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/restoreOrderClaims", + "title": "restoreOrderClaims", + "children": [] + }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/restoreOrderExchanges", + "title": "restoreOrderExchanges", + "children": [] + }, { "loaded": true, "isPathHref": true, @@ -2822,6 +2885,13 @@ export const generatedSidebar = [ "title": "restoreReturnReasons", "children": [] }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/restoreReturns", + "title": "restoreReturns", + "children": [] + }, { "loaded": true, "isPathHref": true, @@ -2871,6 +2941,13 @@ export const generatedSidebar = [ "title": "retrieveOrderChange", "children": [] }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/retrieveOrderChangeAction", + "title": "retrieveOrderChangeAction", + "children": [] + }, { "loaded": true, "isPathHref": true, @@ -2976,6 +3053,20 @@ export const generatedSidebar = [ "title": "softDeleteOrderChanges", "children": [] }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/softDeleteOrderClaims", + "title": "softDeleteOrderClaims", + "children": [] + }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/softDeleteOrderExchanges", + "title": "softDeleteOrderExchanges", + "children": [] + }, { "loaded": true, "isPathHref": true, @@ -2990,6 +3081,13 @@ export const generatedSidebar = [ "title": "softDeleteReturnReasons", "children": [] }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/softDeleteReturns", + "title": "softDeleteReturns", + "children": [] + }, { "loaded": true, "isPathHref": true, @@ -3032,6 +3130,13 @@ export const generatedSidebar = [ "title": "updateLineItems", "children": [] }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/updateOrderChangeActions", + "title": "updateOrderChangeActions", + "children": [] + }, { "loaded": true, "isPathHref": true, @@ -3039,6 +3144,20 @@ export const generatedSidebar = [ "title": "updateOrderChanges", "children": [] }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/updateOrderClaims", + "title": "updateOrderClaims", + "children": [] + }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/updateOrderExchanges", + "title": "updateOrderExchanges", + "children": [] + }, { "loaded": true, "isPathHref": true, @@ -3059,6 +3178,13 @@ export const generatedSidebar = [ "path": "/references/order/updateReturnReasons", "title": "updateReturnReasons", "children": [] + }, + { + "loaded": true, + "isPathHref": true, + "path": "/references/order/updateReturns", + "title": "updateReturns", + "children": [] } ] } @@ -6159,9 +6285,26 @@ export const generatedSidebar = [ { "loaded": true, "isPathHref": true, + "path": "/recipes", "title": "Recipes", "hasTitleStyling": true, + "isChildSidebar": true, "children": [ + { + "loaded": true, + "isPathHref": true, + "path": "/recipes/marketplace", + "title": "Marketplace", + "children": [ + { + "loaded": true, + "isPathHref": true, + "path": "/recipes/marketplace/examples/vendors", + "title": "Example: Vendors", + "children": [] + } + ] + }, { "loaded": true, "isPathHref": true, @@ -6197,13 +6340,6 @@ export const generatedSidebar = [ "title": "Integrate Ecommerce Stack", "children": [] }, - { - "loaded": true, - "isPathHref": true, - "path": "/recipes/marketplace", - "title": "Marketplace", - "children": [] - }, { "loaded": true, "isPathHref": true, diff --git a/www/apps/resources/generated/slug-changes.mjs b/www/apps/resources/generated/slug-changes.mjs index a39114bdfdbfa..3f1c2879b6498 100644 --- a/www/apps/resources/generated/slug-changes.mjs +++ b/www/apps/resources/generated/slug-changes.mjs @@ -2134,6 +2134,16 @@ export const slugChanges = [ "newSlug": "/references/order/createOrderChange", "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderChange/page.mdx" }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderClaims", + "newSlug": "/references/order/createOrderClaims", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderClaims/page.mdx" + }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderExchanges", + "newSlug": "/references/order/createOrderExchanges", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderExchanges/page.mdx" + }, { "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrders", "newSlug": "/references/order/createOrders", @@ -2149,6 +2159,11 @@ export const slugChanges = [ "newSlug": "/references/order/createReturnReasons", "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturnReasons/page.mdx" }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturns", + "newSlug": "/references/order/createReturns", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturns/page.mdx" + }, { "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.createShippingMethodAdjustments", "newSlug": "/references/order/createShippingMethodAdjustments", @@ -2199,6 +2214,16 @@ export const slugChanges = [ "newSlug": "/references/order/deleteOrderChanges", "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderChanges/page.mdx" }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderClaims", + "newSlug": "/references/order/deleteOrderClaims", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderClaims/page.mdx" + }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderExchanges", + "newSlug": "/references/order/deleteOrderExchanges", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderExchanges/page.mdx" + }, { "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrders", "newSlug": "/references/order/deleteOrders", @@ -2209,6 +2234,11 @@ export const slugChanges = [ "newSlug": "/references/order/deleteReturnReasons", "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteReturnReasons/page.mdx" }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteReturns", + "newSlug": "/references/order/deleteReturns", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteReturns/page.mdx" + }, { "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteShippingMethodAdjustments", "newSlug": "/references/order/deleteShippingMethodAdjustments", @@ -2269,6 +2299,11 @@ export const slugChanges = [ "newSlug": "/references/order/listLineItems", "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.listLineItems/page.mdx" }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.listOrderChangeActions", + "newSlug": "/references/order/listOrderChangeActions", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.listOrderChangeActions/page.mdx" + }, { "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.listOrderClaims", "newSlug": "/references/order/listOrderClaims", @@ -2364,6 +2399,16 @@ export const slugChanges = [ "newSlug": "/references/order/restoreOrderChanges", "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderChanges/page.mdx" }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderClaims", + "newSlug": "/references/order/restoreOrderClaims", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderClaims/page.mdx" + }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderExchanges", + "newSlug": "/references/order/restoreOrderExchanges", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderExchanges/page.mdx" + }, { "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrders", "newSlug": "/references/order/restoreOrders", @@ -2374,6 +2419,11 @@ export const slugChanges = [ "newSlug": "/references/order/restoreReturnReasons", "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturnReasons/page.mdx" }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturns", + "newSlug": "/references/order/restoreReturns", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturns/page.mdx" + }, { "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreShippingMethodAdjustments", "newSlug": "/references/order/restoreShippingMethodAdjustments", @@ -2409,6 +2459,11 @@ export const slugChanges = [ "newSlug": "/references/order/retrieveOrderChange", "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChange/page.mdx" }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChangeAction", + "newSlug": "/references/order/retrieveOrderChangeAction", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChangeAction/page.mdx" + }, { "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderClaim", "newSlug": "/references/order/retrieveOrderClaim", @@ -2484,6 +2539,16 @@ export const slugChanges = [ "newSlug": "/references/order/softDeleteOrderChanges", "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderChanges/page.mdx" }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderClaims", + "newSlug": "/references/order/softDeleteOrderClaims", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderClaims/page.mdx" + }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderExchanges", + "newSlug": "/references/order/softDeleteOrderExchanges", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderExchanges/page.mdx" + }, { "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrders", "newSlug": "/references/order/softDeleteOrders", @@ -2494,6 +2559,11 @@ export const slugChanges = [ "newSlug": "/references/order/softDeleteReturnReasons", "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturnReasons/page.mdx" }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturns", + "newSlug": "/references/order/softDeleteReturns", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturns/page.mdx" + }, { "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteShippingMethodAdjustments", "newSlug": "/references/order/softDeleteShippingMethodAdjustments", @@ -2524,11 +2594,26 @@ export const slugChanges = [ "newSlug": "/references/order/updateLineItems", "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateLineItems/page.mdx" }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChangeActions", + "newSlug": "/references/order/updateOrderChangeActions", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChangeActions/page.mdx" + }, { "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChanges", "newSlug": "/references/order/updateOrderChanges", "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChanges/page.mdx" }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderClaims", + "newSlug": "/references/order/updateOrderClaims", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderClaims/page.mdx" + }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderExchanges", + "newSlug": "/references/order/updateOrderExchanges", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderExchanges/page.mdx" + }, { "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderItem", "newSlug": "/references/order/updateOrderItem", @@ -2544,6 +2629,11 @@ export const slugChanges = [ "newSlug": "/references/order/updateReturnReasons", "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturnReasons/page.mdx" }, + { + "origSlug": "/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturns", + "newSlug": "/references/order/updateReturns", + "filePath": "/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturns/page.mdx" + }, { "origSlug": "/references/order/interfaces/order.IOrderModuleService", "newSlug": "/references/order", diff --git a/www/apps/resources/references/fulfillment/interfaces/fulfillment.CreateFulfillmentDTO/page.mdx b/www/apps/resources/references/fulfillment/interfaces/fulfillment.CreateFulfillmentDTO/page.mdx index 259b57e5f810d..9eb248c108356 100644 --- a/www/apps/resources/references/fulfillment/interfaces/fulfillment.CreateFulfillmentDTO/page.mdx +++ b/www/apps/resources/references/fulfillment/interfaces/fulfillment.CreateFulfillmentDTO/page.mdx @@ -8,4 +8,4 @@ import { TypeList } from "docs-ui" The fulfillment to be created. -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"Omit<[CreateFulfillmentItemDTO](../fulfillment.CreateFulfillmentItemDTO/page.mdx), \"fulfillment_id\">[]","description":"The items associated with the fulfillment.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"title","type":"`string`","description":"The title of the fulfillment item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"sku","type":"`string`","description":"The SKU of the fulfillment item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the fulfillment item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"barcode","type":"`string`","description":"The barcode of the fulfillment item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"line_item_id","type":"`null` \\| `string`","description":"The associated line item's ID.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"inventory_item_id","type":"`null` \\| `string`","description":"The associated inventory item's ID.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"labels","type":"Omit<[CreateFulfillmentLabelDTO](../fulfillment.CreateFulfillmentLabelDTO/page.mdx), \"fulfillment_id\">[]","description":"The labels associated with the fulfillment.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"tracking_number","type":"`string`","description":"The tracking number of the fulfillment label.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tracking_url","type":"`string`","description":"The tracking URL of the fulfillment label.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"label_url","type":"`string`","description":"The URL of the label.","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"packed_at","type":"`null` \\| `Date`","description":"The date the fulfillment was packed.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipped_at","type":"`null` \\| `Date`","description":"The date the fulfillment was shipped.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"delivered_at","type":"`null` \\| `Date`","description":"The date the fulfillment was delivered.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `Date`","description":"The date the fulfillment was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`null` \\| `Record`","description":"The data necessary for the associated fulfillment provider to process the fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`null` \\| `string`","description":"The associated shipping option's ID.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"Partial<[OrderDTO](../fulfillment.OrderDTO/page.mdx)>","description":"The associated order to be sent to the provider.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="CreateFulfillmentDTO"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"Omit<[CreateFulfillmentItemDTO](../fulfillment.CreateFulfillmentItemDTO/page.mdx), \"fulfillment_id\">[]","description":"The items associated with the fulfillment.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"title","type":"`string`","description":"The title of the fulfillment item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"sku","type":"`string`","description":"The SKU of the fulfillment item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the fulfillment item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"barcode","type":"`string`","description":"The barcode of the fulfillment item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"line_item_id","type":"`null` \\| `string`","description":"The associated line item's ID.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"inventory_item_id","type":"`null` \\| `string`","description":"The associated inventory item's ID.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"labels","type":"Omit<[CreateFulfillmentLabelDTO](../fulfillment.CreateFulfillmentLabelDTO/page.mdx), \"fulfillment_id\">[]","description":"The labels associated with the fulfillment.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"tracking_number","type":"`string`","description":"The tracking number of the fulfillment label.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tracking_url","type":"`string`","description":"The tracking URL of the fulfillment label.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"label_url","type":"`string`","description":"The URL of the label.","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"packed_at","type":"`null` \\| `Date`","description":"The date the fulfillment was packed.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipped_at","type":"`null` \\| `Date`","description":"The date the fulfillment was shipped.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"delivered_at","type":"`null` \\| `Date`","description":"The date the fulfillment was delivered.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `Date`","description":"The date the fulfillment was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`null` \\| `Record`","description":"The data necessary for the associated fulfillment provider to process the fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`null` \\| `string`","description":"The associated shipping option's ID.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"Partial<[OrderDTO](../fulfillment.OrderDTO/page.mdx)>","description":"The associated order to be sent to the provider.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="CreateFulfillmentDTO"/> diff --git a/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderChangeActionDTO/page.mdx b/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderChangeActionDTO/page.mdx index c235f64ff627b..2a94c8bcc26d6 100644 --- a/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderChangeActionDTO/page.mdx +++ b/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderChangeActionDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # OrderChangeActionDTO -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderChangeActionDTO"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderChangeActionDTO"/> diff --git a/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderChangeDTO/page.mdx b/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderChangeDTO/page.mdx index 02f8a0359121f..b6213b0e433ce 100644 --- a/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderChangeDTO/page.mdx +++ b/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderChangeDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # OrderChangeDTO -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderChangeDTO"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderChangeDTO"/> diff --git a/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderClaimDTO/page.mdx b/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderClaimDTO/page.mdx index c9421b1866d23..67b6cfc7818a3 100644 --- a/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderClaimDTO/page.mdx +++ b/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderClaimDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # OrderClaimDTO -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderClaimDTO"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderClaimDTO"/> diff --git a/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderDTO/page.mdx b/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderDTO/page.mdx index e10a8fa405dd6..d8645dac550a5 100644 --- a/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderDTO/page.mdx +++ b/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # OrderDTO -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)","description":"The Line Item of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_quantity","type":"`number`","description":"The fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_fulfilled_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipped_quantity","type":"`number`","description":"The shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipped_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_requested_quantity","type":"`number`","description":"The quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_requested_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_received_quantity","type":"`number`","description":"The quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_received_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_dismissed_quantity","type":"`number`","description":"The quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_dismissed_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"written_off_quantity","type":"`number`","description":"The quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_written_off_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order detail","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"item_id","type":"`string`","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderDTO"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)","description":"The Line Item of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_quantity","type":"`number`","description":"The fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_fulfilled_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipped_quantity","type":"`number`","description":"The shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipped_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_requested_quantity","type":"`number`","description":"The quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_requested_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_received_quantity","type":"`number`","description":"The quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_received_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_dismissed_quantity","type":"`number`","description":"The quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_dismissed_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"written_off_quantity","type":"`number`","description":"The quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_written_off_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order detail","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"item_id","type":"`string`","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderDTO"/> diff --git a/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderExchangeDTO/page.mdx b/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderExchangeDTO/page.mdx index d8bd298a25075..d0114490e71d1 100644 --- a/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderExchangeDTO/page.mdx +++ b/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderExchangeDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # OrderExchangeDTO -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="OrderExchangeDTO"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../fulfillment.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="OrderExchangeDTO"/> diff --git a/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderTransactionDTO/page.mdx b/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderTransactionDTO/page.mdx index 466cf29586b8a..dd67cad4a1403 100644 --- a/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderTransactionDTO/page.mdx +++ b/www/apps/resources/references/fulfillment/interfaces/fulfillment.OrderTransactionDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # OrderTransactionDTO -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderTransactionDTO"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderTransactionDTO"/> diff --git a/www/apps/resources/references/fulfillment/interfaces/fulfillment.ReturnDTO/page.mdx b/www/apps/resources/references/fulfillment/interfaces/fulfillment.ReturnDTO/page.mdx index 01a47f87dee99..d3b51638e03f2 100644 --- a/www/apps/resources/references/fulfillment/interfaces/fulfillment.ReturnDTO/page.mdx +++ b/www/apps/resources/references/fulfillment/interfaces/fulfillment.ReturnDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # ReturnDTO -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)","description":"The Line Item of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_quantity","type":"`number`","description":"The fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_fulfilled_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipped_quantity","type":"`number`","description":"The shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipped_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_requested_quantity","type":"`number`","description":"The quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_requested_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_received_quantity","type":"`number`","description":"The quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_received_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_dismissed_quantity","type":"`number`","description":"The quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_dismissed_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"written_off_quantity","type":"`number`","description":"The quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_written_off_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order detail","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"item_id","type":"`string`","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="ReturnDTO"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/fulfillment.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../fulfillment.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../fulfillment.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../fulfillment.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/fulfillment.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"detail","type":"[OrderItemDTO](../fulfillment.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)","description":"The Line Item of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_quantity","type":"`number`","description":"The fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_fulfilled_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipped_quantity","type":"`number`","description":"The shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipped_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_requested_quantity","type":"`number`","description":"The quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_requested_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_received_quantity","type":"`number`","description":"The quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_received_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_dismissed_quantity","type":"`number`","description":"The quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_dismissed_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"written_off_quantity","type":"`number`","description":"The quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_written_off_quantity","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order detail","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../fulfillment.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../fulfillment.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"item_id","type":"`string`","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../fulfillment.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../fulfillment.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../fulfillment.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/fulfillment.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../fulfillment.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../fulfillment.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../fulfillment.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../fulfillment.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../fulfillment.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/fulfillment.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/fulfillment.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/fulfillment.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="ReturnDTO"/> diff --git a/www/apps/resources/references/modules/order/page.mdx b/www/apps/resources/references/modules/order/page.mdx index 657d01ddd5e5a..3e3ebe425fe1b 100644 --- a/www/apps/resources/references/modules/order/page.mdx +++ b/www/apps/resources/references/modules/order/page.mdx @@ -38,8 +38,12 @@ import { TypeList } from "docs-ui" - [FilterableOrderShippingMethodAdjustmentProps](../../order/interfaces/order.FilterableOrderShippingMethodAdjustmentProps/page.mdx) - [FilterableOrderLineItemTaxLineProps](../../order/interfaces/order.FilterableOrderLineItemTaxLineProps/page.mdx) - [FilterableOrderShippingMethodTaxLineProps](../../order/interfaces/order.FilterableOrderShippingMethodTaxLineProps/page.mdx) +- [FilterableOrderChangeActionProps](../../order/interfaces/order.FilterableOrderChangeActionProps/page.mdx) - [FilterableOrderTransactionProps](../../order/interfaces/order.FilterableOrderTransactionProps/page.mdx) - [FilterableOrderReturnReasonProps](../../order/interfaces/order.FilterableOrderReturnReasonProps/page.mdx) +- [FilterableReturnProps](../../order/interfaces/order.FilterableReturnProps/page.mdx) +- [FilterableOrderClaimProps](../../order/interfaces/order.FilterableOrderClaimProps/page.mdx) +- [FilterableOrderExchangeProps](../../order/interfaces/order.FilterableOrderExchangeProps/page.mdx) - [OrderChangeReturn](../../order/interfaces/order.OrderChangeReturn/page.mdx) - [UpsertOrderAddressDTO](../../order/interfaces/order.UpsertOrderAddressDTO/page.mdx) - [UpdateOrderAddressDTO](../../order/interfaces/order.UpdateOrderAddressDTO/page.mdx) @@ -68,6 +72,7 @@ import { TypeList } from "docs-ui" - [DeclineOrderChangeDTO](../../order/interfaces/order.DeclineOrderChangeDTO/page.mdx) - [ConfirmOrderChangeDTO](../../order/interfaces/order.ConfirmOrderChangeDTO/page.mdx) - [CreateOrderChangeActionDTO](../../order/interfaces/order.CreateOrderChangeActionDTO/page.mdx) +- [UpdateOrderChangeActionDTO](../../order/interfaces/order.UpdateOrderChangeActionDTO/page.mdx) - [CreateOrderTransactionDTO](../../order/interfaces/order.CreateOrderTransactionDTO/page.mdx) - [UpdateOrderItemDTO](../../order/interfaces/order.UpdateOrderItemDTO/page.mdx) - [UpdateOrderItemWithSelectorDTO](../../order/interfaces/order.UpdateOrderItemWithSelectorDTO/page.mdx) @@ -77,6 +82,12 @@ import { TypeList } from "docs-ui" - [CancelOrderFulfillmentDTO](../../order/interfaces/order.CancelOrderFulfillmentDTO/page.mdx) - [RegisterOrderShipmentDTO](../../order/interfaces/order.RegisterOrderShipmentDTO/page.mdx) - [CreateOrderReturnDTO](../../order/interfaces/order.CreateOrderReturnDTO/page.mdx) +- [UpdateOrderReturnDTO](../../order/interfaces/order.UpdateOrderReturnDTO/page.mdx) +- [UpdateOrderClaimDTO](../../order/interfaces/order.UpdateOrderClaimDTO/page.mdx) +- [UpdateOrderExchangeDTO](../../order/interfaces/order.UpdateOrderExchangeDTO/page.mdx) +- [UpdateOrderReturnWithSelectorDTO](../../order/interfaces/order.UpdateOrderReturnWithSelectorDTO/page.mdx) +- [UpdateOrderClaimWithSelectorDTO](../../order/interfaces/order.UpdateOrderClaimWithSelectorDTO/page.mdx) +- [UpdateOrderExchangeWithSelectorDTO](../../order/interfaces/order.UpdateOrderExchangeWithSelectorDTO/page.mdx) - [CancelOrderReturnDTO](../../order/interfaces/order.CancelOrderReturnDTO/page.mdx) - [CreateOrderClaimDTO](../../order/interfaces/order.CreateOrderClaimDTO/page.mdx) - [CancelOrderClaimDTO](../../order/interfaces/order.CancelOrderClaimDTO/page.mdx) diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.addOrderAction/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.addOrderAction/page.mdx index 04286fa74db9e..37ffaeed24c75 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.addOrderAction/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.addOrderAction/page.mdx @@ -18,7 +18,7 @@ This documentation provides a reference to the `addOrderAction` method. This bel ### Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="addOrderAction"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="addOrderAction"/> ## addOrderAction(data, sharedContext?): Promise<[OrderChangeActionDTO](../../../interfaces/order.OrderChangeActionDTO/page.mdx)[]> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.archive/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.archive/page.mdx index 638e3025b21a4..61ae2d3f614a9 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.archive/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.archive/page.mdx @@ -28,4 +28,4 @@ This documentation provides a reference to the `archive` method. This belongs to ### Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="archive"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="archive"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancel/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancel/page.mdx index 161204b611061..4463d9fa06d66 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancel/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancel/page.mdx @@ -28,4 +28,4 @@ This documentation provides a reference to the `cancel` method. This belongs to ### Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="cancel"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="cancel"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancelClaim/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancelClaim/page.mdx index 9a5ff0ee8c078..8cabd4b68dffa 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancelClaim/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancelClaim/page.mdx @@ -16,4 +16,4 @@ This documentation provides a reference to the `cancelClaim` method. This belong ## Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="cancelClaim"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="cancelClaim"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancelExchange/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancelExchange/page.mdx index 8b5119f13a991..82d8ace27343b 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancelExchange/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancelExchange/page.mdx @@ -16,4 +16,4 @@ This documentation provides a reference to the `cancelExchange` method. This bel ## Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]}]} sectionTitle="cancelExchange"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]}]} sectionTitle="cancelExchange"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancelReturn/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancelReturn/page.mdx index cfb24b6e40234..c3ff94cd2fa85 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancelReturn/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.cancelReturn/page.mdx @@ -16,4 +16,4 @@ This documentation provides a reference to the `cancelReturn` method. This belon ## Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="cancelReturn"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="cancelReturn"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.completeOrder/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.completeOrder/page.mdx index c4895dab0e72a..c38abf00b7566 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.completeOrder/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.completeOrder/page.mdx @@ -28,4 +28,4 @@ This documentation provides a reference to the `completeOrder` method. This belo ### Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="completeOrder"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="completeOrder"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createClaim/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createClaim/page.mdx index f7e9b97bb1f6a..c3535e5181ee2 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createClaim/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createClaim/page.mdx @@ -12,8 +12,8 @@ This documentation provides a reference to the `createClaim` method. This belong ## Parameters -`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"images","type":"`object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_by","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"`string`[] \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_shipping","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../../../interfaces/order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../../../interfaces/order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"refund_amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createClaim"/> +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx) & `object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reason","type":"[ClaimReason](../../../types/order.ClaimReason/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"images","type":"`object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"additional_items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"`string`[] \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_shipping","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../../../interfaces/order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../../../interfaces/order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"refund_amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createClaim"/> ## Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="createClaim"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="createClaim"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createExchange/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createExchange/page.mdx index bd260b928842d..569fab7c4dae7 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createExchange/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createExchange/page.mdx @@ -16,4 +16,4 @@ This documentation provides a reference to the `createExchange` method. This bel ## Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]}]} sectionTitle="createExchange"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]}]} sectionTitle="createExchange"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderChange/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderChange/page.mdx index 91f2472d87d33..9b098734ac974 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderChange/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderChange/page.mdx @@ -14,11 +14,11 @@ This documentation provides a reference to the `createOrderChange` method. This ### Parameters -`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"actions","type":"[CreateOrderChangeActionDTO](../../../interfaces/order.CreateOrderChangeActionDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createOrderChange"/> +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"actions","type":"[CreateOrderChangeActionDTO](../../../interfaces/order.CreateOrderChangeActionDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createOrderChange"/> ### Returns -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../../../interfaces/order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../../../interfaces/order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../../../interfaces/order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="createOrderChange"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../../../interfaces/order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../../../interfaces/order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../../../interfaces/order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="createOrderChange"/> ## createOrderChange(data, sharedContext?): Promise<[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)[]> @@ -39,7 +39,7 @@ const result = await orderModuleService.createOrderChange(createOrderChangeData) ### Parameters -`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"actions","type":"[CreateOrderChangeActionDTO](../../../interfaces/order.CreateOrderChangeActionDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"A context used to share resources, such as transaction manager, between the application and the module.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createOrderChange"/> +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"actions","type":"[CreateOrderChangeActionDTO](../../../interfaces/order.CreateOrderChangeActionDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"A context used to share resources, such as transaction manager, between the application and the module.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createOrderChange"/> ### Returns @@ -60,7 +60,7 @@ const result = await orderModuleService.createOrderChange({ ### Parameters -`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"actions","type":"[CreateOrderChangeActionDTO](../../../interfaces/order.CreateOrderChangeActionDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`Date`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_by","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"actions","type":"[CreateOrderChangeActionDTO](../../../interfaces/order.CreateOrderChangeActionDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"A context used to share resources, such as transaction manager, between the application and the module.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createOrderChange"/> +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"actions","type":"[CreateOrderChangeActionDTO](../../../interfaces/order.CreateOrderChangeActionDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`Date`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_by","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"actions","type":"[CreateOrderChangeActionDTO](../../../interfaces/order.CreateOrderChangeActionDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"A context used to share resources, such as transaction manager, between the application and the module.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createOrderChange"/> ### Returns diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderClaims/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderClaims/page.mdx new file mode 100644 index 0000000000000..b57667a04379a --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderClaims/page.mdx @@ -0,0 +1,31 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/createOrderClaims +sidebar_label: createOrderClaims +--- + +import { TypeList } from "docs-ui" + +# createOrderClaims - Order Module Reference + +This documentation provides a reference to the `createOrderClaims` method. This belongs to the Order Module. + +## createOrderClaims(data, sharedContext?): Promise<[OrderClaimDTO](../../../interfaces/order.OrderClaimDTO/page.mdx)> + +### Parameters + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx) & `object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reason","type":"[ClaimReason](../../../types/order.ClaimReason/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"images","type":"`object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"additional_items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"`string`[] \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_shipping","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../../../interfaces/order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../../../interfaces/order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"refund_amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createOrderClaims"/> + +### Returns + +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="createOrderClaims"/> + +## createOrderClaims(data, sharedContext?): Promise<[OrderClaimDTO](../../../interfaces/order.OrderClaimDTO/page.mdx)[]> + +### Parameters + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx) & `object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reason","type":"[ClaimReason](../../../types/order.ClaimReason/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"images","type":"`object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"additional_items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"`string`[] \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_shipping","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../../../interfaces/order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../../../interfaces/order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"refund_amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createOrderClaims"/> + +### Returns + + diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderExchanges/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderExchanges/page.mdx new file mode 100644 index 0000000000000..481d96aa27bd1 --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrderExchanges/page.mdx @@ -0,0 +1,31 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/createOrderExchanges +sidebar_label: createOrderExchanges +--- + +import { TypeList } from "docs-ui" + +# createOrderExchanges - Order Module Reference + +This documentation provides a reference to the `createOrderExchanges` method. This belongs to the Order Module. + +## createOrderExchanges(data, sharedContext?): Promise<[OrderExchangeDTO](../../../interfaces/order.OrderExchangeDTO/page.mdx)> + +### Parameters + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"`string`[] \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_shipping","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../../../interfaces/order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../../../interfaces/order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"difference_due","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"allow_backorder","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createOrderExchanges"/> + +### Returns + +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]}]} sectionTitle="createOrderExchanges"/> + +## createOrderExchanges(data, sharedContext?): Promise<[OrderExchangeDTO](../../../interfaces/order.OrderExchangeDTO/page.mdx)[]> + +### Parameters + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"`string`[] \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_shipping","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../../../interfaces/order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../../../interfaces/order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"difference_due","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"allow_backorder","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createOrderExchanges"/> + +### Returns + + diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrders/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrders/page.mdx index 80cf69f209514..7e6c2651a4797 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrders/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createOrders/page.mdx @@ -62,4 +62,4 @@ const createdOrder = await orderModuleService.createOrders(orderData); ### Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="createOrders"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="createOrders"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturn/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturn/page.mdx index a7300954e1642..fdd040b2cfc08 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturn/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturn/page.mdx @@ -12,8 +12,8 @@ This documentation provides a reference to the `createReturn` method. This belon ## Parameters -`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_by","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../../../interfaces/order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../../../interfaces/order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"refund_amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createReturn"/> +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"`object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reason_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_method","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../../../interfaces/order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../../../interfaces/order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"refund_amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createReturn"/> ## Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="createReturn"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="createReturn"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturns/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturns/page.mdx new file mode 100644 index 0000000000000..20d63cd20e905 --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.createReturns/page.mdx @@ -0,0 +1,31 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/createReturns +sidebar_label: createReturns +--- + +import { TypeList } from "docs-ui" + +# createReturns - Order Module Reference + +This documentation provides a reference to the `createReturns` method. This belongs to the Order Module. + +## createReturns(data, sharedContext?): Promise<[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)> + +### Parameters + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"`object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reason_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_method","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../../../interfaces/order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../../../interfaces/order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"refund_amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createReturns"/> + +### Returns + +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="createReturns"/> + +## createReturns(data, sharedContext?): Promise<[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)[]> + +### Parameters + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"`object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reason_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_method","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../../../interfaces/order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../../../interfaces/order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../../../interfaces/order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"refund_amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="createReturns"/> + +### Returns + + diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderClaims/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderClaims/page.mdx new file mode 100644 index 0000000000000..c94eb5e1505e0 --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderClaims/page.mdx @@ -0,0 +1,19 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/deleteOrderClaims +sidebar_label: deleteOrderClaims +--- + +import { TypeList } from "docs-ui" + +# deleteOrderClaims - Order Module Reference + +This documentation provides a reference to the `deleteOrderClaims` method. This belongs to the Order Module. + +## Parameters + + + +## Returns + + diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderExchanges/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderExchanges/page.mdx new file mode 100644 index 0000000000000..180a9c6807e6f --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteOrderExchanges/page.mdx @@ -0,0 +1,19 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/deleteOrderExchanges +sidebar_label: deleteOrderExchanges +--- + +import { TypeList } from "docs-ui" + +# deleteOrderExchanges - Order Module Reference + +This documentation provides a reference to the `deleteOrderExchanges` method. This belongs to the Order Module. + +## Parameters + + + +## Returns + + diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteReturns/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteReturns/page.mdx new file mode 100644 index 0000000000000..4f3948faf963e --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.deleteReturns/page.mdx @@ -0,0 +1,19 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/deleteReturns +sidebar_label: deleteReturns +--- + +import { TypeList } from "docs-ui" + +# deleteReturns - Order Module Reference + +This documentation provides a reference to the `deleteReturns` method. This belongs to the Order Module. + +## Parameters + + + +## Returns + + diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.listOrderChangeActions/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.listOrderChangeActions/page.mdx new file mode 100644 index 0000000000000..c84135cdae264 --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.listOrderChangeActions/page.mdx @@ -0,0 +1,27 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/listOrderChangeActions +sidebar_label: listOrderChangeActions +--- + +import { TypeList } from "docs-ui" + +# listOrderChangeActions - Order Module Reference + +This documentation provides a reference to the `listOrderChangeActions` method. This belongs to the Order Module. + +This method retrieves a paginated list of {return type}(s) based on optional filters and configuration. + +## Example + +```typescript +const orderChangeActions = await orderModuleService.listOrderChangeActions(); +``` + +## Parameters + +`","description":"Enable ORM specific defined filters","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"options","type":"`Record`","description":"Enable ORM specific defined options","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"A context used to share resources, such as transaction manager, between the application and the module.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="listOrderChangeActions"/> + +## Returns + + diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.listReturnReasons/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.listReturnReasons/page.mdx index 7fc91b3b29510..aa32fd440a348 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.listReturnReasons/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.listReturnReasons/page.mdx @@ -12,7 +12,7 @@ This documentation provides a reference to the `listReturnReasons` method. This ## Parameters -`","description":"Enable ORM specific defined filters","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"options","type":"`Record`","description":"Enable ORM specific defined options","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="listReturnReasons"/> +`","description":"Enable ORM specific defined filters","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"options","type":"`Record`","description":"Enable ORM specific defined options","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="listReturnReasons"/> ## Returns diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.previewOrderChange/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.previewOrderChange/page.mdx index 53f094460be47..75c001d2c0da8 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.previewOrderChange/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.previewOrderChange/page.mdx @@ -16,4 +16,4 @@ This documentation provides a reference to the `previewOrderChange` method. This ## Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="previewOrderChange"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="previewOrderChange"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.receiveReturn/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.receiveReturn/page.mdx index aba078f12fc13..b7596d038d576 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.receiveReturn/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.receiveReturn/page.mdx @@ -16,4 +16,4 @@ This documentation provides a reference to the `receiveReturn` method. This belo ## Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="receiveReturn"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="receiveReturn"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.registerShipment/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.registerShipment/page.mdx index c44dbb6fe06d9..6788d8a9ac06e 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.registerShipment/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.registerShipment/page.mdx @@ -12,7 +12,7 @@ This documentation provides a reference to the `registerShipment` method. This b ## Parameters -`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_by","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="registerShipment"/> +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"[BaseOrderBundledItemActionsDTO](../../../interfaces/order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="registerShipment"/> ## Returns diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderClaims/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderClaims/page.mdx new file mode 100644 index 0000000000000..b885cf4bfa267 --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderClaims/page.mdx @@ -0,0 +1,19 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/restoreOrderClaims +sidebar_label: restoreOrderClaims +--- + +import { TypeList } from "docs-ui" + +# restoreOrderClaims - Order Module Reference + +This documentation provides a reference to the `restoreOrderClaims` method. This belongs to the Order Module. + +## Parameters + + + +## Returns + +`","optional":false,"defaultValue":"","description":"","expandable":false,"children":[]}]}]} sectionTitle="restoreOrderClaims"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderExchanges/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderExchanges/page.mdx new file mode 100644 index 0000000000000..293efbf49a5b8 --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreOrderExchanges/page.mdx @@ -0,0 +1,19 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/restoreOrderExchanges +sidebar_label: restoreOrderExchanges +--- + +import { TypeList } from "docs-ui" + +# restoreOrderExchanges - Order Module Reference + +This documentation provides a reference to the `restoreOrderExchanges` method. This belongs to the Order Module. + +## Parameters + + + +## Returns + +`","optional":false,"defaultValue":"","description":"","expandable":false,"children":[]}]}]} sectionTitle="restoreOrderExchanges"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturnReasons/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturnReasons/page.mdx index 3a5a7bb6f3b2b..e6e57ea8b4bd4 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturnReasons/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturnReasons/page.mdx @@ -12,7 +12,7 @@ This documentation provides a reference to the `restoreReturnReasons` method. Th ## Parameters - + ## Returns diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturns/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturns/page.mdx new file mode 100644 index 0000000000000..dbfa17b62af72 --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.restoreReturns/page.mdx @@ -0,0 +1,19 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/restoreReturns +sidebar_label: restoreReturns +--- + +import { TypeList } from "docs-ui" + +# restoreReturns - Order Module Reference + +This documentation provides a reference to the `restoreReturns` method. This belongs to the Order Module. + +## Parameters + + + +## Returns + +`","optional":false,"defaultValue":"","description":"","expandable":false,"children":[]}]}]} sectionTitle="restoreReturns"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrder/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrder/page.mdx index 03877c07628c7..d887e32597d29 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrder/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrder/page.mdx @@ -24,4 +24,4 @@ const result = await orderModuleService.retrieveOrder("orderId123"); ## Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="retrieveOrder"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="retrieveOrder"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChange/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChange/page.mdx index 38627d89025b7..e34e3c3afc7bc 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChange/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChange/page.mdx @@ -24,4 +24,4 @@ const result = await orderModuleService.retrieveOrder("orderId123"); ## Returns -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../../../interfaces/order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../../../interfaces/order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../../../interfaces/order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="retrieveOrderChange"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../../../interfaces/order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../../../interfaces/order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../../../interfaces/order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="retrieveOrderChange"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChangeAction/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChangeAction/page.mdx new file mode 100644 index 0000000000000..646d2f5dfd240 --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChangeAction/page.mdx @@ -0,0 +1,27 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/retrieveOrderChangeAction +sidebar_label: retrieveOrderChangeAction +--- + +import { TypeList } from "docs-ui" + +# retrieveOrderChangeAction - Order Module Reference + +This documentation provides a reference to the `retrieveOrderChangeAction` method. This belongs to the Order Module. + +This method retrieves a {return type} by its ID. + +## Example + +```typescript +const result = await orderModuleService.retrieveOrderChangeAction("actionId123"); +``` + +## Parameters + +`","description":"Enable ORM specific defined filters","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"options","type":"`Record`","description":"Enable ORM specific defined options","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"A context used to share resources, such as transaction manager, between the application and the module.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="retrieveOrderChangeAction"/> + +## Returns + +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="retrieveOrderChangeAction"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderClaim/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderClaim/page.mdx index 2fb27059517fc..51499d8f45bd0 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderClaim/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderClaim/page.mdx @@ -16,4 +16,4 @@ This documentation provides a reference to the `retrieveOrderClaim` method. This ## Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="retrieveOrderClaim"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="retrieveOrderClaim"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderExchange/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderExchange/page.mdx index b250fa76b9636..f3ae63db9f99d 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderExchange/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderExchange/page.mdx @@ -16,4 +16,4 @@ This documentation provides a reference to the `retrieveOrderExchange` method. T ## Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]}]} sectionTitle="retrieveOrderExchange"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]}]} sectionTitle="retrieveOrderExchange"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveReturn/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveReturn/page.mdx index bf3913327d156..d163c8302acba 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveReturn/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.retrieveReturn/page.mdx @@ -16,4 +16,4 @@ This documentation provides a reference to the `retrieveReturn` method. This bel ## Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="retrieveReturn"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="retrieveReturn"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderClaims/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderClaims/page.mdx new file mode 100644 index 0000000000000..8b32dbb63ecfe --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderClaims/page.mdx @@ -0,0 +1,19 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/softDeleteOrderClaims +sidebar_label: softDeleteOrderClaims +--- + +import { TypeList } from "docs-ui" + +# softDeleteOrderClaims - Order Module Reference + +This documentation provides a reference to the `softDeleteOrderClaims` method. This belongs to the Order Module. + +## Parameters + + + +## Returns + +`","optional":false,"defaultValue":"","description":"","expandable":false,"children":[]}]}]} sectionTitle="softDeleteOrderClaims"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderExchanges/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderExchanges/page.mdx new file mode 100644 index 0000000000000..02093ac453ac8 --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderExchanges/page.mdx @@ -0,0 +1,19 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/softDeleteOrderExchanges +sidebar_label: softDeleteOrderExchanges +--- + +import { TypeList } from "docs-ui" + +# softDeleteOrderExchanges - Order Module Reference + +This documentation provides a reference to the `softDeleteOrderExchanges` method. This belongs to the Order Module. + +## Parameters + + + +## Returns + +`","optional":false,"defaultValue":"","description":"","expandable":false,"children":[]}]}]} sectionTitle="softDeleteOrderExchanges"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturnReasons/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturnReasons/page.mdx index 0747bee772aa8..fccf0a27a2ea0 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturnReasons/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturnReasons/page.mdx @@ -12,7 +12,7 @@ This documentation provides a reference to the `softDeleteReturnReasons` method. ## Parameters - + ## Returns diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturns/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturns/page.mdx new file mode 100644 index 0000000000000..34a1d00f43c5f --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturns/page.mdx @@ -0,0 +1,19 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/softDeleteReturns +sidebar_label: softDeleteReturns +--- + +import { TypeList } from "docs-ui" + +# softDeleteReturns - Order Module Reference + +This documentation provides a reference to the `softDeleteReturns` method. This belongs to the Order Module. + +## Parameters + + + +## Returns + +`","optional":false,"defaultValue":"","description":"","expandable":false,"children":[]}]}]} sectionTitle="softDeleteReturns"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChangeActions/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChangeActions/page.mdx new file mode 100644 index 0000000000000..831aebcf8dbf7 --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChangeActions/page.mdx @@ -0,0 +1,67 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/updateOrderChangeActions +sidebar_label: updateOrderChangeActions +--- + +import { TypeList } from "docs-ui" + +# updateOrderChangeActions - Order Module Reference + +This documentation provides a reference to the `updateOrderChangeActions` method. This belongs to the Order Module. + +## updateOrderChangeActions(data, sharedContext?): Promise<[OrderChangeActionDTO](../../../interfaces/order.OrderChangeActionDTO/page.mdx)> + +### Parameters + + + +### Returns + +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="updateOrderChangeActions"/> + +## updateOrderChangeActions(data, sharedContext?): Promise<[OrderChangeActionDTO](../../../interfaces/order.OrderChangeActionDTO/page.mdx)[]> + +This method updates {return type}(s) + +### Example + +```typescript +// Example call to updateOrderChangeActions + +const updateOrderChangeActionsData: UpdateOrderChangeActionDTO[] = [{ + id: "orderchangeaction123", + ... +}]; + +const result = await orderModuleService.updateOrderChangeActions(updateOrderChangeActionsData); +``` + +### Parameters + + + +### Returns + + + +## updateOrderChangeActions(data, sharedContext?): Promise<[OrderChangeActionDTO](../../../interfaces/order.OrderChangeActionDTO/page.mdx) \| [OrderChangeActionDTO](../../../interfaces/order.OrderChangeActionDTO/page.mdx)[]> + +This method updates {return type}(s) + +### Example + +```typescript +const result = await orderModuleService.updateOrderChangeActions({ + id: "orderChangeAction123", + ... +}); +``` + +### Parameters + + + +### Returns + + diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChanges/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChanges/page.mdx index cd31916558ef9..f7e598797bd6d 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChanges/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderChanges/page.mdx @@ -18,7 +18,7 @@ This documentation provides a reference to the `updateOrderChanges` method. This ### Returns -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../../../interfaces/order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../../../interfaces/order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../../../interfaces/order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="updateOrderChanges"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../../../interfaces/order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../../../interfaces/order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../../../interfaces/order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="updateOrderChanges"/> ## updateOrderChanges(data, sharedContext?): Promise<[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)[]> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderClaims/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderClaims/page.mdx new file mode 100644 index 0000000000000..198f3dc605bf0 --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderClaims/page.mdx @@ -0,0 +1,41 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/updateOrderClaims +sidebar_label: updateOrderClaims +--- + +import { TypeList } from "docs-ui" + +# updateOrderClaims - Order Module Reference + +This documentation provides a reference to the `updateOrderClaims` method. This belongs to the Order Module. + +## updateOrderClaims(data): Promise<[OrderClaimDTO](../../../interfaces/order.OrderClaimDTO/page.mdx)[]> + +### Parameters + +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"data","type":"Partial<[UpdateOrderClaimDTO](../../../interfaces/order.UpdateOrderClaimDTO/page.mdx)>","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"refund_amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"type","type":"[OrderClaimType](../../../types/order.OrderClaimType/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="updateOrderClaims"/> + +### Returns + + + +## updateOrderClaims(selector, data, sharedContext?): Promise<[OrderClaimDTO](../../../interfaces/order.OrderClaimDTO/page.mdx)[]> + +### Parameters + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="updateOrderClaims"/> + +### Returns + + + +## updateOrderClaims(id, data, sharedContext?): Promise<[OrderClaimDTO](../../../interfaces/order.OrderClaimDTO/page.mdx)> + +### Parameters + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="updateOrderClaims"/> + +### Returns + +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="updateOrderClaims"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderExchanges/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderExchanges/page.mdx new file mode 100644 index 0000000000000..6fbbaeee3dbab --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrderExchanges/page.mdx @@ -0,0 +1,41 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/updateOrderExchanges +sidebar_label: updateOrderExchanges +--- + +import { TypeList } from "docs-ui" + +# updateOrderExchanges - Order Module Reference + +This documentation provides a reference to the `updateOrderExchanges` method. This belongs to the Order Module. + +## updateOrderExchanges(data): Promise<[OrderExchangeDTO](../../../interfaces/order.OrderExchangeDTO/page.mdx)[]> + +### Parameters + +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"data","type":"Partial<[UpdateOrderExchangeDTO](../../../interfaces/order.UpdateOrderExchangeDTO/page.mdx)>","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"difference_due","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"allow_backorder","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="updateOrderExchanges"/> + +### Returns + + + +## updateOrderExchanges(selector, data, sharedContext?): Promise<[OrderExchangeDTO](../../../interfaces/order.OrderExchangeDTO/page.mdx)[]> + +### Parameters + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="updateOrderExchanges"/> + +### Returns + + + +## updateOrderExchanges(id, data, sharedContext?): Promise<[OrderExchangeDTO](../../../interfaces/order.OrderExchangeDTO/page.mdx)> + +### Parameters + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="updateOrderExchanges"/> + +### Returns + +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../../../interfaces/order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]}]} sectionTitle="updateOrderExchanges"/> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrders/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrders/page.mdx index 12a38ad38c697..e5cc94eea6042 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrders/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateOrders/page.mdx @@ -55,7 +55,7 @@ await orderModuleService.updateOrders("orderId123", { ### Returns -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="updateOrders"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="updateOrders"/> ## updateOrders(selector, data, sharedContext?): Promise<[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)[]> diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturnReasons/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturnReasons/page.mdx index 1889807eb26a2..7257ecbe5b6ea 100644 --- a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturnReasons/page.mdx +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturnReasons/page.mdx @@ -24,7 +24,7 @@ This documentation provides a reference to the `updateReturnReasons` method. Thi ### Parameters -`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="updateReturnReasons"/> +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="updateReturnReasons"/> ### Returns diff --git a/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturns/page.mdx b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturns/page.mdx new file mode 100644 index 0000000000000..74c8eb3db55d6 --- /dev/null +++ b/www/apps/resources/references/order/IOrderModuleService/methods/order.IOrderModuleService.updateReturns/page.mdx @@ -0,0 +1,41 @@ +--- +displayed_sidebar: orderReference +slug: /references/order/updateReturns +sidebar_label: updateReturns +--- + +import { TypeList } from "docs-ui" + +# updateReturns - Order Module Reference + +This documentation provides a reference to the `updateReturns` method. This belongs to the Order Module. + +## updateReturns(data): Promise<[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)[]> + +### Parameters + +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"data","type":"Partial<[UpdateOrderReturnDTO](../../../interfaces/order.UpdateOrderReturnDTO/page.mdx)>","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"refund_amount","type":"[BigNumberInput](../../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="updateReturns"/> + +### Returns + + + +## updateReturns(selector, data, sharedContext?): Promise<[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)[]> + +### Parameters + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="updateReturns"/> + +### Returns + + + +## updateReturns(id, data, sharedContext?): Promise<[ReturnDTO](../../../interfaces/order.ReturnDTO/page.mdx)> + +### Parameters + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"sharedContext","type":"[Context](../../../interfaces/order.Context/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"transactionManager","type":"TManager","description":"An instance of a transaction manager of type `TManager`, which is a typed parameter passed to the context to specify the type of the `transactionManager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"manager","type":"TManager","description":"An instance of a manager, typically an entity manager, of type `TManager`, which is a typed parameter passed to the context to specify the type of the `manager`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"isolationLevel","type":"`string`","description":"A string indicating the isolation level of the context. Possible values are `READ UNCOMMITTED`, `READ COMMITTED`, `REPEATABLE READ`, or `SERIALIZABLE`.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"enableNestedTransactions","type":"`boolean`","description":"A boolean value indicating whether nested transactions are enabled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"eventGroupId","type":"`string`","description":"A string indicating the ID of the group to aggregate the events to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"transactionId","type":"`string`","description":"A string indicating the ID of the current transaction.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"messageAggregator","type":"[IMessageAggregator](../../../interfaces/order.IMessageAggregator/page.mdx)","description":"An instance of a message aggregator, which is used to aggregate messages to be emitted at a later point.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"requestId","type":"`string`","description":"A string indicating the ID of the current request.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"idempotencyKey","type":"`string`","description":"A string indicating the idempotencyKey of the current workflow execution.","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="updateReturns"/> + +### Returns + +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../../../interfaces/order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../../../interfaces/order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../../../interfaces/order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../../../interfaces/order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../../../interfaces/order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../../../interfaces/order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../../../interfaces/order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../../../interfaces/order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../../../interfaces/order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../../../interfaces/order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]}]} sectionTitle="updateReturns"/> diff --git a/www/apps/resources/references/order/interfaces/order.CreateOrderChangeDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.CreateOrderChangeDTO/page.mdx index 1bcf27dc12630..14b29b3f8f472 100644 --- a/www/apps/resources/references/order/interfaces/order.CreateOrderChangeDTO/page.mdx +++ b/www/apps/resources/references/order/interfaces/order.CreateOrderChangeDTO/page.mdx @@ -8,4 +8,4 @@ import { TypeList } from "docs-ui" ORDER CHANGE START -`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"actions","type":"[CreateOrderChangeActionDTO](../order.CreateOrderChangeActionDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"details","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="CreateOrderChangeDTO"/> +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"actions","type":"[CreateOrderChangeActionDTO](../order.CreateOrderChangeActionDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"details","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="CreateOrderChangeDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.CreateOrderClaimDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.CreateOrderClaimDTO/page.mdx index 1eaab324fd4b3..da13287066667 100644 --- a/www/apps/resources/references/order/interfaces/order.CreateOrderClaimDTO/page.mdx +++ b/www/apps/resources/references/order/interfaces/order.CreateOrderClaimDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # CreateOrderClaimDTO -`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"images","type":"`object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"url","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_by","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"[BaseOrderBundledItemActionsDTO](../order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"`string`[] \\| Omit<[CreateOrderShippingMethodDTO](../order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_shipping","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"code","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"refund_amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CreateOrderClaimDTO"/> +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"[BaseOrderBundledItemActionsDTO](../order.BaseOrderBundledItemActionsDTO/page.mdx) & `object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"reason","type":"[ClaimReason](../../types/order.ClaimReason/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"images","type":"`object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"url","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"additional_items","type":"[BaseOrderBundledItemActionsDTO](../order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"`string`[] \\| Omit<[CreateOrderShippingMethodDTO](../order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_shipping","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"code","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"refund_amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CreateOrderClaimDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.CreateOrderReturnDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.CreateOrderReturnDTO/page.mdx index ae7d53ef585da..d4698e1bc8ea4 100644 --- a/www/apps/resources/references/order/interfaces/order.CreateOrderReturnDTO/page.mdx +++ b/www/apps/resources/references/order/interfaces/order.CreateOrderReturnDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # CreateOrderReturnDTO -`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_by","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"code","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"refund_amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CreateOrderReturnDTO"/> +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"`object`[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reason_id","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_method","type":"`string` \\| Omit<[CreateOrderShippingMethodDTO](../order.CreateOrderShippingMethodDTO/page.mdx), \"order_id\">","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"name","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[CreateOrderTaxLineDTO](../order.CreateOrderTaxLineDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"code","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[CreateOrderAdjustmentDTO](../order.CreateOrderAdjustmentDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"refund_amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="CreateOrderReturnDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.FilterableOrderChangeActionProps/page.mdx b/www/apps/resources/references/order/interfaces/order.FilterableOrderChangeActionProps/page.mdx new file mode 100644 index 0000000000000..11e283e8f5d29 --- /dev/null +++ b/www/apps/resources/references/order/interfaces/order.FilterableOrderChangeActionProps/page.mdx @@ -0,0 +1,11 @@ +--- +displayed_sidebar: orderReference +--- + +import { TypeList } from "docs-ui" + +# FilterableOrderChangeActionProps + +An object used to allow specifying flexible queries with and/or conditions. + + diff --git a/www/apps/resources/references/order/interfaces/order.FilterableOrderClaimProps/page.mdx b/www/apps/resources/references/order/interfaces/order.FilterableOrderClaimProps/page.mdx new file mode 100644 index 0000000000000..1e963f26926d4 --- /dev/null +++ b/www/apps/resources/references/order/interfaces/order.FilterableOrderClaimProps/page.mdx @@ -0,0 +1,11 @@ +--- +displayed_sidebar: orderReference +--- + +import { TypeList } from "docs-ui" + +# FilterableOrderClaimProps + +An object used to allow specifying flexible queries with and/or conditions. + + diff --git a/www/apps/resources/references/order/interfaces/order.FilterableOrderExchangeProps/page.mdx b/www/apps/resources/references/order/interfaces/order.FilterableOrderExchangeProps/page.mdx new file mode 100644 index 0000000000000..7b42bc222e266 --- /dev/null +++ b/www/apps/resources/references/order/interfaces/order.FilterableOrderExchangeProps/page.mdx @@ -0,0 +1,11 @@ +--- +displayed_sidebar: orderReference +--- + +import { TypeList } from "docs-ui" + +# FilterableOrderExchangeProps + +An object used to allow specifying flexible queries with and/or conditions. + + diff --git a/www/apps/resources/references/order/interfaces/order.FilterableOrderReturnReasonProps/page.mdx b/www/apps/resources/references/order/interfaces/order.FilterableOrderReturnReasonProps/page.mdx index 9745747cf6af5..586a7417d8daa 100644 --- a/www/apps/resources/references/order/interfaces/order.FilterableOrderReturnReasonProps/page.mdx +++ b/www/apps/resources/references/order/interfaces/order.FilterableOrderReturnReasonProps/page.mdx @@ -6,4 +6,6 @@ import { TypeList } from "docs-ui" # FilterableOrderReturnReasonProps - +An object used to allow specifying flexible queries with and/or conditions. + + diff --git a/www/apps/resources/references/order/interfaces/order.FilterableReturnProps/page.mdx b/www/apps/resources/references/order/interfaces/order.FilterableReturnProps/page.mdx new file mode 100644 index 0000000000000..e471ff78bc2bf --- /dev/null +++ b/www/apps/resources/references/order/interfaces/order.FilterableReturnProps/page.mdx @@ -0,0 +1,11 @@ +--- +displayed_sidebar: orderReference +--- + +import { TypeList } from "docs-ui" + +# FilterableReturnProps + +An object used to allow specifying flexible queries with and/or conditions. + + diff --git a/www/apps/resources/references/order/interfaces/order.IOrderModuleService/page.mdx b/www/apps/resources/references/order/interfaces/order.IOrderModuleService/page.mdx index 81bf096446886..fdee4e0c75c95 100644 --- a/www/apps/resources/references/order/interfaces/order.IOrderModuleService/page.mdx +++ b/www/apps/resources/references/order/interfaces/order.IOrderModuleService/page.mdx @@ -70,6 +70,9 @@ This section of the documentation provides a reference to the `IOrderModuleServi - [softDeleteOrderChanges](../../IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderChanges/page.mdx) - [restoreOrderChanges](../../IOrderModuleService/methods/order.IOrderModuleService.restoreOrderChanges/page.mdx) - [applyPendingOrderActions](../../IOrderModuleService/methods/order.IOrderModuleService.applyPendingOrderActions/page.mdx) +- [listOrderChangeActions](../../IOrderModuleService/methods/order.IOrderModuleService.listOrderChangeActions/page.mdx) +- [retrieveOrderChangeAction](../../IOrderModuleService/methods/order.IOrderModuleService.retrieveOrderChangeAction/page.mdx) +- [updateOrderChangeActions](../../IOrderModuleService/methods/order.IOrderModuleService.updateOrderChangeActions/page.mdx) - [addOrderAction](../../IOrderModuleService/methods/order.IOrderModuleService.addOrderAction/page.mdx) - [deleteOrderChangeActions](../../IOrderModuleService/methods/order.IOrderModuleService.deleteOrderChangeActions/page.mdx) - [softDeleteOrderChangeActions](../../IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderChangeActions/page.mdx) @@ -101,6 +104,21 @@ This section of the documentation provides a reference to the `IOrderModuleServi - [deleteReturnReasons](../../IOrderModuleService/methods/order.IOrderModuleService.deleteReturnReasons/page.mdx) - [softDeleteReturnReasons](../../IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturnReasons/page.mdx) - [restoreReturnReasons](../../IOrderModuleService/methods/order.IOrderModuleService.restoreReturnReasons/page.mdx) +- [createReturns](../../IOrderModuleService/methods/order.IOrderModuleService.createReturns/page.mdx) +- [updateReturns](../../IOrderModuleService/methods/order.IOrderModuleService.updateReturns/page.mdx) +- [deleteReturns](../../IOrderModuleService/methods/order.IOrderModuleService.deleteReturns/page.mdx) +- [softDeleteReturns](../../IOrderModuleService/methods/order.IOrderModuleService.softDeleteReturns/page.mdx) +- [restoreReturns](../../IOrderModuleService/methods/order.IOrderModuleService.restoreReturns/page.mdx) +- [createOrderClaims](../../IOrderModuleService/methods/order.IOrderModuleService.createOrderClaims/page.mdx) +- [updateOrderClaims](../../IOrderModuleService/methods/order.IOrderModuleService.updateOrderClaims/page.mdx) +- [deleteOrderClaims](../../IOrderModuleService/methods/order.IOrderModuleService.deleteOrderClaims/page.mdx) +- [softDeleteOrderClaims](../../IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderClaims/page.mdx) +- [restoreOrderClaims](../../IOrderModuleService/methods/order.IOrderModuleService.restoreOrderClaims/page.mdx) +- [createOrderExchanges](../../IOrderModuleService/methods/order.IOrderModuleService.createOrderExchanges/page.mdx) +- [updateOrderExchanges](../../IOrderModuleService/methods/order.IOrderModuleService.updateOrderExchanges/page.mdx) +- [deleteOrderExchanges](../../IOrderModuleService/methods/order.IOrderModuleService.deleteOrderExchanges/page.mdx) +- [softDeleteOrderExchanges](../../IOrderModuleService/methods/order.IOrderModuleService.softDeleteOrderExchanges/page.mdx) +- [restoreOrderExchanges](../../IOrderModuleService/methods/order.IOrderModuleService.restoreOrderExchanges/page.mdx) - [archive](../../IOrderModuleService/methods/order.IOrderModuleService.archive/page.mdx) - [completeOrder](../../IOrderModuleService/methods/order.IOrderModuleService.completeOrder/page.mdx) - [cancel](../../IOrderModuleService/methods/order.IOrderModuleService.cancel/page.mdx) diff --git a/www/apps/resources/references/order/interfaces/order.OrderChangeActionDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.OrderChangeActionDTO/page.mdx index d3f9f1fcdf220..148020b1d517d 100644 --- a/www/apps/resources/references/order/interfaces/order.OrderChangeActionDTO/page.mdx +++ b/www/apps/resources/references/order/interfaces/order.OrderChangeActionDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # OrderChangeActionDTO -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderChangeActionDTO"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderChangeActionDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.OrderChangeDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.OrderChangeDTO/page.mdx index 824857ccc6852..677d999057d29 100644 --- a/www/apps/resources/references/order/interfaces/order.OrderChangeDTO/page.mdx +++ b/www/apps/resources/references/order/interfaces/order.OrderChangeDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # OrderChangeDTO -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderChangeDTO"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderChangeDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.OrderClaimDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.OrderClaimDTO/page.mdx index 555668eb13941..8ff400055f712 100644 --- a/www/apps/resources/references/order/interfaces/order.OrderClaimDTO/page.mdx +++ b/www/apps/resources/references/order/interfaces/order.OrderClaimDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # OrderClaimDTO -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderClaimDTO"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderClaimDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.OrderDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.OrderDTO/page.mdx index 90d4627a1ce5c..44faf0db5e79e 100644 --- a/www/apps/resources/references/order/interfaces/order.OrderDTO/page.mdx +++ b/www/apps/resources/references/order/interfaces/order.OrderDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # OrderDTO -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)","description":"The Line Item of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_quantity","type":"`number`","description":"The fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_fulfilled_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipped_quantity","type":"`number`","description":"The shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipped_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_requested_quantity","type":"`number`","description":"The quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_requested_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_received_quantity","type":"`number`","description":"The quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_received_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_dismissed_quantity","type":"`number`","description":"The quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_dismissed_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"written_off_quantity","type":"`number`","description":"The quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_written_off_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order detail","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"item_id","type":"`string`","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderDTO"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)","description":"The Line Item of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_quantity","type":"`number`","description":"The fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_fulfilled_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipped_quantity","type":"`number`","description":"The shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipped_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_requested_quantity","type":"`number`","description":"The quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_requested_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_received_quantity","type":"`number`","description":"The quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_received_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_dismissed_quantity","type":"`number`","description":"The quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_dismissed_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"written_off_quantity","type":"`number`","description":"The quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_written_off_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order detail","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"item_id","type":"`string`","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.OrderExchangeDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.OrderExchangeDTO/page.mdx index 1780ac7c0f6f3..965ce5f02edc1 100644 --- a/www/apps/resources/references/order/interfaces/order.OrderExchangeDTO/page.mdx +++ b/www/apps/resources/references/order/interfaces/order.OrderExchangeDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # OrderExchangeDTO -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`string`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="OrderExchangeDTO"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"The ID of the associated return order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"The ID of the associated exchange order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"The ID of the associated claim order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"return_order","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"exchange","type":"[OrderExchangeDTO](page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="OrderExchangeDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.OrderTransactionDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.OrderTransactionDTO/page.mdx index 7e6f0c68af3c5..0fc197f5732c0 100644 --- a/www/apps/resources/references/order/interfaces/order.OrderTransactionDTO/page.mdx +++ b/www/apps/resources/references/order/interfaces/order.OrderTransactionDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # OrderTransactionDTO -`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderTransactionDTO"/> +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="OrderTransactionDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.RegisterOrderShipmentDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.RegisterOrderShipmentDTO/page.mdx index 1fa862a527aa6..2a42d2ee7dffa 100644 --- a/www/apps/resources/references/order/interfaces/order.RegisterOrderShipmentDTO/page.mdx +++ b/www/apps/resources/references/order/interfaces/order.RegisterOrderShipmentDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # RegisterOrderShipmentDTO -`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_by","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="RegisterOrderShipmentDTO"/> +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"items","type":"[BaseOrderBundledItemActionsDTO](../order.BaseOrderBundledItemActionsDTO/page.mdx)[]","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"internal_note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"note","type":"`null` \\| `string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="RegisterOrderShipmentDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.ReturnDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.ReturnDTO/page.mdx index 617847e963b17..cbffa81591ada 100644 --- a/www/apps/resources/references/order/interfaces/order.ReturnDTO/page.mdx +++ b/www/apps/resources/references/order/interfaces/order.ReturnDTO/page.mdx @@ -6,4 +6,4 @@ import { TypeList } from "docs-ui" # ReturnDTO -`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)","description":"The Line Item of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_quantity","type":"`number`","description":"The fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_fulfilled_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipped_quantity","type":"`number`","description":"The shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipped_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_requested_quantity","type":"`number`","description":"The quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_requested_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_received_quantity","type":"`number`","description":"The quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_received_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_dismissed_quantity","type":"`number`","description":"The quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_dismissed_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"written_off_quantity","type":"`number`","description":"The quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_written_off_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order detail","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"item_id","type":"`string`","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="ReturnDTO"/> +`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"return_order","type":"[ReturnDTO](page.mdx)","description":"The associated return order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"exchange","type":"[OrderExchangeDTO](../order.OrderExchangeDTO/page.mdx)","description":"The associated exchange order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"claim","type":"[OrderClaimDTO](../order.OrderClaimDTO/page.mdx)","description":"The associated claim order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"additional_items","type":"`any`[]","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"actions","type":"[OrderChangeActionDTO](../order.OrderChangeActionDTO/page.mdx)[]","description":"The actions of the order change","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change_id","type":"`null` \\| `string`","description":"The ID of the associated order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"`null` \\| [OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The associated order change","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"order_id","type":"`null` \\| `string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"`null` \\| [OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"action","type":"[ChangeActionType](../../types/order.ChangeActionType/page.mdx)","description":"The action of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"details","type":"`null` \\| `Record`","description":"The details of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"internal_note","type":"`null` \\| `string`","description":"The internal note of the order change action","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change action was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change action was updated","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"status","type":"`string`","description":"The status of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_by","type":"`null` \\| `string`","description":"The requested by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requested_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was requested","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_by","type":"`null` \\| `string`","description":"The confirmed by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"confirmed_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was confirmed","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_by","type":"`null` \\| `string`","description":"The declined by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_reason","type":"`null` \\| `string`","description":"The declined reason of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)","description":"The Line Item of the order detail.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_quantity","type":"`number`","description":"The fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_fulfilled_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw fulfilled quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipped_quantity","type":"`number`","description":"The shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipped_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipped quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_requested_quantity","type":"`number`","description":"The quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_requested_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of return requested for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_received_quantity","type":"`number`","description":"The quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_received_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of return received for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_dismissed_quantity","type":"`number`","description":"The quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_return_dismissed_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of return dismissed for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"written_off_quantity","type":"`number`","description":"The quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_written_off_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of written off for the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the order detail","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_id","type":"`string`","description":"The ID of the associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)","description":"The associated line item","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"item_id","type":"`string`","description":"The associated line item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"rate","type":"`number`","description":"The rate of the tax line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the tax line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the tax line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal tax relative to the shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the tax line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_rate_id","type":"`string`","description":"The ID of the associated tax rate","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the adjustment line","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the adjustment line was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the adjustment line was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)","description":"The associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_method_id","type":"`string`","description":"The ID of the associated shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"code","type":"`string`","description":"The code of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the adjustment line","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"promotion_id","type":"`string`","description":"The ID of the associated promotion","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"provider_id","type":"`string`","description":"The ID of the associated provider","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"version","type":"`number`","description":"The version of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[OrderStatus](../../types/order.OrderStatus/page.mdx)","description":"The status of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="ReturnDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.UpdateOrderChangeActionDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.UpdateOrderChangeActionDTO/page.mdx new file mode 100644 index 0000000000000..df1c255bfc261 --- /dev/null +++ b/www/apps/resources/references/order/interfaces/order.UpdateOrderChangeActionDTO/page.mdx @@ -0,0 +1,9 @@ +--- +displayed_sidebar: orderReference +--- + +import { TypeList } from "docs-ui" + +# UpdateOrderChangeActionDTO + + diff --git a/www/apps/resources/references/order/interfaces/order.UpdateOrderClaimDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.UpdateOrderClaimDTO/page.mdx new file mode 100644 index 0000000000000..78576e452f927 --- /dev/null +++ b/www/apps/resources/references/order/interfaces/order.UpdateOrderClaimDTO/page.mdx @@ -0,0 +1,9 @@ +--- +displayed_sidebar: orderReference +--- + +import { TypeList } from "docs-ui" + +# UpdateOrderClaimDTO + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="UpdateOrderClaimDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.UpdateOrderClaimWithSelectorDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.UpdateOrderClaimWithSelectorDTO/page.mdx new file mode 100644 index 0000000000000..266a57dce77c6 --- /dev/null +++ b/www/apps/resources/references/order/interfaces/order.UpdateOrderClaimWithSelectorDTO/page.mdx @@ -0,0 +1,9 @@ +--- +displayed_sidebar: orderReference +--- + +import { TypeList } from "docs-ui" + +# UpdateOrderClaimWithSelectorDTO + +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"data","type":"Partial<[UpdateOrderClaimDTO](../order.UpdateOrderClaimDTO/page.mdx)>","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"refund_amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"type","type":"[OrderClaimType](../../types/order.OrderClaimType/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="UpdateOrderClaimWithSelectorDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.UpdateOrderExchangeDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.UpdateOrderExchangeDTO/page.mdx new file mode 100644 index 0000000000000..d10391610dec9 --- /dev/null +++ b/www/apps/resources/references/order/interfaces/order.UpdateOrderExchangeDTO/page.mdx @@ -0,0 +1,9 @@ +--- +displayed_sidebar: orderReference +--- + +import { TypeList } from "docs-ui" + +# UpdateOrderExchangeDTO + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="UpdateOrderExchangeDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.UpdateOrderExchangeWithSelectorDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.UpdateOrderExchangeWithSelectorDTO/page.mdx new file mode 100644 index 0000000000000..834667c6d6b6e --- /dev/null +++ b/www/apps/resources/references/order/interfaces/order.UpdateOrderExchangeWithSelectorDTO/page.mdx @@ -0,0 +1,9 @@ +--- +displayed_sidebar: orderReference +--- + +import { TypeList } from "docs-ui" + +# UpdateOrderExchangeWithSelectorDTO + +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"difference_due","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return","type":"[ReturnDTO](../order.ReturnDTO/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"id","type":"`string`","description":"The ID of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency of the order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"gift_card_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_shipping_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order. (Excluding taxes)","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_gift_card_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw gift card tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping subtotal of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_shipping_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original shipping tax total of the order.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"status","type":"[ReturnStatus](../../types/order.ReturnStatus/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_change","type":"[OrderChangeDTO](../order.OrderChangeDTO/page.mdx)","description":"The active order change, if any.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]},{"name":"data","type":"Partial<[UpdateOrderExchangeDTO](../order.UpdateOrderExchangeDTO/page.mdx)>","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"difference_due","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"return_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"allow_backorder","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="UpdateOrderExchangeWithSelectorDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.UpdateOrderReturnDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.UpdateOrderReturnDTO/page.mdx new file mode 100644 index 0000000000000..b9014a672e662 --- /dev/null +++ b/www/apps/resources/references/order/interfaces/order.UpdateOrderReturnDTO/page.mdx @@ -0,0 +1,9 @@ +--- +displayed_sidebar: orderReference +--- + +import { TypeList } from "docs-ui" + +# UpdateOrderReturnDTO + +`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]} sectionTitle="UpdateOrderReturnDTO"/> diff --git a/www/apps/resources/references/order/interfaces/order.UpdateOrderReturnWithSelectorDTO/page.mdx b/www/apps/resources/references/order/interfaces/order.UpdateOrderReturnWithSelectorDTO/page.mdx new file mode 100644 index 0000000000000..c8bdd8b6658f8 --- /dev/null +++ b/www/apps/resources/references/order/interfaces/order.UpdateOrderReturnWithSelectorDTO/page.mdx @@ -0,0 +1,9 @@ +--- +displayed_sidebar: orderReference +--- + +import { TypeList } from "docs-ui" + +# UpdateOrderReturnWithSelectorDTO + +`","description":"The metadata of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"declined_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was declined","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_by","type":"`null` \\| `string`","description":"The canceled by of the order change","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`null` \\| `string` \\| `Date`","description":"When the order change was canceled","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order change was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order change was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"change_type","type":"`\"return\"` \\| `\"exchange\"` \\| `\"claim\"` \\| `\"edit\"`","description":"The type of the order change","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"region_id","type":"`string`","description":"The ID of the region the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The ID of the customer on the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"sales_channel_id","type":"`string`","description":"The ID of the sales channel the order belongs to.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"email","type":"`string`","description":"The email of the order.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated shipping address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"billing_address","type":"[OrderAddressDTO](../order.OrderAddressDTO/page.mdx)","description":"The associated billing address.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the address","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the address was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the address was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"customer_id","type":"`string`","description":"The customer ID of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"first_name","type":"`string`","description":"The first name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"last_name","type":"`string`","description":"The last name of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"phone","type":"`string`","description":"The phone number of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"company","type":"`string`","description":"The company of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_1","type":"`string`","description":"The first address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"address_2","type":"`string`","description":"The second address line of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"city","type":"`string`","description":"The city of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"country_code","type":"`string`","description":"The country code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"province","type":"`string`","description":"The province/state of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"postal_code","type":"`string`","description":"The postal code of the address","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"items","type":"[OrderLineItemDTO](../order.OrderLineItemDTO/page.mdx)[]","description":"The associated order details / line items.","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"item_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refundable_total_per_unit","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_item_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw item tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total of the order line item..","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_refundable_total_per_unit","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw refundable total per unit of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"id","type":"`string`","description":"The ID of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"title","type":"`string`","description":"The title of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"requires_shipping","type":"`boolean`","description":"Indicates whether the order line item requires shipping.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_discountable","type":"`boolean`","description":"Indicates whether the order line item is discountable.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Indicates whether the order line item price is tax inclusive.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"unit_price","type":"`number`","description":"The unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw unit price of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"quantity","type":"`number`","description":"The quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_quantity","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw quantity of the order line item.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"detail","type":"[OrderItemDTO](../order.OrderItemDTO/page.mdx)","description":"The details of the item","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`Date`","description":"The date when the order line item was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`Date`","description":"The date when the order line item was last updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtitle","type":"`null` \\| `string`","description":"The subtitle of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"thumbnail","type":"`null` \\| `string`","description":"The thumbnail of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_id","type":"`null` \\| `string`","description":"The ID of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_id","type":"`null` \\| `string`","description":"The ID of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_title","type":"`null` \\| `string`","description":"The title of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_description","type":"`null` \\| `string`","description":"The description of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_subtitle","type":"`null` \\| `string`","description":"The subtitle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_type","type":"`null` \\| `string`","description":"The type of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_collection","type":"`null` \\| `string`","description":"The collection of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"product_handle","type":"`null` \\| `string`","description":"The handle of the product associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_sku","type":"`null` \\| `string`","description":"The SKU (stock keeping unit) of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_barcode","type":"`null` \\| `string`","description":"The barcode of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_title","type":"`null` \\| `string`","description":"The title of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"variant_option_values","type":"`null` \\| `Record`","description":"The option values of the variant associated with the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"compare_at_unit_price","type":"`number`","description":"The compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_compare_at_unit_price","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw compare at unit price of the order line item.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderLineItemTaxLineDTO](../order.OrderLineItemTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderLineItemAdjustmentDTO](../order.OrderLineItemAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"shipping_methods","type":"[OrderShippingMethodDTO](../order.OrderShippingMethodDTO/page.mdx)[]","description":"The associated shipping methods","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"name","type":"`string`","description":"The name of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw price of the shipping method","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"is_tax_inclusive","type":"`boolean`","description":"Whether the shipping method price is tax inclusive or not","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the shipping method was created.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the shipping method was updated.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"original_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"discount_tax_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_original_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw original tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_subtotal","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw subtotal of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_discount_tax_total","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw discount tax total of the order shipping method.","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"description","type":"`string`","description":"The description of the shipping method","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"shipping_option_id","type":"`string`","description":"The ID of the shipping option the method was created from","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"data","type":"`Record`","description":"Additional data needed for fulfillment.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"tax_lines","type":"[OrderShippingMethodTaxLineDTO](../order.OrderShippingMethodTaxLineDTO/page.mdx)[]","description":"The associated tax lines.","optional":true,"defaultValue":"","expandable":true,"children":[]},{"name":"adjustments","type":"[OrderShippingMethodAdjustmentDTO](../order.OrderShippingMethodAdjustmentDTO/page.mdx)[]","description":"The associated adjustments.","optional":true,"defaultValue":"","expandable":true,"children":[]}]},{"name":"transactions","type":"[OrderTransactionDTO](../order.OrderTransactionDTO/page.mdx)[]","description":"The tramsactions associated with the order","optional":true,"defaultValue":"","expandable":true,"children":[{"name":"id","type":"`string`","description":"The ID of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order_id","type":"`string`","description":"The ID of the associated order","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"order","type":"[OrderDTO](../order.OrderDTO/page.mdx)","description":"The associated order","optional":false,"defaultValue":"","expandable":true,"children":[]},{"name":"amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"The amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"raw_amount","type":"[BigNumberRawValue](../../types/order.BigNumberRawValue/page.mdx)","description":"The raw amount of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"currency_code","type":"`string`","description":"The currency code of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference","type":"`string`","description":"The reference of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"reference_id","type":"`string`","description":"The ID of the reference","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the transaction was created","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the transaction was updated","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"The metadata of the transaction","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"summary","type":"[OrderSummaryDTO](../../types/order.OrderSummaryDTO/page.mdx)","description":"The summary of the order totals.","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"ordered_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"fulfilled_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"returned_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"return_request_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"write_off_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"net_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_subtotal","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_total_tax","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_projected_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"future_balance","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"paid_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]},{"name":"refunded_total","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"metadata","type":"`null` \\| `Record`","description":"Holds custom data in key-value pairs.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"canceled_at","type":"`string` \\| `Date`","description":"When the order was canceled.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"created_at","type":"`string` \\| `Date`","description":"When the order was created.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"updated_at","type":"`string` \\| `Date`","description":"When the order was updated.","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"refund_amount","type":"[BigNumberValue](../../types/order.BigNumberValue/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]},{"name":"data","type":"Partial<[UpdateOrderReturnDTO](../order.UpdateOrderReturnDTO/page.mdx)>","description":"","optional":false,"defaultValue":"","expandable":false,"children":[{"name":"refund_amount","type":"[BigNumberInput](../../types/order.BigNumberInput/page.mdx)","description":"","optional":true,"defaultValue":"","expandable":false,"children":[{"name":"value","type":"`string` \\| `number`","description":"","optional":false,"defaultValue":"","expandable":false,"children":[]}]},{"name":"no_notification","type":"`boolean`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"claim_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"exchange_id","type":"`string`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]},{"name":"metadata","type":"`null` \\| `Record`","description":"","optional":true,"defaultValue":"","expandable":false,"children":[]}]}]} sectionTitle="UpdateOrderReturnWithSelectorDTO"/> diff --git a/www/apps/resources/sidebar.mjs b/www/apps/resources/sidebar.mjs index 69c5e937a2fb4..e67c747aa9ce7 100644 --- a/www/apps/resources/sidebar.mjs +++ b/www/apps/resources/sidebar.mjs @@ -1280,9 +1280,21 @@ export const sidebar = sidebarAttachHrefCommonOptions([ }, { + path: "/recipes", title: "Recipes", hasTitleStyling: true, + isChildSidebar: true, children: [ + { + path: "/recipes/marketplace", + title: "Marketplace", + children: [ + { + path: "/recipes/marketplace/examples/vendors", + title: "Example: Vendors", + }, + ], + }, { path: "/recipes/b2b", title: "B2B", @@ -1303,10 +1315,6 @@ export const sidebar = sidebarAttachHrefCommonOptions([ path: "/recipes/integrate-ecommerce-stack", title: "Integrate Ecommerce Stack", }, - { - path: "/recipes/marketplace", - title: "Marketplace", - }, { path: "/recipes/multi-region-store", title: "Multi-Region Store", diff --git a/www/utils/generated/typedoc-json-output/0-medusa.json b/www/utils/generated/typedoc-json-output/0-medusa.json index 55ee42e8f70ab..fc59082c5e1f3 100644 --- a/www/utils/generated/typedoc-json-output/0-medusa.json +++ b/www/utils/generated/typedoc-json-output/0-medusa.json @@ -1,12 +1,12 @@ { - "id": 13542, + "id": 13538, "name": "medusa", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 13742, + "id": 13738, "name": "RequestQueryFields", "variant": "declaration", "kind": 256, @@ -21,7 +21,7 @@ }, "children": [ { - "id": 13743, + "id": 13739, "name": "expand", "variant": "declaration", "kind": 1024, @@ -61,7 +61,7 @@ } }, { - "id": 13744, + "id": 13740, "name": "fields", "variant": "declaration", "kind": 1024, @@ -98,7 +98,7 @@ } }, { - "id": 13745, + "id": 13741, "name": "offset", "variant": "declaration", "kind": 1024, @@ -119,7 +119,7 @@ } }, { - "id": 13746, + "id": 13742, "name": "limit", "variant": "declaration", "kind": 1024, @@ -140,7 +140,7 @@ } }, { - "id": 13747, + "id": 13743, "name": "order", "variant": "declaration", "kind": 1024, @@ -173,17 +173,17 @@ { "title": "Properties", "children": [ - 13743, - 13744, - 13745, - 13746, - 13747 + 13739, + 13740, + 13741, + 13742, + 13743 ] } ] }, { - "id": 13721, + "id": 13717, "name": "MedusaContainer", "variant": "declaration", "kind": 2097152, @@ -198,7 +198,7 @@ }, "typeParameters": [ { - "id": 13741, + "id": 13737, "name": "Cradle", "variant": "typeParam", "kind": 131072, @@ -248,28 +248,28 @@ { "type": "reflection", "declaration": { - "id": 13722, + "id": 13718, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13723, + "id": 13719, "name": "resolve", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 13724, + "id": 13720, "name": "resolve", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 13725, + "id": 13721, "name": "K", "variant": "typeParam", "kind": 131072, @@ -295,21 +295,21 @@ ], "parameters": [ { - "id": 13726, + "id": 13722, "name": "key", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 13725, + "target": 13721, "name": "K", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 13727, + "id": 13723, "name": "resolveOptions", "variant": "param", "kind": 32768, @@ -331,14 +331,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 13725, + "target": 13721, "name": "K", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 13741, + "target": 13737, "name": "Cradle", "package": "@medusajs/types", "refersToTypeParameter": true @@ -346,14 +346,14 @@ } }, { - "id": 13728, + "id": 13724, "name": "resolve", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 13729, + "id": 13725, "name": "T", "variant": "typeParam", "kind": 131072, @@ -362,7 +362,7 @@ ], "parameters": [ { - "id": 13730, + "id": 13726, "name": "key", "variant": "param", "kind": 32768, @@ -373,7 +373,7 @@ } }, { - "id": 13731, + "id": 13727, "name": "resolveOptions", "variant": "param", "kind": 32768, @@ -393,7 +393,7 @@ ], "type": { "type": "reference", - "target": 13729, + "target": 13725, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -406,7 +406,7 @@ { "title": "Methods", "children": [ - 13723 + 13719 ] } ] @@ -416,7 +416,7 @@ } }, { - "id": 13762, + "id": 13758, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -446,14 +446,14 @@ { "type": "reflection", "declaration": { - "id": 13763, + "id": 13759, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13764, + "id": 13760, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -470,7 +470,7 @@ { "title": "Properties", "children": [ - 13764 + 13760 ] } ] @@ -480,14 +480,14 @@ } }, { - "id": 13756, + "id": 13752, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 13761, + "id": 13757, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -501,14 +501,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13757, + "id": 13753, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13758, + "id": 13754, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -519,7 +519,7 @@ } }, { - "id": 13759, + "id": 13755, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -528,20 +528,20 @@ }, "type": { "type": "reference", - "target": 13762, + "target": 13758, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 13760, + "id": 13756, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 13761, + "target": 13757, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -552,9 +552,9 @@ { "title": "Properties", "children": [ - 13758, - 13759, - 13760 + 13754, + 13755, + 13756 ] } ] @@ -562,7 +562,7 @@ } }, { - "id": 13748, + "id": 13744, "name": "MedusaPricingContext", "variant": "declaration", "kind": 2097152, @@ -570,14 +570,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13749, + "id": 13745, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13750, + "id": 13746, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -590,7 +590,7 @@ } }, { - "id": 13751, + "id": 13747, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -603,7 +603,7 @@ } }, { - "id": 13752, + "id": 13748, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -616,7 +616,7 @@ } }, { - "id": 13753, + "id": 13749, "name": "customer_group_id", "variant": "declaration", "kind": 1024, @@ -636,10 +636,10 @@ { "title": "Properties", "children": [ - 13750, - 13751, - 13752, - 13753 + 13746, + 13747, + 13748, + 13749 ] } ] @@ -647,14 +647,14 @@ } }, { - "id": 13543, + "id": 13539, "name": "FindConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 13544, + "id": 13540, "name": "select", "variant": "declaration", "kind": 1024, @@ -668,7 +668,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 13552, + "target": 13548, "name": "Entity", "package": "@medusajs/medusa", "qualifiedName": "FindConfig.Entity", @@ -678,7 +678,7 @@ } }, { - "id": 13545, + "id": 13541, "name": "skip", "variant": "declaration", "kind": 1024, @@ -691,7 +691,7 @@ } }, { - "id": 13546, + "id": 13542, "name": "take", "variant": "declaration", "kind": 1024, @@ -704,7 +704,7 @@ } }, { - "id": 13547, + "id": 13543, "name": "relations", "variant": "declaration", "kind": 1024, @@ -720,7 +720,7 @@ } }, { - "id": 13548, + "id": 13544, "name": "order", "variant": "declaration", "kind": 1024, @@ -730,21 +730,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13549, + "id": 13545, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 13550, + "id": 13546, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 13551, + "id": 13547, "name": "K", "variant": "param", "kind": 32768, @@ -778,17 +778,17 @@ { "title": "Properties", "children": [ - 13544, - 13545, - 13546, - 13547, - 13548 + 13540, + 13541, + 13542, + 13543, + 13544 ] } ], "typeParameters": [ { - "id": 13552, + "id": 13548, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -797,14 +797,14 @@ ] }, { - "id": 13553, + "id": 13549, "name": "QueryConfig", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 13563, + "id": 13559, "name": "TEntity", "variant": "typeParam", "kind": 131072, @@ -814,14 +814,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13554, + "id": 13550, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13555, + "id": 13551, "name": "defaults", "variant": "declaration", "kind": 1024, @@ -846,7 +846,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 13563, + "target": 13559, "name": "TEntity", "package": "@medusajs/medusa", "refersToTypeParameter": true @@ -861,7 +861,7 @@ } }, { - "id": 13556, + "id": 13552, "name": "defaultFields", "variant": "declaration", "kind": 1024, @@ -900,7 +900,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 13563, + "target": 13559, "name": "TEntity", "package": "@medusajs/medusa", "refersToTypeParameter": true @@ -915,7 +915,7 @@ } }, { - "id": 13557, + "id": 13553, "name": "defaultRelations", "variant": "declaration", "kind": 1024, @@ -953,7 +953,7 @@ } }, { - "id": 13558, + "id": 13554, "name": "allowed", "variant": "declaration", "kind": 1024, @@ -977,7 +977,7 @@ } }, { - "id": 13559, + "id": 13555, "name": "allowedFields", "variant": "declaration", "kind": 1024, @@ -1015,7 +1015,7 @@ } }, { - "id": 13560, + "id": 13556, "name": "allowedRelations", "variant": "declaration", "kind": 1024, @@ -1053,7 +1053,7 @@ } }, { - "id": 13561, + "id": 13557, "name": "defaultLimit", "variant": "declaration", "kind": 1024, @@ -1066,7 +1066,7 @@ } }, { - "id": 13562, + "id": 13558, "name": "isList", "variant": "declaration", "kind": 1024, @@ -1083,14 +1083,14 @@ { "title": "Properties", "children": [ + 13551, + 13552, + 13553, + 13554, 13555, 13556, 13557, - 13558, - 13559, - 13560, - 13561, - 13562 + 13558 ] } ] @@ -1098,14 +1098,14 @@ } }, { - "id": 13564, + "id": 13560, "name": "ClassConstructor", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 13568, + "id": 13564, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1115,21 +1115,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13565, + "id": 13561, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13566, + "id": 13562, "name": "new ClassConstructor", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 13567, + "id": 13563, "name": "args", "variant": "param", "kind": 32768, @@ -1147,7 +1147,7 @@ ], "type": { "type": "reference", - "target": 13568, + "target": 13564, "name": "T", "package": "@medusajs/medusa", "refersToTypeParameter": true @@ -1158,21 +1158,21 @@ } }, { - "id": 13569, + "id": 13565, "name": "MedusaContainer", "variant": "declaration", "kind": 2097152, "flags": {}, "type": { "type": "reference", - "target": 13721, + "target": 13717, "name": "coreMedusaContainer", "package": "@medusajs/types", "qualifiedName": "MedusaContainer" } }, { - "id": 13570, + "id": 13566, "name": "Logger", "variant": "declaration", "kind": 2097152, @@ -1180,14 +1180,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13571, + "id": 13567, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13572, + "id": 13568, "name": "panic", "variant": "declaration", "kind": 1024, @@ -1195,21 +1195,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13573, + "id": 13569, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13574, + "id": 13570, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13575, + "id": 13571, "name": "data", "variant": "param", "kind": 32768, @@ -1230,7 +1230,7 @@ } }, { - "id": 13576, + "id": 13572, "name": "shouldLog", "variant": "declaration", "kind": 1024, @@ -1238,21 +1238,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13577, + "id": 13573, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13578, + "id": 13574, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13579, + "id": 13575, "name": "level", "variant": "param", "kind": 32768, @@ -1273,7 +1273,7 @@ } }, { - "id": 13580, + "id": 13576, "name": "setLogLevel", "variant": "declaration", "kind": 1024, @@ -1281,21 +1281,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13581, + "id": 13577, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13582, + "id": 13578, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13583, + "id": 13579, "name": "level", "variant": "param", "kind": 32768, @@ -1316,7 +1316,7 @@ } }, { - "id": 13584, + "id": 13580, "name": "unsetLogLevel", "variant": "declaration", "kind": 1024, @@ -1324,14 +1324,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13585, + "id": 13581, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13586, + "id": 13582, "name": "__type", "variant": "signature", "kind": 4096, @@ -1346,7 +1346,7 @@ } }, { - "id": 13587, + "id": 13583, "name": "activity", "variant": "declaration", "kind": 1024, @@ -1354,21 +1354,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13588, + "id": 13584, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13589, + "id": 13585, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13590, + "id": 13586, "name": "message", "variant": "param", "kind": 32768, @@ -1379,7 +1379,7 @@ } }, { - "id": 13591, + "id": 13587, "name": "config", "variant": "param", "kind": 32768, @@ -1402,7 +1402,7 @@ } }, { - "id": 13592, + "id": 13588, "name": "progress", "variant": "declaration", "kind": 1024, @@ -1410,21 +1410,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13593, + "id": 13589, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13594, + "id": 13590, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13595, + "id": 13591, "name": "activityId", "variant": "param", "kind": 32768, @@ -1435,7 +1435,7 @@ } }, { - "id": 13596, + "id": 13592, "name": "message", "variant": "param", "kind": 32768, @@ -1456,7 +1456,7 @@ } }, { - "id": 13597, + "id": 13593, "name": "error", "variant": "declaration", "kind": 1024, @@ -1464,21 +1464,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13598, + "id": 13594, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13599, + "id": 13595, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13600, + "id": 13596, "name": "messageOrError", "variant": "param", "kind": 32768, @@ -1489,7 +1489,7 @@ } }, { - "id": 13601, + "id": 13597, "name": "error", "variant": "param", "kind": 32768, @@ -1512,7 +1512,7 @@ } }, { - "id": 13602, + "id": 13598, "name": "failure", "variant": "declaration", "kind": 1024, @@ -1520,21 +1520,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13603, + "id": 13599, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13604, + "id": 13600, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13605, + "id": 13601, "name": "activityId", "variant": "param", "kind": 32768, @@ -1545,7 +1545,7 @@ } }, { - "id": 13606, + "id": 13602, "name": "message", "variant": "param", "kind": 32768, @@ -1566,7 +1566,7 @@ } }, { - "id": 13607, + "id": 13603, "name": "success", "variant": "declaration", "kind": 1024, @@ -1574,21 +1574,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13608, + "id": 13604, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13609, + "id": 13605, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13610, + "id": 13606, "name": "activityId", "variant": "param", "kind": 32768, @@ -1599,7 +1599,7 @@ } }, { - "id": 13611, + "id": 13607, "name": "message", "variant": "param", "kind": 32768, @@ -1620,7 +1620,7 @@ } }, { - "id": 13612, + "id": 13608, "name": "debug", "variant": "declaration", "kind": 1024, @@ -1628,21 +1628,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13613, + "id": 13609, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13614, + "id": 13610, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13615, + "id": 13611, "name": "message", "variant": "param", "kind": 32768, @@ -1663,7 +1663,7 @@ } }, { - "id": 13616, + "id": 13612, "name": "info", "variant": "declaration", "kind": 1024, @@ -1671,21 +1671,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13617, + "id": 13613, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13618, + "id": 13614, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13619, + "id": 13615, "name": "message", "variant": "param", "kind": 32768, @@ -1706,7 +1706,7 @@ } }, { - "id": 13620, + "id": 13616, "name": "warn", "variant": "declaration", "kind": 1024, @@ -1714,21 +1714,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13621, + "id": 13617, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13622, + "id": 13618, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13623, + "id": 13619, "name": "message", "variant": "param", "kind": 32768, @@ -1749,7 +1749,7 @@ } }, { - "id": 13624, + "id": 13620, "name": "log", "variant": "declaration", "kind": 1024, @@ -1757,21 +1757,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13625, + "id": 13621, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13626, + "id": 13622, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13627, + "id": 13623, "name": "args", "variant": "param", "kind": 32768, @@ -1798,19 +1798,19 @@ { "title": "Properties", "children": [ + 13568, 13572, 13576, 13580, - 13584, - 13587, - 13592, - 13597, - 13602, - 13607, + 13583, + 13588, + 13593, + 13598, + 13603, + 13608, 13612, 13616, - 13620, - 13624 + 13620 ] } ] @@ -1818,14 +1818,14 @@ } }, { - "id": 13628, + "id": 13624, "name": "Constructor", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 13632, + "id": 13628, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1835,21 +1835,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13629, + "id": 13625, "name": "__type", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 13630, + "id": 13626, "name": "__type", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 13631, + "id": 13627, "name": "args", "variant": "param", "kind": 32768, @@ -1867,7 +1867,7 @@ ], "type": { "type": "reference", - "target": 13632, + "target": 13628, "name": "T", "package": "@medusajs/medusa", "refersToTypeParameter": true @@ -1878,14 +1878,14 @@ } }, { - "id": 13633, + "id": 13629, "name": "MedusaRequest", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 13658, + "id": 13654, "name": "user", "variant": "declaration", "kind": 1024, @@ -1896,14 +1896,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13659, + "id": 13655, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13660, + "id": 13656, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -1916,7 +1916,7 @@ } }, { - "id": 13661, + "id": 13657, "name": "userId", "variant": "declaration", "kind": 1024, @@ -1933,8 +1933,8 @@ { "title": "Properties", "children": [ - 13660, - 13661 + 13656, + 13657 ] } ] @@ -1947,14 +1947,14 @@ } }, { - "id": 13634, + "id": 13630, "name": "validatedBody", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 13662, + "target": 13658, "name": "Body", "package": "@medusajs/medusa", "qualifiedName": "MedusaRequest.Body", @@ -1967,7 +1967,7 @@ } }, { - "id": 13635, + "id": 13631, "name": "validatedQuery", "variant": "declaration", "kind": 1024, @@ -1977,7 +1977,7 @@ "types": [ { "type": "reference", - "target": 13742, + "target": 13738, "name": "RequestQueryFields", "package": "@medusajs/types" }, @@ -2009,7 +2009,7 @@ } }, { - "id": 13636, + "id": 13632, "name": "allowedProperties", "variant": "declaration", "kind": 1024, @@ -2036,7 +2036,7 @@ } }, { - "id": 13637, + "id": 13633, "name": "listConfig", "variant": "declaration", "kind": 1024, @@ -2051,7 +2051,7 @@ }, "type": { "type": "reference", - "target": 13543, + "target": 13539, "typeArguments": [ { "type": "intrinsic", @@ -2068,7 +2068,7 @@ } }, { - "id": 13638, + "id": 13634, "name": "retrieveConfig", "variant": "declaration", "kind": 1024, @@ -2083,7 +2083,7 @@ }, "type": { "type": "reference", - "target": 13543, + "target": 13539, "typeArguments": [ { "type": "intrinsic", @@ -2100,7 +2100,7 @@ } }, { - "id": 13639, + "id": 13635, "name": "remoteQueryConfig", "variant": "declaration", "kind": 1024, @@ -2116,14 +2116,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13640, + "id": 13636, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13641, + "id": 13637, "name": "fields", "variant": "declaration", "kind": 1024, @@ -2137,7 +2137,7 @@ } }, { - "id": 13642, + "id": 13638, "name": "pagination", "variant": "declaration", "kind": 1024, @@ -2145,14 +2145,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13643, + "id": 13639, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13644, + "id": 13640, "name": "order", "variant": "declaration", "kind": 1024, @@ -2180,7 +2180,7 @@ } }, { - "id": 13645, + "id": 13641, "name": "skip", "variant": "declaration", "kind": 1024, @@ -2193,7 +2193,7 @@ } }, { - "id": 13646, + "id": 13642, "name": "take", "variant": "declaration", "kind": 1024, @@ -2210,9 +2210,9 @@ { "title": "Properties", "children": [ - 13644, - 13645, - 13646 + 13640, + 13641, + 13642 ] } ] @@ -2224,8 +2224,8 @@ { "title": "Properties", "children": [ - 13641, - 13642 + 13637, + 13638 ] } ] @@ -2238,7 +2238,7 @@ } }, { - "id": 13647, + "id": 13643, "name": "filterableFields", "variant": "declaration", "kind": 1024, @@ -2281,7 +2281,7 @@ } }, { - "id": 13648, + "id": 13644, "name": "includes", "variant": "declaration", "kind": 1024, @@ -2314,7 +2314,7 @@ } }, { - "id": 13649, + "id": 13645, "name": "allowedFields", "variant": "declaration", "kind": 1024, @@ -2362,7 +2362,7 @@ } }, { - "id": 13650, + "id": 13646, "name": "allowed", "variant": "declaration", "kind": 1024, @@ -2391,7 +2391,7 @@ } }, { - "id": 13651, + "id": 13647, "name": "errors", "variant": "declaration", "kind": 1024, @@ -2410,14 +2410,14 @@ } }, { - "id": 13652, + "id": 13648, "name": "scope", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 13721, + "target": 13717, "name": "MedusaContainer", "package": "@medusajs/types" }, @@ -2428,7 +2428,7 @@ } }, { - "id": 13653, + "id": 13649, "name": "session", "variant": "declaration", "kind": 1024, @@ -2441,7 +2441,7 @@ } }, { - "id": 13654, + "id": 13650, "name": "rawBody", "variant": "declaration", "kind": 1024, @@ -2454,7 +2454,7 @@ } }, { - "id": 13655, + "id": 13651, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -2472,7 +2472,7 @@ } }, { - "id": 13656, + "id": 13652, "name": "pricingContext", "variant": "declaration", "kind": 1024, @@ -2489,13 +2489,13 @@ }, "type": { "type": "reference", - "target": 13748, + "target": 13744, "name": "MedusaPricingContext", "package": "@medusajs/types" } }, { - "id": 13657, + "id": 13653, "name": "context", "variant": "declaration", "kind": 1024, @@ -2535,30 +2535,30 @@ { "title": "Properties", "children": [ - 13658, + 13654, + 13630, + 13631, + 13632, + 13633, 13634, 13635, - 13636, - 13637, - 13638, - 13639, + 13643, + 13644, + 13645, + 13646, 13647, 13648, 13649, 13650, 13651, 13652, - 13653, - 13654, - 13655, - 13656, - 13657 + 13653 ] } ], "typeParameters": [ { - "id": 13662, + "id": 13658, "name": "Body", "variant": "typeParam", "kind": 131072, @@ -2593,7 +2593,7 @@ }, { "type": "reference", - "target": 13662, + "target": 13658, "name": "Body", "package": "@medusajs/medusa", "qualifiedName": "MedusaRequest.Body", @@ -2608,20 +2608,20 @@ "extendedBy": [ { "type": "reference", - "target": 13668, + "target": 13664, "name": "AuthenticatedMedusaRequest" } ] }, { - "id": 13663, + "id": 13659, "name": "AuthContext", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 13664, + "id": 13660, "name": "actor_id", "variant": "declaration", "kind": 1024, @@ -2632,7 +2632,7 @@ } }, { - "id": 13665, + "id": 13661, "name": "actor_type", "variant": "declaration", "kind": 1024, @@ -2643,7 +2643,7 @@ } }, { - "id": 13666, + "id": 13662, "name": "auth_identity_id", "variant": "declaration", "kind": 1024, @@ -2654,7 +2654,7 @@ } }, { - "id": 13667, + "id": 13663, "name": "app_metadata", "variant": "declaration", "kind": 1024, @@ -2684,23 +2684,23 @@ { "title": "Properties", "children": [ - 13664, - 13665, - 13666, - 13667 + 13660, + 13661, + 13662, + 13663 ] } ] }, { - "id": 13668, + "id": 13664, "name": "AuthenticatedMedusaRequest", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 13694, + "id": 13690, "name": "user", "variant": "declaration", "kind": 1024, @@ -2711,14 +2711,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13695, + "id": 13691, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13696, + "id": 13692, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -2731,7 +2731,7 @@ } }, { - "id": 13697, + "id": 13693, "name": "userId", "variant": "declaration", "kind": 1024, @@ -2748,8 +2748,8 @@ { "title": "Properties", "children": [ - 13696, - 13697 + 13692, + 13693 ] } ] @@ -2757,12 +2757,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13658, + "target": 13654, "name": "MedusaRequest.user" } }, { - "id": 13670, + "id": 13666, "name": "validatedBody", "variant": "declaration", "kind": 1024, @@ -2771,7 +2771,7 @@ }, "type": { "type": "reference", - "target": 13698, + "target": 13694, "name": "Body", "package": "@medusajs/medusa", "qualifiedName": "AuthenticatedMedusaRequest.Body", @@ -2779,12 +2779,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13634, + "target": 13630, "name": "MedusaRequest.validatedBody" } }, { - "id": 13671, + "id": 13667, "name": "validatedQuery", "variant": "declaration", "kind": 1024, @@ -2796,7 +2796,7 @@ "types": [ { "type": "reference", - "target": 13742, + "target": 13738, "name": "RequestQueryFields", "package": "@medusajs/types" }, @@ -2823,12 +2823,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13635, + "target": 13631, "name": "MedusaRequest.validatedQuery" } }, { - "id": 13672, + "id": 13668, "name": "allowedProperties", "variant": "declaration", "kind": 1024, @@ -2852,12 +2852,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13636, + "target": 13632, "name": "MedusaRequest.allowedProperties" } }, { - "id": 13673, + "id": 13669, "name": "listConfig", "variant": "declaration", "kind": 1024, @@ -2874,7 +2874,7 @@ }, "type": { "type": "reference", - "target": 13543, + "target": 13539, "typeArguments": [ { "type": "intrinsic", @@ -2886,12 +2886,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13637, + "target": 13633, "name": "MedusaRequest.listConfig" } }, { - "id": 13674, + "id": 13670, "name": "retrieveConfig", "variant": "declaration", "kind": 1024, @@ -2908,7 +2908,7 @@ }, "type": { "type": "reference", - "target": 13543, + "target": 13539, "typeArguments": [ { "type": "intrinsic", @@ -2920,12 +2920,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13638, + "target": 13634, "name": "MedusaRequest.retrieveConfig" } }, { - "id": 13675, + "id": 13671, "name": "remoteQueryConfig", "variant": "declaration", "kind": 1024, @@ -2943,14 +2943,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13676, + "id": 13672, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13677, + "id": 13673, "name": "fields", "variant": "declaration", "kind": 1024, @@ -2964,7 +2964,7 @@ } }, { - "id": 13678, + "id": 13674, "name": "pagination", "variant": "declaration", "kind": 1024, @@ -2972,14 +2972,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13679, + "id": 13675, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13680, + "id": 13676, "name": "order", "variant": "declaration", "kind": 1024, @@ -3007,7 +3007,7 @@ } }, { - "id": 13681, + "id": 13677, "name": "skip", "variant": "declaration", "kind": 1024, @@ -3020,7 +3020,7 @@ } }, { - "id": 13682, + "id": 13678, "name": "take", "variant": "declaration", "kind": 1024, @@ -3037,9 +3037,9 @@ { "title": "Properties", "children": [ - 13680, - 13681, - 13682 + 13676, + 13677, + 13678 ] } ] @@ -3051,8 +3051,8 @@ { "title": "Properties", "children": [ - 13677, - 13678 + 13673, + 13674 ] } ] @@ -3060,12 +3060,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13639, + "target": 13635, "name": "MedusaRequest.remoteQueryConfig" } }, { - "id": 13683, + "id": 13679, "name": "filterableFields", "variant": "declaration", "kind": 1024, @@ -3105,12 +3105,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13647, + "target": 13643, "name": "MedusaRequest.filterableFields" } }, { - "id": 13684, + "id": 13680, "name": "includes", "variant": "declaration", "kind": 1024, @@ -3139,12 +3139,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13648, + "target": 13644, "name": "MedusaRequest.includes" } }, { - "id": 13685, + "id": 13681, "name": "allowedFields", "variant": "declaration", "kind": 1024, @@ -3188,12 +3188,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13649, + "target": 13645, "name": "MedusaRequest.allowedFields" } }, { - "id": 13686, + "id": 13682, "name": "allowed", "variant": "declaration", "kind": 1024, @@ -3218,12 +3218,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13650, + "target": 13646, "name": "MedusaRequest.allowed" } }, { - "id": 13687, + "id": 13683, "name": "errors", "variant": "declaration", "kind": 1024, @@ -3239,12 +3239,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13651, + "target": 13647, "name": "MedusaRequest.errors" } }, { - "id": 13688, + "id": 13684, "name": "scope", "variant": "declaration", "kind": 1024, @@ -3253,18 +3253,18 @@ }, "type": { "type": "reference", - "target": 13721, + "target": 13717, "name": "MedusaContainer", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 13652, + "target": 13648, "name": "MedusaRequest.scope" } }, { - "id": 13689, + "id": 13685, "name": "session", "variant": "declaration", "kind": 1024, @@ -3278,12 +3278,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13653, + "target": 13649, "name": "MedusaRequest.session" } }, { - "id": 13690, + "id": 13686, "name": "rawBody", "variant": "declaration", "kind": 1024, @@ -3297,12 +3297,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13654, + "target": 13650, "name": "MedusaRequest.rawBody" } }, { - "id": 13691, + "id": 13687, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -3316,12 +3316,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13655, + "target": 13651, "name": "MedusaRequest.requestId" } }, { - "id": 13692, + "id": 13688, "name": "pricingContext", "variant": "declaration", "kind": 1024, @@ -3339,18 +3339,18 @@ }, "type": { "type": "reference", - "target": 13748, + "target": 13744, "name": "MedusaPricingContext", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 13656, + "target": 13652, "name": "MedusaRequest.pricingContext" } }, { - "id": 13693, + "id": 13689, "name": "context", "variant": "declaration", "kind": 1024, @@ -3387,19 +3387,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 13657, + "target": 13653, "name": "MedusaRequest.context" } }, { - "id": 13669, + "id": 13665, "name": "auth_context", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 13663, + "target": 13659, "name": "AuthContext", "package": "@medusajs/medusa" } @@ -3409,13 +3409,17 @@ { "title": "Properties", "children": [ - 13694, + 13690, + 13666, + 13667, + 13668, + 13669, 13670, 13671, - 13672, - 13673, - 13674, - 13675, + 13679, + 13680, + 13681, + 13682, 13683, 13684, 13685, @@ -3423,17 +3427,13 @@ 13687, 13688, 13689, - 13690, - 13691, - 13692, - 13693, - 13669 + 13665 ] } ], "typeParameters": [ { - "id": 13698, + "id": 13694, "name": "Body", "variant": "typeParam", "kind": 131072, @@ -3447,11 +3447,11 @@ "extendedTypes": [ { "type": "reference", - "target": 13633, + "target": 13629, "typeArguments": [ { "type": "reference", - "target": 13698, + "target": 13694, "name": "Body", "package": "@medusajs/medusa", "qualifiedName": "AuthenticatedMedusaRequest.Body", @@ -3464,14 +3464,14 @@ ] }, { - "id": 13699, + "id": 13695, "name": "MedusaResponse", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 13700, + "id": 13696, "name": "Body", "variant": "typeParam", "kind": 131072, @@ -3491,7 +3491,7 @@ "typeArguments": [ { "type": "reference", - "target": 13700, + "target": 13696, "name": "Body", "package": "@medusajs/medusa", "refersToTypeParameter": true @@ -3503,7 +3503,7 @@ } }, { - "id": 13701, + "id": 13697, "name": "MedusaNextFunction", "variant": "declaration", "kind": 2097152, @@ -3520,14 +3520,14 @@ } }, { - "id": 13702, + "id": 13698, "name": "MedusaRequestHandler", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 13708, + "id": 13704, "name": "Body", "variant": "typeParam", "kind": 131072, @@ -3538,7 +3538,7 @@ } }, { - "id": 13709, + "id": 13705, "name": "Res", "variant": "typeParam", "kind": 131072, @@ -3552,32 +3552,32 @@ "type": { "type": "reflection", "declaration": { - "id": 13703, + "id": 13699, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13704, + "id": 13700, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13705, + "id": 13701, "name": "req", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 13633, + "target": 13629, "typeArguments": [ { "type": "reference", - "target": 13708, + "target": 13704, "name": "Body", "package": "@medusajs/medusa", "refersToTypeParameter": true @@ -3588,18 +3588,18 @@ } }, { - "id": 13706, + "id": 13702, "name": "res", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 13699, + "target": 13695, "typeArguments": [ { "type": "reference", - "target": 13709, + "target": 13705, "name": "Res", "package": "@medusajs/medusa", "refersToTypeParameter": true @@ -3610,14 +3610,14 @@ } }, { - "id": 13707, + "id": 13703, "name": "next", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 13701, + "target": 13697, "name": "MedusaNextFunction", "package": "@medusajs/medusa" } @@ -3653,14 +3653,14 @@ } }, { - "id": 13754, + "id": 13750, "name": "SubscriberContext", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 13755, + "id": 13751, "name": "subscriberId", "variant": "declaration", "kind": 1024, @@ -3677,7 +3677,7 @@ { "title": "Properties", "children": [ - 13755 + 13751 ] } ], @@ -3704,7 +3704,7 @@ ] }, { - "id": 13710, + "id": 13706, "name": "SubscriberConfig", "variant": "declaration", "kind": 2097152, @@ -3712,14 +3712,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13711, + "id": 13707, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13712, + "id": 13708, "name": "event", "variant": "declaration", "kind": 1024, @@ -3742,7 +3742,7 @@ } }, { - "id": 13713, + "id": 13709, "name": "context", "variant": "declaration", "kind": 1024, @@ -3751,7 +3751,7 @@ }, "type": { "type": "reference", - "target": 13754, + "target": 13750, "name": "SubscriberContext", "package": "@medusajs/medusa" } @@ -3761,8 +3761,8 @@ { "title": "Properties", "children": [ - 13712, - 13713 + 13708, + 13709 ] } ] @@ -3770,14 +3770,14 @@ } }, { - "id": 13714, + "id": 13710, "name": "SubscriberArgs", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 13720, + "id": 13716, "name": "T", "variant": "typeParam", "kind": 131072, @@ -3791,48 +3791,36 @@ "type": { "type": "reflection", "declaration": { - "id": 13715, + "id": 13711, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13716, + "id": 13712, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { - "type": "union", - "types": [ + "type": "reference", + "target": 13752, + "typeArguments": [ { "type": "reference", - "target": 13720, + "target": 13716, "name": "T", "package": "@medusajs/medusa", "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 13756, - "typeArguments": [ - { - "type": "reference", - "target": 13720, - "name": "T", - "package": "@medusajs/medusa", - "refersToTypeParameter": true - } - ], - "name": "MessageBody", - "package": "@medusajs/types" } - ] + ], + "name": "MessageBody", + "package": "@medusajs/types" } }, { - "id": 13717, + "id": 13713, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -3843,20 +3831,20 @@ } }, { - "id": 13718, + "id": 13714, "name": "container", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 13721, + "target": 13717, "name": "MedusaContainer", "package": "@medusajs/types" } }, { - "id": 13719, + "id": 13715, "name": "pluginOptions", "variant": "declaration", "kind": 1024, @@ -3886,10 +3874,10 @@ { "title": "Properties", "children": [ - 13716, - 13717, - 13718, - 13719 + 13712, + 13713, + 13714, + 13715 ] } ] @@ -3901,156 +3889,172 @@ { "title": "Interfaces", "children": [ - 13742, - 13543, - 13633, - 13663, - 13668, - 13754 + 13738, + 13539, + 13629, + 13659, + 13664, + 13750 ] }, { "title": "Type Aliases", "children": [ - 13721, - 13762, - 13756, - 13748, - 13553, - 13564, - 13569, - 13570, - 13628, - 13699, - 13701, - 13702, - 13710, - 13714 + 13717, + 13758, + 13752, + 13744, + 13549, + 13560, + 13565, + 13566, + 13624, + 13695, + 13697, + 13698, + 13706, + 13710 ] } ], "packageName": "@medusajs/medusa", "symbolIdMap": { - "13542": { + "13538": { "sourceFileName": "../../../../packages/medusa/src/index.js", "qualifiedName": "" }, - "13543": { + "13539": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindConfig" }, - "13544": { + "13540": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindConfig.select" }, - "13545": { + "13541": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindConfig.skip" }, - "13546": { + "13542": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindConfig.take" }, - "13547": { + "13543": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindConfig.relations" }, - "13548": { + "13544": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindConfig.order" }, - "13549": { + "13545": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "__type" }, - "13550": { + "13546": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "__type.__index" }, - "13552": { + "13548": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "FindConfig.Entity" }, - "13553": { + "13549": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "QueryConfig" }, - "13554": { + "13550": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "__type" }, - "13555": { + "13551": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "__type.defaults" }, - "13556": { + "13552": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "__type.defaultFields" }, - "13557": { + "13553": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "__type.defaultRelations" }, - "13558": { + "13554": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "__type.allowed" }, - "13559": { + "13555": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "__type.allowedFields" }, - "13560": { + "13556": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "__type.allowedRelations" }, - "13561": { + "13557": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "__type.defaultLimit" }, - "13562": { + "13558": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "__type.isList" }, - "13563": { + "13559": { "sourceFileName": "../../../../packages/medusa/src/types/common.ts", "qualifiedName": "TEntity" }, - "13564": { + "13560": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "ClassConstructor" }, - "13565": { + "13561": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type" }, - "13566": { + "13562": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type" }, - "13567": { + "13563": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "args" }, - "13568": { + "13564": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "T" }, - "13569": { + "13565": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "MedusaContainer" }, - "13570": { + "13566": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "Logger" }, - "13571": { + "13567": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type" }, - "13572": { + "13568": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type.panic" }, + "13569": { + "sourceFileName": "../../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__type" + }, + "13570": { + "sourceFileName": "../../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__type" + }, + "13571": { + "sourceFileName": "../../../../packages/medusa/src/types/global.ts", + "qualifiedName": "data" + }, + "13572": { + "sourceFileName": "../../../../packages/medusa/src/types/global.ts", + "qualifiedName": "__type.shouldLog" + }, "13573": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type" @@ -4061,11 +4065,11 @@ }, "13575": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "data" + "qualifiedName": "level" }, "13576": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.shouldLog" + "qualifiedName": "__type.setLogLevel" }, "13577": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", @@ -4081,7 +4085,7 @@ }, "13580": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.setLogLevel" + "qualifiedName": "__type.unsetLogLevel" }, "13581": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", @@ -4093,11 +4097,11 @@ }, "13583": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "level" + "qualifiedName": "__type.activity" }, "13584": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.unsetLogLevel" + "qualifiedName": "__type" }, "13585": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", @@ -4105,15 +4109,15 @@ }, "13586": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "message" }, "13587": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.activity" + "qualifiedName": "config" }, "13588": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.progress" }, "13589": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", @@ -4121,19 +4125,19 @@ }, "13590": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "message" + "qualifiedName": "__type" }, "13591": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "config" + "qualifiedName": "activityId" }, "13592": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.progress" + "qualifiedName": "message" }, "13593": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.error" }, "13594": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", @@ -4141,19 +4145,19 @@ }, "13595": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "activityId" + "qualifiedName": "__type" }, "13596": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "message" + "qualifiedName": "messageOrError" }, "13597": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.error" + "qualifiedName": "error" }, "13598": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.failure" }, "13599": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", @@ -4161,19 +4165,19 @@ }, "13600": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "messageOrError" + "qualifiedName": "__type" }, "13601": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "error" + "qualifiedName": "activityId" }, "13602": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.failure" + "qualifiedName": "message" }, "13603": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.success" }, "13604": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", @@ -4181,19 +4185,19 @@ }, "13605": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "activityId" + "qualifiedName": "__type" }, "13606": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "message" + "qualifiedName": "activityId" }, "13607": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.success" + "qualifiedName": "message" }, "13608": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.debug" }, "13609": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", @@ -4201,7 +4205,7 @@ }, "13610": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "activityId" + "qualifiedName": "__type" }, "13611": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", @@ -4209,7 +4213,7 @@ }, "13612": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.debug" + "qualifiedName": "__type.info" }, "13613": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", @@ -4225,7 +4229,7 @@ }, "13616": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.info" + "qualifiedName": "__type.warn" }, "13617": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", @@ -4241,7 +4245,7 @@ }, "13620": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.warn" + "qualifiedName": "__type.log" }, "13621": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", @@ -4253,11 +4257,11 @@ }, "13623": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "message" + "qualifiedName": "args" }, "13624": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type.log" + "qualifiedName": "Constructor" }, "13625": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", @@ -4272,514 +4276,498 @@ "qualifiedName": "args" }, "13628": { - "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "Constructor" - }, - "13629": { - "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" - }, - "13630": { - "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "__type" - }, - "13631": { - "sourceFileName": "../../../../packages/medusa/src/types/global.ts", - "qualifiedName": "args" - }, - "13632": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "T" }, - "13633": { + "13629": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest" }, - "13634": { + "13630": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.validatedBody" }, - "13635": { + "13631": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.validatedQuery" }, - "13636": { + "13632": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.allowedProperties" }, - "13637": { + "13633": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.listConfig" }, - "13638": { + "13634": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.retrieveConfig" }, - "13639": { + "13635": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.remoteQueryConfig" }, - "13640": { + "13636": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type" }, - "13641": { + "13637": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type.fields" }, - "13642": { + "13638": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type.pagination" }, - "13643": { + "13639": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type" }, - "13644": { + "13640": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type.order" }, - "13645": { + "13641": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type.skip" }, - "13646": { + "13642": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type.take" }, - "13647": { + "13643": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.filterableFields" }, - "13648": { + "13644": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.includes" }, - "13649": { + "13645": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.allowedFields" }, - "13650": { + "13646": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.allowed" }, - "13651": { + "13647": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.errors" }, - "13652": { + "13648": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.scope" }, - "13653": { + "13649": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.session" }, - "13654": { + "13650": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.rawBody" }, - "13655": { + "13651": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.requestId" }, - "13656": { + "13652": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.pricingContext" }, - "13657": { + "13653": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.context" }, - "13658": { + "13654": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "__global.Express.Request.user" }, - "13659": { + "13655": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type" }, - "13660": { + "13656": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type.customer_id" }, - "13661": { + "13657": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type.userId" }, - "13662": { + "13658": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.Body" }, - "13663": { + "13659": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "AuthContext" }, - "13664": { + "13660": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "AuthContext.actor_id" }, - "13665": { + "13661": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "AuthContext.actor_type" }, - "13666": { + "13662": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "AuthContext.auth_identity_id" }, - "13667": { + "13663": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "AuthContext.app_metadata" }, - "13668": { + "13664": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "AuthenticatedMedusaRequest" }, - "13669": { + "13665": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "AuthenticatedMedusaRequest.auth_context" }, - "13670": { + "13666": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.validatedBody" }, - "13671": { + "13667": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.validatedQuery" }, - "13672": { + "13668": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.allowedProperties" }, - "13673": { + "13669": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.listConfig" }, - "13674": { + "13670": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.retrieveConfig" }, - "13675": { + "13671": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.remoteQueryConfig" }, - "13676": { + "13672": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type" }, - "13677": { + "13673": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type.fields" }, - "13678": { + "13674": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type.pagination" }, - "13679": { + "13675": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type" }, - "13680": { + "13676": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type.order" }, - "13681": { + "13677": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type.skip" }, - "13682": { + "13678": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type.take" }, - "13683": { + "13679": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.filterableFields" }, - "13684": { + "13680": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.includes" }, - "13685": { + "13681": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.allowedFields" }, - "13686": { + "13682": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.allowed" }, - "13687": { + "13683": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.errors" }, - "13688": { + "13684": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.scope" }, - "13689": { + "13685": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.session" }, - "13690": { + "13686": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.rawBody" }, - "13691": { + "13687": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.requestId" }, - "13692": { + "13688": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.pricingContext" }, - "13693": { + "13689": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequest.context" }, - "13694": { + "13690": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "__global.Express.Request.user" }, - "13695": { + "13691": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type" }, - "13696": { + "13692": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type.customer_id" }, - "13697": { + "13693": { "sourceFileName": "../../../../packages/medusa/src/types/global.ts", "qualifiedName": "__type.userId" }, - "13698": { + "13694": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "AuthenticatedMedusaRequest.Body" }, - "13699": { + "13695": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaResponse" }, - "13700": { + "13696": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "Body" }, - "13701": { + "13697": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaNextFunction" }, - "13702": { + "13698": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "MedusaRequestHandler" }, - "13703": { + "13699": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type" }, - "13704": { + "13700": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "__type" }, - "13705": { + "13701": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "req" }, - "13706": { + "13702": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "res" }, - "13707": { + "13703": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "next" }, - "13708": { + "13704": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "Body" }, - "13709": { + "13705": { "sourceFileName": "../../../../packages/medusa/src/types/routing.ts", "qualifiedName": "Res" }, - "13710": { + "13706": { "sourceFileName": "../../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "SubscriberConfig" }, - "13711": { + "13707": { "sourceFileName": "../../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "__type" }, - "13712": { + "13708": { "sourceFileName": "../../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "__type.event" }, - "13713": { + "13709": { "sourceFileName": "../../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "__type.context" }, - "13714": { + "13710": { "sourceFileName": "../../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "SubscriberArgs" }, - "13715": { + "13711": { "sourceFileName": "../../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "__type" }, - "13716": { + "13712": { "sourceFileName": "../../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "__type.data" }, - "13717": { + "13713": { "sourceFileName": "../../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "__type.eventName" }, - "13718": { + "13714": { "sourceFileName": "../../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "__type.container" }, - "13719": { + "13715": { "sourceFileName": "../../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "__type.pluginOptions" }, - "13720": { + "13716": { "sourceFileName": "../../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "T" }, - "13721": { + "13717": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "MedusaContainer" }, - "13722": { + "13718": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "__type" }, - "13723": { + "13719": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "__type.resolve" }, - "13724": { + "13720": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "__type.resolve" }, - "13725": { + "13721": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "K" }, - "13726": { + "13722": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "key" }, - "13727": { + "13723": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "resolveOptions" }, - "13728": { + "13724": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "__type.resolve" }, - "13729": { + "13725": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "T" }, - "13730": { + "13726": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "key" }, - "13731": { + "13727": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "resolveOptions" }, - "13741": { + "13737": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "Cradle" }, - "13742": { + "13738": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "RequestQueryFields" }, - "13743": { + "13739": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.expand" }, - "13744": { + "13740": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.fields" }, - "13745": { + "13741": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.offset" }, - "13746": { + "13742": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.limit" }, - "13747": { + "13743": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.order" }, - "13748": { + "13744": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/pricing-context.ts", "qualifiedName": "MedusaPricingContext" }, - "13749": { + "13745": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/pricing-context.ts", "qualifiedName": "__type" }, - "13750": { + "13746": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/pricing-context.ts", "qualifiedName": "__type.region_id" }, - "13751": { + "13747": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/pricing-context.ts", "qualifiedName": "__type.currency_code" }, - "13752": { + "13748": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/pricing-context.ts", "qualifiedName": "__type.customer_id" }, - "13753": { + "13749": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/pricing-context.ts", "qualifiedName": "__type.customer_group_id" }, - "13754": { + "13750": { "sourceFileName": "../../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "SubscriberContext" }, - "13755": { + "13751": { "sourceFileName": "../../../../packages/medusa/src/types/subscribers.ts", "qualifiedName": "SubscriberContext.subscriberId" }, - "13756": { + "13752": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "13757": { + "13753": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "13758": { + "13754": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "13759": { + "13755": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "13760": { + "13756": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "13761": { + "13757": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "13762": { + "13758": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "13763": { + "13759": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "13764": { + "13760": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" } @@ -4789,7 +4777,7 @@ "1": "../../../../packages/medusa/src/index.js" }, "reflections": { - "1": 13542 + "1": 13538 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/0-types.json b/www/utils/generated/typedoc-json-output/0-types.json index 4cd0365334a4d..2ec58ce6b0c1c 100644 --- a/www/utils/generated/typedoc-json-output/0-types.json +++ b/www/utils/generated/typedoc-json-output/0-types.json @@ -1,12 +1,12 @@ { - "id": 13895, + "id": 13778, "name": "types", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 13896, + "id": 13779, "name": "AddressDTO", "variant": "declaration", "kind": 2097152, @@ -14,14 +14,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13897, + "id": 13780, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13898, + "id": 13781, "name": "id", "variant": "declaration", "kind": 1024, @@ -34,7 +34,7 @@ } }, { - "id": 13899, + "id": 13782, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -45,7 +45,7 @@ } }, { - "id": 13900, + "id": 13783, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -67,7 +67,7 @@ } }, { - "id": 13901, + "id": 13784, "name": "company", "variant": "declaration", "kind": 1024, @@ -89,7 +89,7 @@ } }, { - "id": 13902, + "id": 13785, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 13903, + "id": 13786, "name": "city", "variant": "declaration", "kind": 1024, @@ -122,7 +122,7 @@ } }, { - "id": 13904, + "id": 13787, "name": "phone", "variant": "declaration", "kind": 1024, @@ -144,7 +144,7 @@ } }, { - "id": 13905, + "id": 13788, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -166,7 +166,7 @@ } }, { - "id": 13906, + "id": 13789, "name": "province", "variant": "declaration", "kind": 1024, @@ -188,7 +188,7 @@ } }, { - "id": 13907, + "id": 13790, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -225,7 +225,7 @@ } }, { - "id": 13908, + "id": 13791, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -252,7 +252,7 @@ } }, { - "id": 13909, + "id": 13792, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -279,7 +279,7 @@ } }, { - "id": 13910, + "id": 13793, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -314,19 +314,19 @@ { "title": "Properties", "children": [ - 13898, - 13899, - 13900, - 13901, - 13902, - 13903, - 13904, - 13905, - 13906, - 13907, - 13908, - 13909, - 13910 + 13781, + 13782, + 13783, + 13784, + 13785, + 13786, + 13787, + 13788, + 13789, + 13790, + 13791, + 13792, + 13793 ] } ] @@ -334,7 +334,7 @@ } }, { - "id": 13911, + "id": 13794, "name": "DetailWidgetProps", "variant": "declaration", "kind": 256, @@ -360,14 +360,14 @@ }, "children": [ { - "id": 13912, + "id": 13795, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 13913, + "target": 13796, "name": "TData", "package": "@medusajs/types", "qualifiedName": "DetailWidgetProps.TData", @@ -379,13 +379,13 @@ { "title": "Properties", "children": [ - 13912 + 13795 ] } ], "typeParameters": [ { - "id": 13913, + "id": 13796, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -394,42 +394,42 @@ ] }, { - "id": 13914, + "id": 13797, "name": "AdminTypes", "variant": "declaration", "kind": 4, "flags": {} }, { - "id": 13915, + "id": 13798, "name": "CacheTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 13916, + "id": 13799, "name": "ICacheService", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 13917, + "id": 13800, "name": "get", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 13918, + "id": 13801, "name": "get", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 13919, + "id": 13802, "name": "T", "variant": "typeParam", "kind": 131072, @@ -438,7 +438,7 @@ ], "parameters": [ { - "id": 13920, + "id": 13803, "name": "key", "variant": "param", "kind": 32768, @@ -465,7 +465,7 @@ }, { "type": "reference", - "target": 13919, + "target": 13802, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -480,21 +480,21 @@ ] }, { - "id": 13921, + "id": 13804, "name": "set", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 13922, + "id": 13805, "name": "set", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13923, + "id": 13806, "name": "key", "variant": "param", "kind": 32768, @@ -505,7 +505,7 @@ } }, { - "id": 13924, + "id": 13807, "name": "data", "variant": "param", "kind": 32768, @@ -516,7 +516,7 @@ } }, { - "id": 13925, + "id": 13808, "name": "ttl", "variant": "param", "kind": 32768, @@ -548,21 +548,21 @@ ] }, { - "id": 13926, + "id": 13809, "name": "invalidate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 13927, + "id": 13810, "name": "invalidate", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13928, + "id": 13811, "name": "key", "variant": "param", "kind": 32768, @@ -596,9 +596,9 @@ { "title": "Methods", "children": [ - 13917, - 13921, - 13926 + 13800, + 13804, + 13809 ] } ] @@ -608,1635 +608,2540 @@ { "title": "Interfaces", "children": [ - 13916 + 13799 ] } ] }, { - "id": 16915, - "name": "SessionOptions", + "id": 16921, + "name": "IsStringLiteral", "variant": "declaration", - "kind": 256, + "kind": 2097152, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Options to pass to " + "typeParameters": [ + { + "id": 16922, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 16922, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "intrinsic", + "name": "string" + }, + "trueType": { + "type": "conditional", + "checkType": { + "type": "intrinsic", + "name": "string" }, - { - "kind": "code", - "text": "`express-session`" + "extendsType": { + "type": "reference", + "target": 16922, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true }, - { - "kind": "text", - "text": "." + "trueType": { + "type": "literal", + "value": false + }, + "falseType": { + "type": "literal", + "value": true } - ] - }, - "children": [ + }, + "falseType": { + "type": "literal", + "value": false + } + } + }, + { + "id": 17185, + "name": "WordInCamelCase", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ { - "id": 16916, - "name": "name", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The name of the session ID cookie to set in the response (and read from in the request). The default value is " - }, - { - "kind": "code", - "text": "`connect.sid`" - }, - { - "kind": "text", - "text": ".\nRefer to [express-session’s documentation](https://www.npmjs.com/package/express-session#name) for more details." - } - ] - }, + "id": 17186, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} + }, + { + "id": 17187, + "name": "Word", + "variant": "typeParam", + "kind": 131072, + "flags": {}, "type": { "type": "intrinsic", "name": "string" + }, + "default": { + "type": "literal", + "value": "" } + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17186, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true }, - { - "id": 16917, - "name": "resave", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ + "extendsType": { + "type": "templateLiteral", + "head": "", + "tail": [ + [ { - "kind": "text", - "text": "Whether the session should be saved back to the session store, even if the session was never modified during the request. The default value is " + "type": "reference", + "target": 17187, + "name": "Word", + "package": "@medusajs/types", + "refersToTypeParameter": true }, + "" + ], + [ { - "kind": "code", - "text": "`true`" + "type": "inferred", + "name": "NextCharacter" }, + "" + ], + [ { - "kind": "text", - "text": ".\nRefer to [express-session’s documentation](https://www.npmjs.com/package/express-session#resave) for more details." - } + "type": "inferred", + "name": "_" + }, + "" ] - }, - "type": { - "type": "intrinsic", - "name": "boolean" - } + ] }, - { - "id": 16918, - "name": "rolling", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true + "trueType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "NextCharacter" + }, + "name": "NextCharacter", + "package": "@medusajs/types", + "refersToTypeParameter": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Whether the session identifier cookie should be force-set on every response. The default value is " - }, - { - "kind": "code", - "text": "`false`" - }, + "extendsType": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Capitalize" + }, + "typeArguments": [ { - "kind": "text", - "text": ".\nRefer to [express-session’s documentation](https://www.npmjs.com/package/express-session#rolling) for more details." + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "NextCharacter" + }, + "name": "NextCharacter", + "package": "@medusajs/types", + "refersToTypeParameter": true } - ] + ], + "name": "Capitalize", + "package": "typescript" }, - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 16919, - "name": "saveUninitialized", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true + "trueType": { + "type": "reference", + "target": 17187, + "name": "Word", + "package": "@medusajs/types", + "refersToTypeParameter": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Whether a session that is \"uninitialized\" is forced to be saved to the store. The default value is " - }, + "falseType": { + "type": "reference", + "target": 17185, + "typeArguments": [ { - "kind": "code", - "text": "`true`" + "type": "reference", + "target": 17186, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true }, { - "kind": "text", - "text": ".\nRefer to [express-session’s documentation](https://www.npmjs.com/package/express-session#saveUninitialized) for more details." + "type": "templateLiteral", + "head": "", + "tail": [ + [ + { + "type": "reference", + "target": 17187, + "name": "Word", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "" + ], + [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "NextCharacter" + }, + "name": "NextCharacter", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "" + ] + ] } - ] - }, - "type": { - "type": "intrinsic", - "name": "boolean" + ], + "name": "WordInCamelCase", + "package": "@medusajs/types" } }, - { - "id": 16920, - "name": "secret", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The secret to sign the session ID cookie. By default, the value of " - }, - { - "kind": "code", - "text": "`http.cookieSecret`" - }, - { - "kind": "text", - "text": " is used.\nRefer to [express-session’s documentation](https://www.npmjs.com/package/express-session#secret) for details." - } - ] + "falseType": { + "type": "reference", + "target": 17187, + "name": "Word", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + }, + { + "id": 17184, + "name": "Separator", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "_" }, - "type": { - "type": "intrinsic", - "name": "string" + { + "type": "literal", + "value": "-" } - }, + ] + } + }, + { + "id": 17114, + "name": "IncludesSeparator", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ { - "id": 16921, - "name": "ttl", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Used when calculating the " - }, - { - "kind": "code", - "text": "`Expires`" - }, - { - "kind": "text", - "text": " " - }, + "id": 17115, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17115, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "templateLiteral", + "head": "", + "tail": [ + [ { - "kind": "code", - "text": "`Set-Cookie`" + "type": "intrinsic", + "name": "string" }, + "" + ], + [ { - "kind": "text", - "text": " attribute of cookies. By default, its value is " + "type": "reference", + "target": 17184, + "name": "Separator", + "package": "@medusajs/types" }, + "" + ], + [ { - "kind": "code", - "text": "`10 * 60 * 60 * 1000`" + "type": "intrinsic", + "name": "string" }, - { - "kind": "text", - "text": ".\nRefer to [express-session’s documentation](https://www.npmjs.com/package/express-session#cookiemaxage) for details." - } + "" ] - }, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 16916, - 16917, - 16918, - 16919, - 16920, - 16921 ] + }, + "trueType": { + "type": "literal", + "value": true + }, + "falseType": { + "type": "literal", + "value": false } - ] + } }, { - "id": 13929, - "name": "CommonTypes", + "id": 17119, + "name": "IsOneWord", "variant": "declaration", - "kind": 4, + "kind": 2097152, "flags": {}, - "children": [ + "typeParameters": [ { - "id": 14033, - "name": "LinkMethodRequest", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 14034, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ + "id": 17120, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17120, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Lowercase" + }, + "typeArguments": [ + { + "type": "intersection", + "types": [ { - "id": 14035, - "name": "add", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } + "type": "reference", + "target": 17120, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true }, { - "id": 14036, - "name": "remove", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14035, - 14036 - ] + "type": "intrinsic", + "name": "string" } ] } - } + ], + "name": "Lowercase", + "package": "typescript" }, - { - "id": 14037, - "name": "LinkWorkflowInput", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 14038, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 14039, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { + "trueType": { + "type": "literal", + "value": true + }, + "falseType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17120, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Uppercase" + }, + "typeArguments": [ + { + "type": "intersection", + "types": [ + { + "type": "reference", + "target": 17120, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { "type": "intrinsic", "name": "string" } - }, - { - "id": 14040, - "name": "add", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - }, + ] + } + ], + "name": "Uppercase", + "package": "typescript" + }, + "trueType": { + "type": "literal", + "value": true + }, + "falseType": { + "type": "literal", + "value": false + } + } + } + }, + { + "id": 17121, + "name": "IsCamelCase", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 17122, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17122, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Uncapitalize" + }, + "typeArguments": [ + { + "type": "intersection", + "types": [ { - "id": 14041, - "name": "remove", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - } - ], - "groups": [ + "type": "reference", + "target": 17122, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, { - "title": "Properties", - "children": [ - 14039, - 14040, - 14041 - ] + "type": "intrinsic", + "name": "string" } ] } + ], + "name": "Uncapitalize", + "package": "typescript" + }, + "trueType": { + "type": "literal", + "value": true + }, + "falseType": { + "type": "literal", + "value": false + } + } + }, + { + "id": 17126, + "name": "IsPascalCase", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 17127, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17127, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Capitalize" }, - "extendedBy": [ + "typeArguments": [ { - "type": "reference", - "target": 16460, - "name": "BatchUpdateProductsOnCategoryWorkflowInput" + "type": "intersection", + "types": [ + { + "type": "reference", + "target": 17127, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "intrinsic", + "name": "string" + } + ] } - ] + ], + "name": "Capitalize", + "package": "typescript" + }, + "trueType": { + "type": "literal", + "value": true + }, + "falseType": { + "type": "literal", + "value": false + } + } + }, + { + "id": 17116, + "name": "SeparatorCaseParser", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "snake_case, CONSTANT_CASE, kebab-case or COBOL-CASE" + } + ] + }, + "typeParameters": [ + { + "id": 17117, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} }, { - "id": 14042, - "name": "BatchMethodRequest", - "variant": "declaration", - "kind": 2097152, + "id": 17118, + "name": "Tuple", + "variant": "typeParam", + "kind": 131072, "flags": {}, - "typeParameters": [ - { - "id": 14047, - "name": "TCreate", - "variant": "typeParam", - "kind": 131072, - "flags": {} - }, - { - "id": 14048, - "name": "TUpdate", - "variant": "typeParam", - "kind": 131072, - "flags": {} - }, - { - "id": 14049, - "name": "TDelete", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "default": { + "type": { + "type": "typeOperator", + "operator": "readonly", + "target": { + "type": "array", + "elementType": { "type": "intrinsic", - "name": "string" + "name": "any" } } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 14043, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 14044, - "name": "create", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14047, - "name": "TCreate", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - } - }, + }, + "default": { + "type": "tuple" + } + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17117, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "templateLiteral", + "head": "", + "tail": [ + [ + { + "type": "inferred", + "name": "Word" + }, + "" + ], + [ + { + "type": "reference", + "target": 17184, + "name": "Separator", + "package": "@medusajs/types" + }, + "" + ], + [ + { + "type": "inferred", + "name": "Tail" + }, + "" + ] + ] + }, + "trueType": { + "type": "reference", + "target": 17116, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Tail" + }, + "name": "Tail", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "tuple", + "elements": [ { - "id": 14045, - "name": "update", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14048, - "name": "TUpdate", - "package": "@medusajs/types", - "refersToTypeParameter": true - } + "type": "rest", + "elementType": { + "type": "reference", + "target": 17118, + "name": "Tuple", + "package": "@medusajs/types", + "refersToTypeParameter": true } }, { - "id": 14046, - "name": "delete", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Lowercase" }, - "type": { - "type": "array", - "elementType": { + "typeArguments": [ + { "type": "reference", - "target": 14049, - "name": "TDelete", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Word" + }, + "name": "Word", "package": "@medusajs/types", "refersToTypeParameter": true } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14044, - 14045, - 14046 - ] + ], + "name": "Lowercase", + "package": "typescript" } ] } + ], + "name": "SeparatorCaseParser", + "package": "@medusajs/types" + }, + "falseType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17117, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "templateLiteral", + "head": "", + "tail": [ + [ + { + "type": "inferred", + "name": "Word" + }, + "" + ] + ] + }, + "trueType": { + "type": "tuple", + "elements": [ + { + "type": "rest", + "elementType": { + "type": "reference", + "target": 17118, + "name": "Tuple", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Lowercase" + }, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Word" + }, + "name": "Word", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "Lowercase", + "package": "typescript" + } + ] + }, + "falseType": { + "type": "reference", + "target": 17118, + "name": "Tuple", + "package": "@medusajs/types", + "refersToTypeParameter": true } + } + } + }, + { + "id": 17123, + "name": "CamelCaseParser", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 17124, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} }, { - "id": 14050, - "name": "BatchMethodResponse", - "variant": "declaration", - "kind": 2097152, + "id": 17125, + "name": "Tuple", + "variant": "typeParam", + "kind": 131072, "flags": {}, - "typeParameters": [ - { - "id": 14059, - "name": "T", - "variant": "typeParam", - "kind": 131072, - "flags": {} - } - ], "type": { - "type": "reflection", - "declaration": { - "id": 14051, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ + "type": "typeOperator", + "operator": "readonly", + "target": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + }, + "default": { + "type": "tuple" + } + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17124, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "literal", + "value": "" + }, + "trueType": { + "type": "reference", + "target": 17125, + "name": "Tuple", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "falseType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17124, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "templateLiteral", + "head": "", + "tail": [ + [ { - "id": 14052, - "name": "created", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { + "type": "reference", + "target": 17185, + "typeArguments": [ + { "type": "reference", - "target": 14059, - "name": "T", + "target": 17124, + "name": "Type", "package": "@medusajs/types", "refersToTypeParameter": true } - } + ], + "name": "WordInCamelCase", + "package": "@medusajs/types" }, + "" + ], + [ { - "id": 14053, - "name": "updated", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { + "type": "inferred", + "name": "Tail" + }, + "" + ] + ] + }, + "trueType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17124, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "templateLiteral", + "head": "", + "tail": [ + [ + { + "type": "inferred", + "name": "Word" + }, + "" + ], + [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Tail" + }, + "name": "Tail", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "" + ] + ] + }, + "trueType": { + "type": "reference", + "target": 17123, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Uncapitalize" + }, + "typeArguments": [ + { "type": "reference", - "target": 14059, - "name": "T", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Tail" + }, + "name": "Tail", "package": "@medusajs/types", "refersToTypeParameter": true } - } + ], + "name": "Uncapitalize", + "package": "typescript" }, { - "id": 14054, - "name": "deleted", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 14055, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 14056, - "name": "ids", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - }, + "type": "tuple", + "elements": [ + { + "type": "rest", + "elementType": { + "type": "reference", + "target": 17125, + "name": "Tuple", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Lowercase" + }, + "typeArguments": [ { - "id": 14057, - "name": "object", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14058, - "name": "deleted", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "boolean" - } + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Word" + }, + "name": "Word", + "package": "@medusajs/types", + "refersToTypeParameter": true } ], - "groups": [ - { - "title": "Properties", - "children": [ - 14056, - 14057, - 14058 - ] - } - ] + "name": "Lowercase", + "package": "typescript" } - } + ] } ], - "groups": [ + "name": "CamelCaseParser", + "package": "@medusajs/types" + }, + "falseType": { + "type": "intrinsic", + "name": "never" + } + }, + "falseType": { + "type": "intrinsic", + "name": "never" + } + } + } + }, + { + "id": 17128, + "name": "PascalCaseParser", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 17129, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17129, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "intrinsic", + "name": "string" + }, + "trueType": { + "type": "reference", + "target": 17123, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Uncapitalize" + }, + "typeArguments": [ { - "title": "Properties", - "children": [ - 14052, - 14053, - 14054 - ] + "type": "reference", + "target": 17129, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true } - ] + ], + "name": "Uncapitalize", + "package": "typescript" } - } + ], + "name": "CamelCaseParser", + "package": "@medusajs/types" }, + "falseType": { + "type": "intrinsic", + "name": "never" + } + } + }, + { + "id": 16928, + "name": "SplitAnyCase", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ { - "id": 14060, - "name": "BatchWorkflowInput", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "typeParameters": [ - { - "id": 14061, - "name": "TCreate", - "variant": "typeParam", - "kind": 131072, - "flags": {} - }, - { - "id": 14062, - "name": "TUpdate", - "variant": "typeParam", - "kind": 131072, - "flags": {} - }, + "id": 16929, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17114, + "typeArguments": [ { - "id": 14063, - "name": "TDelete", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "default": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 16929, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true } ], - "type": { - "type": "reference", - "target": 14042, - "typeArguments": [ - { - "type": "reference", - "target": 14061, - "name": "TCreate", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 14062, - "name": "TUpdate", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - { - "type": "reference", - "target": 14063, - "name": "TDelete", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - ], - "name": "BatchMethodRequest", - "package": "@medusajs/types" - } + "name": "IncludesSeparator", + "package": "@medusajs/types" }, - { - "id": 14064, - "name": "BatchWorkflowOutput", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "typeParameters": [ + "extendsType": { + "type": "literal", + "value": true + }, + "trueType": { + "type": "reference", + "target": 17116, + "typeArguments": [ { - "id": 14065, - "name": "T", - "variant": "typeParam", - "kind": 131072, - "flags": {} + "type": "reference", + "target": 16929, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true } ], - "type": { + "name": "SeparatorCaseParser", + "package": "@medusajs/types" + }, + "falseType": { + "type": "conditional", + "checkType": { "type": "reference", - "target": 14050, + "target": 17119, "typeArguments": [ { "type": "reference", - "target": 14065, - "name": "T", + "target": 16929, + "name": "Type", "package": "@medusajs/types", "refersToTypeParameter": true } ], - "name": "BatchMethodResponse", + "name": "IsOneWord", "package": "@medusajs/types" - } - }, - { - "id": 13930, - "name": "WithRequiredProperty", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "comment": { - "summary": [ + }, + "extendsType": { + "type": "literal", + "value": true + }, + "trueType": { + "type": "tuple", + "elements": [ { - "kind": "text", - "text": "Utility type used to remove some optional attributes (coming from K) from a type T" + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Lowercase" + }, + "typeArguments": [ + { + "type": "intersection", + "types": [ + { + "type": "reference", + "target": 16929, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + ], + "name": "Lowercase", + "package": "typescript" } ] }, - "typeParameters": [ - { - "id": 13931, - "name": "T", - "variant": "typeParam", - "kind": 131072, - "flags": {} - }, - { - "id": 13932, - "name": "K", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "typeOperator", - "operator": "keyof", - "target": { + "falseType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17121, + "typeArguments": [ + { "type": "reference", - "target": 13931, - "name": "T", + "target": 16929, + "name": "Type", "package": "@medusajs/types", "refersToTypeParameter": true } - } - } - ], - "type": { - "type": "intersection", - "types": [ - { - "type": "reference", - "target": 13931, - "name": "T", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - { - "type": "mapped", - "parameter": "Property", - "parameterType": { + ], + "name": "IsCamelCase", + "package": "@medusajs/types" + }, + "extendsType": { + "type": "literal", + "value": true + }, + "trueType": { + "type": "reference", + "target": 17123, + "typeArguments": [ + { "type": "reference", - "target": 13932, - "name": "K", + "target": 16929, + "name": "Type", "package": "@medusajs/types", "refersToTypeParameter": true - }, - "templateType": { - "type": "indexedAccess", - "indexType": { + } + ], + "name": "CamelCaseParser", + "package": "@medusajs/types" + }, + "falseType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17126, + "typeArguments": [ + { "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/common/common.ts", - "qualifiedName": "Property" - }, - "name": "Property", + "target": 16929, + "name": "Type", "package": "@medusajs/types", "refersToTypeParameter": true - }, - "objectType": { + } + ], + "name": "IsPascalCase", + "package": "@medusajs/types" + }, + "extendsType": { + "type": "literal", + "value": true + }, + "trueType": { + "type": "reference", + "target": 17128, + "typeArguments": [ + { "type": "reference", - "target": 13931, - "name": "T", + "target": 16929, + "name": "Type", "package": "@medusajs/types", "refersToTypeParameter": true } - }, - "optionalModifier": "-" + ], + "name": "PascalCaseParser", + "package": "@medusajs/types" + }, + "falseType": { + "type": "tuple" } - ] + } } + } + } + }, + { + "id": 17111, + "name": "PascalCapitalizer", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 17112, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} }, { - "id": 13936, - "name": "BaseEntity", - "variant": "declaration", - "kind": 256, + "id": 17113, + "name": "Tuple", + "variant": "typeParam", + "kind": 131072, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Representing a table in the database." + "type": { + "type": "typeOperator", + "operator": "readonly", + "target": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" } - ] + } }, - "children": [ + "default": { + "type": "tuple" + } + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 17112, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "tuple", + "elements": [ { - "id": 13937, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of an entity's record." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } + "type": "inferred", + "name": "Head" }, { - "id": 13938, - "name": "created_at", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The date an entity's record was created." - } - ] - }, - "type": { + "type": "rest", + "elementType": { + "type": "inferred", + "name": "Tail" + } + } + ] + }, + "trueType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Head" + }, + "name": "Head", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "intrinsic", + "name": "string" + }, + "trueType": { + "type": "reference", + "target": 17111, + "typeArguments": [ + { "type": "reference", "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Tail" }, - "name": "Date", - "package": "typescript" - } - }, - { - "id": 13939, - "name": "updated_at", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ + "name": "Tail", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "tuple", + "elements": [ { - "kind": "text", - "text": "The date an entity's record was updated." + "type": "rest", + "elementType": { + "type": "reference", + "target": 17113, + "name": "Tuple", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Capitalize" + }, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Head" + }, + "name": "Head", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "Capitalize", + "package": "typescript" } ] - }, - "type": { + } + ], + "name": "PascalCapitalizer", + "package": "@medusajs/types" + }, + "falseType": { + "type": "reference", + "target": 17111, + "typeArguments": [ + { "type": "reference", "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Tail" }, - "name": "Date", - "package": "typescript" + "name": "Tail", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 17113, + "name": "Tuple", + "package": "@medusajs/types", + "refersToTypeParameter": true } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 13937, - 13938, - 13939 - ] - } - ], - "extendedBy": [ - { - "type": "reference", - "target": 13940, - "name": "SoftDeletableEntity" - } - ] + ], + "name": "PascalCapitalizer", + "package": "@medusajs/types" + } }, + "falseType": { + "type": "reference", + "target": 17113, + "name": "Tuple", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + }, + { + "id": 16926, + "name": "CamelCapitalizer", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ { - "id": 13940, - "name": "SoftDeletableEntity", - "variant": "declaration", - "kind": 256, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Representing a deletable entity." - } - ] - }, - "children": [ + "id": 16927, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 16927, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "tuple", + "elements": [ { - "id": 13942, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of an entity's record." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 13937, - "name": "BaseEntity.id" - } + "type": "inferred", + "name": "First" }, { - "id": 13943, - "name": "created_at", - "variant": "declaration", - "kind": 1024, - "flags": { - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The date an entity's record was created." - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" - }, - "name": "Date", - "package": "typescript" - }, - "inheritedFrom": { - "type": "reference", - "target": 13938, - "name": "BaseEntity.created_at" + "type": "rest", + "elementType": { + "type": "inferred", + "name": "Tail" } - }, + } + ] + }, + "trueType": { + "type": "reference", + "target": 17111, + "typeArguments": [ { - "id": 13944, - "name": "updated_at", - "variant": "declaration", - "kind": 1024, - "flags": { - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The date an entity's record was updated." - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" - }, - "name": "Date", - "package": "typescript" + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Tail" }, - "inheritedFrom": { - "type": "reference", - "target": 13939, - "name": "BaseEntity.updated_at" - } + "name": "Tail", + "package": "@medusajs/types", + "refersToTypeParameter": true }, { - "id": 13941, - "name": "deleted_at", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The date an entity's record was deleted." - } - ] - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null + "type": "tuple", + "elements": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "First" }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" - }, - "name": "Date", - "package": "typescript" - } - ] - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 13942, - 13943, - 13944, - 13941 + "name": "First", + "package": "@medusajs/types", + "refersToTypeParameter": true + } ] } ], - "extendedTypes": [ + "name": "PascalCapitalizer", + "package": "@medusajs/types" + }, + "falseType": { + "type": "tuple" + } + } + }, + { + "id": 16923, + "name": "Join", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 16924, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} + }, + { + "id": 16925, + "name": "JoinedString", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "literal", + "value": "" + } + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 16924, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "tuple", + "elements": [ { - "type": "reference", - "target": 13936, - "name": "BaseEntity", - "package": "@medusajs/types" + "type": "inferred", + "name": "Head" + }, + { + "type": "rest", + "elementType": { + "type": "inferred", + "name": "Tail" + } } ] }, + "trueType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Head" + }, + "name": "Head", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "intrinsic", + "name": "string" + }, + "trueType": { + "type": "reference", + "target": 16923, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Tail" + }, + "name": "Tail", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "templateLiteral", + "head": "", + "tail": [ + [ + { + "type": "reference", + "target": 16925, + "name": "JoinedString", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "" + ], + [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Head" + }, + "name": "Head", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "" + ] + ] + } + ], + "name": "Join", + "package": "@medusajs/types" + }, + "falseType": { + "type": "reference", + "target": 16923, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Tail" + }, + "name": "Tail", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "Join", + "package": "@medusajs/types" + } + }, + "falseType": { + "type": "reference", + "target": 16925, + "name": "JoinedString", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + }, + { + "id": 16914, + "name": "SessionOptions", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Options to pass to " + }, + { + "kind": "code", + "text": "`express-session`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + "children": [ { - "id": 13947, - "name": "FindConfig", + "id": 16915, + "name": "name", "variant": "declaration", - "kind": 256, - "flags": {}, + "kind": 1024, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { "kind": "text", - "text": "An object that is used to configure how an entity is retrieved from the database. It accepts as a typed parameter an " + "text": "The name of the session ID cookie to set in the response (and read from in the request). The default value is " }, { "kind": "code", - "text": "`Entity`" + "text": "`connect.sid`" }, { "kind": "text", - "text": " class,\nwhich provides correct typing of field names in its properties." + "text": ".\nRefer to [express-session’s documentation](https://www.npmjs.com/package/express-session#name) for more details." } ] }, - "children": [ - { - "id": 13948, - "name": "select", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 16916, + "name": "resave", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the session should be saved back to the session store, even if the session was never modified during the request. The default value is " }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An array of strings, each being attribute names of the entity to retrieve in the result." - } - ] + { + "kind": "code", + "text": "`true`" }, - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "typeOperator", - "operator": "keyof", - "target": { - "type": "reference", - "target": 13959, - "name": "Entity", - "package": "@medusajs/types", - "qualifiedName": "FindConfig.Entity", - "refersToTypeParameter": true - } - } - ] - } + { + "kind": "text", + "text": ".\nRefer to [express-session’s documentation](https://www.npmjs.com/package/express-session#resave) for more details." } - }, - { - "id": 13949, - "name": "skip", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true + ] + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 16917, + "name": "rolling", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the session identifier cookie should be force-set on every response. The default value is " }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A number indicating the number of records to skip before retrieving the results." - } - ] + { + "kind": "code", + "text": "`false`" }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "number" - } - ] + { + "kind": "text", + "text": ".\nRefer to [express-session’s documentation](https://www.npmjs.com/package/express-session#rolling) for more details." } - }, - { - "id": 13950, - "name": "take", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true + ] + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 16918, + "name": "saveUninitialized", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether a session that is \"uninitialized\" is forced to be saved to the store. The default value is " }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A number indicating the number of records to return in the result." - } - ] + { + "kind": "code", + "text": "`true`" }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "number" - } - ] + { + "kind": "text", + "text": ".\nRefer to [express-session’s documentation](https://www.npmjs.com/package/express-session#saveUninitialized) for more details." } - }, - { - "id": 13951, - "name": "relations", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true + ] + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 16919, + "name": "secret", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The secret to sign the session ID cookie. By default, the value of " }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An array of strings, each being relation names of the entity to retrieve in the result." - } - ] + { + "kind": "code", + "text": "`http.cookieSecret`" }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + { + "kind": "text", + "text": " is used.\nRefer to [express-session’s documentation](https://www.npmjs.com/package/express-session#secret) for details." } - }, - { - "id": 13952, - "name": "order", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 16920, + "name": "ttl", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Used when calculating the " }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An object used to specify how to sort the returned records. Its keys are the names of attributes of the entity, and a key's value can either be " - }, - { - "kind": "code", - "text": "`ASC`" - }, - { - "kind": "text", - "text": "\nto sort retrieved records in an ascending order, or " - }, - { - "kind": "code", - "text": "`DESC`" - }, - { - "kind": "text", - "text": " to sort retrieved records in a descending order." - } - ] + { + "kind": "code", + "text": "`Expires`" }, - "type": { - "type": "reflection", - "declaration": { - "id": 13953, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "indexSignatures": [ - { - "id": 13954, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "parameters": [ - { - "id": 13955, - "name": "K", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "ASC" - }, - { - "type": "literal", - "value": "DESC" - } - ] - } - } - ] - } - } - }, - { - "id": 13956, - "name": "withDeleted", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true + { + "kind": "text", + "text": " " }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A boolean indicating whether deleted records should also be retrieved as part of the result. This only works if the entity extends the\n" - }, - { - "kind": "code", - "text": "`SoftDeletableEntity`" - }, - { - "kind": "text", - "text": " class." - } - ] + { + "kind": "code", + "text": "`Set-Cookie`" }, - "type": { - "type": "intrinsic", - "name": "boolean" + { + "kind": "text", + "text": " attribute of cookies. By default, its value is " + }, + { + "kind": "code", + "text": "`10 * 60 * 60 * 1000`" + }, + { + "kind": "text", + "text": ".\nRefer to [express-session’s documentation](https://www.npmjs.com/package/express-session#cookiemaxage) for details." } - }, - { - "id": 13957, - "name": "filters", + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 16915, + 16916, + 16917, + 16918, + 16919, + 16920 + ] + } + ] + }, + { + "id": 13812, + "name": "CommonTypes", + "variant": "declaration", + "kind": 4, + "flags": {}, + "children": [ + { + "id": 13919, + "name": "LinkMethodRequest", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 13920, + "name": "__type", "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Enable ORM specific defined filters" + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 13921, + "name": "add", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" + { + "id": 13922, + "name": "remove", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, - { - "type": "intrinsic", - "name": "any" + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } - ], - "name": "Record", - "package": "typescript" - } - }, - { - "id": 13958, - "name": "options", + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 13921, + 13922 + ] + } + ] + } + } + }, + { + "id": 13923, + "name": "LinkWorkflowInput", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 13924, + "name": "__type", "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Enable ORM specific defined options" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 13925, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { "type": "intrinsic", "name": "string" + } + }, + { + "id": 13926, + "name": "add", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, - { - "type": "intrinsic", - "name": "any" + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } - ], - "name": "Record", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 13948, - 13949, - 13950, - 13951, - 13952, - 13956, - 13957, - 13958 + }, + { + "id": 13927, + "name": "remove", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 13925, + 13926, + 13927 + ] + } ] } - ], - "typeParameters": [ + }, + "extendedBy": [ { - "id": 13959, - "name": "Entity", - "variant": "typeParam", - "kind": 131072, - "flags": {} + "type": "reference", + "target": 16434, + "name": "BatchUpdateProductsOnCategoryWorkflowInput" } ] }, { - "id": 13995, - "name": "RequestQueryFields", + "id": 13928, + "name": "BatchMethodRequest", "variant": "declaration", - "kind": 256, + "kind": 2097152, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Fields that can be passed in the query parameters of a request." - } - ] - }, - "children": [ + "typeParameters": [ { - "id": 13996, - "name": "expand", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Comma-separated relations that should be expanded in the returned data." - } - ], - "blockTags": [ - { - "tag": "@deprecated", - "content": [ - { - "kind": "text", - "text": "Use " - }, - { - "kind": "code", - "text": "`fields`" - }, - { - "kind": "text", - "text": " instead and the relations will be inferred" - } - ] - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } + "id": 13933, + "name": "TCreate", + "variant": "typeParam", + "kind": 131072, + "flags": {} }, { - "id": 13997, - "name": "fields", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Comma-separated fields that should be included in the returned data.\nif a field is prefixed with " - }, - { - "kind": "code", - "text": "`+`" - }, - { - "kind": "text", - "text": " it will be added to the default fields, using " - }, - { - "kind": "code", - "text": "`-`" - }, - { - "kind": "text", - "text": " will remove it from the default fields.\nwithout prefix it will replace the entire default fields." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } + "id": 13934, + "name": "TUpdate", + "variant": "typeParam", + "kind": 131072, + "flags": {} }, { - "id": 13998, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The number of items to skip when retrieving a list." - } - ] - }, - "type": { + "id": 13935, + "name": "TDelete", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "default": { "type": "intrinsic", - "name": "number" + "name": "string" } - }, - { - "id": 13999, - "name": "limit", + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 13929, + "name": "__type", "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Limit the number of items returned in the list." + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 13930, + "name": "create", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 13933, + "name": "TCreate", + "package": "@medusajs/types", + "refersToTypeParameter": true + } } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 14000, - "name": "order", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The field to sort the data by. By default, the sort order is ascending. To change the order to descending, prefix the field name with " + }, + { + "id": 13931, + "name": "update", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, - { - "kind": "code", - "text": "`-`" + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 13934, + "name": "TUpdate", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + }, + { + "id": 13932, + "name": "delete", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, - { - "kind": "text", - "text": "." + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 13935, + "name": "TDelete", + "package": "@medusajs/types", + "refersToTypeParameter": true + } } - ] - }, - "type": { + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 13930, + 13931, + 13932 + ] + } + ] + } + } + }, + { + "id": 13936, + "name": "BatchMethodResponse", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 13945, + "name": "T", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 13937, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 13938, + "name": "created", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 13945, + "name": "T", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + }, + { + "id": 13939, + "name": "updated", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 13945, + "name": "T", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + }, + { + "id": 13940, + "name": "deleted", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 13941, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 13942, + "name": "ids", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 13943, + "name": "object", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 13944, + "name": "deleted", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 13942, + 13943, + 13944 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 13938, + 13939, + 13940 + ] + } + ] + } + } + }, + { + "id": 13946, + "name": "BatchWorkflowInput", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 13947, + "name": "TCreate", + "variant": "typeParam", + "kind": 131072, + "flags": {} + }, + { + "id": 13948, + "name": "TUpdate", + "variant": "typeParam", + "kind": 131072, + "flags": {} + }, + { + "id": 13949, + "name": "TDelete", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "default": { "type": "intrinsic", "name": "string" } } ], - "groups": [ + "type": { + "type": "reference", + "target": 13928, + "typeArguments": [ + { + "type": "reference", + "target": 13947, + "name": "TCreate", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 13948, + "name": "TUpdate", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "reference", + "target": 13949, + "name": "TDelete", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "BatchMethodRequest", + "package": "@medusajs/types" + } + }, + { + "id": 13950, + "name": "BatchWorkflowOutput", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ { - "title": "Properties", - "children": [ - 13996, - 13997, - 13998, - 13999, - 14000 - ] + "id": 13951, + "name": "T", + "variant": "typeParam", + "kind": 131072, + "flags": {} } - ] + ], + "type": { + "type": "reference", + "target": 13936, + "typeArguments": [ + { + "type": "reference", + "target": 13951, + "name": "T", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "BatchMethodResponse", + "package": "@medusajs/types" + } }, { - "id": 14001, - "name": "EmptyQueryParams", + "id": 14049, + "name": "CamelCase", "variant": "declaration", - "kind": 256, + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 14050, + "name": "Type", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 16921, + "typeArguments": [ + { + "type": "reference", + "target": 14050, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "IsStringLiteral", + "package": "@medusajs/types" + }, + "extendsType": { + "type": "literal", + "value": true + }, + "trueType": { + "type": "reference", + "target": 16923, + "typeArguments": [ + { + "type": "reference", + "target": 16926, + "typeArguments": [ + { + "type": "reference", + "target": 16928, + "typeArguments": [ + { + "type": "reference", + "target": 14050, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "SplitAnyCase", + "package": "@medusajs/types" + } + ], + "name": "CamelCapitalizer", + "package": "@medusajs/types" + } + ], + "name": "Join", + "package": "@medusajs/types" + }, + "falseType": { + "type": "reference", + "target": 14050, + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + }, + { + "id": 13813, + "name": "Prettify", + "variant": "declaration", + "kind": 2097152, "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "Requests that don't accept any query parameters can use this type." + "text": "Prettify complex types to a flat object structure" + } + ] + }, + "typeParameters": [ + { + "id": 13815, + "name": "T", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "intersection", + "types": [ + { + "type": "mapped", + "parameter": "K", + "parameterType": { + "type": "typeOperator", + "operator": "keyof", + "target": { + "type": "reference", + "target": 13815, + "name": "T", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + }, + "templateType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "K" + }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 13815, + "name": "T", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + }, + { + "type": "reflection", + "declaration": { + "id": 13814, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } } ] } }, { - "id": 14002, - "name": "RepositoryTransformOptions", + "id": 13816, + "name": "WithRequiredProperty", "variant": "declaration", - "kind": 256, + "kind": 2097152, "flags": {}, - "extendedBy": [ + "comment": { + "summary": [ + { + "kind": "text", + "text": "Utility type used to remove some optional attributes (coming from K) from a type T" + } + ] + }, + "typeParameters": [ { - "type": "reference", - "target": 16824, - "name": "ProductCategoryTransformOptions" + "id": 13817, + "name": "T", + "variant": "typeParam", + "kind": 131072, + "flags": {} + }, + { + "id": 13818, + "name": "K", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "typeOperator", + "operator": "keyof", + "target": { + "type": "reference", + "target": 13817, + "name": "T", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } } - ] + ], + "type": { + "type": "intersection", + "types": [ + { + "type": "reference", + "target": 13817, + "name": "T", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "mapped", + "parameter": "Property", + "parameterType": { + "type": "reference", + "target": 13818, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "templateType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "Property" + }, + "name": "Property", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 13817, + "name": "T", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + }, + "optionalModifier": "-" + } + ] + } }, { - "id": 14003, - "name": "DateComparisonOperator", + "id": 13822, + "name": "BaseEntity", "variant": "declaration", "kind": 256, "flags": {}, @@ -2244,50 +3149,41 @@ "summary": [ { "kind": "text", - "text": "Fields used to apply flexible filters on dates." + "text": "Representing a table in the database." } ] }, "children": [ { - "id": 14004, - "name": "lt", + "id": 13823, + "name": "id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The filtered date must be less than this value." + "text": "The ID of an entity's record." } ] }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" - }, - "name": "Date", - "package": "typescript" + "type": "intrinsic", + "name": "string" } }, { - "id": 14005, - "name": "gt", + "id": 13824, + "name": "created_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The filtered date must be greater than this value." + "text": "The date an entity's record was created." } ] }, @@ -2302,18 +3198,16 @@ } }, { - "id": 14006, - "name": "gte", + "id": 13825, + "name": "updated_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The filtered date must be greater than or equal to this value." + "text": "The date an entity's record was updated." } ] }, @@ -2326,20 +3220,111 @@ "name": "Date", "package": "typescript" } - }, + } + ], + "groups": [ { - "id": 14007, - "name": "lte", - "variant": "declaration", + "title": "Properties", + "children": [ + 13823, + 13824, + 13825 + ] + } + ], + "extendedBy": [ + { + "type": "reference", + "target": 13826, + "name": "SoftDeletableEntity" + } + ] + }, + { + "id": 13826, + "name": "SoftDeletableEntity", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Representing a deletable entity." + } + ] + }, + "children": [ + { + "id": 13828, + "name": "id", + "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, "comment": { "summary": [ { "kind": "text", - "text": "The filtered date must be less than or equal to this value." + "text": "The ID of an entity's record." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 13823, + "name": "BaseEntity.id" + } + }, + { + "id": 13829, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The date an entity's record was created." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + }, + "inheritedFrom": { + "type": "reference", + "target": 13824, + "name": "BaseEntity.created_at" + } + }, + { + "id": 13830, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The date an entity's record was updated." } ] }, @@ -2351,6 +3336,44 @@ }, "name": "Date", "package": "typescript" + }, + "inheritedFrom": { + "type": "reference", + "target": 13825, + "name": "BaseEntity.updated_at" + } + }, + { + "id": 13827, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The date an entity's record was deleted." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] } } ], @@ -2358,17 +3381,25 @@ { "title": "Properties", "children": [ - 14004, - 14005, - 14006, - 14007 + 13828, + 13829, + 13830, + 13827 ] } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 13822, + "name": "BaseEntity", + "package": "@medusajs/types" + } ] }, { - "id": 14008, - "name": "StringComparisonOperator", + "id": 13833, + "name": "FindConfig", "variant": "declaration", "kind": 256, "flags": {}, @@ -2376,14 +3407,22 @@ "summary": [ { "kind": "text", - "text": "Fields used to apply flexible filters on strings." + "text": "An object that is used to configure how an entity is retrieved from the database. It accepts as a typed parameter an " + }, + { + "kind": "code", + "text": "`Entity`" + }, + { + "kind": "text", + "text": " class,\nwhich provides correct typing of field names in its properties." } ] }, "children": [ { - "id": 14009, - "name": "lt", + "id": 13834, + "name": "select", "variant": "declaration", "kind": 1024, "flags": { @@ -2393,18 +3432,38 @@ "summary": [ { "kind": "text", - "text": "The filtered string must be less than this value." + "text": "An array of strings, each being attribute names of the entity to retrieve in the result." } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "typeOperator", + "operator": "keyof", + "target": { + "type": "reference", + "target": 13845, + "name": "Entity", + "package": "@medusajs/types", + "qualifiedName": "FindConfig.Entity", + "refersToTypeParameter": true + } + } + ] + } } }, { - "id": 14010, - "name": "gt", + "id": 13835, + "name": "skip", "variant": "declaration", "kind": 1024, "flags": { @@ -2414,18 +3473,27 @@ "summary": [ { "kind": "text", - "text": "The filtered string must be greater than this value." + "text": "A number indicating the number of records to skip before retrieving the results." } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] } }, { - "id": 14011, - "name": "gte", + "id": 13836, + "name": "take", "variant": "declaration", "kind": 1024, "flags": { @@ -2435,18 +3503,27 @@ "summary": [ { "kind": "text", - "text": "The filtered string must be greater than or equal to this value." + "text": "A number indicating the number of records to return in the result." } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] } }, { - "id": 14012, - "name": "lte", + "id": 13837, + "name": "relations", "variant": "declaration", "kind": 1024, "flags": { @@ -2456,18 +3533,21 @@ "summary": [ { "kind": "text", - "text": "The filtered string must be less than or equal to this value." + "text": "An array of strings, each being relation names of the entity to retrieve in the result." } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 14013, - "name": "contains", + "id": 13838, + "name": "order", "variant": "declaration", "kind": 1024, "flags": { @@ -2477,18 +3557,75 @@ "summary": [ { "kind": "text", - "text": "The filtered string must contain this value." + "text": "An object used to specify how to sort the returned records. Its keys are the names of attributes of the entity, and a key's value can either be " + }, + { + "kind": "code", + "text": "`ASC`" + }, + { + "kind": "text", + "text": "\nto sort retrieved records in an ascending order, or " + }, + { + "kind": "code", + "text": "`DESC`" + }, + { + "kind": "text", + "text": " to sort retrieved records in a descending order." } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 13839, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "indexSignatures": [ + { + "id": 13840, + "name": "__index", + "variant": "signature", + "kind": 8192, + "flags": {}, + "parameters": [ + { + "id": 13841, + "name": "K", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "ASC" + }, + { + "type": "literal", + "value": "DESC" + } + ] + } + } + ] + } } }, { - "id": 14014, - "name": "starts_with", + "id": 13842, + "name": "withDeleted", "variant": "declaration", "kind": 1024, "flags": { @@ -2498,18 +3635,26 @@ "summary": [ { "kind": "text", - "text": "The filtered string must start with this value." + "text": "A boolean indicating whether deleted records should also be retrieved as part of the result. This only works if the entity extends the\n" + }, + { + "kind": "code", + "text": "`SoftDeletableEntity`" + }, + { + "kind": "text", + "text": " class." } ] }, "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 14015, - "name": "ends_with", + "id": 13843, + "name": "filters", "variant": "declaration", "kind": 1024, "flags": { @@ -2519,13 +3664,64 @@ "summary": [ { "kind": "text", - "text": "The filtered string must end with this value." + "text": "Enable ORM specific defined filters" } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 13844, + "name": "options", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Enable ORM specific defined options" + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record", + "package": "typescript" } } ], @@ -2533,20 +3729,30 @@ { "title": "Properties", "children": [ - 14009, - 14010, - 14011, - 14012, - 14013, - 14014, - 14015 + 13834, + 13835, + 13836, + 13837, + 13838, + 13842, + 13843, + 13844 ] } + ], + "typeParameters": [ + { + "id": 13845, + "name": "Entity", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } ] }, { - "id": 14016, - "name": "NumericalComparisonOperator", + "id": 13881, + "name": "RequestQueryFields", "variant": "declaration", "kind": 256, "flags": {}, @@ -2554,14 +3760,14 @@ "summary": [ { "kind": "text", - "text": "Fields used to apply flexible filters on numbers." + "text": "Fields that can be passed in the query parameters of a request." } ] }, "children": [ { - "id": 14017, - "name": "lt", + "id": 13882, + "name": "expand", "variant": "declaration", "kind": 1024, "flags": { @@ -2571,18 +3777,37 @@ "summary": [ { "kind": "text", - "text": "The filtered number must be less than this value." + "text": "Comma-separated relations that should be expanded in the returned data." + } + ], + "blockTags": [ + { + "tag": "@deprecated", + "content": [ + { + "kind": "text", + "text": "Use " + }, + { + "kind": "code", + "text": "`fields`" + }, + { + "kind": "text", + "text": " instead and the relations will be inferred" + } + ] } ] }, "type": { "type": "intrinsic", - "name": "number" + "name": "string" } }, { - "id": 14018, - "name": "gt", + "id": 13883, + "name": "fields", "variant": "declaration", "kind": 1024, "flags": { @@ -2592,18 +3817,34 @@ "summary": [ { "kind": "text", - "text": "The filtered number must be greater than this value." + "text": "Comma-separated fields that should be included in the returned data.\nif a field is prefixed with " + }, + { + "kind": "code", + "text": "`+`" + }, + { + "kind": "text", + "text": " it will be added to the default fields, using " + }, + { + "kind": "code", + "text": "`-`" + }, + { + "kind": "text", + "text": " will remove it from the default fields.\nwithout prefix it will replace the entire default fields." } ] }, "type": { "type": "intrinsic", - "name": "number" + "name": "string" } }, { - "id": 14019, - "name": "gte", + "id": 13884, + "name": "offset", "variant": "declaration", "kind": 1024, "flags": { @@ -2613,7 +3854,7 @@ "summary": [ { "kind": "text", - "text": "The filtered number must be greater than or equal to this value." + "text": "The number of items to skip when retrieving a list." } ] }, @@ -2623,8 +3864,8 @@ } }, { - "id": 14020, - "name": "lte", + "id": 13885, + "name": "limit", "variant": "declaration", "kind": 1024, "flags": { @@ -2634,7 +3875,7 @@ "summary": [ { "kind": "text", - "text": "The filtered number must be less than or equal to this value." + "text": "Limit the number of items returned in the list." } ] }, @@ -2642,44 +3883,525 @@ "type": "intrinsic", "name": "number" } + }, + { + "id": 13886, + "name": "order", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The field to sort the data by. By default, the sort order is ascending. To change the order to descending, prefix the field name with " + }, + { + "kind": "code", + "text": "`-`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } } ], "groups": [ { "title": "Properties", "children": [ - 14017, - 14018, - 14019, - 14020 + 13882, + 13883, + 13884, + 13885, + 13886 ] } ] }, { - "id": 14023, - "name": "SnakeCase", + "id": 13887, + "name": "EmptyQueryParams", "variant": "declaration", - "kind": 2097152, + "kind": 256, "flags": {}, - "typeParameters": [ + "comment": { + "summary": [ + { + "kind": "text", + "text": "Requests that don't accept any query parameters can use this type." + } + ] + } + }, + { + "id": 13888, + "name": "RepositoryTransformOptions", + "variant": "declaration", + "kind": 256, + "flags": {}, + "extendedBy": [ { - "id": 14024, - "name": "S", - "variant": "typeParam", - "kind": 131072, - "flags": {}, + "type": "reference", + "target": 16823, + "name": "ProductCategoryTransformOptions" + } + ] + }, + { + "id": 13889, + "name": "DateComparisonOperator", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Fields used to apply flexible filters on dates." + } + ] + }, + "children": [ + { + "id": 13890, + "name": "lt", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered date must be less than this value." + } + ] + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" } - } + }, + { + "id": 13891, + "name": "gt", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered date must be greater than this value." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + }, + { + "id": 13892, + "name": "gte", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered date must be greater than or equal to this value." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + }, + { + "id": 13893, + "name": "lte", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered date must be less than or equal to this value." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 13890, + 13891, + 13892, + 13893 + ] + } + ] + }, + { + "id": 13894, + "name": "StringComparisonOperator", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Fields used to apply flexible filters on strings." + } + ] + }, + "children": [ + { + "id": 13895, + "name": "lt", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered string must be less than this value." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 13896, + "name": "gt", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered string must be greater than this value." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 13897, + "name": "gte", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered string must be greater than or equal to this value." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 13898, + "name": "lte", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered string must be less than or equal to this value." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 13899, + "name": "contains", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered string must contain this value." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 13900, + "name": "starts_with", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered string must start with this value." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 13901, + "name": "ends_with", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered string must end with this value." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 13895, + 13896, + 13897, + 13898, + 13899, + 13900, + 13901 + ] + } + ] + }, + { + "id": 13902, + "name": "NumericalComparisonOperator", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Fields used to apply flexible filters on numbers." + } + ] + }, + "children": [ + { + "id": 13903, + "name": "lt", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered number must be less than this value." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 13904, + "name": "gt", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered number must be greater than this value." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 13905, + "name": "gte", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered number must be greater than or equal to this value." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 13906, + "name": "lte", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filtered number must be less than or equal to this value." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 13903, + 13904, + 13905, + 13906 + ] + } + ] + }, + { + "id": 13909, + "name": "SnakeCase", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 13910, + "name": "S", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } ], "type": { "type": "conditional", "checkType": { "type": "reference", - "target": 14024, + "target": 13910, "name": "S", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2775,7 +4497,7 @@ [ { "type": "reference", - "target": 14023, + "target": 13909, "typeArguments": [ { "type": "templateLiteral", @@ -2848,7 +4570,7 @@ [ { "type": "reference", - "target": 14023, + "target": 13909, "typeArguments": [ { "type": "templateLiteral", @@ -2893,7 +4615,7 @@ }, "falseType": { "type": "reference", - "target": 14024, + "target": 13910, "name": "S", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2901,14 +4623,14 @@ } }, { - "id": 14025, + "id": 13911, "name": "KebabCase", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 14026, + "id": 13912, "name": "S", "variant": "typeParam", "kind": 131072, @@ -2923,7 +4645,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 14026, + "target": 13912, "name": "S", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3019,7 +4741,7 @@ [ { "type": "reference", - "target": 14025, + "target": 13911, "typeArguments": [ { "type": "templateLiteral", @@ -3092,7 +4814,7 @@ [ { "type": "reference", - "target": 14025, + "target": 13911, "typeArguments": [ { "type": "templateLiteral", @@ -3137,7 +4859,7 @@ }, "falseType": { "type": "reference", - "target": 14026, + "target": 13912, "name": "S", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3145,7 +4867,7 @@ } }, { - "id": 14027, + "id": 13913, "name": "MetadataType", "variant": "declaration", "kind": 2097152, @@ -3180,7 +4902,7 @@ } }, { - "id": 14028, + "id": 13914, "name": "RawRounding", "variant": "declaration", "kind": 2097152, @@ -3188,14 +4910,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14029, + "id": 13915, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14030, + "id": 13916, "name": "value", "variant": "declaration", "kind": 1024, @@ -3206,7 +4928,7 @@ } }, { - "id": 14031, + "id": 13917, "name": "precision", "variant": "declaration", "kind": 1024, @@ -3221,8 +4943,8 @@ { "title": "Properties", "children": [ - 14030, - 14031 + 13916, + 13917 ] } ] @@ -3230,7 +4952,7 @@ } }, { - "id": 14066, + "id": 13952, "name": "AdminOptions", "variant": "declaration", "kind": 256, @@ -3245,7 +4967,7 @@ }, "children": [ { - "id": 14067, + "id": 13953, "name": "disable", "variant": "declaration", "kind": 1024, @@ -3282,7 +5004,7 @@ } }, { - "id": 14068, + "id": 13954, "name": "path", "variant": "declaration", "kind": 1024, @@ -3348,7 +5070,7 @@ } }, { - "id": 14069, + "id": 13955, "name": "outDir", "variant": "declaration", "kind": 1024, @@ -3377,7 +5099,7 @@ } }, { - "id": 14070, + "id": 13956, "name": "backendUrl", "variant": "declaration", "kind": 1024, @@ -3398,7 +5120,7 @@ } }, { - "id": 14071, + "id": 13957, "name": "vite", "variant": "declaration", "kind": 1024, @@ -3424,21 +5146,21 @@ "type": { "type": "reflection", "declaration": { - "id": 14072, + "id": 13958, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 14073, + "id": 13959, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14074, + "id": 13960, "name": "config", "variant": "param", "kind": 32768, @@ -3473,17 +5195,17 @@ { "title": "Properties", "children": [ - 14067, - 14068, - 14069, - 14070, - 14071 + 13953, + 13954, + 13955, + 13956, + 13957 ] } ] }, { - "id": 14075, + "id": 13961, "name": "HttpCompressionOptions", "variant": "declaration", "kind": 256, @@ -3498,7 +5220,7 @@ }, "children": [ { - "id": 14076, + "id": 13962, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -3527,7 +5249,7 @@ } }, { - "id": 14077, + "id": 13963, "name": "level", "variant": "declaration", "kind": 1024, @@ -3556,7 +5278,7 @@ } }, { - "id": 14078, + "id": 13964, "name": "memLevel", "variant": "declaration", "kind": 1024, @@ -3585,7 +5307,7 @@ } }, { - "id": 14079, + "id": 13965, "name": "threshold", "variant": "declaration", "kind": 1024, @@ -3627,16 +5349,16 @@ { "title": "Properties", "children": [ - 14076, - 14077, - 14078, - 14079 + 13962, + 13963, + 13964, + 13965 ] } ] }, { - "id": 14080, + "id": 13966, "name": "ProjectConfigOptions", "variant": "declaration", "kind": 256, @@ -3651,7 +5373,7 @@ }, "children": [ { - "id": 14081, + "id": 13967, "name": "databaseName", "variant": "declaration", "kind": 1024, @@ -3679,7 +5401,7 @@ "content": [ { "kind": "code", - "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n databaseName: process.env.DATABASE_NAME || \n \"medusa-store\",\n // ...\n },\n // ...\n})\n```" + "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n databaseName: process.env.DATABASE_NAME ||\n \"medusa-store\",\n // ...\n },\n // ...\n})\n```" } ] } @@ -3691,7 +5413,7 @@ } }, { - "id": 14082, + "id": 13968, "name": "databaseUrl", "variant": "declaration", "kind": 1024, @@ -3831,7 +5553,7 @@ } }, { - "id": 14083, + "id": 13969, "name": "databaseSchema", "variant": "declaration", "kind": 1024, @@ -3864,7 +5586,7 @@ } }, { - "id": 14084, + "id": 13970, "name": "databaseLogging", "variant": "declaration", "kind": 1024, @@ -3973,165 +5695,7 @@ } }, { - "id": 14086, - "name": "databaseExtra", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An object that includes additional configurations to pass to the database connection. You can pass any configuration. One defined configuration to pass is\n" - }, - { - "kind": "code", - "text": "`ssl`" - }, - { - "kind": "text", - "text": " which enables support for TLS/SSL connections.\n\nThis is useful for production databases, which can be supported by setting the " - }, - { - "kind": "code", - "text": "`rejectUnauthorized`" - }, - { - "kind": "text", - "text": " attribute of " - }, - { - "kind": "code", - "text": "`ssl`" - }, - { - "kind": "text", - "text": " object to " - }, - { - "kind": "code", - "text": "`false`" - }, - { - "kind": "text", - "text": ".\nDuring development, it’s recommended not to pass this option." - } - ], - "blockTags": [ - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n databaseExtra: process.env.NODE_ENV !== \"development\" ?\n { ssl: { rejectUnauthorized: false } } : {}\n // ...\n },\n // ...\n})\n```" - } - ] - } - ] - }, - "type": { - "type": "intersection", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - }, - { - "type": "reflection", - "declaration": { - "id": 14087, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 14088, - "name": "ssl", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Configure support for TLS/SSL connection" - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 14089, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 14090, - "name": "rejectUnauthorized", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Whether to fail connection if the server certificate is verified against the list of supplied CAs and the hostname and no match is found." - } - ] - }, - "type": { - "type": "literal", - "value": false - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14090 - ] - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14088 - ] - } - ] - } - } - ] - } - }, - { - "id": 14091, + "id": 13972, "name": "databaseDriverOptions", "variant": "declaration", "kind": 1024, @@ -4214,14 +5778,14 @@ { "type": "reflection", "declaration": { - "id": 14092, + "id": 13973, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14093, + "id": 13974, "name": "connection", "variant": "declaration", "kind": 1024, @@ -4231,14 +5795,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14094, + "id": 13975, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14095, + "id": 13976, "name": "ssl", "variant": "declaration", "kind": 1024, @@ -4256,14 +5820,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14096, + "id": 13977, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14097, + "id": 13978, "name": "rejectUnauthorized", "variant": "declaration", "kind": 1024, @@ -4288,7 +5852,7 @@ { "title": "Properties", "children": [ - 14097 + 13978 ] } ] @@ -4300,7 +5864,7 @@ { "title": "Properties", "children": [ - 14095 + 13976 ] } ] @@ -4312,7 +5876,7 @@ { "title": "Properties", "children": [ - 14093 + 13974 ] } ] @@ -4322,7 +5886,7 @@ } }, { - "id": 14098, + "id": 13979, "name": "redisUrl", "variant": "declaration", "kind": 1024, @@ -4358,7 +5922,7 @@ "content": [ { "kind": "code", - "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n redisUrl: process.env.REDIS_URL || \n \"redis://localhost:6379\",\n // ...\n },\n // ...\n})\n```" + "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n redisUrl: process.env.REDIS_URL ||\n \"redis://localhost:6379\",\n // ...\n },\n // ...\n})\n```" } ] } @@ -4370,7 +5934,7 @@ } }, { - "id": 14099, + "id": 13980, "name": "redisPrefix", "variant": "declaration", "kind": 1024, @@ -4418,7 +5982,7 @@ } }, { - "id": 14100, + "id": 13981, "name": "redisOptions", "variant": "declaration", "kind": 1024, @@ -4438,7 +6002,7 @@ "content": [ { "kind": "code", - "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n redisOptions: {\n connectionName: process.env.REDIS_CONNECTION_NAME || \n \"medusa\",\n }\n // ...\n },\n // ...\n})\n```" + "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n redisOptions: {\n connectionName: process.env.REDIS_CONNECTION_NAME ||\n \"medusa\",\n }\n // ...\n },\n // ...\n})\n```" } ] } @@ -4455,7 +6019,7 @@ } }, { - "id": 14101, + "id": 13982, "name": "sessionOptions", "variant": "declaration", "kind": 1024, @@ -4483,13 +6047,13 @@ }, "type": { "type": "reference", - "target": 16915, + "target": 16914, "name": "SessionOptions", "package": "@medusajs/types" } }, { - "id": 14103, + "id": 13984, "name": "jobsBatchSize", "variant": "declaration", "kind": 1024, @@ -4529,7 +6093,7 @@ } }, { - "id": 14104, + "id": 13985, "name": "workerMode", "variant": "declaration", "kind": 1024, @@ -4606,7 +6170,7 @@ } }, { - "id": 14105, + "id": 13986, "name": "http", "variant": "declaration", "kind": 1024, @@ -4633,14 +6197,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14106, + "id": 13987, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14107, + "id": 13988, "name": "jwtSecret", "variant": "declaration", "kind": 1024, @@ -4680,7 +6244,7 @@ } }, { - "id": 14108, + "id": 13989, "name": "jwtExpiresIn", "variant": "declaration", "kind": 1024, @@ -4720,7 +6284,7 @@ } }, { - "id": 14109, + "id": 13990, "name": "cookieSecret", "variant": "declaration", "kind": 1024, @@ -4760,7 +6324,7 @@ } }, { - "id": 14110, + "id": 13991, "name": "authCors", "variant": "declaration", "kind": 1024, @@ -4874,7 +6438,7 @@ } }, { - "id": 14111, + "id": 13992, "name": "compression", "variant": "declaration", "kind": 1024, @@ -4910,13 +6474,13 @@ }, "type": { "type": "reference", - "target": 14075, + "target": 13961, "name": "HttpCompressionOptions", "package": "@medusajs/types" } }, { - "id": 14112, + "id": 13993, "name": "storeCors", "variant": "declaration", "kind": 1024, @@ -5022,7 +6586,7 @@ } }, { - "id": 14113, + "id": 13994, "name": "adminCors", "variant": "declaration", "kind": 1024, @@ -5128,7 +6692,7 @@ } }, { - "id": 14114, + "id": 13995, "name": "authMethodsPerActor", "variant": "declaration", "kind": 1024, @@ -5218,14 +6782,14 @@ { "title": "Properties", "children": [ - 14107, - 14108, - 14109, - 14110, - 14111, - 14112, - 14113, - 14114 + 13988, + 13989, + 13990, + 13991, + 13992, + 13993, + 13994, + 13995 ] } ] @@ -5237,25 +6801,24 @@ { "title": "Properties", "children": [ - 14081, - 14082, - 14083, - 14084, - 14086, - 14091, - 14098, - 14099, - 14100, - 14101, - 14103, - 14104, - 14105 + 13967, + 13968, + 13969, + 13970, + 13972, + 13979, + 13980, + 13981, + 13982, + 13984, + 13985, + 13986 ] } ] }, { - "id": 14115, + "id": 13996, "name": "ConfigModule", "variant": "declaration", "kind": 256, @@ -5286,7 +6849,7 @@ "kind": "inline-tag", "tag": "@link", "text": "projectConfig", - "target": 14116, + "target": 13997, "tsLinkText": "projectConfig" }, { @@ -5297,7 +6860,7 @@ "kind": "inline-tag", "tag": "@link", "text": "admin", - "target": 14117, + "target": 13998, "tsLinkText": "admin" }, { @@ -5322,7 +6885,7 @@ "kind": "inline-tag", "tag": "@link", "text": "modules", - "target": 14122, + "target": 14003, "tsLinkText": "modules" }, { @@ -5333,7 +6896,7 @@ "kind": "inline-tag", "tag": "@link", "text": "featureFlags", - "target": 14123, + "target": 14004, "tsLinkText": "featureFlags" }, { @@ -5368,7 +6931,7 @@ }, "children": [ { - "id": 14116, + "id": 13997, "name": "projectConfig", "variant": "declaration", "kind": 1024, @@ -5383,13 +6946,13 @@ }, "type": { "type": "reference", - "target": 14080, + "target": 13966, "name": "ProjectConfigOptions", "package": "@medusajs/types" } }, { - "id": 14117, + "id": 13998, "name": "admin", "variant": "declaration", "kind": 1024, @@ -5409,7 +6972,7 @@ "content": [ { "kind": "code", - "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n admin: {\n backendUrl: process.env.MEDUSA_BACKEND_URL || \n \"http://localhost:9000\"\n },\n // ...\n})\n```" + "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n admin: {\n backendUrl: process.env.MEDUSA_BACKEND_URL ||\n \"http://localhost:9000\"\n },\n // ...\n})\n```" } ] } @@ -5417,13 +6980,13 @@ }, "type": { "type": "reference", - "target": 14066, + "target": 13952, "name": "AdminOptions", "package": "@medusajs/types" } }, { - "id": 14122, + "id": 14003, "name": "modules", "variant": "declaration", "kind": 1024, @@ -5535,13 +7098,13 @@ "types": [ { "type": "reference", - "target": 15808, + "target": 15781, "name": "InternalModuleDeclaration", "package": "@medusajs/types" }, { "type": "reference", - "target": 15819, + "target": 15792, "name": "ExternalModuleDeclaration", "package": "@medusajs/types" } @@ -5559,7 +7122,7 @@ } }, { - "id": 14123, + "id": 14004, "name": "featureFlags", "variant": "declaration", "kind": 1024, @@ -5637,16 +7200,16 @@ { "title": "Properties", "children": [ - 14116, - 14117, - 14122, - 14123 + 13997, + 13998, + 14003, + 14004 ] } ] }, { - "id": 14124, + "id": 14005, "name": "PluginDetails", "variant": "declaration", "kind": 2097152, @@ -5654,14 +7217,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14125, + "id": 14006, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14126, + "id": 14007, "name": "resolve", "variant": "declaration", "kind": 1024, @@ -5672,7 +7235,7 @@ } }, { - "id": 14127, + "id": 14008, "name": "name", "variant": "declaration", "kind": 1024, @@ -5683,7 +7246,7 @@ } }, { - "id": 14128, + "id": 14009, "name": "id", "variant": "declaration", "kind": 1024, @@ -5694,7 +7257,7 @@ } }, { - "id": 14129, + "id": 14010, "name": "options", "variant": "declaration", "kind": 1024, @@ -5720,7 +7283,7 @@ } }, { - "id": 14130, + "id": 14011, "name": "version", "variant": "declaration", "kind": 1024, @@ -5735,11 +7298,11 @@ { "title": "Properties", "children": [ - 14126, - 14127, - 14128, - 14129, - 14130 + 14007, + 14008, + 14009, + 14010, + 14011 ] } ] @@ -5747,7 +7310,7 @@ } }, { - "id": 14131, + "id": 14012, "name": "ExecArgs", "variant": "declaration", "kind": 2097152, @@ -5755,27 +7318,27 @@ "type": { "type": "reflection", "declaration": { - "id": 14132, + "id": 14013, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14133, + "id": 14014, "name": "container", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 14136, + "target": 14017, "name": "MedusaContainer", "package": "@medusajs/types" } }, { - "id": 14134, + "id": 14015, "name": "args", "variant": "declaration", "kind": 1024, @@ -5793,8 +7356,8 @@ { "title": "Properties", "children": [ - 14133, - 14134 + 14014, + 14015 ] } ] @@ -5802,7 +7365,7 @@ } }, { - "id": 14135, + "id": 14016, "name": "ModuleImplementations", "variant": "declaration", "kind": 256, @@ -5817,7 +7380,7 @@ } }, { - "id": 14136, + "id": 14017, "name": "MedusaContainer", "variant": "declaration", "kind": 2097152, @@ -5832,7 +7395,7 @@ }, "typeParameters": [ { - "id": 14156, + "id": 14037, "name": "Cradle", "variant": "typeParam", "kind": 131072, @@ -5843,7 +7406,7 @@ }, "default": { "type": "reference", - "target": 14135, + "target": 14016, "name": "ModuleImplementations", "package": "@medusajs/types" } @@ -5879,28 +7442,28 @@ { "type": "reflection", "declaration": { - "id": 14137, + "id": 14018, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14138, + "id": 14019, "name": "resolve", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14139, + "id": 14020, "name": "resolve", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 14140, + "id": 14021, "name": "K", "variant": "typeParam", "kind": 131072, @@ -5926,21 +7489,21 @@ ], "parameters": [ { - "id": 14141, + "id": 14022, "name": "key", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 14140, + "target": 14021, "name": "K", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 14142, + "id": 14023, "name": "resolveOptions", "variant": "param", "kind": 32768, @@ -5962,14 +7525,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 14140, + "target": 14021, "name": "K", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 14156, + "target": 14037, "name": "Cradle", "package": "@medusajs/types", "refersToTypeParameter": true @@ -5977,14 +7540,14 @@ } }, { - "id": 14143, + "id": 14024, "name": "resolve", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 14144, + "id": 14025, "name": "T", "variant": "typeParam", "kind": 131072, @@ -5993,7 +7556,7 @@ ], "parameters": [ { - "id": 14145, + "id": 14026, "name": "key", "variant": "param", "kind": 32768, @@ -6004,7 +7567,7 @@ } }, { - "id": 14146, + "id": 14027, "name": "resolveOptions", "variant": "param", "kind": 32768, @@ -6024,7 +7587,7 @@ ], "type": { "type": "reference", - "target": 14144, + "target": 14025, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -6037,7 +7600,7 @@ { "title": "Methods", "children": [ - 14138 + 14019 ] } ] @@ -6047,7 +7610,7 @@ } }, { - "id": 14157, + "id": 14038, "name": "ContainerLike", "variant": "declaration", "kind": 2097152, @@ -6055,28 +7618,28 @@ "type": { "type": "reflection", "declaration": { - "id": 14158, + "id": 14039, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14159, + "id": 14040, "name": "resolve", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14160, + "id": 14041, "name": "resolve", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 14161, + "id": 14042, "name": "T", "variant": "typeParam", "kind": 131072, @@ -6089,7 +7652,7 @@ ], "parameters": [ { - "id": 14162, + "id": 14043, "name": "key", "variant": "param", "kind": 32768, @@ -6102,7 +7665,7 @@ ], "type": { "type": "reference", - "target": 14161, + "target": 14042, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -6115,7 +7678,7 @@ { "title": "Methods", "children": [ - 14159 + 14040 ] } ] @@ -6123,7 +7686,7 @@ } }, { - "id": 14032, + "id": 13918, "name": "RuleOperatorType", "variant": "declaration", "kind": 2097152, @@ -6175,14 +7738,14 @@ } }, { - "id": 14163, + "id": 14044, "name": "WithCalculatedPrice", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14164, + "id": 14045, "name": "calculated_price", "variant": "declaration", "kind": 1024, @@ -6190,14 +7753,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14165, + "id": 14046, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14166, + "id": 14047, "name": "calculated_amount", "variant": "declaration", "kind": 1024, @@ -6206,13 +7769,27 @@ "type": "intrinsic", "name": "number" } + }, + { + "id": 14048, + "name": "is_calculated_price_tax_inclusive", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } } ], "groups": [ { "title": "Properties", "children": [ - 14166 + 14047, + 14048 ] } ] @@ -6224,7 +7801,7 @@ { "title": "Properties", "children": [ - 14164 + 14045 ] } ] @@ -6234,56 +7811,58 @@ { "title": "Interfaces", "children": [ - 13936, - 13940, - 13947, - 13995, - 14001, - 14002, - 14003, - 14008, + 13822, + 13826, + 13833, + 13881, + 13887, + 13888, + 13889, + 13894, + 13902, + 13952, + 13961, + 13966, + 13996, 14016, - 14066, - 14075, - 14080, - 14115, - 14135, - 14163 + 14044 ] }, { "title": "Type Aliases", "children": [ - 14033, - 14037, - 14042, - 14050, - 14060, - 14064, - 13930, - 14023, - 14025, - 14027, - 14028, - 14124, - 14131, - 14136, - 14157, - 14032 + 13919, + 13923, + 13928, + 13936, + 13946, + 13950, + 14049, + 13813, + 13816, + 13909, + 13911, + 13913, + 13914, + 14005, + 14012, + 14017, + 14038, + 13918 ] } ] }, { - "id": 14167, + "id": 14051, "name": "DAL", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 14354, - "name": "EntityDateColumns", + "id": 14238, + "name": "ModelDateColumns", "variant": "declaration", "kind": 2097152, "flags": {}, @@ -6302,8 +7881,8 @@ } }, { - "id": 14355, - "name": "SoftDeletableEntityDateColumns", + "id": 14239, + "name": "SoftDeletableModelDateColumns", "variant": "declaration", "kind": 2097152, "flags": {}, @@ -6316,15 +7895,15 @@ }, { "type": "reference", - "target": 14354, - "name": "EntityDateColumns", + "target": 14238, + "name": "ModelDateColumns", "package": "@medusajs/types" } ] } }, { - "id": 14196, + "id": 14080, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -6339,7 +7918,7 @@ }, "children": [ { - "id": 14197, + "id": 14081, "name": "$and", "variant": "declaration", "kind": 1024, @@ -6361,11 +7940,11 @@ "types": [ { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 14199, + "target": 14083, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -6377,7 +7956,7 @@ }, { "type": "reference", - "target": 14199, + "target": 14083, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -6388,7 +7967,7 @@ } }, { - "id": 14198, + "id": 14082, "name": "$or", "variant": "declaration", "kind": 1024, @@ -6410,11 +7989,11 @@ "types": [ { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 14199, + "target": 14083, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -6426,7 +8005,7 @@ }, { "type": "reference", - "target": 14199, + "target": 14083, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -6441,14 +8020,14 @@ { "title": "Properties", "children": [ - 14197, - 14198 + 14081, + 14082 ] } ], "typeParameters": [ { - "id": 14199, + "id": 14083, "name": "T", "variant": "typeParam", "kind": 131072, @@ -6458,48 +8037,58 @@ "extendedBy": [ { "type": "reference", - "target": 14885, + "target": 14810, "name": "AdminPriceListListParams" }, { "type": "reference", - "target": 15003, + "target": 14928, + "name": "AdminProductTagListParams" + }, + { + "type": "reference", + "target": 14971, "name": "AdminProductTypeListParams" }, { "type": "reference", - "target": 15422, + "target": 15326, + "name": "AdminTaxRegionListParams" + }, + { + "type": "reference", + "target": 15395, "name": "FilterableInventoryLevelProps" }, { "type": "reference", - "target": 16104, + "target": 16078, "name": "FilterableNotificationProps" }, { "type": "reference", - "target": 16252, + "target": 16226, "name": "FilterableStockLocationProps" }, { "type": "reference", - "target": 16482, + "target": 16456, "name": "FilterableWorkflowExecutionProps" }, { "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters" + "target": 16980, + "name": "BaseCollectionListParams" }, { "type": "reference", - "target": 17008, + "target": 17021, "name": "BaseProductCategoryListParams" } ] }, { - "id": 14200, + "id": 14084, "name": "OptionsQuery", "variant": "declaration", "kind": 256, @@ -6514,7 +8103,7 @@ }, "children": [ { - "id": 14201, + "id": 14085, "name": "populate", "variant": "declaration", "kind": 1024, @@ -6538,7 +8127,7 @@ } }, { - "id": 14202, + "id": 14086, "name": "orderBy", "variant": "declaration", "kind": 1024, @@ -6558,11 +8147,11 @@ "types": [ { "type": "reference", - "target": 16927, + "target": 16935, "typeArguments": [ { "type": "reference", - "target": 14208, + "target": 14092, "name": "T", "package": "@medusajs/types", "qualifiedName": "OptionsQuery.T", @@ -6576,11 +8165,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16927, + "target": 16935, "typeArguments": [ { "type": "reference", - "target": 14208, + "target": 14092, "name": "T", "package": "@medusajs/types", "qualifiedName": "OptionsQuery.T", @@ -6595,7 +8184,7 @@ } }, { - "id": 14203, + "id": 14087, "name": "limit", "variant": "declaration", "kind": 1024, @@ -6616,7 +8205,7 @@ } }, { - "id": 14204, + "id": 14088, "name": "offset", "variant": "declaration", "kind": 1024, @@ -6637,7 +8226,7 @@ } }, { - "id": 14205, + "id": 14089, "name": "fields", "variant": "declaration", "kind": 1024, @@ -6661,7 +8250,7 @@ } }, { - "id": 14206, + "id": 14090, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -6694,7 +8283,7 @@ } }, { - "id": 14207, + "id": 14091, "name": "filters", "variant": "declaration", "kind": 1024, @@ -6725,7 +8314,7 @@ }, { "type": "reference", - "target": 16929, + "target": 16937, "typeArguments": [ { "type": "union", @@ -6736,7 +8325,7 @@ }, { "type": "reference", - "target": 16929, + "target": 16937, "name": "Dictionary", "package": "@medusajs/types" } @@ -6754,26 +8343,26 @@ { "title": "Properties", "children": [ - 14201, - 14202, - 14203, - 14204, - 14205, - 14206, - 14207 + 14085, + 14086, + 14087, + 14088, + 14089, + 14090, + 14091 ] } ], "typeParameters": [ { - "id": 14208, + "id": 14092, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 14209, + "id": 14093, "name": "P", "variant": "typeParam", "kind": 131072, @@ -6790,7 +8379,7 @@ ] }, { - "id": 14210, + "id": 14094, "name": "FindOptions", "variant": "declaration", "kind": 256, @@ -6805,7 +8394,7 @@ }, "children": [ { - "id": 14211, + "id": 14095, "name": "where", "variant": "declaration", "kind": 1024, @@ -6857,7 +8446,7 @@ }, "objectType": { "type": "reference", - "target": 14219, + "target": 14103, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -6913,7 +8502,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "indexedAccess", @@ -6948,7 +8537,7 @@ }, "objectType": { "type": "reference", - "target": 14219, + "target": 14103, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -6979,21 +8568,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 14212, + "id": 14096, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 14213, + "id": 14097, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 14214, + "id": 14098, "name": "x", "variant": "param", "kind": 32768, @@ -7149,7 +8738,7 @@ }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "mapped", @@ -7187,7 +8776,7 @@ }, "objectType": { "type": "reference", - "target": 14219, + "target": 14103, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -7243,7 +8832,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "indexedAccess", @@ -7278,7 +8867,7 @@ }, "objectType": { "type": "reference", - "target": 14219, + "target": 14103, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -7309,21 +8898,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 14215, + "id": 14099, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 14216, + "id": 14100, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 14217, + "id": 14101, "name": "x", "variant": "param", "kind": 32768, @@ -7425,7 +9014,7 @@ } }, { - "id": 14218, + "id": 14102, "name": "options", "variant": "declaration", "kind": 1024, @@ -7442,11 +9031,11 @@ }, "type": { "type": "reference", - "target": 14200, + "target": 14084, "typeArguments": [ { "type": "reference", - "target": 14219, + "target": 14103, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -7465,14 +9054,14 @@ { "title": "Properties", "children": [ - 14211, - 14218 + 14095, + 14102 ] } ], "typeParameters": [ { - "id": 14219, + "id": 14103, "name": "T", "variant": "typeParam", "kind": 131072, @@ -7485,7 +9074,7 @@ ] }, { - "id": 14220, + "id": 14104, "name": "UpsertWithReplaceConfig", "variant": "declaration", "kind": 256, @@ -7500,7 +9089,7 @@ }, "children": [ { - "id": 14221, + "id": 14105, "name": "relations", "variant": "declaration", "kind": 1024, @@ -7522,7 +9111,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 14222, + "target": 14106, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -7535,13 +9124,13 @@ { "title": "Properties", "children": [ - 14221 + 14105 ] } ], "typeParameters": [ { - "id": 14222, + "id": 14106, "name": "T", "variant": "typeParam", "kind": 131072, @@ -7550,7 +9139,7 @@ ] }, { - "id": 14223, + "id": 14107, "name": "PerformedActions", "variant": "declaration", "kind": 2097152, @@ -7558,14 +9147,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14224, + "id": 14108, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14225, + "id": 14109, "name": "created", "variant": "declaration", "kind": 1024, @@ -7579,13 +9168,13 @@ "typeArguments": [ { "type": "reference", - "target": 16934, + "target": 16942, "name": "EntityClassName", "package": "@medusajs/types" }, { "type": "reference", - "target": 16935, + "target": 16943, "name": "EntityValues", "package": "@medusajs/types" } @@ -7595,7 +9184,7 @@ } }, { - "id": 14226, + "id": 14110, "name": "updated", "variant": "declaration", "kind": 1024, @@ -7609,13 +9198,13 @@ "typeArguments": [ { "type": "reference", - "target": 16934, + "target": 16942, "name": "EntityClassName", "package": "@medusajs/types" }, { "type": "reference", - "target": 16935, + "target": 16943, "name": "EntityValues", "package": "@medusajs/types" } @@ -7625,7 +9214,7 @@ } }, { - "id": 14227, + "id": 14111, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -7639,13 +9228,13 @@ "typeArguments": [ { "type": "reference", - "target": 16934, + "target": 16942, "name": "EntityClassName", "package": "@medusajs/types" }, { "type": "reference", - "target": 16935, + "target": 16943, "name": "EntityValues", "package": "@medusajs/types" } @@ -7659,9 +9248,9 @@ { "title": "Properties", "children": [ - 14225, - 14226, - 14227 + 14109, + 14110, + 14111 ] } ] @@ -7669,7 +9258,7 @@ } }, { - "id": 14228, + "id": 14112, "name": "RepositoryService", "variant": "declaration", "kind": 256, @@ -7684,7 +9273,7 @@ }, "children": [ { - "id": 14281, + "id": 14165, "name": "transaction", "variant": "declaration", "kind": 2048, @@ -7693,7 +9282,7 @@ }, "signatures": [ { - "id": 14282, + "id": 14166, "name": "transaction", "variant": "signature", "kind": 4096, @@ -7702,7 +9291,7 @@ }, "typeParameters": [ { - "id": 14283, + "id": 14167, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -7715,7 +9304,7 @@ ], "parameters": [ { - "id": 14284, + "id": 14168, "name": "task", "variant": "param", "kind": 32768, @@ -7723,28 +9312,28 @@ "type": { "type": "reflection", "declaration": { - "id": 14285, + "id": 14169, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 14286, + "id": 14170, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14287, + "id": 14171, "name": "transactionManager", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 14283, + "target": 14167, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true @@ -7772,7 +9361,7 @@ } }, { - "id": 14288, + "id": 14172, "name": "context", "variant": "param", "kind": 32768, @@ -7782,14 +9371,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14289, + "id": 14173, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14290, + "id": 14174, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -7802,7 +9391,7 @@ } }, { - "id": 14291, + "id": 14175, "name": "transaction", "variant": "declaration", "kind": 1024, @@ -7811,14 +9400,14 @@ }, "type": { "type": "reference", - "target": 14283, + "target": 14167, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 14292, + "id": 14176, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -7835,9 +9424,9 @@ { "title": "Properties", "children": [ - 14290, - 14291, - 14292 + 14174, + 14175, + 14176 ] } ] @@ -7862,19 +9451,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 16940, + "target": 16948, "name": "BaseRepositoryService.transaction" } } ], "inheritedFrom": { "type": "reference", - "target": 16939, + "target": 16947, "name": "BaseRepositoryService.transaction" } }, { - "id": 14293, + "id": 14177, "name": "getFreshManager", "variant": "declaration", "kind": 2048, @@ -7883,7 +9472,7 @@ }, "signatures": [ { - "id": 14294, + "id": 14178, "name": "getFreshManager", "variant": "signature", "kind": 4096, @@ -7892,7 +9481,7 @@ }, "typeParameters": [ { - "id": 14295, + "id": 14179, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -7905,26 +9494,26 @@ ], "type": { "type": "reference", - "target": 14295, + "target": 14179, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true }, "inheritedFrom": { "type": "reference", - "target": 16952, + "target": 16960, "name": "BaseRepositoryService.getFreshManager" } } ], "inheritedFrom": { "type": "reference", - "target": 16951, + "target": 16959, "name": "BaseRepositoryService.getFreshManager" } }, { - "id": 14296, + "id": 14180, "name": "getActiveManager", "variant": "declaration", "kind": 2048, @@ -7933,7 +9522,7 @@ }, "signatures": [ { - "id": 14297, + "id": 14181, "name": "getActiveManager", "variant": "signature", "kind": 4096, @@ -7942,7 +9531,7 @@ }, "typeParameters": [ { - "id": 14298, + "id": 14182, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -7955,26 +9544,26 @@ ], "type": { "type": "reference", - "target": 14298, + "target": 14182, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true }, "inheritedFrom": { "type": "reference", - "target": 16955, + "target": 16963, "name": "BaseRepositoryService.getActiveManager" } } ], "inheritedFrom": { "type": "reference", - "target": 16954, + "target": 16962, "name": "BaseRepositoryService.getActiveManager" } }, { - "id": 14299, + "id": 14183, "name": "serialize", "variant": "declaration", "kind": 2048, @@ -7983,7 +9572,7 @@ }, "signatures": [ { - "id": 14300, + "id": 14184, "name": "serialize", "variant": "signature", "kind": 4096, @@ -7992,7 +9581,7 @@ }, "typeParameters": [ { - "id": 14301, + "id": 14185, "name": "TOutput", "variant": "typeParam", "kind": 131072, @@ -8017,7 +9606,7 @@ ], "parameters": [ { - "id": 14302, + "id": 14186, "name": "data", "variant": "param", "kind": 32768, @@ -8028,7 +9617,7 @@ } }, { - "id": 14303, + "id": 14187, "name": "options", "variant": "param", "kind": 32768, @@ -8050,7 +9639,7 @@ "typeArguments": [ { "type": "reference", - "target": 14301, + "target": 14185, "name": "TOutput", "package": "@medusajs/types", "refersToTypeParameter": true @@ -8061,33 +9650,33 @@ }, "inheritedFrom": { "type": "reference", - "target": 16958, + "target": 16966, "name": "BaseRepositoryService.serialize" } } ], "inheritedFrom": { "type": "reference", - "target": 16957, + "target": 16965, "name": "BaseRepositoryService.serialize" } }, { - "id": 14229, + "id": 14113, "name": "find", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14230, + "id": 14114, "name": "find", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14231, + "id": 14115, "name": "options", "variant": "param", "kind": 32768, @@ -8096,11 +9685,11 @@ }, "type": { "type": "reference", - "target": 14210, + "target": 14094, "typeArguments": [ { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -8112,7 +9701,7 @@ } }, { - "id": 14232, + "id": 14116, "name": "context", "variant": "param", "kind": 32768, @@ -8121,7 +9710,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -8138,7 +9727,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -8153,21 +9742,21 @@ ] }, { - "id": 14233, + "id": 14117, "name": "findAndCount", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14234, + "id": 14118, "name": "findAndCount", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14235, + "id": 14119, "name": "options", "variant": "param", "kind": 32768, @@ -8176,11 +9765,11 @@ }, "type": { "type": "reference", - "target": 14210, + "target": 14094, "typeArguments": [ { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -8192,7 +9781,7 @@ } }, { - "id": 14236, + "id": 14120, "name": "context", "variant": "param", "kind": 32768, @@ -8201,7 +9790,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -8221,7 +9810,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -8242,21 +9831,21 @@ ] }, { - "id": 14237, + "id": 14121, "name": "create", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14238, + "id": 14122, "name": "create", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14239, + "id": 14123, "name": "data", "variant": "param", "kind": 32768, @@ -8270,7 +9859,7 @@ } }, { - "id": 14240, + "id": 14124, "name": "context", "variant": "param", "kind": 32768, @@ -8279,7 +9868,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -8296,7 +9885,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -8311,21 +9900,21 @@ ] }, { - "id": 14241, + "id": 14125, "name": "update", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14242, + "id": 14126, "name": "update", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14243, + "id": 14127, "name": "data", "variant": "param", "kind": 32768, @@ -8335,14 +9924,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 14244, + "id": 14128, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14245, + "id": 14129, "name": "entity", "variant": "declaration", "kind": 1024, @@ -8353,7 +9942,7 @@ } }, { - "id": 14246, + "id": 14130, "name": "update", "variant": "declaration", "kind": 1024, @@ -8368,8 +9957,8 @@ { "title": "Properties", "children": [ - 14245, - 14246 + 14129, + 14130 ] } ] @@ -8378,7 +9967,7 @@ } }, { - "id": 14247, + "id": 14131, "name": "context", "variant": "param", "kind": 32768, @@ -8387,7 +9976,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -8404,7 +9993,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -8419,21 +10008,21 @@ ] }, { - "id": 14248, + "id": 14132, "name": "delete", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14249, + "id": 14133, "name": "delete", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14250, + "id": 14134, "name": "idsOrPKs", "variant": "param", "kind": 32768, @@ -8477,7 +10066,7 @@ }, "objectType": { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -8534,7 +10123,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "indexedAccess", @@ -8569,7 +10158,7 @@ }, "objectType": { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -8601,21 +10190,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 14251, + "id": 14135, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 14252, + "id": 14136, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 14253, + "id": 14137, "name": "x", "variant": "param", "kind": 32768, @@ -8771,7 +10360,7 @@ }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "mapped", @@ -8809,7 +10398,7 @@ }, "objectType": { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -8866,7 +10455,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "indexedAccess", @@ -8901,7 +10490,7 @@ }, "objectType": { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -8933,21 +10522,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 14254, + "id": 14138, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 14255, + "id": 14139, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 14256, + "id": 14140, "name": "x", "variant": "param", "kind": 32768, @@ -9049,7 +10638,7 @@ } }, { - "id": 14257, + "id": 14141, "name": "context", "variant": "param", "kind": 32768, @@ -9058,7 +10647,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -9083,14 +10672,14 @@ ] }, { - "id": 14258, + "id": 14142, "name": "softDelete", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14259, + "id": 14143, "name": "softDelete", "variant": "signature", "kind": 4096, @@ -9116,7 +10705,7 @@ }, "parameters": [ { - "id": 14260, + "id": 14144, "name": "idsOrFilter", "variant": "param", "kind": 32768, @@ -9138,7 +10727,7 @@ { "type": "reflection", "declaration": { - "id": 14261, + "id": 14145, "name": "__type", "variant": "declaration", "kind": 65536, @@ -9150,7 +10739,7 @@ "elementType": { "type": "reflection", "declaration": { - "id": 14262, + "id": 14146, "name": "__type", "variant": "declaration", "kind": 65536, @@ -9162,7 +10751,7 @@ } }, { - "id": 14263, + "id": 14147, "name": "context", "variant": "param", "kind": 32768, @@ -9171,7 +10760,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -9191,7 +10780,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -9230,21 +10819,21 @@ ] }, { - "id": 14264, + "id": 14148, "name": "restore", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14265, + "id": 14149, "name": "restore", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14266, + "id": 14150, "name": "idsOrFilter", "variant": "param", "kind": 32768, @@ -9262,7 +10851,7 @@ { "type": "reflection", "declaration": { - "id": 14267, + "id": 14151, "name": "__type", "variant": "declaration", "kind": 65536, @@ -9273,7 +10862,7 @@ } }, { - "id": 14268, + "id": 14152, "name": "context", "variant": "param", "kind": 32768, @@ -9282,7 +10871,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -9302,7 +10891,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -9341,21 +10930,21 @@ ] }, { - "id": 14269, + "id": 14153, "name": "upsert", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14270, + "id": 14154, "name": "upsert", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14271, + "id": 14155, "name": "data", "variant": "param", "kind": 32768, @@ -9369,7 +10958,7 @@ } }, { - "id": 14272, + "id": 14156, "name": "context", "variant": "param", "kind": 32768, @@ -9378,7 +10967,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -9395,7 +10984,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -9410,21 +10999,21 @@ ] }, { - "id": 14273, + "id": 14157, "name": "upsertWithReplace", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14274, + "id": 14158, "name": "upsertWithReplace", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14275, + "id": 14159, "name": "data", "variant": "param", "kind": 32768, @@ -9438,7 +11027,7 @@ } }, { - "id": 14276, + "id": 14160, "name": "config", "variant": "param", "kind": 32768, @@ -9447,11 +11036,11 @@ }, "type": { "type": "reference", - "target": 14220, + "target": 14104, "typeArguments": [ { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -9463,7 +11052,7 @@ } }, { - "id": 14277, + "id": 14161, "name": "context", "variant": "param", "kind": 32768, @@ -9472,7 +11061,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -9488,14 +11077,14 @@ { "type": "reflection", "declaration": { - "id": 14278, + "id": 14162, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14279, + "id": 14163, "name": "entities", "variant": "declaration", "kind": 1024, @@ -9504,7 +11093,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -9513,14 +11102,14 @@ } }, { - "id": 14280, + "id": 14164, "name": "performedActions", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 14223, + "target": 14107, "name": "PerformedActions", "package": "@medusajs/types" } @@ -9530,8 +11119,8 @@ { "title": "Properties", "children": [ - 14279, - 14280 + 14163, + 14164 ] } ] @@ -9549,25 +11138,25 @@ { "title": "Methods", "children": [ - 14281, - 14293, - 14296, - 14299, - 14229, - 14233, - 14237, - 14241, - 14248, - 14258, - 14264, - 14269, - 14273 + 14165, + 14177, + 14180, + 14183, + 14113, + 14117, + 14121, + 14125, + 14132, + 14142, + 14148, + 14153, + 14157 ] } ], "typeParameters": [ { - "id": 14304, + "id": 14188, "name": "T", "variant": "typeParam", "kind": 131072, @@ -9581,11 +11170,11 @@ "extendedTypes": [ { "type": "reference", - "target": 16938, + "target": 16946, "typeArguments": [ { "type": "reference", - "target": 14304, + "target": 14188, "name": "T", "package": "@medusajs/types", "qualifiedName": "RepositoryService.T", @@ -9598,7 +11187,7 @@ ] }, { - "id": 14305, + "id": 14189, "name": "TreeRepositoryService", "variant": "declaration", "kind": 256, @@ -9613,7 +11202,7 @@ }, "children": [ { - "id": 14324, + "id": 14208, "name": "transaction", "variant": "declaration", "kind": 2048, @@ -9622,7 +11211,7 @@ }, "signatures": [ { - "id": 14325, + "id": 14209, "name": "transaction", "variant": "signature", "kind": 4096, @@ -9631,7 +11220,7 @@ }, "typeParameters": [ { - "id": 14326, + "id": 14210, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -9644,7 +11233,7 @@ ], "parameters": [ { - "id": 14327, + "id": 14211, "name": "task", "variant": "param", "kind": 32768, @@ -9652,28 +11241,28 @@ "type": { "type": "reflection", "declaration": { - "id": 14328, + "id": 14212, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 14329, + "id": 14213, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14330, + "id": 14214, "name": "transactionManager", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 14283, + "target": 14167, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true @@ -9701,7 +11290,7 @@ } }, { - "id": 14331, + "id": 14215, "name": "context", "variant": "param", "kind": 32768, @@ -9711,14 +11300,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14332, + "id": 14216, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14333, + "id": 14217, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -9731,7 +11320,7 @@ } }, { - "id": 14334, + "id": 14218, "name": "transaction", "variant": "declaration", "kind": 1024, @@ -9740,14 +11329,14 @@ }, "type": { "type": "reference", - "target": 14283, + "target": 14167, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 14335, + "id": 14219, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -9764,9 +11353,9 @@ { "title": "Properties", "children": [ - 14333, - 14334, - 14335 + 14217, + 14218, + 14219 ] } ] @@ -9791,19 +11380,19 @@ }, "inheritedFrom": { "type": "reference", - "target": 16940, + "target": 16948, "name": "BaseRepositoryService.transaction" } } ], "inheritedFrom": { "type": "reference", - "target": 16939, + "target": 16947, "name": "BaseRepositoryService.transaction" } }, { - "id": 14336, + "id": 14220, "name": "getFreshManager", "variant": "declaration", "kind": 2048, @@ -9812,7 +11401,7 @@ }, "signatures": [ { - "id": 14337, + "id": 14221, "name": "getFreshManager", "variant": "signature", "kind": 4096, @@ -9821,7 +11410,7 @@ }, "typeParameters": [ { - "id": 14338, + "id": 14222, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -9834,26 +11423,26 @@ ], "type": { "type": "reference", - "target": 14295, + "target": 14179, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true }, "inheritedFrom": { "type": "reference", - "target": 16952, + "target": 16960, "name": "BaseRepositoryService.getFreshManager" } } ], "inheritedFrom": { "type": "reference", - "target": 16951, + "target": 16959, "name": "BaseRepositoryService.getFreshManager" } }, { - "id": 14339, + "id": 14223, "name": "getActiveManager", "variant": "declaration", "kind": 2048, @@ -9862,7 +11451,7 @@ }, "signatures": [ { - "id": 14340, + "id": 14224, "name": "getActiveManager", "variant": "signature", "kind": 4096, @@ -9871,7 +11460,7 @@ }, "typeParameters": [ { - "id": 14341, + "id": 14225, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -9884,26 +11473,26 @@ ], "type": { "type": "reference", - "target": 14298, + "target": 14182, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true }, "inheritedFrom": { "type": "reference", - "target": 16955, + "target": 16963, "name": "BaseRepositoryService.getActiveManager" } } ], "inheritedFrom": { "type": "reference", - "target": 16954, + "target": 16962, "name": "BaseRepositoryService.getActiveManager" } }, { - "id": 14342, + "id": 14226, "name": "serialize", "variant": "declaration", "kind": 2048, @@ -9912,7 +11501,7 @@ }, "signatures": [ { - "id": 14343, + "id": 14227, "name": "serialize", "variant": "signature", "kind": 4096, @@ -9921,7 +11510,7 @@ }, "typeParameters": [ { - "id": 14344, + "id": 14228, "name": "TOutput", "variant": "typeParam", "kind": 131072, @@ -9946,7 +11535,7 @@ ], "parameters": [ { - "id": 14345, + "id": 14229, "name": "data", "variant": "param", "kind": 32768, @@ -9957,7 +11546,7 @@ } }, { - "id": 14346, + "id": 14230, "name": "options", "variant": "param", "kind": 32768, @@ -9979,7 +11568,7 @@ "typeArguments": [ { "type": "reference", - "target": 14301, + "target": 14185, "name": "TOutput", "package": "@medusajs/types", "refersToTypeParameter": true @@ -9990,33 +11579,33 @@ }, "inheritedFrom": { "type": "reference", - "target": 16958, + "target": 16966, "name": "BaseRepositoryService.serialize" } } ], "inheritedFrom": { "type": "reference", - "target": 16957, + "target": 16965, "name": "BaseRepositoryService.serialize" } }, { - "id": 14306, + "id": 14190, "name": "find", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14307, + "id": 14191, "name": "find", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14308, + "id": 14192, "name": "options", "variant": "param", "kind": 32768, @@ -10025,11 +11614,11 @@ }, "type": { "type": "reference", - "target": 14210, + "target": 14094, "typeArguments": [ { "type": "reference", - "target": 14347, + "target": 14231, "name": "T", "package": "@medusajs/types", "qualifiedName": "TreeRepositoryService.T", @@ -10041,7 +11630,7 @@ } }, { - "id": 14309, + "id": 14193, "name": "transformOptions", "variant": "param", "kind": 32768, @@ -10050,13 +11639,13 @@ }, "type": { "type": "reference", - "target": 14002, + "target": 13888, "name": "RepositoryTransformOptions", "package": "@medusajs/types" } }, { - "id": 14310, + "id": 14194, "name": "context", "variant": "param", "kind": 32768, @@ -10065,7 +11654,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -10082,7 +11671,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14347, + "target": 14231, "name": "T", "package": "@medusajs/types", "qualifiedName": "TreeRepositoryService.T", @@ -10097,21 +11686,21 @@ ] }, { - "id": 14311, + "id": 14195, "name": "findAndCount", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14312, + "id": 14196, "name": "findAndCount", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14313, + "id": 14197, "name": "options", "variant": "param", "kind": 32768, @@ -10120,11 +11709,11 @@ }, "type": { "type": "reference", - "target": 14210, + "target": 14094, "typeArguments": [ { "type": "reference", - "target": 14347, + "target": 14231, "name": "T", "package": "@medusajs/types", "qualifiedName": "TreeRepositoryService.T", @@ -10136,7 +11725,7 @@ } }, { - "id": 14314, + "id": 14198, "name": "transformOptions", "variant": "param", "kind": 32768, @@ -10145,13 +11734,13 @@ }, "type": { "type": "reference", - "target": 14002, + "target": 13888, "name": "RepositoryTransformOptions", "package": "@medusajs/types" } }, { - "id": 14315, + "id": 14199, "name": "context", "variant": "param", "kind": 32768, @@ -10160,7 +11749,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -10180,7 +11769,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14347, + "target": 14231, "name": "T", "package": "@medusajs/types", "qualifiedName": "TreeRepositoryService.T", @@ -10201,21 +11790,21 @@ ] }, { - "id": 14316, + "id": 14200, "name": "create", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14317, + "id": 14201, "name": "create", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14318, + "id": 14202, "name": "data", "variant": "param", "kind": 32768, @@ -10229,7 +11818,7 @@ } }, { - "id": 14319, + "id": 14203, "name": "context", "variant": "param", "kind": 32768, @@ -10238,7 +11827,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -10255,7 +11844,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14347, + "target": 14231, "name": "T", "package": "@medusajs/types", "qualifiedName": "TreeRepositoryService.T", @@ -10270,21 +11859,21 @@ ] }, { - "id": 14320, + "id": 14204, "name": "delete", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14321, + "id": 14205, "name": "delete", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14322, + "id": 14206, "name": "ids", "variant": "param", "kind": 32768, @@ -10298,7 +11887,7 @@ } }, { - "id": 14323, + "id": 14207, "name": "context", "variant": "param", "kind": 32768, @@ -10307,7 +11896,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -10336,20 +11925,20 @@ { "title": "Methods", "children": [ - 14324, - 14336, - 14339, - 14342, - 14306, - 14311, - 14316, - 14320 + 14208, + 14220, + 14223, + 14226, + 14190, + 14195, + 14200, + 14204 ] } ], "typeParameters": [ { - "id": 14347, + "id": 14231, "name": "T", "variant": "typeParam", "kind": 131072, @@ -10363,11 +11952,11 @@ "extendedTypes": [ { "type": "reference", - "target": 16938, + "target": 16946, "typeArguments": [ { "type": "reference", - "target": 14347, + "target": 14231, "name": "T", "package": "@medusajs/types", "qualifiedName": "TreeRepositoryService.T", @@ -10380,7 +11969,7 @@ ] }, { - "id": 14348, + "id": 14232, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -10395,7 +11984,7 @@ }, "children": [ { - "id": 14349, + "id": 14233, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -10414,7 +12003,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14350, + "target": 14234, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10426,13 +12015,13 @@ { "title": "Properties", "children": [ - 14349 + 14233 ] } ], "typeParameters": [ { - "id": 14350, + "id": 14234, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -10445,7 +12034,7 @@ ] }, { - "id": 14351, + "id": 14235, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -10460,7 +12049,7 @@ }, "children": [ { - "id": 14352, + "id": 14236, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -10479,7 +12068,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14353, + "target": 14237, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10491,13 +12080,13 @@ { "title": "Properties", "children": [ - 14352 + 14236 ] } ], "typeParameters": [ { - "id": 14353, + "id": 14237, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -10510,14 +12099,14 @@ ] }, { - "id": 14174, + "id": 14058, "name": "OperatorMap", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 14195, + "id": 14079, "name": "T", "variant": "typeParam", "kind": 131072, @@ -10527,14 +12116,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14175, + "id": 14059, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14176, + "id": 14060, "name": "$and", "variant": "declaration", "kind": 1024, @@ -10545,11 +12134,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16923, + "target": 16931, "typeArguments": [ { "type": "reference", - "target": 14195, + "target": 14079, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10561,7 +12150,7 @@ } }, { - "id": 14177, + "id": 14061, "name": "$or", "variant": "declaration", "kind": 1024, @@ -10572,11 +12161,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16923, + "target": 16931, "typeArguments": [ { "type": "reference", - "target": 14195, + "target": 14079, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10588,7 +12177,7 @@ } }, { - "id": 14178, + "id": 14062, "name": "$eq", "variant": "declaration", "kind": 1024, @@ -10600,11 +12189,11 @@ "types": [ { "type": "reference", - "target": 16925, + "target": 16933, "typeArguments": [ { "type": "reference", - "target": 14195, + "target": 14079, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10617,11 +12206,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16925, + "target": 16933, "typeArguments": [ { "type": "reference", - "target": 14195, + "target": 14079, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10635,7 +12224,7 @@ } }, { - "id": 14179, + "id": 14063, "name": "$ne", "variant": "declaration", "kind": 1024, @@ -10644,11 +12233,11 @@ }, "type": { "type": "reference", - "target": 16925, + "target": 16933, "typeArguments": [ { "type": "reference", - "target": 14195, + "target": 14079, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10659,7 +12248,7 @@ } }, { - "id": 14180, + "id": 14064, "name": "$in", "variant": "declaration", "kind": 1024, @@ -10670,11 +12259,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16925, + "target": 16933, "typeArguments": [ { "type": "reference", - "target": 14195, + "target": 14079, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10686,7 +12275,7 @@ } }, { - "id": 14181, + "id": 14065, "name": "$nin", "variant": "declaration", "kind": 1024, @@ -10697,11 +12286,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16925, + "target": 16933, "typeArguments": [ { "type": "reference", - "target": 14195, + "target": 14079, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10713,7 +12302,7 @@ } }, { - "id": 14182, + "id": 14066, "name": "$not", "variant": "declaration", "kind": 1024, @@ -10722,11 +12311,11 @@ }, "type": { "type": "reference", - "target": 16923, + "target": 16931, "typeArguments": [ { "type": "reference", - "target": 14195, + "target": 14079, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10737,7 +12326,7 @@ } }, { - "id": 14183, + "id": 14067, "name": "$gt", "variant": "declaration", "kind": 1024, @@ -10746,11 +12335,11 @@ }, "type": { "type": "reference", - "target": 16925, + "target": 16933, "typeArguments": [ { "type": "reference", - "target": 14195, + "target": 14079, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10761,7 +12350,7 @@ } }, { - "id": 14184, + "id": 14068, "name": "$gte", "variant": "declaration", "kind": 1024, @@ -10770,11 +12359,11 @@ }, "type": { "type": "reference", - "target": 16925, + "target": 16933, "typeArguments": [ { "type": "reference", - "target": 14195, + "target": 14079, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10785,7 +12374,7 @@ } }, { - "id": 14185, + "id": 14069, "name": "$lt", "variant": "declaration", "kind": 1024, @@ -10794,11 +12383,11 @@ }, "type": { "type": "reference", - "target": 16925, + "target": 16933, "typeArguments": [ { "type": "reference", - "target": 14195, + "target": 14079, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10809,7 +12398,7 @@ } }, { - "id": 14186, + "id": 14070, "name": "$lte", "variant": "declaration", "kind": 1024, @@ -10818,11 +12407,11 @@ }, "type": { "type": "reference", - "target": 16925, + "target": 16933, "typeArguments": [ { "type": "reference", - "target": 14195, + "target": 14079, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10833,7 +12422,7 @@ } }, { - "id": 14187, + "id": 14071, "name": "$like", "variant": "declaration", "kind": 1024, @@ -10846,7 +12435,7 @@ } }, { - "id": 14188, + "id": 14072, "name": "$re", "variant": "declaration", "kind": 1024, @@ -10859,7 +12448,7 @@ } }, { - "id": 14189, + "id": 14073, "name": "$ilike", "variant": "declaration", "kind": 1024, @@ -10872,7 +12461,7 @@ } }, { - "id": 14190, + "id": 14074, "name": "$fulltext", "variant": "declaration", "kind": 1024, @@ -10885,7 +12474,7 @@ } }, { - "id": 14191, + "id": 14075, "name": "$overlap", "variant": "declaration", "kind": 1024, @@ -10901,7 +12490,7 @@ } }, { - "id": 14192, + "id": 14076, "name": "$contains", "variant": "declaration", "kind": 1024, @@ -10917,7 +12506,7 @@ } }, { - "id": 14193, + "id": 14077, "name": "$contained", "variant": "declaration", "kind": 1024, @@ -10933,7 +12522,7 @@ } }, { - "id": 14194, + "id": 14078, "name": "$exists", "variant": "declaration", "kind": 1024, @@ -10950,25 +12539,25 @@ { "title": "Properties", "children": [ - 14176, - 14177, - 14178, - 14179, - 14180, - 14181, - 14182, - 14183, - 14184, - 14185, - 14186, - 14187, - 14188, - 14189, - 14190, - 14191, - 14192, - 14193, - 14194 + 14060, + 14061, + 14062, + 14063, + 14064, + 14065, + 14066, + 14067, + 14068, + 14069, + 14070, + 14071, + 14072, + 14073, + 14074, + 14075, + 14076, + 14077, + 14078 ] } ] @@ -10976,14 +12565,14 @@ } }, { - "id": 14168, + "id": 14052, "name": "FilterQuery", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 14172, + "id": 14056, "name": "T", "variant": "typeParam", "kind": 131072, @@ -10994,7 +12583,7 @@ } }, { - "id": 14173, + "id": 14057, "name": "Prev", "variant": "typeParam", "kind": 131072, @@ -11013,7 +12602,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 14173, + "target": 14057, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11034,7 +12623,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 14172, + "target": 14056, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11056,7 +12645,7 @@ }, "objectType": { "type": "reference", - "target": 14172, + "target": 14056, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11113,7 +12702,7 @@ }, "objectType": { "type": "reference", - "target": 14172, + "target": 14056, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11121,7 +12710,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "indexedAccess", @@ -11137,7 +12726,7 @@ }, "objectType": { "type": "reference", - "target": 14172, + "target": 14056, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11165,7 +12754,7 @@ }, "objectType": { "type": "reference", - "target": 14172, + "target": 14056, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11190,21 +12779,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 14169, + "id": 14053, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 14170, + "id": 14054, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 14171, + "id": 14055, "name": "x", "variant": "param", "kind": 32768, @@ -11241,7 +12830,7 @@ }, "trueType": { "type": "reference", - "target": 14168, + "target": 14052, "typeArguments": [ { "type": "reference", @@ -11268,14 +12857,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 14173, + "target": 14057, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 16922, + "target": 16930, "name": "PrevLimit", "package": "@medusajs/types" } @@ -11309,30 +12898,30 @@ { "title": "Interfaces", "children": [ - 14196, - 14200, - 14210, - 14220, - 14228, - 14305, - 14348, - 14351 + 14080, + 14084, + 14094, + 14104, + 14112, + 14189, + 14232, + 14235 ] }, { "title": "Type Aliases", "children": [ - 14354, - 14355, - 14223, - 14174, - 14168 + 14238, + 14239, + 14107, + 14058, + 14052 ] } ] }, { - "id": 16934, + "id": 16942, "name": "EntityClassName", "variant": "declaration", "kind": 2097152, @@ -11343,7 +12932,7 @@ } }, { - "id": 16935, + "id": 16943, "name": "EntityValues", "variant": "declaration", "kind": 2097152, @@ -11353,14 +12942,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 16936, + "id": 16944, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16937, + "id": 16945, "name": "id", "variant": "declaration", "kind": 1024, @@ -11375,7 +12964,7 @@ { "title": "Properties", "children": [ - 16937 + 16945 ] } ] @@ -11384,7 +12973,7 @@ } }, { - "id": 16938, + "id": 16946, "name": "BaseRepositoryService", "variant": "declaration", "kind": 256, @@ -11399,21 +12988,21 @@ }, "children": [ { - "id": 16939, + "id": 16947, "name": "transaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16940, + "id": 16948, "name": "transaction", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 16941, + "id": 16949, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -11426,7 +13015,7 @@ ], "parameters": [ { - "id": 16942, + "id": 16950, "name": "task", "variant": "param", "kind": 32768, @@ -11434,28 +13023,28 @@ "type": { "type": "reflection", "declaration": { - "id": 16943, + "id": 16951, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 16944, + "id": 16952, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16945, + "id": 16953, "name": "transactionManager", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 14283, + "target": 14167, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11483,7 +13072,7 @@ } }, { - "id": 16946, + "id": 16954, "name": "context", "variant": "param", "kind": 32768, @@ -11493,14 +13082,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16947, + "id": 16955, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16948, + "id": 16956, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -11513,7 +13102,7 @@ } }, { - "id": 16949, + "id": 16957, "name": "transaction", "variant": "declaration", "kind": 1024, @@ -11522,14 +13111,14 @@ }, "type": { "type": "reference", - "target": 14283, + "target": 14167, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 16950, + "id": 16958, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -11546,9 +13135,9 @@ { "title": "Properties", "children": [ - 16948, - 16949, - 16950 + 16956, + 16957, + 16958 ] } ] @@ -11575,21 +13164,21 @@ ] }, { - "id": 16951, + "id": 16959, "name": "getFreshManager", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16952, + "id": 16960, "name": "getFreshManager", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 16953, + "id": 16961, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -11602,7 +13191,7 @@ ], "type": { "type": "reference", - "target": 14295, + "target": 14179, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11611,21 +13200,21 @@ ] }, { - "id": 16954, + "id": 16962, "name": "getActiveManager", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16955, + "id": 16963, "name": "getActiveManager", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 16956, + "id": 16964, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -11638,7 +13227,7 @@ ], "type": { "type": "reference", - "target": 14298, + "target": 14182, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11647,21 +13236,21 @@ ] }, { - "id": 16957, + "id": 16965, "name": "serialize", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16958, + "id": 16966, "name": "serialize", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 16959, + "id": 16967, "name": "TOutput", "variant": "typeParam", "kind": 131072, @@ -11686,7 +13275,7 @@ ], "parameters": [ { - "id": 16960, + "id": 16968, "name": "data", "variant": "param", "kind": 32768, @@ -11697,7 +13286,7 @@ } }, { - "id": 16961, + "id": 16969, "name": "options", "variant": "param", "kind": 32768, @@ -11719,7 +13308,7 @@ "typeArguments": [ { "type": "reference", - "target": 14301, + "target": 14185, "name": "TOutput", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11736,16 +13325,16 @@ { "title": "Methods", "children": [ - 16939, - 16951, - 16954, - 16957 + 16947, + 16959, + 16962, + 16965 ] } ], "typeParameters": [ { - "id": 16962, + "id": 16970, "name": "T", "variant": "typeParam", "kind": 131072, @@ -11759,25 +13348,25 @@ "extendedBy": [ { "type": "reference", - "target": 14228, + "target": 14112, "name": "RepositoryService" }, { "type": "reference", - "target": 14305, + "target": 14189, "name": "TreeRepositoryService" } ] }, { - "id": 16929, + "id": 16937, "name": "Dictionary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 16933, + "id": 16941, "name": "T", "variant": "typeParam", "kind": 131072, @@ -11791,21 +13380,21 @@ "type": { "type": "reflection", "declaration": { - "id": 16930, + "id": 16938, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 16931, + "id": 16939, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 16932, + "id": 16940, "name": "k", "variant": "param", "kind": 32768, @@ -11818,7 +13407,7 @@ ], "type": { "type": "reference", - "target": 16933, + "target": 16941, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11829,14 +13418,14 @@ } }, { - "id": 16923, + "id": 16931, "name": "Query", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 16924, + "id": 16932, "name": "T", "variant": "typeParam", "kind": 131072, @@ -11847,7 +13436,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 16924, + "target": 16932, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11860,14 +13449,14 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 16924, + "target": 16932, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 17081, + "target": 17130, "name": "Scalar", "package": "@medusajs/types" }, @@ -11877,11 +13466,11 @@ }, "falseType": { "type": "reference", - "target": 14168, + "target": 14052, "typeArguments": [ { "type": "reference", - "target": 16924, + "target": 16932, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11893,11 +13482,11 @@ }, "falseType": { "type": "reference", - "target": 17085, + "target": 17134, "typeArguments": [ { "type": "reference", - "target": 16924, + "target": 16932, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11909,14 +13498,14 @@ } }, { - "id": 16925, + "id": 16933, "name": "ExpandScalar", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 16926, + "id": 16934, "name": "T", "variant": "typeParam", "kind": 131072, @@ -11934,7 +13523,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 16926, + "target": 16934, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11965,7 +13554,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 16926, + "target": 16934, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11999,7 +13588,7 @@ }, "falseType": { "type": "reference", - "target": 16926, + "target": 16934, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12010,7 +13599,7 @@ } }, { - "id": 17081, + "id": 17130, "name": "Scalar", "variant": "declaration", "kind": 2097152, @@ -12069,21 +13658,21 @@ { "type": "reflection", "declaration": { - "id": 17082, + "id": 17131, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17083, + "id": 17132, "name": "toHexString", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 17084, + "id": 17133, "name": "toHexString", "variant": "signature", "kind": 4096, @@ -12100,7 +13689,7 @@ { "title": "Methods", "children": [ - 17083 + 17132 ] } ] @@ -12110,14 +13699,14 @@ } }, { - "id": 17156, + "id": 17209, "name": "ReadonlyPrimary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 17157, + "id": 17210, "name": "T", "variant": "typeParam", "kind": 131072, @@ -12128,7 +13717,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 17157, + "target": 17210, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12149,7 +13738,7 @@ "typeArguments": [ { "type": "reference", - "target": 17157, + "target": 17210, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12160,7 +13749,7 @@ }, "falseType": { "type": "reference", - "target": 17157, + "target": 17210, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12168,14 +13757,14 @@ } }, { - "id": 17146, + "id": 17199, "name": "Primary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 17155, + "id": 17208, "name": "T", "variant": "typeParam", "kind": 131072, @@ -12186,7 +13775,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 17155, + "target": 17208, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12194,14 +13783,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 17147, + "id": 17200, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17148, + "id": 17201, "name": "[PrimaryKeyType]", "variant": "declaration", "kind": 1024, @@ -12218,7 +13807,7 @@ { "title": "Properties", "children": [ - 17148 + 17201 ] } ] @@ -12226,7 +13815,7 @@ }, "trueType": { "type": "reference", - "target": 17156, + "target": 17209, "typeArguments": [ { "type": "reference", @@ -12246,7 +13835,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 17155, + "target": 17208, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12254,14 +13843,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 17149, + "id": 17202, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17150, + "id": 17203, "name": "_id", "variant": "declaration", "kind": 1024, @@ -12278,7 +13867,7 @@ { "title": "Properties", "children": [ - 17150 + 17203 ] } ] @@ -12289,7 +13878,7 @@ "types": [ { "type": "reference", - "target": 17156, + "target": 17209, "typeArguments": [ { "type": "reference", @@ -12315,7 +13904,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 17155, + "target": 17208, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12323,14 +13912,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 17151, + "id": 17204, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17152, + "id": 17205, "name": "uuid", "variant": "declaration", "kind": 1024, @@ -12347,7 +13936,7 @@ { "title": "Properties", "children": [ - 17152 + 17205 ] } ] @@ -12355,7 +13944,7 @@ }, "trueType": { "type": "reference", - "target": 17156, + "target": 17209, "typeArguments": [ { "type": "reference", @@ -12375,7 +13964,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 17155, + "target": 17208, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12383,14 +13972,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 17153, + "id": 17206, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17154, + "id": 17207, "name": "id", "variant": "declaration", "kind": 1024, @@ -12407,7 +13996,7 @@ { "title": "Properties", "children": [ - 17154 + 17207 ] } ] @@ -12415,7 +14004,7 @@ }, "trueType": { "type": "reference", - "target": 17156, + "target": 17209, "typeArguments": [ { "type": "reference", @@ -12441,14 +14030,14 @@ } }, { - "id": 17135, + "id": 17188, "name": "FilterValue2", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 17136, + "id": 17189, "name": "T", "variant": "typeParam", "kind": 131072, @@ -12460,18 +14049,18 @@ "types": [ { "type": "reference", - "target": 17136, + "target": 17189, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, { "type": "reference", - "target": 16925, + "target": 16933, "typeArguments": [ { "type": "reference", - "target": 17136, + "target": 17189, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12482,11 +14071,11 @@ }, { "type": "reference", - "target": 17146, + "target": 17199, "typeArguments": [ { "type": "reference", - "target": 17136, + "target": 17189, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12499,14 +14088,14 @@ } }, { - "id": 17085, + "id": 17134, "name": "FilterValue", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 17086, + "id": 17135, "name": "T", "variant": "typeParam", "kind": 131072, @@ -12518,15 +14107,15 @@ "types": [ { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "reference", - "target": 17135, + "target": 17188, "typeArguments": [ { "type": "reference", - "target": 17086, + "target": 17135, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12541,11 +14130,11 @@ }, { "type": "reference", - "target": 17135, + "target": 17188, "typeArguments": [ { "type": "reference", - "target": 17086, + "target": 17135, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12558,11 +14147,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 17135, + "target": 17188, "typeArguments": [ { "type": "reference", - "target": 17086, + "target": 17135, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12580,7 +14169,7 @@ } }, { - "id": 16922, + "id": 16930, "name": "PrevLimit", "variant": "declaration", "kind": 2097152, @@ -12608,14 +14197,14 @@ } }, { - "id": 16927, + "id": 16935, "name": "Order", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 16928, + "id": 16936, "name": "T", "variant": "typeParam", "kind": 131072, @@ -12630,7 +14219,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 16928, + "target": 16936, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12649,7 +14238,7 @@ }, { "type": "reference", - "target": 16927, + "target": 16935, "typeArguments": [ { "type": "conditional", @@ -12667,7 +14256,7 @@ }, "objectType": { "type": "reference", - "target": 16928, + "target": 16936, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12700,7 +14289,7 @@ }, "objectType": { "type": "reference", - "target": 16928, + "target": 16936, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12721,7 +14310,7 @@ }, "objectType": { "type": "reference", - "target": 16928, + "target": 16936, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12738,25 +14327,33 @@ } }, { - "id": 16591, + "id": 16565, "name": "DmlTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 16592, + "id": 16566, "name": "IsDmlEntity", "variant": "declaration", "kind": 32, "flags": { "isConst": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Symbol to identify a DML entity from an object" + } + ] + }, "type": { "type": "query", "queryType": { "type": "reference", - "target": 16592, + "target": 16566, "name": "IsDmlEntity", "package": "@medusajs/types" } @@ -12764,11 +14361,19 @@ "defaultValue": "..." }, { - "id": 16593, + "id": 16567, "name": "DMLSchema", "variant": "declaration", "kind": 2097152, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Representation of DML schema. It must be a key-value pair\nwith string based keys and properties/relationships\nas the value." + } + ] + }, "type": { "type": "reference", "target": { @@ -12785,7 +14390,7 @@ "types": [ { "type": "reference", - "target": 16614, + "target": 16601, "typeArguments": [ { "type": "intrinsic", @@ -12797,7 +14402,7 @@ }, { "type": "reference", - "target": 16632, + "target": 16619, "typeArguments": [ { "type": "intrinsic", @@ -12815,14 +14420,264 @@ } }, { - "id": 16594, + "id": 16568, + "name": "IDmlEntityConfig", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reflection", + "declaration": { + "id": 16569, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 16570, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 16571, + "name": "tableName", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 16570, + 16571 + ] + } + ] + } + } + ] + } + }, + { + "id": 16572, + "name": "InferDmlEntityNameFromConfig", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 16577, + "name": "TConfig", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "reference", + "target": 16568, + "name": "IDmlEntityConfig", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 16577, + "name": "TConfig", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "intrinsic", + "name": "string" + }, + "trueType": { + "type": "reference", + "target": 14049, + "typeArguments": [ + { + "type": "reference", + "target": 16577, + "name": "TConfig", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "CamelCase", + "package": "@medusajs/types" + }, + "falseType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 16577, + "name": "TConfig", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "reflection", + "declaration": { + "id": 16573, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 16574, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 16574 + ] + } + ] + } + }, + "trueType": { + "type": "reference", + "target": 14049, + "typeArguments": [ + { + "type": "indexedAccess", + "indexType": { + "type": "literal", + "value": "name" + }, + "objectType": { + "type": "reference", + "target": 16577, + "name": "TConfig", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + ], + "name": "CamelCase", + "package": "@medusajs/types" + }, + "falseType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 16577, + "name": "TConfig", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "reflection", + "declaration": { + "id": 16575, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 16576, + "name": "tableName", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 16576 + ] + } + ] + } + }, + "trueType": { + "type": "reference", + "target": 14049, + "typeArguments": [ + { + "type": "indexedAccess", + "indexType": { + "type": "literal", + "value": "tableName" + }, + "objectType": { + "type": "reference", + "target": 16577, + "name": "TConfig", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + ], + "name": "CamelCase", + "package": "@medusajs/types" + }, + "falseType": { + "type": "intrinsic", + "name": "never" + } + } + } + } + }, + { + "id": 16578, "name": "IDmlEntity", "variant": "declaration", "kind": 256, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Representation of a DML entity" + } + ] + }, "children": [ { - "id": 16596, + "id": 16581, "name": "[IsDmlEntity]", "variant": "declaration", "kind": 1024, @@ -12833,14 +14688,37 @@ } }, { - "id": 16595, + "id": 16579, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 16572, + "typeArguments": [ + { + "type": "reference", + "target": 16583, + "name": "Config", + "package": "@medusajs/types", + "qualifiedName": "IDmlEntity.Config", + "refersToTypeParameter": true + } + ], + "name": "InferDmlEntityNameFromConfig", + "package": "@medusajs/types" + } + }, + { + "id": 16580, "name": "schema", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16597, + "target": 16582, "name": "Schema", "package": "@medusajs/types", "qualifiedName": "IDmlEntity.Schema", @@ -12852,29 +14730,43 @@ { "title": "Properties", "children": [ - 16596, - 16595 + 16581, + 16579, + 16580 ] } ], "typeParameters": [ { - "id": 16597, + "id": 16582, "name": "Schema", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 16593, + "target": 16567, "name": "DMLSchema", "package": "@medusajs/types" } + }, + { + "id": 16583, + "name": "Config", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "reference", + "target": 16568, + "name": "IDmlEntityConfig", + "package": "@medusajs/types" + } } ] }, { - "id": 16598, + "id": 16584, "name": "KnownDataTypes", "variant": "declaration", "kind": 2097152, @@ -12930,7 +14822,7 @@ } }, { - "id": 16599, + "id": 16585, "name": "RelationshipTypes", "variant": "declaration", "kind": 2097152, @@ -12966,7 +14858,7 @@ } }, { - "id": 16600, + "id": 16586, "name": "PropertyMetadata", "variant": "declaration", "kind": 2097152, @@ -12982,14 +14874,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16601, + "id": 16587, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16602, + "id": 16588, "name": "fieldName", "variant": "declaration", "kind": 1024, @@ -13000,7 +14892,7 @@ } }, { - "id": 16603, + "id": 16589, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -13013,7 +14905,7 @@ } }, { - "id": 16604, + "id": 16590, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -13024,7 +14916,7 @@ } }, { - "id": 16605, + "id": 16591, "name": "dataType", "variant": "declaration", "kind": 1024, @@ -13032,27 +14924,27 @@ "type": { "type": "reflection", "declaration": { - "id": 16606, + "id": 16592, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16607, + "id": 16593, "name": "name", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16598, + "target": 16584, "name": "KnownDataTypes", "package": "@medusajs/types" } }, { - "id": 16608, + "id": 16594, "name": "options", "variant": "declaration", "kind": 1024, @@ -13084,8 +14976,8 @@ { "title": "Properties", "children": [ - 16607, - 16608 + 16593, + 16594 ] } ] @@ -13093,7 +14985,7 @@ } }, { - "id": 16609, + "id": 16595, "name": "indexes", "variant": "declaration", "kind": 1024, @@ -13103,14 +14995,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 16610, + "id": 16596, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16611, + "id": 16597, "name": "name", "variant": "declaration", "kind": 1024, @@ -13123,7 +15015,7 @@ } }, { - "id": 16612, + "id": 16598, "name": "type", "variant": "declaration", "kind": 1024, @@ -13147,8 +15039,8 @@ { "title": "Properties", "children": [ - 16611, - 16612 + 16597, + 16598 ] } ] @@ -13157,7 +15049,7 @@ } }, { - "id": 16613, + "id": 16599, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -13166,23 +15058,37 @@ "type": "array", "elementType": { "type": "reference", - "target": 16624, + "target": 16611, "name": "RelationshipMetadata", "package": "@medusajs/types" } } + }, + { + "id": 16600, + "name": "primaryKey", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } } ], "groups": [ { "title": "Properties", "children": [ - 16602, - 16603, - 16604, - 16605, - 16609, - 16613 + 16588, + 16589, + 16590, + 16591, + 16595, + 16599, + 16600 ] } ] @@ -13190,7 +15096,7 @@ } }, { - "id": 16614, + "id": 16601, "name": "PropertyType", "variant": "declaration", "kind": 2097152, @@ -13205,7 +15111,7 @@ }, "typeParameters": [ { - "id": 16620, + "id": 16607, "name": "T", "variant": "typeParam", "kind": 131072, @@ -13215,42 +15121,42 @@ "type": { "type": "reflection", "declaration": { - "id": 16615, + "id": 16602, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16616, + "id": 16603, "name": "$dataType", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16620, + "target": 16607, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 16617, + "id": 16604, "name": "parse", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16618, + "id": 16605, "name": "parse", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16619, + "id": 16606, "name": "fieldName", "variant": "param", "kind": 32768, @@ -13263,7 +15169,7 @@ ], "type": { "type": "reference", - "target": 16600, + "target": 16586, "name": "PropertyMetadata", "package": "@medusajs/types" } @@ -13275,13 +15181,13 @@ { "title": "Properties", "children": [ - 16616 + 16603 ] }, { "title": "Methods", "children": [ - 16617 + 16604 ] } ] @@ -13289,7 +15195,7 @@ } }, { - "id": 16621, + "id": 16608, "name": "RelationshipOptions", "variant": "declaration", "kind": 2097152, @@ -13308,14 +15214,14 @@ { "type": "reflection", "declaration": { - "id": 16622, + "id": 16609, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16623, + "id": 16610, "name": "mappedBy", "variant": "declaration", "kind": 1024, @@ -13326,7 +15232,7 @@ "summary": [ { "kind": "text", - "text": "The name of the relationship as defined\nin the other data model. This is only required\nby the " + "text": "The name of the relationship as defined in the other\ndata model. This is only required by the " }, { "kind": "code", @@ -13334,7 +15240,7 @@ }, { "kind": "text", - "text": " relationship method." + "text": "\nrelationship method." } ] }, @@ -13348,7 +15254,7 @@ { "title": "Properties", "children": [ - 16623 + 16610 ] } ] @@ -13377,7 +15283,7 @@ } }, { - "id": 16624, + "id": 16611, "name": "RelationshipMetadata", "variant": "declaration", "kind": 2097152, @@ -13393,14 +15299,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16625, + "id": 16612, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16626, + "id": 16613, "name": "name", "variant": "declaration", "kind": 1024, @@ -13411,20 +15317,20 @@ } }, { - "id": 16627, + "id": 16614, "name": "type", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16599, + "target": 16585, "name": "RelationshipTypes", "package": "@medusajs/types" } }, { - "id": 16628, + "id": 16615, "name": "entity", "variant": "declaration", "kind": 1024, @@ -13435,7 +15341,7 @@ } }, { - "id": 16629, + "id": 16616, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -13446,7 +15352,7 @@ } }, { - "id": 16630, + "id": 16617, "name": "mappedBy", "variant": "declaration", "kind": 1024, @@ -13459,7 +15365,7 @@ } }, { - "id": 16631, + "id": 16618, "name": "options", "variant": "declaration", "kind": 1024, @@ -13489,12 +15395,12 @@ { "title": "Properties", "children": [ - 16626, - 16627, - 16628, - 16629, - 16630, - 16631 + 16613, + 16614, + 16615, + 16616, + 16617, + 16618 ] } ] @@ -13502,7 +15408,7 @@ } }, { - "id": 16632, + "id": 16619, "name": "RelationshipType", "variant": "declaration", "kind": 2097152, @@ -13517,7 +15423,7 @@ }, "typeParameters": [ { - "id": 16639, + "id": 16626, "name": "T", "variant": "typeParam", "kind": 131072, @@ -13527,55 +15433,55 @@ "type": { "type": "reflection", "declaration": { - "id": 16633, + "id": 16620, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16634, + "id": 16621, "name": "$dataType", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16639, + "target": 16626, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 16635, + "id": 16622, "name": "type", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16599, + "target": 16585, "name": "RelationshipTypes", "package": "@medusajs/types" } }, { - "id": 16636, + "id": 16623, "name": "parse", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16637, + "id": 16624, "name": "parse", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16638, + "id": 16625, "name": "relationshipName", "variant": "param", "kind": 32768, @@ -13588,7 +15494,7 @@ ], "type": { "type": "reference", - "target": 16624, + "target": 16611, "name": "RelationshipMetadata", "package": "@medusajs/types" } @@ -13600,14 +15506,14 @@ { "title": "Properties", "children": [ - 16634, - 16635 + 16621, + 16622 ] }, { "title": "Methods", "children": [ - 16636 + 16623 ] } ] @@ -13615,7 +15521,7 @@ } }, { - "id": 16640, + "id": 16627, "name": "EntityConstructor", "variant": "declaration", "kind": 256, @@ -13630,21 +15536,21 @@ }, "children": [ { - "id": 16642, + "id": 16629, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 16643, + "id": 16630, "name": "new EntityConstructor", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 16641, + "target": 16628, "name": "Props", "package": "@medusajs/types", "qualifiedName": "EntityConstructor.Props", @@ -13668,13 +15574,13 @@ { "title": "Constructors", "children": [ - 16642 + 16629 ] } ], "typeParameters": [ { - "id": 16641, + "id": 16628, "name": "Props", "variant": "typeParam", "kind": 131072, @@ -13694,7 +15600,7 @@ ] }, { - "id": 16644, + "id": 16631, "name": "InferForeignKeys", "variant": "declaration", "kind": 2097152, @@ -13703,317 +15609,238 @@ "summary": [ { "kind": "text", - "text": "From a IDmlEntity, infer the foreign keys name and type for belongsTo relation meaning hasOne and ManyToOne" + "text": "From a IDmlEntity, infer the foreign keys name and type for\n\"belongsTo\" relation meaning \"hasOne\" and \"ManyToOne\"" } ] }, "typeParameters": [ { - "id": 16649, - "name": "T", + "id": 16636, + "name": "Schema", "variant": "typeParam", "kind": 131072, - "flags": {} + "flags": {}, + "type": { + "type": "reference", + "target": 16567, + "name": "DMLSchema", + "package": "@medusajs/types" + } } ], "type": { - "type": "conditional", - "checkType": { - "type": "reference", - "target": 16649, - "name": "T", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - "extendsType": { - "type": "reference", - "target": 16594, - "typeArguments": [ - { - "type": "inferred", - "name": "Schema" - } - ], - "name": "IDmlEntity", - "package": "@medusajs/types" + "type": "mapped", + "parameter": "K", + "parameterType": { + "type": "typeOperator", + "operator": "keyof", + "target": { + "type": "reference", + "target": 16636, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } }, - "trueType": { - "type": "mapped", - "parameter": "K", - "parameterType": { - "type": "typeOperator", - "operator": "keyof", - "target": { + "templateType": { + "type": "conditional", + "checkType": { + "type": "indexedAccess", + "indexType": { "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "Schema" + "qualifiedName": "K" }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 16636, "name": "Schema", "package": "@medusajs/types", "refersToTypeParameter": true } }, - "templateType": { + "extendsType": { + "type": "reflection", + "declaration": { + "id": 16632, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 16633, + "name": "type", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "inferred", + "name": "Type" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 16633 + ] + } + ] + } + }, + "trueType": { "type": "conditional", "checkType": { - "type": "indexedAccess", - "indexType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "K" - }, - "name": "K", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "Type" }, - "objectType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "Schema" - }, - "name": "Schema", - "package": "@medusajs/types", - "refersToTypeParameter": true - } + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true }, "extendsType": { - "type": "reflection", - "declaration": { - "id": 16645, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 16646, - "name": "type", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "inferred", - "name": "Type" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 16646 - ] - } - ] - } + "type": "reference", + "target": 16585, + "name": "RelationshipTypes", + "package": "@medusajs/types" }, "trueType": { - "type": "conditional", - "checkType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "Type" - }, - "name": "Type", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - "extendsType": { - "type": "reference", - "target": 16599, - "name": "RelationshipTypes", - "package": "@medusajs/types" - }, - "trueType": { - "type": "intrinsic", - "name": "string" - }, - "falseType": { - "type": "indexedAccess", - "indexType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "K" - }, - "name": "K", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - "objectType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "Schema" - }, - "name": "Schema", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - } + "type": "intrinsic", + "name": "string" }, "falseType": { - "type": "indexedAccess", - "indexType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "K" - }, - "name": "K", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "intrinsic", + "name": "never" + } + }, + "falseType": { + "type": "intrinsic", + "name": "never" + } + }, + "nameType": { + "type": "conditional", + "checkType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" }, - "objectType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "Schema" - }, - "name": "Schema", - "package": "@medusajs/types", - "refersToTypeParameter": true - } + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 16636, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + }, + "extendsType": { + "type": "reflection", + "declaration": { + "id": 16634, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 16635, + "name": "type", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "inferred", + "name": "Type" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 16635 + ] + } + ] } }, - "nameType": { + "trueType": { "type": "conditional", "checkType": { - "type": "indexedAccess", - "indexType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "K" - }, - "name": "K", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "Type" }, - "objectType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "Schema" - }, - "name": "Schema", - "package": "@medusajs/types", - "refersToTypeParameter": true - } + "name": "Type", + "package": "@medusajs/types", + "refersToTypeParameter": true }, "extendsType": { - "type": "reflection", - "declaration": { - "id": 16647, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 16648, - "name": "type", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "inferred", - "name": "Type" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 16648 - ] - } - ] - } + "type": "reference", + "target": 16585, + "name": "RelationshipTypes", + "package": "@medusajs/types" }, "trueType": { - "type": "conditional", - "checkType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "Type" - }, - "name": "Type", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - "extendsType": { - "type": "reference", - "target": 16599, - "name": "RelationshipTypes", - "package": "@medusajs/types" - }, - "trueType": { - "type": "templateLiteral", - "head": "", - "tail": [ - [ - { - "type": "intersection", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "K" - }, - "name": "K", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "templateLiteral", + "head": "", + "tail": [ + [ + { + "type": "intersection", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" }, - { - "type": "intrinsic", - "name": "string" - } - ] - }, - "_id" - ] + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "_id" ] - }, - "falseType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "K" - }, - "name": "K", - "package": "@medusajs/types", - "refersToTypeParameter": true - } + ] }, "falseType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "K" - }, - "name": "K", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "intrinsic", + "name": "never" } + }, + "falseType": { + "type": "intrinsic", + "name": "never" } - }, - "falseType": { - "type": "intrinsic", - "name": "never" } } }, { - "id": 16650, - "name": "Infer", + "id": 16637, + "name": "InferBelongsToFields", "variant": "declaration", "kind": 2097152, "flags": {}, @@ -14021,14 +15848,14 @@ "summary": [ { "kind": "text", - "text": "Helper to infer the schema type of a DmlEntity" + "text": "Infer fields for a belongsTo relationship" } ] }, "typeParameters": [ { - "id": 16655, - "name": "T", + "id": 16642, + "name": "Relation", "variant": "typeParam", "kind": 131072, "flags": {} @@ -14038,264 +15865,277 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 16655, - "name": "T", + "target": 16642, + "name": "Relation", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { + "type": "reflection", + "declaration": { + "id": 16638, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "signatures": [ + { + "id": 16639, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": {}, + "type": { + "type": "reference", + "target": 16578, + "typeArguments": [ + { + "type": "inferred", + "name": "R" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "IDmlEntity", + "package": "@medusajs/types" + } + } + ] + } + }, + "trueType": { "type": "reference", - "target": 16594, + "target": 16651, "typeArguments": [ { - "type": "inferred", - "name": "Schema" + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "R" + }, + "name": "R", + "package": "@medusajs/types", + "refersToTypeParameter": true } ], - "name": "IDmlEntity", + "name": "InferSchemaFields", "package": "@medusajs/types" }, - "trueType": { - "type": "reference", - "target": 16640, - "typeArguments": [ - { - "type": "intersection", - "types": [ + "falseType": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 16642, + "name": "Relation", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "reflection", + "declaration": { + "id": 16640, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "signatures": [ { - "type": "mapped", - "parameter": "K", - "parameterType": { - "type": "typeOperator", - "operator": "keyof", - "target": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "Schema" + "id": 16641, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 16578, + "typeArguments": [ + { + "type": "inferred", + "name": "R" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "IDmlEntity", + "package": "@medusajs/types" }, - "name": "Schema", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - }, - "templateType": { - "type": "conditional", - "checkType": { - "type": "indexedAccess", - "indexType": { + { "type": "literal", - "value": "$dataType" - }, - "objectType": { - "type": "indexedAccess", - "indexType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "K" - }, - "name": "K", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - "objectType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "Schema" - }, - "name": "Schema", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - } - }, - "extendsType": { - "type": "reflection", - "declaration": { - "id": 16651, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "signatures": [ - { - "id": 16652, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "type": { - "type": "inferred", - "name": "R" - } - } - ] + "value": null } + ] + } + } + ] + } + }, + "trueType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 16651, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "R" }, - "trueType": { - "type": "reference", - "target": 16650, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "R" - }, - "name": "R", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - ], - "name": "Infer", - "package": "@medusajs/types" - }, - "falseType": { - "type": "conditional", - "checkType": { - "type": "indexedAccess", - "indexType": { - "type": "literal", - "value": "$dataType" - }, - "objectType": { - "type": "indexedAccess", - "indexType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "K" - }, - "name": "K", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - "objectType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "Schema" - }, - "name": "Schema", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - } - }, - "extendsType": { - "type": "union", - "types": [ - { - "type": "reflection", - "declaration": { - "id": 16653, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "signatures": [ - { - "id": 16654, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "type": { - "type": "inferred", - "name": "R" - } - } - ] - } - }, - { - "type": "literal", - "value": null - } - ] - }, - "trueType": { - "type": "union", - "types": [ - { - "type": "reference", - "target": 16650, - "typeArguments": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "R" - }, - "name": "R", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - ], - "name": "Infer", - "package": "@medusajs/types" - }, - { - "type": "literal", - "value": null - } - ] - }, - "falseType": { - "type": "indexedAccess", - "indexType": { - "type": "literal", - "value": "$dataType" - }, - "objectType": { - "type": "indexedAccess", - "indexType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "K" - }, - "name": "K", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - "objectType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "Schema" - }, - "name": "Schema", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - } - } - } + "name": "R", + "package": "@medusajs/types", + "refersToTypeParameter": true } - }, - { + ], + "name": "InferSchemaFields", + "package": "@medusajs/types" + }, + { + "type": "literal", + "value": null + } + ] + }, + "falseType": { + "type": "intrinsic", + "name": "never" + } + } + } + }, + { + "id": 16643, + "name": "InferHasOneFields", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Infer fields for a hasOne relationship" + } + ] + }, + "typeParameters": [ + { + "id": 16644, + "name": "Relation", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "reference", + "target": 16637, + "typeArguments": [ + { + "type": "reference", + "target": 16644, + "name": "Relation", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "InferBelongsToFields", + "package": "@medusajs/types" + } + }, + { + "id": 16645, + "name": "InferHasManyFields", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Infer fields for hasMany relationship" + } + ] + }, + "typeParameters": [ + { + "id": 16648, + "name": "Relation", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 16648, + "name": "Relation", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "reflection", + "declaration": { + "id": 16646, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "signatures": [ + { + "id": 16647, + "name": "__type", + "variant": "signature", + "kind": 4096, + "flags": {}, + "type": { "type": "reference", - "target": 16644, + "target": 16578, "typeArguments": [ { - "type": "reference", - "target": 16655, - "name": "T", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "inferred", + "name": "R" + }, + { + "type": "intrinsic", + "name": "any" } ], - "name": "InferForeignKeys", + "name": "IDmlEntity", "package": "@medusajs/types" } - ] - } - ], - "name": "EntityConstructor", - "package": "@medusajs/types" + } + ] + } + }, + "trueType": { + "type": "array", + "elementType": { + "type": "reference", + "target": 16651, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "R" + }, + "name": "R", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "InferSchemaFields", + "package": "@medusajs/types" + } }, "falseType": { "type": "intrinsic", @@ -14304,8 +16144,8 @@ } }, { - "id": 16656, - "name": "ExtractEntityRelations", + "id": 16649, + "name": "InferManyToManyFields", "variant": "declaration", "kind": 2097152, "flags": {}, @@ -14313,97 +16153,81 @@ "summary": [ { "kind": "text", - "text": "Extracts names of relationships from a schema" + "text": "Infer fields for manyToMany relationship" } ] }, "typeParameters": [ { - "id": 16659, - "name": "Schema", + "id": 16650, + "name": "Relation", "variant": "typeParam", "kind": 131072, - "flags": {}, - "type": { + "flags": {} + } + ], + "type": { + "type": "reference", + "target": 16645, + "typeArguments": [ + { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record", - "package": "typescript" + "target": 16650, + "name": "Relation", + "package": "@medusajs/types", + "refersToTypeParameter": true } - }, + ], + "name": "InferHasManyFields", + "package": "@medusajs/types" + } + }, + { + "id": 16651, + "name": "InferSchemaFields", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Inferring the types of the schema fields from the DML\nentity" + } + ] + }, + "typeParameters": [ { - "id": 16660, - "name": "OfType", + "id": 16652, + "name": "Schema", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 16599, - "name": "RelationshipTypes", + "target": 16567, + "name": "DMLSchema", "package": "@medusajs/types" } } ], "type": { - "type": "array", - "elementType": { - "type": "indexedAccess", - "indexType": { - "type": "intersection", - "types": [ - { - "type": "typeOperator", - "operator": "keyof", - "target": { - "type": "reference", - "target": 16659, - "name": "Schema", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - }, - { - "type": "intrinsic", - "name": "string" - } - ] - }, - "objectType": { + "type": "reference", + "target": 13813, + "typeArguments": [ + { "type": "mapped", "parameter": "K", "parameterType": { - "type": "intersection", - "types": [ - { - "type": "typeOperator", - "operator": "keyof", - "target": { - "type": "reference", - "target": 16659, - "name": "Schema", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "typeOperator", + "operator": "keyof", + "target": { + "type": "reference", + "target": 16652, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } }, "templateType": { "type": "conditional", @@ -14421,7 +16245,7 @@ }, "objectType": { "type": "reference", - "target": 16659, + "target": 16652, "name": "Schema", "package": "@medusajs/types", "refersToTypeParameter": true @@ -14429,7 +16253,7 @@ }, "extendsType": { "type": "reference", - "target": 16632, + "target": 16619, "typeArguments": [ { "type": "intrinsic", @@ -14444,90 +16268,620 @@ "checkType": { "type": "indexedAccess", "indexType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "K" - }, - "name": "K", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "literal", + "value": "type" }, "objectType": { - "type": "reference", - "target": 16659, - "name": "Schema", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" + }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 16652, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } } }, "extendsType": { - "type": "reflection", - "declaration": { - "id": 16657, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 16658, - "name": "type", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { + "type": "literal", + "value": "belongsTo" + }, + "trueType": { + "type": "reference", + "target": 16637, + "typeArguments": [ + { + "type": "indexedAccess", + "indexType": { + "type": "literal", + "value": "$dataType" + }, + "objectType": { + "type": "indexedAccess", + "indexType": { "type": "reference", - "target": 16660, - "name": "OfType", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" + }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 16652, + "name": "Schema", "package": "@medusajs/types", "refersToTypeParameter": true } } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 16658 - ] - } - ] - } - }, - "trueType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "K" - }, - "name": "K", - "package": "@medusajs/types", - "refersToTypeParameter": true + } + ], + "name": "InferBelongsToFields", + "package": "@medusajs/types" }, "falseType": { - "type": "intrinsic", - "name": "never" - } - }, - "falseType": { - "type": "intrinsic", - "name": "never" - } - } - } - } - } - }, - { - "id": 16661, - "name": "EntityCascades", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "comment": { - "summary": [ - { + "type": "conditional", + "checkType": { + "type": "indexedAccess", + "indexType": { + "type": "literal", + "value": "type" + }, + "objectType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" + }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 16652, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + }, + "extendsType": { + "type": "literal", + "value": "hasOne" + }, + "trueType": { + "type": "reference", + "target": 16643, + "typeArguments": [ + { + "type": "indexedAccess", + "indexType": { + "type": "literal", + "value": "$dataType" + }, + "objectType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" + }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 16652, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + } + ], + "name": "InferHasOneFields", + "package": "@medusajs/types" + }, + "falseType": { + "type": "conditional", + "checkType": { + "type": "indexedAccess", + "indexType": { + "type": "literal", + "value": "type" + }, + "objectType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" + }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 16652, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + }, + "extendsType": { + "type": "literal", + "value": "hasMany" + }, + "trueType": { + "type": "reference", + "target": 16645, + "typeArguments": [ + { + "type": "indexedAccess", + "indexType": { + "type": "literal", + "value": "$dataType" + }, + "objectType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" + }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 16652, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + } + ], + "name": "InferHasManyFields", + "package": "@medusajs/types" + }, + "falseType": { + "type": "conditional", + "checkType": { + "type": "indexedAccess", + "indexType": { + "type": "literal", + "value": "type" + }, + "objectType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" + }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 16652, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + }, + "extendsType": { + "type": "literal", + "value": "manyToMany" + }, + "trueType": { + "type": "reference", + "target": 16649, + "typeArguments": [ + { + "type": "indexedAccess", + "indexType": { + "type": "literal", + "value": "$dataType" + }, + "objectType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" + }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 16652, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + } + ], + "name": "InferManyToManyFields", + "package": "@medusajs/types" + }, + "falseType": { + "type": "intrinsic", + "name": "never" + } + } + } + } + }, + "falseType": { + "type": "indexedAccess", + "indexType": { + "type": "literal", + "value": "$dataType" + }, + "objectType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" + }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 16652, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + } + } + } + ], + "name": "Prettify", + "package": "@medusajs/types" + } + }, + { + "id": 16653, + "name": "Infer", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Helper to infer the schema type of a DmlEntity" + } + ] + }, + "typeParameters": [ + { + "id": 16654, + "name": "T", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "conditional", + "checkType": { + "type": "reference", + "target": 16654, + "name": "T", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "extendsType": { + "type": "reference", + "target": 16578, + "typeArguments": [ + { + "type": "inferred", + "name": "Schema" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "IDmlEntity", + "package": "@medusajs/types" + }, + "trueType": { + "type": "reference", + "target": 16627, + "typeArguments": [ + { + "type": "reference", + "target": 16651, + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "Schema" + }, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "InferSchemaFields", + "package": "@medusajs/types" + } + ], + "name": "EntityConstructor", + "package": "@medusajs/types" + }, + "falseType": { + "type": "intrinsic", + "name": "never" + } + } + }, + { + "id": 16655, + "name": "ExtractEntityRelations", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Extracts names of relationships from a schema" + } + ] + }, + "typeParameters": [ + { + "id": 16658, + "name": "Schema", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record", + "package": "typescript" + } + }, + { + "id": 16659, + "name": "OfType", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "reference", + "target": 16585, + "name": "RelationshipTypes", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "array", + "elementType": { + "type": "indexedAccess", + "indexType": { + "type": "intersection", + "types": [ + { + "type": "typeOperator", + "operator": "keyof", + "target": { + "type": "reference", + "target": 16658, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "objectType": { + "type": "mapped", + "parameter": "K", + "parameterType": { + "type": "intersection", + "types": [ + { + "type": "typeOperator", + "operator": "keyof", + "target": { + "type": "reference", + "target": 16658, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "templateType": { + "type": "conditional", + "checkType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" + }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 16658, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + }, + "extendsType": { + "type": "reference", + "target": 16619, + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "RelationshipType", + "package": "@medusajs/types" + }, + "trueType": { + "type": "conditional", + "checkType": { + "type": "indexedAccess", + "indexType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" + }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "objectType": { + "type": "reference", + "target": 16658, + "name": "Schema", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + }, + "extendsType": { + "type": "reflection", + "declaration": { + "id": 16656, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 16657, + "name": "type", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 16659, + "name": "OfType", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 16657 + ] + } + ] + } + }, + "trueType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "K" + }, + "name": "K", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + "falseType": { + "type": "intrinsic", + "name": "never" + } + }, + "falseType": { + "type": "intrinsic", + "name": "never" + } + } + } + } + } + }, + { + "id": 16660, + "name": "EntityCascades", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "comment": { + "summary": [ + { "kind": "text", "text": "The actions to cascade from a given entity to its\nrelationship." } @@ -14535,7 +16889,7 @@ }, "typeParameters": [ { - "id": 16664, + "id": 16663, "name": "Relationships", "variant": "typeParam", "kind": 131072, @@ -14545,14 +16899,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16662, + "id": 16661, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16663, + "id": 16662, "name": "delete", "variant": "declaration", "kind": 1024, @@ -14569,7 +16923,7 @@ }, "type": { "type": "reference", - "target": 16664, + "target": 16663, "name": "Relationships", "package": "@medusajs/types", "refersToTypeParameter": true @@ -14580,7 +16934,7 @@ { "title": "Properties", "children": [ - 16663 + 16662 ] } ] @@ -14588,7 +16942,7 @@ } }, { - "id": 16665, + "id": 16664, "name": "InferTypeOf", "variant": "declaration", "kind": 2097152, @@ -14603,15 +16957,19 @@ }, "typeParameters": [ { - "id": 16666, + "id": 16665, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 16594, + "target": 16578, "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + }, { "type": "intrinsic", "name": "any" @@ -14631,11 +16989,11 @@ "typeArguments": [ { "type": "reference", - "target": 16650, + "target": 16653, "typeArguments": [ { "type": "reference", - "target": 16666, + "target": 16665, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -14650,7 +17008,7 @@ } }, { - "id": 16667, + "id": 16666, "name": "InferEntityType", "variant": "declaration", "kind": 2097152, @@ -14665,30 +17023,30 @@ }, "typeParameters": [ { - "id": 16668, + "id": 16667, "name": "T", "variant": "typeParam", "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } + "flags": {} } ], "type": { "type": "conditional", "checkType": { "type": "reference", - "target": 16668, + "target": 16667, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 16594, + "target": 16578, "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + }, { "type": "intrinsic", "name": "any" @@ -14699,11 +17057,11 @@ }, "trueType": { "type": "reference", - "target": 16665, + "target": 16664, "typeArguments": [ { "type": "reference", - "target": 16668, + "target": 16667, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -14714,7 +17072,7 @@ }, "falseType": { "type": "reference", - "target": 16668, + "target": 16667, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -14722,7 +17080,7 @@ } }, { - "id": 16669, + "id": 16668, "name": "InferIndexableProperties", "variant": "declaration", "kind": 2097152, @@ -14737,7 +17095,7 @@ }, "typeParameters": [ { - "id": 16672, + "id": 16671, "name": "T", "variant": "typeParam", "kind": 131072, @@ -14751,19 +17109,23 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 16672, + "target": 16671, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 16594, + "target": 16578, "typeArguments": [ { "type": "inferred", "name": "Schema" - } + }, + { + "type": "intrinsic", + "name": "any" + } ], "name": "IDmlEntity", "package": "@medusajs/types" @@ -14820,14 +17182,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 16670, + "id": 16669, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16671, + "id": 16670, "name": "type", "variant": "declaration", "kind": 1024, @@ -14842,7 +17204,7 @@ { "title": "Properties", "children": [ - 16671 + 16670 ] } ] @@ -14862,7 +17224,7 @@ }, "extendsType": { "type": "reference", - "target": 16599, + "target": 16585, "name": "RelationshipTypes", "package": "@medusajs/types" }, @@ -14895,12 +17257,15 @@ }, { "type": "reference", - "target": 16644, + "target": 16631, "typeArguments": [ { "type": "reference", - "target": 16672, - "name": "T", + "target": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "Schema" + }, + "name": "Schema", "package": "@medusajs/types", "refersToTypeParameter": true } @@ -14918,33 +17283,33 @@ } }, { - "id": 16673, + "id": 16672, "name": "EntityIndex", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 16679, + "id": 16678, "name": "TSchema", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 16593, + "target": 16567, "name": "DMLSchema", "package": "@medusajs/types" }, "default": { "type": "reference", - "target": 16593, + "target": 16567, "name": "DMLSchema", "package": "@medusajs/types" } }, { - "id": 16680, + "id": 16679, "name": "TWhere", "variant": "typeParam", "kind": 131072, @@ -14958,14 +17323,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16674, + "id": 16673, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16675, + "id": 16674, "name": "name", "variant": "declaration", "kind": 1024, @@ -14986,7 +17351,7 @@ } }, { - "id": 16676, + "id": 16675, "name": "unique", "variant": "declaration", "kind": 1024, @@ -15007,7 +17372,7 @@ } }, { - "id": 16677, + "id": 16676, "name": "on", "variant": "declaration", "kind": 1024, @@ -15024,18 +17389,22 @@ "type": "array", "elementType": { "type": "reference", - "target": 16669, + "target": 16668, "typeArguments": [ { "type": "reference", - "target": 16594, + "target": 16578, "typeArguments": [ { "type": "reference", - "target": 16679, + "target": 16678, "name": "TSchema", "package": "@medusajs/types", "refersToTypeParameter": true + }, + { + "type": "intrinsic", + "name": "any" } ], "name": "IDmlEntity", @@ -15048,7 +17417,7 @@ } }, { - "id": 16678, + "id": 16677, "name": "where", "variant": "declaration", "kind": 1024, @@ -15065,7 +17434,7 @@ }, "type": { "type": "reference", - "target": 16680, + "target": 16679, "name": "TWhere", "package": "@medusajs/types", "refersToTypeParameter": true @@ -15076,10 +17445,10 @@ { "title": "Properties", "children": [ + 16674, 16675, 16676, - 16677, - 16678 + 16677 ] } ] @@ -15087,7 +17456,7 @@ } }, { - "id": 16681, + "id": 16680, "name": "SimpleQueryValue", "variant": "declaration", "kind": 2097152, @@ -15115,7 +17484,7 @@ } }, { - "id": 16682, + "id": 16681, "name": "NeQueryValue", "variant": "declaration", "kind": 2097152, @@ -15123,21 +17492,21 @@ "type": { "type": "reflection", "declaration": { - "id": 16683, + "id": 16682, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16684, + "id": 16683, "name": "$ne", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16681, + "target": 16680, "name": "SimpleQueryValue", "package": "@medusajs/types" } @@ -15147,7 +17516,7 @@ { "title": "Properties", "children": [ - 16684 + 16683 ] } ] @@ -15155,7 +17524,7 @@ } }, { - "id": 16685, + "id": 16684, "name": "QueryValue", "variant": "declaration", "kind": 2097152, @@ -15165,13 +17534,13 @@ "types": [ { "type": "reference", - "target": 16681, + "target": 16680, "name": "SimpleQueryValue", "package": "@medusajs/types" }, { "type": "reference", - "target": 16682, + "target": 16681, "name": "NeQueryValue", "package": "@medusajs/types" } @@ -15179,27 +17548,27 @@ } }, { - "id": 16686, + "id": 16685, "name": "QueryCondition", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 16687, + "id": 16686, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 16593, + "target": 16567, "name": "DMLSchema", "package": "@medusajs/types" }, "default": { "type": "reference", - "target": 16593, + "target": 16567, "name": "DMLSchema", "package": "@medusajs/types" } @@ -15219,14 +17588,18 @@ }, "objectType": { "type": "reference", - "target": 16594, + "target": 16578, "typeArguments": [ { "type": "reference", - "target": 16687, + "target": 16686, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true + }, + { + "type": "intrinsic", + "name": "any" } ], "name": "IDmlEntity", @@ -15250,7 +17623,7 @@ }, "objectType": { "type": "reference", - "target": 16687, + "target": 16686, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -15262,17 +17635,17 @@ }, "trueType": { "type": "reference", - "target": 16685, + "target": 16684, "name": "QueryValue", "package": "@medusajs/types" }, "falseType": { "type": "reference", - "target": 16686, + "target": 16685, "typeArguments": [ { "type": "reference", - "target": 16687, + "target": 16686, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -15290,59 +17663,66 @@ { "title": "Interfaces", "children": [ - 16594, - 16640 + 16578, + 16627 ] }, { "title": "Type Aliases", "children": [ - 16593, - 16598, - 16599, - 16600, - 16614, - 16621, - 16624, - 16632, - 16644, - 16650, - 16656, - 16661, - 16665, - 16667, - 16669, - 16673, + 16567, + 16568, + 16572, + 16584, + 16585, + 16586, + 16601, + 16608, + 16611, + 16619, + 16631, + 16637, + 16643, + 16645, + 16649, + 16651, + 16653, + 16655, + 16660, + 16664, + 16666, + 16668, + 16672, + 16680, 16681, - 16682, - 16685, - 16686 + 16684, + 16685 ] }, { "title": "Variables", "children": [ - 16592 + 16566 ] } ] }, { - "id": 14356, + "id": 14240, "name": "EventBusTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 14357, + "id": 14241, "name": "Subscriber", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 14362, + "id": 14245, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -15356,42 +17736,39 @@ "type": { "type": "reflection", "declaration": { - "id": 14358, + "id": 14242, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 14359, + "id": 14243, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14360, + "id": 14244, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 14362, - "name": "TData", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - }, - { - "id": 14361, - "name": "eventName", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" + "target": 14256, + "typeArguments": [ + { + "type": "reference", + "target": 14245, + "name": "TData", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "MessageBody", + "package": "@medusajs/types" } } ], @@ -15416,7 +17793,7 @@ } }, { - "id": 14363, + "id": 14246, "name": "SubscriberContext", "variant": "declaration", "kind": 2097152, @@ -15424,14 +17801,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14364, + "id": 14247, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14365, + "id": 14248, "name": "subscriberId", "variant": "declaration", "kind": 1024, @@ -15446,7 +17823,7 @@ { "title": "Properties", "children": [ - 14365 + 14248 ] } ] @@ -15454,7 +17831,7 @@ } }, { - "id": 14366, + "id": 14249, "name": "SubscriberDescriptor", "variant": "declaration", "kind": 2097152, @@ -15462,14 +17839,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14367, + "id": 14250, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14368, + "id": 14251, "name": "id", "variant": "declaration", "kind": 1024, @@ -15480,14 +17857,14 @@ } }, { - "id": 14369, + "id": 14252, "name": "subscriber", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 14357, + "target": 14241, "name": "Subscriber", "package": "@medusajs/types" } @@ -15497,8 +17874,8 @@ { "title": "Properties", "children": [ - 14368, - 14369 + 14251, + 14252 ] } ] @@ -15506,88 +17883,7 @@ } }, { - "id": 14370, - "name": "EventHandler", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "typeParameters": [ - { - "id": 14375, - "name": "TData", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "default": { - "type": "intrinsic", - "name": "unknown" - } - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 14371, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "signatures": [ - { - "id": 14372, - "name": "__type", - "variant": "signature", - "kind": 4096, - "flags": {}, - "parameters": [ - { - "id": 14373, - "name": "data", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "reference", - "target": 14375, - "name": "TData", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - }, - { - "id": 14374, - "name": "eventName", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "void" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - } - } - }, - { - "id": 14376, + "id": 14253, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -15617,14 +17913,14 @@ { "type": "reflection", "declaration": { - "id": 14377, + "id": 14254, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14378, + "id": 14255, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -15641,7 +17937,7 @@ { "title": "Properties", "children": [ - 14378 + 14255 ] } ] @@ -15651,14 +17947,14 @@ } }, { - "id": 14379, + "id": 14256, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 14384, + "id": 14261, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -15672,14 +17968,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14380, + "id": 14257, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14381, + "id": 14258, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -15690,7 +17986,7 @@ } }, { - "id": 14382, + "id": 14259, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -15699,20 +17995,20 @@ }, "type": { "type": "reference", - "target": 14376, + "target": 14253, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 14383, + "id": 14260, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 14384, + "target": 14261, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -15723,9 +18019,9 @@ { "title": "Properties", "children": [ - 14381, - 14382, - 14383 + 14258, + 14259, + 14260 ] } ] @@ -15733,14 +18029,14 @@ } }, { - "id": 14385, + "id": 14262, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 14388, + "id": 14265, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -15756,11 +18052,11 @@ "types": [ { "type": "reference", - "target": 14379, + "target": 14256, "typeArguments": [ { "type": "reference", - "target": 14388, + "target": 14265, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -15772,14 +18068,14 @@ { "type": "reflection", "declaration": { - "id": 14386, + "id": 14263, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14387, + "id": 14264, "name": "options", "variant": "declaration", "kind": 1024, @@ -15811,7 +18107,7 @@ { "title": "Properties", "children": [ - 14387 + 14264 ] } ] @@ -15821,14 +18117,14 @@ } }, { - "id": 14389, + "id": 14266, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 14398, + "id": 14275, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -15842,14 +18138,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14390, + "id": 14267, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14391, + "id": 14268, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -15860,21 +18156,21 @@ } }, { - "id": 14392, + "id": 14269, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 14398, + "target": 14275, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 14393, + "id": 14270, "name": "source", "variant": "declaration", "kind": 1024, @@ -15885,7 +18181,7 @@ } }, { - "id": 14394, + "id": 14271, "name": "object", "variant": "declaration", "kind": 1024, @@ -15896,7 +18192,7 @@ } }, { - "id": 14395, + "id": 14272, "name": "action", "variant": "declaration", "kind": 1024, @@ -15909,7 +18205,7 @@ } }, { - "id": 14396, + "id": 14273, "name": "context", "variant": "declaration", "kind": 1024, @@ -15925,7 +18221,7 @@ "typeArguments": [ { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" }, @@ -15939,7 +18235,7 @@ } }, { - "id": 14397, + "id": 14274, "name": "options", "variant": "declaration", "kind": 1024, @@ -15971,13 +18267,13 @@ { "title": "Properties", "children": [ - 14391, - 14392, - 14393, - 14394, - 14395, - 14396, - 14397 + 14268, + 14269, + 14270, + 14271, + 14272, + 14273, + 14274 ] } ] @@ -15985,28 +18281,28 @@ } }, { - "id": 14417, + "id": 14294, "name": "IEventBusModuleService", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14418, + "id": 14295, "name": "emit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14419, + "id": 14296, "name": "emit", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 14420, + "id": 14297, "name": "T", "variant": "typeParam", "kind": 131072, @@ -16015,7 +18311,7 @@ ], "parameters": [ { - "id": 14421, + "id": 14298, "name": "data", "variant": "param", "kind": 32768, @@ -16025,11 +18321,11 @@ "types": [ { "type": "reference", - "target": 14385, + "target": 14262, "typeArguments": [ { "type": "reference", - "target": 14420, + "target": 14297, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -16042,11 +18338,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 14385, + "target": 14262, "typeArguments": [ { "type": "reference", - "target": 14420, + "target": 14297, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -16060,7 +18356,7 @@ } }, { - "id": 14422, + "id": 14299, "name": "options", "variant": "param", "kind": 32768, @@ -16107,21 +18403,21 @@ ] }, { - "id": 14423, + "id": 14300, "name": "subscribe", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14424, + "id": 14301, "name": "subscribe", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14425, + "id": 14302, "name": "eventName", "variant": "param", "kind": 32768, @@ -16141,20 +18437,20 @@ } }, { - "id": 14426, + "id": 14303, "name": "subscriber", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 14357, + "target": 14241, "name": "Subscriber", "package": "@medusajs/types" } }, { - "id": 14427, + "id": 14304, "name": "context", "variant": "param", "kind": 32768, @@ -16163,7 +18459,7 @@ }, "type": { "type": "reference", - "target": 14363, + "target": 14246, "name": "SubscriberContext", "package": "@medusajs/types" } @@ -16177,21 +18473,21 @@ ] }, { - "id": 14428, + "id": 14305, "name": "unsubscribe", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14429, + "id": 14306, "name": "unsubscribe", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14430, + "id": 14307, "name": "eventName", "variant": "param", "kind": 32768, @@ -16211,20 +18507,20 @@ } }, { - "id": 14431, + "id": 14308, "name": "subscriber", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 14357, + "target": 14241, "name": "Subscriber", "package": "@medusajs/types" } }, { - "id": 14432, + "id": 14309, "name": "context", "variant": "param", "kind": 32768, @@ -16233,7 +18529,7 @@ }, "type": { "type": "reference", - "target": 14363, + "target": 14246, "name": "SubscriberContext", "package": "@medusajs/types" } @@ -16247,21 +18543,21 @@ ] }, { - "id": 14433, + "id": 14310, "name": "releaseGroupedEvents", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14434, + "id": 14311, "name": "releaseGroupedEvents", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14435, + "id": 14312, "name": "eventGroupId", "variant": "param", "kind": 32768, @@ -16291,21 +18587,21 @@ ] }, { - "id": 14436, + "id": 14313, "name": "clearGroupedEvents", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14437, + "id": 14314, "name": "clearGroupedEvents", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14438, + "id": 14315, "name": "eventGroupId", "variant": "param", "kind": 32768, @@ -16339,38 +18635,38 @@ { "title": "Methods", "children": [ - 14418, - 14423, - 14428, - 14433, - 14436 + 14295, + 14300, + 14305, + 14310, + 14313 ] } ] }, { - "id": 14399, + "id": 14276, "name": "IEventBusService", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14400, + "id": 14277, "name": "subscribe", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14401, + "id": 14278, "name": "subscribe", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14402, + "id": 14279, "name": "eventName", "variant": "param", "kind": 32768, @@ -16390,20 +18686,20 @@ } }, { - "id": 14403, + "id": 14280, "name": "subscriber", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 14357, + "target": 14241, "name": "Subscriber", "package": "@medusajs/types" } }, { - "id": 14404, + "id": 14281, "name": "context", "variant": "param", "kind": 32768, @@ -16412,7 +18708,7 @@ }, "type": { "type": "reference", - "target": 14363, + "target": 14246, "name": "SubscriberContext", "package": "@medusajs/types" } @@ -16426,21 +18722,21 @@ ] }, { - "id": 14405, + "id": 14282, "name": "unsubscribe", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14406, + "id": 14283, "name": "unsubscribe", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14407, + "id": 14284, "name": "eventName", "variant": "param", "kind": 32768, @@ -16460,20 +18756,20 @@ } }, { - "id": 14408, + "id": 14285, "name": "subscriber", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 14357, + "target": 14241, "name": "Subscriber", "package": "@medusajs/types" } }, { - "id": 14409, + "id": 14286, "name": "context", "variant": "param", "kind": 32768, @@ -16482,7 +18778,7 @@ }, "type": { "type": "reference", - "target": 14363, + "target": 14246, "name": "SubscriberContext", "package": "@medusajs/types" } @@ -16496,21 +18792,21 @@ ] }, { - "id": 14410, + "id": 14287, "name": "emit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14411, + "id": 14288, "name": "emit", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 14412, + "id": 14289, "name": "T", "variant": "typeParam", "kind": 131072, @@ -16519,7 +18815,7 @@ ], "parameters": [ { - "id": 14413, + "id": 14290, "name": "data", "variant": "param", "kind": 32768, @@ -16529,11 +18825,11 @@ "types": [ { "type": "reference", - "target": 14385, + "target": 14262, "typeArguments": [ { "type": "reference", - "target": 14412, + "target": 14289, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -16546,11 +18842,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 14385, + "target": 14262, "typeArguments": [ { "type": "reference", - "target": 14412, + "target": 14289, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -16583,7 +18879,7 @@ ] }, { - "id": 14414, + "id": 14291, "name": "withTransaction", "variant": "declaration", "kind": 2048, @@ -16592,7 +18888,7 @@ }, "signatures": [ { - "id": 14415, + "id": 14292, "name": "withTransaction", "variant": "signature", "kind": 4096, @@ -16601,7 +18897,7 @@ }, "parameters": [ { - "id": 14416, + "id": 14293, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -16625,14 +18921,14 @@ }, "inheritedFrom": { "type": "reference", - "target": 16357, + "target": 16331, "name": "ITransactionBaseService.withTransaction" } } ], "inheritedFrom": { "type": "reference", - "target": 16356, + "target": 16330, "name": "ITransactionBaseService.withTransaction" } } @@ -16641,17 +18937,17 @@ { "title": "Methods", "children": [ - 14400, - 14405, - 14410, - 14414 + 14277, + 14282, + 14287, + 14291 ] } ], "extendedTypes": [ { "type": "reference", - "target": 16355, + "target": 16329, "name": "ITransactionBaseService", "package": "@medusajs/types" } @@ -16662,41 +18958,40 @@ { "title": "Interfaces", "children": [ - 14417, - 14399 + 14294, + 14276 ] }, { "title": "Type Aliases", "children": [ - 14357, - 14363, - 14366, - 14370, - 14376, - 14379, - 14385, - 14389 + 14241, + 14246, + 14249, + 14253, + 14256, + 14262, + 14266 ] } ] }, { - "id": 14439, + "id": 14316, "name": "FeatureFlagTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 14440, + "id": 14317, "name": "IFlagRouter", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14441, + "id": 14318, "name": "isFeatureEnabled", "variant": "declaration", "kind": 1024, @@ -16704,21 +18999,21 @@ "type": { "type": "reflection", "declaration": { - "id": 14442, + "id": 14319, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 14443, + "id": 14320, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 14444, + "id": 14321, "name": "key", "variant": "param", "kind": 32768, @@ -16739,7 +19034,7 @@ } }, { - "id": 14445, + "id": 14322, "name": "listFlags", "variant": "declaration", "kind": 1024, @@ -16747,21 +19042,21 @@ "type": { "type": "reflection", "declaration": { - "id": 14446, + "id": 14323, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 14447, + "id": 14324, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "type": { "type": "reference", - "target": 14448, + "target": 14325, "name": "FeatureFlagsResponse", "package": "@medusajs/types" } @@ -16775,14 +19070,14 @@ { "title": "Properties", "children": [ - 14441, - 14445 + 14318, + 14322 ] } ] }, { - "id": 14448, + "id": 14325, "name": "FeatureFlagsResponse", "variant": "declaration", "kind": 2097152, @@ -16798,14 +19093,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 14449, + "id": 14326, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14450, + "id": 14327, "name": "key", "variant": "declaration", "kind": 1024, @@ -16816,7 +19111,7 @@ } }, { - "id": 14451, + "id": 14328, "name": "value", "variant": "declaration", "kind": 1024, @@ -16855,8 +19150,8 @@ { "title": "Properties", "children": [ - 14450, - 14451 + 14327, + 14328 ] } ] @@ -16865,7 +19160,7 @@ } }, { - "id": 14452, + "id": 14329, "name": "FlagSettings", "variant": "declaration", "kind": 2097152, @@ -16873,14 +19168,14 @@ "type": { "type": "reflection", "declaration": { - "id": 14453, + "id": 14330, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14454, + "id": 14331, "name": "key", "variant": "declaration", "kind": 1024, @@ -16891,7 +19186,7 @@ } }, { - "id": 14455, + "id": 14332, "name": "description", "variant": "declaration", "kind": 1024, @@ -16902,7 +19197,7 @@ } }, { - "id": 14456, + "id": 14333, "name": "env_key", "variant": "declaration", "kind": 1024, @@ -16913,7 +19208,7 @@ } }, { - "id": 14457, + "id": 14334, "name": "default_val", "variant": "declaration", "kind": 1024, @@ -16928,10 +19223,10 @@ { "title": "Properties", "children": [ - 14454, - 14455, - 14456, - 14457 + 14331, + 14332, + 14333, + 14334 ] } ] @@ -16943,20 +19238,20 @@ { "title": "Interfaces", "children": [ - 14440 + 14317 ] }, { "title": "Type Aliases", "children": [ - 14448, - 14452 + 14325, + 14329 ] } ] }, { - "id": 16688, + "id": 16687, "name": "FileServiceUploadResult", "variant": "declaration", "kind": 256, @@ -16971,7 +19266,7 @@ }, "children": [ { - "id": 16689, + "id": 16688, "name": "url", "variant": "declaration", "kind": 1024, @@ -16990,7 +19285,7 @@ } }, { - "id": 16690, + "id": 16689, "name": "key", "variant": "declaration", "kind": 1024, @@ -17013,14 +19308,14 @@ { "title": "Properties", "children": [ - 16689, - 16690 + 16688, + 16689 ] } ] }, { - "id": 16691, + "id": 16690, "name": "FileServiceGetUploadStreamResult", "variant": "declaration", "kind": 256, @@ -17035,7 +19330,7 @@ }, "children": [ { - "id": 16692, + "id": 16691, "name": "writeStream", "variant": "declaration", "kind": 1024, @@ -17060,7 +19355,7 @@ } }, { - "id": 16693, + "id": 16692, "name": "promise", "variant": "declaration", "kind": 1024, @@ -17090,7 +19385,7 @@ } }, { - "id": 16694, + "id": 16693, "name": "url", "variant": "declaration", "kind": 1024, @@ -17109,7 +19404,7 @@ } }, { - "id": 16695, + "id": 16694, "name": "fileKey", "variant": "declaration", "kind": 1024, @@ -17132,16 +19427,16 @@ { "title": "Properties", "children": [ + 16691, 16692, 16693, - 16694, - 16695 + 16694 ] } ] }, { - "id": 16696, + "id": 16695, "name": "GetUploadedFileType", "variant": "declaration", "kind": 256, @@ -17156,7 +19451,7 @@ }, "children": [ { - "id": 16697, + "id": 16696, "name": "fileKey", "variant": "declaration", "kind": 1024, @@ -17175,7 +19470,7 @@ } }, { - "id": 16698, + "id": 16697, "name": "isPrivate", "variant": "declaration", "kind": 1024, @@ -17200,14 +19495,14 @@ { "title": "Properties", "children": [ - 16697, - 16698 + 16696, + 16697 ] } ] }, { - "id": 16699, + "id": 16698, "name": "DeleteFileType", "variant": "declaration", "kind": 256, @@ -17222,7 +19517,7 @@ }, "children": [ { - "id": 16700, + "id": 16699, "name": "fileKey", "variant": "declaration", "kind": 1024, @@ -17245,13 +19540,13 @@ { "title": "Properties", "children": [ - 16700 + 16699 ] } ] }, { - "id": 16701, + "id": 16700, "name": "UploadStreamDescriptorType", "variant": "declaration", "kind": 256, @@ -17266,7 +19561,7 @@ }, "children": [ { - "id": 16702, + "id": 16701, "name": "name", "variant": "declaration", "kind": 1024, @@ -17285,7 +19580,7 @@ } }, { - "id": 16703, + "id": 16702, "name": "ext", "variant": "declaration", "kind": 1024, @@ -17306,7 +19601,7 @@ } }, { - "id": 16704, + "id": 16703, "name": "isPrivate", "variant": "declaration", "kind": 1024, @@ -17339,22 +19634,22 @@ { "title": "Properties", "children": [ + 16701, 16702, - 16703, - 16704 + 16703 ] } ] }, { - "id": 14458, + "id": 14335, "name": "FileTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 14459, + "id": 14336, "name": "FileDTO", "variant": "declaration", "kind": 256, @@ -17369,7 +19664,7 @@ }, "children": [ { - "id": 14460, + "id": 14337, "name": "id", "variant": "declaration", "kind": 1024, @@ -17388,7 +19683,7 @@ } }, { - "id": 14461, + "id": 14338, "name": "url", "variant": "declaration", "kind": 1024, @@ -17411,14 +19706,14 @@ { "title": "Properties", "children": [ - 14460, - 14461 + 14337, + 14338 ] } ] }, { - "id": 14462, + "id": 14339, "name": "FilterableFileProps", "variant": "declaration", "kind": 256, @@ -17433,7 +19728,7 @@ }, "children": [ { - "id": 14463, + "id": 14340, "name": "id", "variant": "declaration", "kind": 1024, @@ -17458,13 +19753,13 @@ { "title": "Properties", "children": [ - 14463 + 14340 ] } ] }, { - "id": 14464, + "id": 14341, "name": "CreateFileDTO", "variant": "declaration", "kind": 256, @@ -17479,7 +19774,7 @@ }, "children": [ { - "id": 14465, + "id": 14342, "name": "filename", "variant": "declaration", "kind": 1024, @@ -17498,7 +19793,7 @@ } }, { - "id": 14466, + "id": 14343, "name": "mimeType", "variant": "declaration", "kind": 1024, @@ -17517,7 +19812,7 @@ } }, { - "id": 14467, + "id": 14344, "name": "content", "variant": "declaration", "kind": 1024, @@ -17540,15 +19835,15 @@ { "title": "Properties", "children": [ - 14465, - 14466, - 14467 + 14342, + 14343, + 14344 ] } ] }, { - "id": 14511, + "id": 14388, "name": "ProviderFileResultDTO", "variant": "declaration", "kind": 256, @@ -17563,7 +19858,7 @@ }, "children": [ { - "id": 14512, + "id": 14389, "name": "url", "variant": "declaration", "kind": 1024, @@ -17582,7 +19877,7 @@ } }, { - "id": 14513, + "id": 14390, "name": "key", "variant": "declaration", "kind": 1024, @@ -17605,14 +19900,14 @@ { "title": "Properties", "children": [ - 14512, - 14513 + 14389, + 14390 ] } ] }, { - "id": 14514, + "id": 14391, "name": "ProviderGetFileDTO", "variant": "declaration", "kind": 256, @@ -17627,7 +19922,7 @@ }, "children": [ { - "id": 14515, + "id": 14392, "name": "fileKey", "variant": "declaration", "kind": 1024, @@ -17646,7 +19941,7 @@ } }, { - "id": 14516, + "id": 14393, "name": "isPrivate", "variant": "declaration", "kind": 1024, @@ -17671,14 +19966,14 @@ { "title": "Properties", "children": [ - 14515, - 14516 + 14392, + 14393 ] } ] }, { - "id": 14517, + "id": 14394, "name": "ProviderDeleteFileDTO", "variant": "declaration", "kind": 256, @@ -17693,7 +19988,7 @@ }, "children": [ { - "id": 14518, + "id": 14395, "name": "fileKey", "variant": "declaration", "kind": 1024, @@ -17716,13 +20011,13 @@ { "title": "Properties", "children": [ - 14518 + 14395 ] } ] }, { - "id": 14519, + "id": 14396, "name": "ProviderUploadFileDTO", "variant": "declaration", "kind": 256, @@ -17737,7 +20032,7 @@ }, "children": [ { - "id": 14520, + "id": 14397, "name": "filename", "variant": "declaration", "kind": 1024, @@ -17756,7 +20051,7 @@ } }, { - "id": 14521, + "id": 14398, "name": "mimeType", "variant": "declaration", "kind": 1024, @@ -17775,7 +20070,7 @@ } }, { - "id": 14522, + "id": 14399, "name": "content", "variant": "declaration", "kind": 1024, @@ -17798,29 +20093,29 @@ { "title": "Properties", "children": [ - 14520, - 14521, - 14522 + 14397, + 14398, + 14399 ] } ] }, { - "id": 14523, + "id": 14400, "name": "IFileProvider", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14524, + "id": 14401, "name": "upload", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14525, + "id": 14402, "name": "upload", "variant": "signature", "kind": 4096, @@ -17846,7 +20141,7 @@ }, "parameters": [ { - "id": 14526, + "id": 14403, "name": "file", "variant": "param", "kind": 32768, @@ -17869,7 +20164,7 @@ }, "type": { "type": "reference", - "target": 14519, + "target": 14396, "name": "ProviderUploadFileDTO", "package": "@medusajs/types" } @@ -17884,7 +20179,7 @@ "typeArguments": [ { "type": "reference", - "target": 14511, + "target": 14388, "name": "ProviderFileResultDTO", "package": "@medusajs/types" } @@ -17896,14 +20191,14 @@ ] }, { - "id": 14527, + "id": 14404, "name": "delete", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14528, + "id": 14405, "name": "delete", "variant": "signature", "kind": 4096, @@ -17929,7 +20224,7 @@ }, "parameters": [ { - "id": 14529, + "id": 14406, "name": "fileData", "variant": "param", "kind": 32768, @@ -17944,7 +20239,7 @@ }, "type": { "type": "reference", - "target": 14517, + "target": 14394, "name": "ProviderDeleteFileDTO", "package": "@medusajs/types" } @@ -17969,14 +20264,14 @@ ] }, { - "id": 14530, + "id": 14407, "name": "getPresignedDownloadUrl", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14531, + "id": 14408, "name": "getPresignedDownloadUrl", "variant": "signature", "kind": 4096, @@ -18002,7 +20297,7 @@ }, "parameters": [ { - "id": 14532, + "id": 14409, "name": "fileData", "variant": "param", "kind": 32768, @@ -18017,7 +20312,7 @@ }, "type": { "type": "reference", - "target": 14514, + "target": 14391, "name": "ProviderGetFileDTO", "package": "@medusajs/types" } @@ -18046,22 +20341,22 @@ { "title": "Methods", "children": [ - 14524, - 14527, - 14530 + 14401, + 14404, + 14407 ] } ] }, { - "id": 14544, + "id": 14421, "name": "LocalFileServiceOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14545, + "id": 14422, "name": "upload_dir", "variant": "declaration", "kind": 1024, @@ -18074,7 +20369,7 @@ } }, { - "id": 14546, + "id": 14423, "name": "backend_url", "variant": "declaration", "kind": 1024, @@ -18091,21 +20386,21 @@ { "title": "Properties", "children": [ - 14545, - 14546 + 14422, + 14423 ] } ] }, { - "id": 14533, + "id": 14410, "name": "S3FileServiceOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14534, + "id": 14411, "name": "file_url", "variant": "declaration", "kind": 1024, @@ -18116,7 +20411,7 @@ } }, { - "id": 14535, + "id": 14412, "name": "access_key_id", "variant": "declaration", "kind": 1024, @@ -18127,7 +20422,7 @@ } }, { - "id": 14536, + "id": 14413, "name": "secret_access_key", "variant": "declaration", "kind": 1024, @@ -18138,7 +20433,7 @@ } }, { - "id": 14537, + "id": 14414, "name": "region", "variant": "declaration", "kind": 1024, @@ -18149,7 +20444,7 @@ } }, { - "id": 14538, + "id": 14415, "name": "bucket", "variant": "declaration", "kind": 1024, @@ -18160,7 +20455,7 @@ } }, { - "id": 14539, + "id": 14416, "name": "prefix", "variant": "declaration", "kind": 1024, @@ -18173,7 +20468,7 @@ } }, { - "id": 14540, + "id": 14417, "name": "endpoint", "variant": "declaration", "kind": 1024, @@ -18186,7 +20481,7 @@ } }, { - "id": 14541, + "id": 14418, "name": "cache_control", "variant": "declaration", "kind": 1024, @@ -18199,7 +20494,7 @@ } }, { - "id": 14542, + "id": 14419, "name": "download_file_duration", "variant": "declaration", "kind": 1024, @@ -18212,7 +20507,7 @@ } }, { - "id": 14543, + "id": 14420, "name": "additional_client_config", "variant": "declaration", "kind": 1024, @@ -18244,22 +20539,22 @@ { "title": "Properties", "children": [ - 14534, - 14535, - 14536, - 14537, - 14538, - 14539, - 14540, - 14541, - 14542, - 14543 + 14411, + 14412, + 14413, + 14414, + 14415, + 14416, + 14417, + 14418, + 14419, + 14420 ] } ] }, { - "id": 14468, + "id": 14345, "name": "IFileModuleService", "variant": "declaration", "kind": 256, @@ -18274,14 +20569,14 @@ }, "children": [ { - "id": 14469, + "id": 14346, "name": "createFiles", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14470, + "id": 14347, "name": "createFiles", "variant": "signature", "kind": 4096, @@ -18316,7 +20611,7 @@ }, "parameters": [ { - "id": 14471, + "id": 14348, "name": "data", "variant": "param", "kind": 32768, @@ -18333,14 +20628,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 14464, + "target": 14341, "name": "CreateFileDTO", "package": "@medusajs/types" } } }, { - "id": 14472, + "id": 14349, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18357,7 +20652,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -18374,7 +20669,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14459, + "target": 14336, "name": "FileDTO", "package": "@medusajs/types" } @@ -18385,7 +20680,7 @@ } }, { - "id": 14473, + "id": 14350, "name": "createFiles", "variant": "signature", "kind": 4096, @@ -18420,7 +20715,7 @@ }, "parameters": [ { - "id": 14474, + "id": 14351, "name": "data", "variant": "param", "kind": 32768, @@ -18435,13 +20730,13 @@ }, "type": { "type": "reference", - "target": 14464, + "target": 14341, "name": "CreateFileDTO", "package": "@medusajs/types" } }, { - "id": 14475, + "id": 14352, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18458,7 +20753,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -18473,7 +20768,7 @@ "typeArguments": [ { "type": "reference", - "target": 14459, + "target": 14336, "name": "FileDTO", "package": "@medusajs/types" } @@ -18485,14 +20780,14 @@ ] }, { - "id": 14476, + "id": 14353, "name": "deleteFiles", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14477, + "id": 14354, "name": "deleteFiles", "variant": "signature", "kind": 4096, @@ -18527,7 +20822,7 @@ }, "parameters": [ { - "id": 14478, + "id": 14355, "name": "ids", "variant": "param", "kind": 32768, @@ -18549,7 +20844,7 @@ } }, { - "id": 14479, + "id": 14356, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18566,7 +20861,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -18589,7 +20884,7 @@ } }, { - "id": 14480, + "id": 14357, "name": "deleteFiles", "variant": "signature", "kind": 4096, @@ -18624,7 +20919,7 @@ }, "parameters": [ { - "id": 14481, + "id": 14358, "name": "id", "variant": "param", "kind": 32768, @@ -18643,7 +20938,7 @@ } }, { - "id": 14482, + "id": 14359, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18660,7 +20955,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -18685,14 +20980,14 @@ ] }, { - "id": 14483, + "id": 14360, "name": "retrieveFile", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14484, + "id": 14361, "name": "retrieveFile", "variant": "signature", "kind": 4096, @@ -18727,7 +21022,7 @@ }, "parameters": [ { - "id": 14485, + "id": 14362, "name": "id", "variant": "param", "kind": 32768, @@ -18746,7 +21041,7 @@ } }, { - "id": 14486, + "id": 14363, "name": "config", "variant": "param", "kind": 32768, @@ -18779,11 +21074,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 14459, + "target": 14336, "name": "FileDTO", "package": "@medusajs/types" } @@ -18793,7 +21088,7 @@ } }, { - "id": 14487, + "id": 14364, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18810,7 +21105,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -18825,7 +21120,7 @@ "typeArguments": [ { "type": "reference", - "target": 14459, + "target": 14336, "name": "FileDTO", "package": "@medusajs/types" } @@ -18837,14 +21132,14 @@ ] }, { - "id": 14488, + "id": 14365, "name": "listFiles", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14489, + "id": 14366, "name": "listFiles", "variant": "signature", "kind": 4096, @@ -18878,7 +21173,7 @@ }, "parameters": [ { - "id": 14490, + "id": 14367, "name": "filters", "variant": "param", "kind": 32768, @@ -18895,13 +21190,13 @@ }, "type": { "type": "reference", - "target": 14462, + "target": 14339, "name": "FilterableFileProps", "package": "@medusajs/types" } }, { - "id": 14491, + "id": 14368, "name": "config", "variant": "param", "kind": 32768, @@ -18934,11 +21229,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 14459, + "target": 14336, "name": "FileDTO", "package": "@medusajs/types" } @@ -18948,7 +21243,7 @@ } }, { - "id": 14492, + "id": 14369, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18965,7 +21260,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -18982,7 +21277,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14459, + "target": 14336, "name": "FileDTO", "package": "@medusajs/types" } @@ -18995,14 +21290,14 @@ ] }, { - "id": 14493, + "id": 14370, "name": "listAndCountFiles", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 14494, + "id": 14371, "name": "listAndCountFiles", "variant": "signature", "kind": 4096, @@ -19036,7 +21331,7 @@ }, "parameters": [ { - "id": 14495, + "id": 14372, "name": "filters", "variant": "param", "kind": 32768, @@ -19053,13 +21348,13 @@ }, "type": { "type": "reference", - "target": 14462, + "target": 14339, "name": "FilterableFileProps", "package": "@medusajs/types" } }, { - "id": 14496, + "id": 14373, "name": "config", "variant": "param", "kind": 32768, @@ -19092,11 +21387,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 14459, + "target": 14336, "name": "FileDTO", "package": "@medusajs/types" } @@ -19106,7 +21401,7 @@ } }, { - "id": 14497, + "id": 14374, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -19123,7 +21418,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -19143,7 +21438,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14459, + "target": 14336, "name": "FileDTO", "package": "@medusajs/types" } @@ -19166,18 +21461,18 @@ { "title": "Methods", "children": [ - 14469, - 14476, - 14483, - 14488, - 14493 + 14346, + 14353, + 14360, + 14365, + 14370 ] } ], "extendedTypes": [ { "type": "reference", - "target": 15956, + "target": 15930, "name": "IModuleService", "package": "@medusajs/types" } @@ -19188,101 +21483,89 @@ { "title": "Interfaces", "children": [ - 14459, - 14462, - 14464, - 14511, - 14514, - 14517, - 14519, - 14523, - 14544, - 14533, - 14468 + 14336, + 14339, + 14341, + 14388, + 14391, + 14394, + 14396, + 14400, + 14421, + 14410, + 14345 ] } ] }, { - "id": 16963, + "id": 16971, "name": "BaseCollection", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16964, + "id": 16972, "name": "id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 16965, + "id": 16973, "name": "title", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 16966, + "id": 16974, "name": "handle", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 16967, + "id": 16975, "name": "created_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 16968, + "id": 16976, "name": "updated_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 16969, + "id": 16977, "name": "deleted_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "union", "types": [ @@ -19298,7 +21581,7 @@ } }, { - "id": 16970, + "id": 16978, "name": "products", "variant": "declaration", "kind": 1024, @@ -19319,13 +21602,11 @@ } }, { - "id": 16971, + "id": 16979, "name": "metadata", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "union", "types": [ @@ -19360,33 +21641,84 @@ { "title": "Properties", "children": [ - 16964, - 16965, - 16966, - 16967, - 16968, - 16969, - 16970, - 16971 + 16972, + 16973, + 16974, + 16975, + 16976, + 16977, + 16978, + 16979 ] } ], "extendedBy": [ { "type": "reference", - "target": 14568, + "target": 14469, "name": "AdminCollection" }, { "type": "reference", - "target": 14598, + "target": 14520, "name": "StoreCollection" } ] }, { - "id": 16972, - "name": "BaseCollectionFilters", + "id": 16993, + "name": "BaseCollectionParams", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 16994, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14543, + "name": "SelectParams.fields" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 16994 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 14542, + "name": "SelectParams", + "package": "@medusajs/types" + } + ], + "extendedBy": [ + { + "type": "reference", + "target": 14503, + "name": "AdminCollectionParams" + } + ] + }, + { + "id": 16980, + "name": "BaseCollectionListParams", "variant": "declaration", "kind": 256, "flags": {}, @@ -19400,7 +21732,7 @@ }, "children": [ { - "id": 16980, + "id": 16991, "name": "$and", "variant": "declaration", "kind": 1024, @@ -19423,18 +21755,18 @@ "types": [ { "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", + "target": 16980, + "name": "BaseCollectionListParams", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", + "target": 16980, + "name": "BaseCollectionListParams", "package": "@medusajs/types" } ], @@ -19446,12 +21778,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14197, + "target": 14081, "name": "BaseFilterable.$and" } }, { - "id": 16981, + "id": 16992, "name": "$or", "variant": "declaration", "kind": 1024, @@ -19474,18 +21806,18 @@ "types": [ { "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", + "target": 16980, + "name": "BaseCollectionListParams", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", + "target": 16980, + "name": "BaseCollectionListParams", "package": "@medusajs/types" } ], @@ -19497,12 +21829,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14198, + "target": 14082, "name": "BaseFilterable.$or" } }, { - "id": 16973, + "id": 16981, "name": "q", "variant": "declaration", "kind": 1024, @@ -19515,7 +21847,7 @@ } }, { - "id": 16974, + "id": 16982, "name": "id", "variant": "declaration", "kind": 1024, @@ -19540,7 +21872,7 @@ } }, { - "id": 16975, + "id": 16983, "name": "handle", "variant": "declaration", "kind": 1024, @@ -19565,7 +21897,7 @@ } }, { - "id": 16976, + "id": 16984, "name": "title", "variant": "declaration", "kind": 1024, @@ -19590,7 +21922,7 @@ } }, { - "id": 16977, + "id": 16985, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -19599,7 +21931,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -19611,7 +21943,7 @@ } }, { - "id": 16978, + "id": 16986, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -19620,7 +21952,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -19632,24 +21964,79 @@ } }, { - "id": 16979, - "name": "deleted_at", + "id": 16990, + "name": "fields", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { "type": "reference", - "target": 14174, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" + "target": 14548, + "name": "FindParams.fields" + } + }, + { + "id": 16987, + "name": "limit", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 14545, + "name": "FindParams.limit" + } + }, + { + "id": 16988, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 14546, + "name": "FindParams.offset" + } + }, + { + "id": 16989, + "name": "order", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14547, + "name": "FindParams.order" } } ], @@ -19657,27 +22044,36 @@ { "title": "Properties", "children": [ - 16980, + 16991, + 16992, 16981, - 16973, - 16974, - 16975, - 16976, - 16977, - 16978, - 16979 + 16982, + 16983, + 16984, + 16985, + 16986, + 16990, + 16987, + 16988, + 16989 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14196, + "target": 14544, + "name": "FindParams", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", + "target": 16980, + "name": "BaseCollectionListParams", "package": "@medusajs/types" } ], @@ -19688,25 +22084,25 @@ "extendedBy": [ { "type": "reference", - "target": 14577, - "name": "AdminCollectionFilters" + "target": 14489, + "name": "AdminCollectionListParams" }, { "type": "reference", - "target": 14607, + "target": 14529, "name": "StoreCollectionFilters" } ] }, { - "id": 16982, + "id": 16995, "name": "BaseFile", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16983, + "id": 16996, "name": "id", "variant": "declaration", "kind": 1024, @@ -19717,7 +22113,7 @@ } }, { - "id": 16984, + "id": 16997, "name": "url", "variant": "declaration", "kind": 1024, @@ -19732,26 +22128,26 @@ { "title": "Properties", "children": [ - 16983, - 16984 + 16996, + 16997 ] } ], "extendedBy": [ { "type": "reference", - "target": 14639, + "target": 14564, "name": "AdminFile" }, { "type": "reference", - "target": 14643, + "target": 14568, "name": "StoreFile" } ] }, { - "id": 16985, + "id": 16998, "name": "BaseUploadFile", "variant": "declaration", "kind": 2097152, @@ -19762,14 +22158,14 @@ { "type": "reflection", "declaration": { - "id": 16986, + "id": 16999, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16987, + "id": 17000, "name": "files", "variant": "declaration", "kind": 1024, @@ -19782,14 +22178,14 @@ { "type": "reflection", "declaration": { - "id": 16988, + "id": 17001, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16989, + "id": 17002, "name": "name", "variant": "declaration", "kind": 1024, @@ -19800,7 +22196,7 @@ } }, { - "id": 16990, + "id": 17003, "name": "content", "variant": "declaration", "kind": 1024, @@ -19815,8 +22211,8 @@ { "title": "Properties", "children": [ - 16989, - 16990 + 17002, + 17003 ] } ] @@ -19840,7 +22236,7 @@ { "title": "Properties", "children": [ - 16987 + 17000 ] } ] @@ -19859,14 +22255,14 @@ } }, { - "id": 17137, + "id": 17190, "name": "AdminUpsertGeoZone", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17138, + "id": 17191, "name": "type", "variant": "declaration", "kind": 1024, @@ -19877,7 +22273,7 @@ } }, { - "id": 17139, + "id": 17192, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -19888,7 +22284,7 @@ } }, { - "id": 17140, + "id": 17193, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -19929,49 +22325,49 @@ { "title": "Properties", "children": [ - 17138, - 17139, - 17140 + 17191, + 17192, + 17193 ] } ], "extendedBy": [ { "type": "reference", - "target": 17087, + "target": 17136, "name": "AdminUpsertFulfillmentSetServiceZoneCountry" }, { "type": "reference", - "target": 17091, + "target": 17140, "name": "AdminUpsertFulfillmentSetServiceZoneProvince" }, { "type": "reference", - "target": 17096, + "target": 17145, "name": "AdminUpsertFulfillmentSetServiceZoneCity" }, { "type": "reference", - "target": 17102, + "target": 17151, "name": "AdminUpsertFulfillmentSetServiceZoneZip" }, { "type": "reference", - "target": 17141, + "target": 17194, "name": "AdminUpdateGeoZone" } ] }, { - "id": 17087, + "id": 17136, "name": "AdminUpsertFulfillmentSetServiceZoneCountry", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17089, + "id": 17138, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -19984,12 +22380,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17139, + "target": 17192, "name": "AdminUpsertGeoZone.country_code" } }, { - "id": 17090, + "id": 17139, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -20027,12 +22423,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17140, + "target": 17193, "name": "AdminUpsertGeoZone.metadata" } }, { - "id": 17088, + "id": 17137, "name": "type", "variant": "declaration", "kind": 1024, @@ -20043,7 +22439,7 @@ }, "overwrites": { "type": "reference", - "target": 17138, + "target": 17191, "name": "AdminUpsertGeoZone.type" } } @@ -20052,30 +22448,30 @@ { "title": "Properties", "children": [ - 17089, - 17090, - 17088 + 17138, + 17139, + 17137 ] } ], "extendedTypes": [ { "type": "reference", - "target": 17137, + "target": 17190, "name": "AdminUpsertGeoZone", "package": "@medusajs/types" } ] }, { - "id": 17091, + "id": 17140, "name": "AdminUpsertFulfillmentSetServiceZoneProvince", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17094, + "id": 17143, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -20088,12 +22484,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17139, + "target": 17192, "name": "AdminUpsertGeoZone.country_code" } }, { - "id": 17095, + "id": 17144, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -20131,12 +22527,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17140, + "target": 17193, "name": "AdminUpsertGeoZone.metadata" } }, { - "id": 17092, + "id": 17141, "name": "type", "variant": "declaration", "kind": 1024, @@ -20147,12 +22543,12 @@ }, "overwrites": { "type": "reference", - "target": 17138, + "target": 17191, "name": "AdminUpsertGeoZone.type" } }, { - "id": 17093, + "id": 17142, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -20167,31 +22563,31 @@ { "title": "Properties", "children": [ - 17094, - 17095, - 17092, - 17093 + 17143, + 17144, + 17141, + 17142 ] } ], "extendedTypes": [ { "type": "reference", - "target": 17137, + "target": 17190, "name": "AdminUpsertGeoZone", "package": "@medusajs/types" } ] }, { - "id": 17096, + "id": 17145, "name": "AdminUpsertFulfillmentSetServiceZoneCity", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17100, + "id": 17149, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -20204,12 +22600,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17139, + "target": 17192, "name": "AdminUpsertGeoZone.country_code" } }, { - "id": 17101, + "id": 17150, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -20247,12 +22643,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17140, + "target": 17193, "name": "AdminUpsertGeoZone.metadata" } }, { - "id": 17097, + "id": 17146, "name": "type", "variant": "declaration", "kind": 1024, @@ -20263,12 +22659,12 @@ }, "overwrites": { "type": "reference", - "target": 17138, + "target": 17191, "name": "AdminUpsertGeoZone.type" } }, { - "id": 17098, + "id": 17147, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -20279,7 +22675,7 @@ } }, { - "id": 17099, + "id": 17148, "name": "city", "variant": "declaration", "kind": 1024, @@ -20294,32 +22690,32 @@ { "title": "Properties", "children": [ - 17100, - 17101, - 17097, - 17098, - 17099 + 17149, + 17150, + 17146, + 17147, + 17148 ] } ], "extendedTypes": [ { "type": "reference", - "target": 17137, + "target": 17190, "name": "AdminUpsertGeoZone", "package": "@medusajs/types" } ] }, { - "id": 17102, + "id": 17151, "name": "AdminUpsertFulfillmentSetServiceZoneZip", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17107, + "id": 17156, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -20332,12 +22728,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17139, + "target": 17192, "name": "AdminUpsertGeoZone.country_code" } }, { - "id": 17108, + "id": 17157, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -20375,12 +22771,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17140, + "target": 17193, "name": "AdminUpsertGeoZone.metadata" } }, { - "id": 17103, + "id": 17152, "name": "type", "variant": "declaration", "kind": 1024, @@ -20391,12 +22787,12 @@ }, "overwrites": { "type": "reference", - "target": 17138, + "target": 17191, "name": "AdminUpsertGeoZone.type" } }, { - "id": 17104, + "id": 17153, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -20407,7 +22803,7 @@ } }, { - "id": 17105, + "id": 17154, "name": "city", "variant": "declaration", "kind": 1024, @@ -20418,7 +22814,7 @@ } }, { - "id": 17106, + "id": 17155, "name": "postal_expression", "variant": "declaration", "kind": 1024, @@ -20448,26 +22844,26 @@ { "title": "Properties", "children": [ - 17107, - 17108, - 17103, - 17104, - 17105, - 17106 + 17156, + 17157, + 17152, + 17153, + 17154, + 17155 ] } ], "extendedTypes": [ { "type": "reference", - "target": 17137, + "target": 17190, "name": "AdminUpsertGeoZone", "package": "@medusajs/types" } ] }, { - "id": 16991, + "id": 17004, "name": "AdminUpsertFulfillmentSetServiceZoneGeoZone", "variant": "declaration", "kind": 2097152, @@ -20477,25 +22873,25 @@ "types": [ { "type": "reference", - "target": 17087, + "target": 17136, "name": "AdminUpsertFulfillmentSetServiceZoneCountry", "package": "@medusajs/types" }, { "type": "reference", - "target": 17091, + "target": 17140, "name": "AdminUpsertFulfillmentSetServiceZoneProvince", "package": "@medusajs/types" }, { "type": "reference", - "target": 17096, + "target": 17145, "name": "AdminUpsertFulfillmentSetServiceZoneCity", "package": "@medusajs/types" }, { "type": "reference", - "target": 17102, + "target": 17151, "name": "AdminUpsertFulfillmentSetServiceZoneZip", "package": "@medusajs/types" } @@ -20503,14 +22899,14 @@ } }, { - "id": 17141, + "id": 17194, "name": "AdminUpdateGeoZone", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17143, + "id": 17196, "name": "type", "variant": "declaration", "kind": 1024, @@ -20523,12 +22919,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17138, + "target": 17191, "name": "AdminUpsertGeoZone.type" } }, { - "id": 17144, + "id": 17197, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -20541,12 +22937,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17139, + "target": 17192, "name": "AdminUpsertGeoZone.country_code" } }, { - "id": 17145, + "id": 17198, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -20584,12 +22980,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17140, + "target": 17193, "name": "AdminUpsertGeoZone.metadata" } }, { - "id": 17142, + "id": 17195, "name": "id", "variant": "declaration", "kind": 1024, @@ -20606,17 +23002,17 @@ { "title": "Properties", "children": [ - 17143, - 17144, - 17145, - 17142 + 17196, + 17197, + 17198, + 17195 ] } ], "extendedTypes": [ { "type": "reference", - "target": 17137, + "target": 17190, "name": "AdminUpsertGeoZone", "package": "@medusajs/types" } @@ -20624,35 +23020,35 @@ "extendedBy": [ { "type": "reference", - "target": 17109, + "target": 17158, "name": "AdminUpdateFulfillmentSetServiceZoneCountry" }, { "type": "reference", - "target": 17114, + "target": 17163, "name": "AdminUpdateFulfillmentSetServiceZoneProvince" }, { "type": "reference", - "target": 17120, + "target": 17169, "name": "AdminUpdateFulfillmentSetServiceZoneCity" }, { "type": "reference", - "target": 17127, + "target": 17176, "name": "AdminUpdateFulfillmentSetServiceZoneZip" } ] }, { - "id": 17109, + "id": 17158, "name": "AdminUpdateFulfillmentSetServiceZoneCountry", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17112, + "id": 17161, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -20665,12 +23061,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17144, + "target": 17197, "name": "AdminUpdateGeoZone.country_code" } }, { - "id": 17113, + "id": 17162, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -20708,12 +23104,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17145, + "target": 17198, "name": "AdminUpdateGeoZone.metadata" } }, { - "id": 17111, + "id": 17160, "name": "id", "variant": "declaration", "kind": 1024, @@ -20727,12 +23123,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17142, + "target": 17195, "name": "AdminUpdateGeoZone.id" } }, { - "id": 17110, + "id": 17159, "name": "type", "variant": "declaration", "kind": 1024, @@ -20743,7 +23139,7 @@ }, "overwrites": { "type": "reference", - "target": 17143, + "target": 17196, "name": "AdminUpdateGeoZone.type" } } @@ -20752,31 +23148,31 @@ { "title": "Properties", "children": [ - 17112, - 17113, - 17111, - 17110 + 17161, + 17162, + 17160, + 17159 ] } ], "extendedTypes": [ { "type": "reference", - "target": 17141, + "target": 17194, "name": "AdminUpdateGeoZone", "package": "@medusajs/types" } ] }, { - "id": 17114, + "id": 17163, "name": "AdminUpdateFulfillmentSetServiceZoneProvince", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17118, + "id": 17167, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -20789,12 +23185,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17144, + "target": 17197, "name": "AdminUpdateGeoZone.country_code" } }, { - "id": 17119, + "id": 17168, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -20832,12 +23228,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17145, + "target": 17198, "name": "AdminUpdateGeoZone.metadata" } }, { - "id": 17117, + "id": 17166, "name": "id", "variant": "declaration", "kind": 1024, @@ -20851,12 +23247,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17142, + "target": 17195, "name": "AdminUpdateGeoZone.id" } }, { - "id": 17115, + "id": 17164, "name": "type", "variant": "declaration", "kind": 1024, @@ -20867,12 +23263,12 @@ }, "overwrites": { "type": "reference", - "target": 17143, + "target": 17196, "name": "AdminUpdateGeoZone.type" } }, { - "id": 17116, + "id": 17165, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -20887,32 +23283,32 @@ { "title": "Properties", "children": [ - 17118, - 17119, - 17117, - 17115, - 17116 + 17167, + 17168, + 17166, + 17164, + 17165 ] } ], "extendedTypes": [ { "type": "reference", - "target": 17141, + "target": 17194, "name": "AdminUpdateGeoZone", "package": "@medusajs/types" } ] }, { - "id": 17120, + "id": 17169, "name": "AdminUpdateFulfillmentSetServiceZoneCity", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17125, + "id": 17174, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -20925,12 +23321,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17144, + "target": 17197, "name": "AdminUpdateGeoZone.country_code" } }, { - "id": 17126, + "id": 17175, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -20968,12 +23364,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17145, + "target": 17198, "name": "AdminUpdateGeoZone.metadata" } }, { - "id": 17124, + "id": 17173, "name": "id", "variant": "declaration", "kind": 1024, @@ -20987,12 +23383,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17142, + "target": 17195, "name": "AdminUpdateGeoZone.id" } }, { - "id": 17121, + "id": 17170, "name": "type", "variant": "declaration", "kind": 1024, @@ -21003,12 +23399,12 @@ }, "overwrites": { "type": "reference", - "target": 17143, + "target": 17196, "name": "AdminUpdateGeoZone.type" } }, { - "id": 17122, + "id": 17171, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -21019,7 +23415,7 @@ } }, { - "id": 17123, + "id": 17172, "name": "city", "variant": "declaration", "kind": 1024, @@ -21034,33 +23430,33 @@ { "title": "Properties", "children": [ - 17125, - 17126, - 17124, - 17121, - 17122, - 17123 + 17174, + 17175, + 17173, + 17170, + 17171, + 17172 ] } ], "extendedTypes": [ { "type": "reference", - "target": 17141, + "target": 17194, "name": "AdminUpdateGeoZone", "package": "@medusajs/types" } ] }, { - "id": 17127, + "id": 17176, "name": "AdminUpdateFulfillmentSetServiceZoneZip", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17133, + "id": 17182, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -21073,12 +23469,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17144, + "target": 17197, "name": "AdminUpdateGeoZone.country_code" } }, { - "id": 17134, + "id": 17183, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -21116,12 +23512,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17145, + "target": 17198, "name": "AdminUpdateGeoZone.metadata" } }, { - "id": 17132, + "id": 17181, "name": "id", "variant": "declaration", "kind": 1024, @@ -21135,12 +23531,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17142, + "target": 17195, "name": "AdminUpdateGeoZone.id" } }, { - "id": 17128, + "id": 17177, "name": "type", "variant": "declaration", "kind": 1024, @@ -21151,12 +23547,12 @@ }, "overwrites": { "type": "reference", - "target": 17143, + "target": 17196, "name": "AdminUpdateGeoZone.type" } }, { - "id": 17129, + "id": 17178, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -21167,7 +23563,7 @@ } }, { - "id": 17130, + "id": 17179, "name": "city", "variant": "declaration", "kind": 1024, @@ -21178,7 +23574,7 @@ } }, { - "id": 17131, + "id": 17180, "name": "postal_expression", "variant": "declaration", "kind": 1024, @@ -21208,27 +23604,27 @@ { "title": "Properties", "children": [ - 17133, - 17134, - 17132, - 17128, - 17129, - 17130, - 17131 + 17182, + 17183, + 17181, + 17177, + 17178, + 17179, + 17180 ] } ], "extendedTypes": [ { "type": "reference", - "target": 17141, + "target": 17194, "name": "AdminUpdateGeoZone", "package": "@medusajs/types" } ] }, { - "id": 16992, + "id": 17005, "name": "AdminUpdateFulfillmentSetServiceZoneGeoZone", "variant": "declaration", "kind": 2097152, @@ -21238,178 +23634,3048 @@ "types": [ { "type": "reference", - "target": 17109, + "target": 17158, "name": "AdminUpdateFulfillmentSetServiceZoneCountry", "package": "@medusajs/types" }, { "type": "reference", - "target": 17114, + "target": 17163, "name": "AdminUpdateFulfillmentSetServiceZoneProvince", "package": "@medusajs/types" }, { "type": "reference", - "target": 17120, + "target": 17169, "name": "AdminUpdateFulfillmentSetServiceZoneCity", "package": "@medusajs/types" }, - { - "type": "reference", - "target": 17127, - "name": "AdminUpdateFulfillmentSetServiceZoneZip", - "package": "@medusajs/types" - } - ] - } - }, - { - "id": 14547, - "name": "HttpTypes", - "variant": "declaration", - "kind": 4, - "flags": {}, - "children": [ - { - "id": 14548, - "name": "CampaignResponse", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + { + "type": "reference", + "target": 17176, + "name": "AdminUpdateFulfillmentSetServiceZoneZip", + "package": "@medusajs/types" + } + ] + } + }, + { + "id": 14424, + "name": "HttpTypes", + "variant": "declaration", + "kind": 4, + "flags": {}, + "children": [ + { + "id": 14425, + "name": "AdminCreateCampaign", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14426, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14427, + "name": "description", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14428, + "name": "currency", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 14429, + "name": "campaign_identifier", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14430, + "name": "starts_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 14431, + "name": "ends_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 14432, + "name": "budget", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 14433, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 14434, + "name": "type", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign-budget.ts", + "qualifiedName": "CampaignBudgetTypeValues" + }, + "name": "CampaignBudgetTypeValues", + "package": "@medusajs/types" + } + }, + { + "id": 14435, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 14436, + "name": "limit", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14434, + 14435, + 14436 + ] + } + ] + } + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14426, + 14427, + 14428, + 14429, + 14430, + 14431, + 14432 + ] + } + ] + }, + { + "id": 14437, + "name": "AdminUpdateCampaign", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14438, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14439, + "name": "description", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14440, + "name": "currency", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 14441, + "name": "campaign_identifier", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14442, + "name": "starts_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 14443, + "name": "ends_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 14444, + "name": "budget", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 14445, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 14446, + "name": "type", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign-budget.ts", + "qualifiedName": "CampaignBudgetTypeValues" + }, + "name": "CampaignBudgetTypeValues", + "package": "@medusajs/types" + } + }, + { + "id": 14447, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 14448, + "name": "limit", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14446, + 14447, + 14448 + ] + } + ] + } + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14438, + 14439, + 14440, + 14441, + 14442, + 14443, + 14444 + ] + } + ] + }, + { + "id": 14449, + "name": "CampaignResponse", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14450, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14451, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14452, + "name": "description", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14453, + "name": "currency", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14454, + "name": "campaign_identifier", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14455, + "name": "starts_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14456, + "name": "ends_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14457, + "name": "budget", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 14458, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 14459, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14460, + "name": "type", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign-budget.ts", + "qualifiedName": "CampaignBudgetTypeValues" + }, + "name": "CampaignBudgetTypeValues", + "package": "@medusajs/types" + } + }, + { + "id": 14461, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14462, + "name": "limit", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 14463, + "name": "used", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14459, + 14460, + 14461, + 14462, + 14463 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14450, + 14451, + 14452, + 14453, + 14454, + 14455, + 14456, + 14457 + ] + } + ] + }, + { + "id": 14464, + "name": "AdminCampaignListResponse", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "reference", + "target": 14558, + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 14465, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 14466, + "name": "campaigns", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 14449, + "name": "CampaignResponse", + "package": "@medusajs/types" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14466 + ] + } + ] + } + } + ], + "name": "PaginatedResponse", + "package": "@medusajs/types" + } + }, + { + "id": 14467, + "name": "AdminCampaignResponse", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14468, + "name": "campaign", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 14449, + "name": "CampaignResponse", + "package": "@medusajs/types" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14468 + ] + } + ] + }, + { + "id": 14469, + "name": "AdminCollection", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14470, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16972, + "name": "BaseCollection.id" + } + }, + { + "id": 14471, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16973, + "name": "BaseCollection.title" + } + }, + { + "id": 14472, + "name": "handle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16974, + "name": "BaseCollection.handle" + } + }, + { + "id": 14473, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16975, + "name": "BaseCollection.created_at" + } + }, + { + "id": 14474, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16976, + "name": "BaseCollection.updated_at" + } + }, + { + "id": 14475, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 16977, + "name": "BaseCollection.deleted_at" + } + }, + { + "id": 14476, + "name": "products", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/http/product/admin/entitites.ts", + "qualifiedName": "AdminProduct" + }, + "name": "AdminProduct", + "package": "@medusajs/types" + } + }, + "inheritedFrom": { + "type": "reference", + "target": 16978, + "name": "BaseCollection.products" + } + }, + { + "id": 14477, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 16979, + "name": "BaseCollection.metadata" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14470, + 14471, + 14472, + 14473, + 14474, + 14475, + 14476, + 14477 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 16971, + "name": "BaseCollection", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14478, + "name": "AdminCreateCollection", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14479, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14480, + "name": "handle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14481, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14479, + 14480, + 14481 + ] + } + ] + }, + { + "id": 14482, + "name": "AdminUpdateCollection", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14483, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14484, + "name": "handle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14485, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14483, + 14484, + 14485 + ] + } + ] + }, + { + "id": 14486, + "name": "AdminUpdateCollectionProducts", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14487, + "name": "add", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 14488, + "name": "remove", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14487, + 14488 + ] + } + ] + }, + { + "id": 14489, + "name": "AdminCollectionListParams", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An object used to allow specifying flexible queries with and/or conditions." + } + ] + }, + "children": [ + { + "id": 14501, + "name": "$and", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 16980, + "name": "BaseCollectionListParams", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 14080, + "typeArguments": [ + { + "type": "reference", + "target": 16980, + "name": "BaseCollectionListParams", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 16991, + "name": "BaseCollectionListParams.$and" + } + }, + { + "id": 14502, + "name": "$or", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 16980, + "name": "BaseCollectionListParams", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 14080, + "typeArguments": [ + { + "type": "reference", + "target": 16980, + "name": "BaseCollectionListParams", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 16992, + "name": "BaseCollectionListParams.$or" + } + }, + { + "id": 14490, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + } + }, + { + "id": 14491, + "name": "q", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16981, + "name": "BaseCollectionListParams.q" + } + }, + { + "id": 14492, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 16982, + "name": "BaseCollectionListParams.id" + } + }, + { + "id": 14493, + "name": "handle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 16983, + "name": "BaseCollectionListParams.handle" + } + }, + { + "id": 14494, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 16984, + "name": "BaseCollectionListParams.title" + } + }, + { + "id": 14495, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": 16985, + "name": "BaseCollectionListParams.created_at" + } + }, + { + "id": 14496, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": 16986, + "name": "BaseCollectionListParams.updated_at" + } + }, + { + "id": 14500, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16990, + "name": "BaseCollectionListParams.fields" + } + }, + { + "id": 14497, + "name": "limit", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 16987, + "name": "BaseCollectionListParams.limit" + } + }, + { + "id": 14498, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 16988, + "name": "BaseCollectionListParams.offset" + } + }, + { + "id": 14499, + "name": "order", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16989, + "name": "BaseCollectionListParams.order" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14501, + 14502, + 14490, + 14491, + 14492, + 14493, + 14494, + 14495, + 14496, + 14500, + 14497, + 14498, + 14499 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 16980, + "name": "BaseCollectionListParams", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14503, + "name": "AdminCollectionParams", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14504, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16994, + "name": "BaseCollectionParams.fields" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14504 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 16993, + "name": "BaseCollectionParams", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14505, + "name": "AdminCollectionResponse", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14506, + "name": "collection", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 14469, + "name": "AdminCollection", + "package": "@medusajs/types" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14506 + ] + } + ] + }, + { + "id": 14507, + "name": "AdminCollectionListResponse", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14513, + "name": "collections", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 14469, + "name": "AdminCollection", + "package": "@medusajs/types" + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "PaginatedResponse.collections" + } + }, + { + "id": 14510, + "name": "limit", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "PaginatedResponse.limit" + } + }, + { + "id": 14511, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "PaginatedResponse.offset" + } + }, + { + "id": 14512, + "name": "count", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "PaginatedResponse.count" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14513, + 14510, + 14511, + 14512 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 14558, + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 14508, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 14509, + "name": "collections", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 14469, + "name": "AdminCollection", + "package": "@medusajs/types" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14509 + ] + } + ] + } + } + ], + "name": "PaginatedResponse", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14514, + "name": "AdminCollectionDeleteResponse", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14515, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the item that was deleted." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.id" + } + }, + { + "id": 14516, + "name": "object", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The type of the item that was deleted." + } + ] + }, + "type": { + "type": "literal", + "value": "collection" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.object" + } + }, + { + "id": 14517, + "name": "deleted", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the item was deleted successfully." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.deleted" + } + }, + { + "id": 14518, + "name": "parent", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The parent resource of the item that was deleted, if applicable." + } + ] + }, + "type": { + "type": "reflection", + "declaration": { + "id": 14519, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.parent" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14515, + 14516, + 14517, + 14518 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 14549, + "typeArguments": [ + { + "type": "literal", + "value": "collection" + } + ], + "name": "DeleteResponse", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14520, + "name": "StoreCollection", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14521, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16972, + "name": "BaseCollection.id" + } + }, + { + "id": 14522, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16973, + "name": "BaseCollection.title" + } + }, + { + "id": 14523, + "name": "handle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16974, + "name": "BaseCollection.handle" + } + }, + { + "id": 14524, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16975, + "name": "BaseCollection.created_at" + } + }, + { + "id": 14525, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16976, + "name": "BaseCollection.updated_at" + } + }, + { + "id": 14526, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 16977, + "name": "BaseCollection.deleted_at" + } + }, + { + "id": 14527, + "name": "products", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/http/product/admin/entitites.ts", + "qualifiedName": "AdminProduct" + }, + "name": "AdminProduct", + "package": "@medusajs/types" + } + }, + "inheritedFrom": { + "type": "reference", + "target": 16978, + "name": "BaseCollection.products" + } + }, + { + "id": 14528, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 16979, + "name": "BaseCollection.metadata" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14521, + 14522, + 14523, + 14524, + 14525, + 14526, + 14527, + 14528 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 16971, + "name": "BaseCollection", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14529, + "name": "StoreCollectionFilters", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An object used to allow specifying flexible queries with and/or conditions." + } + ] + }, + "children": [ + { + "id": 14540, + "name": "$and", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 16980, + "name": "BaseCollectionListParams", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 14080, + "typeArguments": [ + { + "type": "reference", + "target": 16980, + "name": "BaseCollectionListParams", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 16991, + "name": "BaseCollectionListParams.$and" + } + }, + { + "id": 14541, + "name": "$or", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 16980, + "name": "BaseCollectionListParams", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 14080, + "typeArguments": [ + { + "type": "reference", + "target": 16980, + "name": "BaseCollectionListParams", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 16992, + "name": "BaseCollectionListParams.$or" + } + }, + { + "id": 14530, + "name": "q", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16981, + "name": "BaseCollectionListParams.q" + } + }, + { + "id": 14531, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 16982, + "name": "BaseCollectionListParams.id" + } + }, + { + "id": 14532, + "name": "handle", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 16983, + "name": "BaseCollectionListParams.handle" + } + }, + { + "id": 14533, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 16984, + "name": "BaseCollectionListParams.title" + } + }, + { + "id": 14534, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": 16985, + "name": "BaseCollectionListParams.created_at" + } + }, + { + "id": 14535, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": 16986, + "name": "BaseCollectionListParams.updated_at" + } + }, + { + "id": 14539, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16990, + "name": "BaseCollectionListParams.fields" + } + }, + { + "id": 14536, + "name": "limit", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 16987, + "name": "BaseCollectionListParams.limit" + } + }, + { + "id": 14537, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 16988, + "name": "BaseCollectionListParams.offset" + } + }, + { + "id": 14538, + "name": "order", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 16989, + "name": "BaseCollectionListParams.order" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14540, + 14541, + 14530, + 14531, + 14532, + 14533, + 14534, + 14535, + 14539, + 14536, + 14537, + 14538 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 16980, + "name": "BaseCollectionListParams", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14542, + "name": "SelectParams", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14543, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14543 + ] + } + ], + "extendedBy": [ + { + "type": "reference", + "target": 14544, + "name": "FindParams" + }, + { + "type": "reference", + "target": 14823, + "name": "AdminPriceListParams" + }, + { + "type": "reference", + "target": 14941, + "name": "AdminProductTagParams" + }, + { + "type": "reference", + "target": 14984, + "name": "AdminProductTypeParams" + }, + { + "type": "reference", + "target": 15342, + "name": "AdminTaxRegionParams" + }, + { + "type": "reference", + "target": 16993, + "name": "BaseCollectionParams" + }, + { + "type": "reference", + "target": 17041, + "name": "BaseProductCategoryParams" + } + ] + }, + { + "id": 14544, + "name": "FindParams", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14548, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14543, + "name": "SelectParams.fields" + } + }, + { + "id": 14545, + "name": "limit", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 14546, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 14547, + "name": "order", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14548, + 14545, + 14546, + 14547 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 14542, + "name": "SelectParams", + "package": "@medusajs/types" + } + ], + "extendedBy": [ + { + "type": "reference", + "target": 14574, + "name": "AdminFulfillmentProviderListParams" + }, + { + "type": "reference", + "target": 14683, + "name": "AdminInventoryItemParams" + }, + { + "type": "reference", + "target": 14727, + "name": "AdminInventoryLevelFilters" + }, + { + "type": "reference", + "target": 14810, + "name": "AdminPriceListListParams" + }, + { + "type": "reference", + "target": 14971, + "name": "AdminProductTypeListParams" + }, + { + "type": "reference", + "target": 15099, + "name": "AdminShippingOptionListParams" + }, + { + "type": "reference", + "target": 15148, + "name": "AdminShippingProfileListParams" + }, + { + "type": "reference", + "target": 15206, + "name": "AdminStockLocationListParams" + }, + { + "type": "reference", + "target": 15268, + "name": "AdminTaxRateListParams" + }, + { + "type": "reference", + "target": 15326, + "name": "AdminTaxRegionListParams" + }, + { + "type": "reference", + "target": 16980, + "name": "BaseCollectionListParams" + }, + { + "type": "reference", + "target": 17021, + "name": "BaseProductCategoryListParams" + }, + { + "type": "reference", + "target": 17052, + "name": "BaseProductTagListParams" + } + ] + }, + { + "id": 14549, + "name": "DeleteResponse", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 14555, + "name": "TObject", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14556, + "name": "TParent", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "default": { + "type": "reflection", + "declaration": { + "id": 14557, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + } + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 14550, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 14551, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the item that was deleted." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14552, + "name": "object", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The type of the item that was deleted." + } + ] + }, + "type": { + "type": "reference", + "target": 14555, + "name": "TObject", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + }, + { + "id": 14553, + "name": "deleted", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the item was deleted successfully." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 14554, + "name": "parent", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The parent resource of the item that was deleted, if applicable." + } + ] + }, + "type": { + "type": "reference", + "target": 14556, + "name": "TParent", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14551, + 14552, + 14553, + 14554 + ] + } + ] + } + }, + "extendedBy": [ { - "id": 14549, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 14514, + "name": "AdminCollectionDeleteResponse" }, { - "id": 14550, - "name": "name", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 14624, + "name": "AdminServiceZoneDeleteResponse" }, { - "id": 14551, - "name": "description", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 14631, + "name": "AdminFulfillmentSetDeleteResponse" }, { - "id": 14552, - "name": "currency", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 14834, + "name": "AdminPriceListDeleteResponse" }, { - "id": 14553, - "name": "campaign_identifier", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 14909, + "name": "AdminProductCategoryDeleteResponse" }, { - "id": 14554, - "name": "starts_at", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 14952, + "name": "AdminProductTagDeleteResponse" }, { - "id": 14555, - "name": "ends_at", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 14995, + "name": "AdminProductTypeDeleteResponse" }, { - "id": 14556, - "name": "budget", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { + "type": "reference", + "target": 15118, + "name": "AdminShippingOptionDeleteResponse" + }, + { + "type": "reference", + "target": 15167, + "name": "AdminShippingProfileDeleteResponse" + }, + { + "type": "reference", + "target": 15227, + "name": "AdminStockLocationDeleteResponse" + }, + { + "type": "reference", + "target": 15289, + "name": "AdminTaxRateDeleteResponse" + }, + { + "type": "reference", + "target": 15349, + "name": "AdminTaxRegionDeleteResponse" + } + ] + }, + { + "id": 14558, + "name": "PaginatedResponse", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "typeParameters": [ + { + "id": 14563, + "name": "T", + "variant": "typeParam", + "kind": 131072, + "flags": {} + } + ], + "type": { + "type": "intersection", + "types": [ + { "type": "reflection", "declaration": { - "id": 14557, + "id": 14559, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ - { - "id": 14558, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14559, - "name": "type", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign-budget.ts", - "qualifiedName": "CampaignBudgetTypeValues" - }, - "name": "CampaignBudgetTypeValues", - "package": "@medusajs/types" - } - }, { "id": 14560, - "name": "currency_code", + "name": "limit", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "intrinsic", - "name": "string" + "name": "number" } }, { "id": 14561, - "name": "limit", + "name": "offset", "variant": "declaration", "kind": 1024, "flags": {}, @@ -21420,7 +26686,7 @@ }, { "id": 14562, - "name": "used", + "name": "count", "variant": "declaration", "kind": 1024, "flags": {}, @@ -21434,8 +26700,6 @@ { "title": "Properties", "children": [ - 14558, - 14559, 14560, 14561, 14562 @@ -21443,120 +26707,67 @@ } ] } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14549, - 14550, - 14551, - 14552, - 14553, - 14554, - 14555, - 14556 - ] - } - ] - }, - { - "id": 14563, - "name": "AdminCampaignListResponse", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "reference", - "target": 14633, - "typeArguments": [ + }, { - "type": "reflection", - "declaration": { - "id": 14564, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 14565, - "name": "campaigns", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14548, - "name": "CampaignResponse", - "package": "@medusajs/types" - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14565 - ] - } - ] - } - } - ], - "name": "PaginatedResponse", - "package": "@medusajs/types" - } - }, - { - "id": 14566, - "name": "AdminCampaignResponse", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 14567, - "name": "campaign", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { "type": "reference", - "target": 14548, - "name": "CampaignResponse", - "package": "@medusajs/types" + "target": 14563, + "name": "T", + "package": "@medusajs/types", + "refersToTypeParameter": true } - } - ], - "groups": [ + ] + }, + "extendedBy": [ { - "title": "Properties", - "children": [ - 14567 - ] + "type": "reference", + "target": 14507, + "name": "AdminCollectionListResponse" + }, + { + "type": "reference", + "target": 14582, + "name": "AdminFulfillmentProviderListResponse" + }, + { + "type": "reference", + "target": 14827, + "name": "AdminPriceListListResponse" + }, + { + "type": "reference", + "target": 14902, + "name": "AdminProductCategoryListResponse" + }, + { + "type": "reference", + "target": 14945, + "name": "AdminProductTagListResponse" + }, + { + "type": "reference", + "target": 14988, + "name": "AdminProductTypeListResponse" + }, + { + "type": "reference", + "target": 15220, + "name": "AdminStockLocationListResponse" } ] }, { - "id": 14568, - "name": "AdminCollection", + "id": 14564, + "name": "AdminFile", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14569, + "id": 14565, "name": "id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, "isInherited": true }, "type": { @@ -21565,17 +26776,16 @@ }, "inheritedFrom": { "type": "reference", - "target": 16964, - "name": "BaseCollection.id" + "target": 16996, + "name": "BaseFile.id" } }, { - "id": 14570, - "name": "title", + "id": 14566, + "name": "url", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, "isInherited": true }, "type": { @@ -21584,55 +26794,55 @@ }, "inheritedFrom": { "type": "reference", - "target": 16965, - "name": "BaseCollection.title" + "target": 16997, + "name": "BaseFile.url" } - }, + } + ], + "groups": [ { - "id": 14571, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 16966, - "name": "BaseCollection.handle" - } - }, + "title": "Properties", + "children": [ + 14565, + 14566 + ] + } + ], + "extendedTypes": [ { - "id": 14572, - "name": "created_at", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 16967, - "name": "BaseCollection.created_at" - } - }, + "type": "reference", + "target": 16995, + "name": "BaseFile", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14567, + "name": "AdminUploadFile", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "reference", + "target": 16998, + "name": "BaseUploadFile", + "package": "@medusajs/types" + } + }, + { + "id": 14568, + "name": "StoreFile", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ { - "id": 14573, - "name": "updated_at", + "id": 14569, + "name": "id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, "isInherited": true }, "type": { @@ -21641,106 +26851,26 @@ }, "inheritedFrom": { "type": "reference", - "target": 16968, - "name": "BaseCollection.updated_at" - } - }, - { - "id": 14574, - "name": "deleted_at", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] - }, - "inheritedFrom": { - "type": "reference", - "target": 16969, - "name": "BaseCollection.deleted_at" - } - }, - { - "id": 14575, - "name": "products", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/http/product/admin/entitites.ts", - "qualifiedName": "AdminProduct" - }, - "name": "AdminProduct", - "package": "@medusajs/types" - } - }, - "inheritedFrom": { - "type": "reference", - "target": 16970, - "name": "BaseCollection.products" - } - }, - { - "id": 14576, - "name": "metadata", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - } - ] + "target": 16996, + "name": "BaseFile.id" + } + }, + { + "id": 14570, + "name": "url", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" }, "inheritedFrom": { "type": "reference", - "target": 16971, - "name": "BaseCollection.metadata" + "target": 16997, + "name": "BaseFile.url" } } ], @@ -21749,145 +26879,88 @@ "title": "Properties", "children": [ 14569, - 14570, - 14571, - 14572, - 14573, - 14574, - 14575, - 14576 + 14570 ] } ], "extendedTypes": [ { "type": "reference", - "target": 16963, - "name": "BaseCollection", + "target": 16995, + "name": "BaseFile", "package": "@medusajs/types" } ] }, { - "id": 14577, - "name": "AdminCollectionFilters", + "id": 14571, + "name": "AdminFulfillmentProvider", "variant": "declaration", "kind": 256, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An object used to allow specifying flexible queries with and/or conditions." - } - ] - }, "children": [ { - "id": 14585, - "name": "$and", + "id": 14572, + "name": "id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." - } - ] - }, + "flags": {}, "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", - "package": "@medusajs/types" - }, - { - "type": "reference", - "target": 14196, - "typeArguments": [ - { - "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", - "package": "@medusajs/types" - } - ], - "name": "BaseFilterable", - "package": "@medusajs/types" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 16980, - "name": "BaseCollectionFilters.$and" + "type": "intrinsic", + "name": "string" } }, { - "id": 14586, - "name": "$or", + "id": 14573, + "name": "is_enabled", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14572, + 14573 + ] + } + ] + }, + { + "id": 14574, + "name": "AdminFulfillmentProviderListParams", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14581, + "name": "fields", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true, "isInherited": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." - } - ] - }, "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", - "package": "@medusajs/types" - }, - { - "type": "reference", - "target": 14196, - "typeArguments": [ - { - "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", - "package": "@medusajs/types" - } - ], - "name": "BaseFilterable", - "package": "@medusajs/types" - } - ] - } + "type": "intrinsic", + "name": "string" }, "inheritedFrom": { "type": "reference", - "target": 16981, - "name": "BaseCollectionFilters.$or" + "target": 14548, + "name": "FindParams.fields" } }, { "id": 14578, - "name": "q", + "name": "limit", "variant": "declaration", "kind": 1024, "flags": { @@ -21896,17 +26969,17 @@ }, "type": { "type": "intrinsic", - "name": "string" + "name": "number" }, "inheritedFrom": { "type": "reference", - "target": 16973, - "name": "BaseCollectionFilters.q" + "target": 14545, + "name": "FindParams.limit" } }, { "id": 14579, - "name": "id", + "name": "offset", "variant": "declaration", "kind": 1024, "flags": { @@ -21914,30 +26987,18 @@ "isInherited": true }, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ] + "type": "intrinsic", + "name": "number" }, "inheritedFrom": { "type": "reference", - "target": 16974, - "name": "BaseCollectionFilters.id" + "target": 14546, + "name": "FindParams.offset" } }, { "id": 14580, - "name": "handle", + "name": "order", "variant": "declaration", "kind": 1024, "flags": { @@ -21945,35 +27006,22 @@ "isInherited": true }, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ] + "type": "intrinsic", + "name": "string" }, "inheritedFrom": { "type": "reference", - "target": 16975, - "name": "BaseCollectionFilters.handle" + "target": 14547, + "name": "FindParams.order" } }, { - "id": 14581, - "name": "title", + "id": 14575, + "name": "id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "union", @@ -21990,92 +27038,32 @@ } } ] - }, - "inheritedFrom": { - "type": "reference", - "target": 16976, - "name": "BaseCollectionFilters.title" - } - }, - { - "id": 14582, - "name": "created_at", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "reference", - "target": 14174, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" - }, - "inheritedFrom": { - "type": "reference", - "target": 16977, - "name": "BaseCollectionFilters.created_at" } }, { - "id": 14583, - "name": "updated_at", + "id": 14576, + "name": "q", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { - "type": "reference", - "target": 14174, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" - }, - "inheritedFrom": { - "type": "reference", - "target": 16978, - "name": "BaseCollectionFilters.updated_at" + "type": "intrinsic", + "name": "string" } }, { - "id": 14584, - "name": "deleted_at", + "id": 14577, + "name": "is_enabled", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { - "type": "reference", - "target": 14174, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" - }, - "inheritedFrom": { - "type": "reference", - "target": 16979, - "name": "BaseCollectionFilters.deleted_at" + "type": "intrinsic", + "name": "boolean" } } ], @@ -22083,175 +27071,107 @@ { "title": "Properties", "children": [ - 14585, - 14586, + 14581, 14578, 14579, 14580, - 14581, - 14582, - 14583, - 14584 + 14575, + 14576, + 14577 ] } ], "extendedTypes": [ { "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", + "target": 14544, + "name": "FindParams", "package": "@medusajs/types" } ] }, { - "id": 14587, - "name": "AdminCreateCollection", + "id": 14582, + "name": "AdminFulfillmentProviderListResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14588, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14589, - "name": "handle", + "id": 14585, + "name": "limit", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, "type": { "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14590, - "name": "metadata", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true + "name": "number" }, - "type": { + "inheritedFrom": { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record", - "package": "typescript" + "target": -1, + "name": "PaginatedResponse.limit" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14588, - 14589, - 14590 - ] - } - ] - }, - { - "id": 14591, - "name": "AdminUpdateCollection", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + }, { - "id": 14592, - "name": "title", + "id": 14586, + "name": "offset", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, "isInherited": true }, "type": { "type": "intrinsic", - "name": "string" + "name": "number" }, "inheritedFrom": { "type": "reference", "target": -1, - "name": "Partial.title" + "name": "PaginatedResponse.offset" } }, { - "id": 14593, - "name": "handle", + "id": 14587, + "name": "count", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, "isInherited": true }, "type": { "type": "intrinsic", - "name": "string" + "name": "number" }, "inheritedFrom": { "type": "reference", "target": -1, - "name": "Partial.handle" + "name": "PaginatedResponse.count" } }, { - "id": 14594, - "name": "metadata", + "id": 14588, + "name": "fulfillment_providers", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, "isInherited": true }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record", - "package": "typescript" + "type": "array", + "elementType": { + "type": "reference", + "target": 14571, + "name": "AdminFulfillmentProvider", + "package": "@medusajs/types" + } }, "inheritedFrom": { "type": "reference", "target": -1, - "name": "Partial.metadata" + "name": "PaginatedResponse.fulfillment_providers" } } ], @@ -22259,193 +27179,111 @@ { "title": "Properties", "children": [ - 14592, - 14593, - 14594 + 14585, + 14586, + 14587, + 14588 ] } ], "extendedTypes": [ { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, + "target": 14558, "typeArguments": [ { - "type": "reference", - "target": 14587, - "name": "AdminCreateCollection", - "package": "@medusajs/types" - } - ], - "name": "Partial", - "package": "typescript" - } - ] - }, - { - "id": 14595, - "name": "AdminUpdateCollectionProducts", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 14596, - "name": "add", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - }, - { - "id": 14597, - "name": "remove", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14596, - 14597 - ] - } - ] - }, - { - "id": 14598, - "name": "StoreCollection", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 14599, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 16964, - "name": "BaseCollection.id" - } - }, - { - "id": 14600, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 16965, - "name": "BaseCollection.title" - } - }, + "type": "reflection", + "declaration": { + "id": 14583, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 14584, + "name": "fulfillment_providers", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 14571, + "name": "AdminFulfillmentProvider", + "package": "@medusajs/types" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14584 + ] + } + ] + } + } + ], + "name": "PaginatedResponse", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14589, + "name": "AdminGeoZone", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ { - "id": 14601, - "name": "handle", + "id": 14590, + "name": "id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 16966, - "name": "BaseCollection.handle" } }, { - "id": 14602, - "name": "created_at", + "id": 14591, + "name": "type", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { "type": "reference", - "target": 16967, - "name": "BaseCollection.created_at" + "target": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "GeoZoneType" + }, + "name": "GeoZoneType", + "package": "@medusajs/types" } }, { - "id": 14603, - "name": "updated_at", + "id": 14592, + "name": "country_code", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 16968, - "name": "BaseCollection.updated_at" } }, { - "id": 14604, - "name": "deleted_at", + "id": 14593, + "name": "province_code", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { "type": "union", "types": [ @@ -22458,49 +27296,34 @@ "name": "string" } ] - }, - "inheritedFrom": { - "type": "reference", - "target": 16969, - "name": "BaseCollection.deleted_at" } }, { - "id": 14605, - "name": "products", + "id": 14594, + "name": "city", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/http/product/admin/entitites.ts", - "qualifiedName": "AdminProduct" + "type": "union", + "types": [ + { + "type": "literal", + "value": null }, - "name": "AdminProduct", - "package": "@medusajs/types" - } - }, - "inheritedFrom": { - "type": "reference", - "target": 16970, - "name": "BaseCollection.products" + { + "type": "intrinsic", + "name": "string" + } + ] } }, { - "id": 14606, - "name": "metadata", + "id": 14595, + "name": "postal_expression", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { "type": "union", "types": [ @@ -22528,11 +27351,48 @@ "package": "typescript" } ] - }, - "inheritedFrom": { - "type": "reference", - "target": 16971, - "name": "BaseCollection.metadata" + } + }, + { + "id": 14596, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14597, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14598, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] } } ], @@ -22540,334 +27400,246 @@ { "title": "Properties", "children": [ - 14599, - 14600, - 14601, - 14602, - 14603, - 14604, - 14605, - 14606 + 14590, + 14591, + 14592, + 14593, + 14594, + 14595, + 14596, + 14597, + 14598 ] } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 16963, - "name": "BaseCollection", - "package": "@medusajs/types" - } ] }, { - "id": 14607, - "name": "StoreCollectionFilters", + "id": 14599, + "name": "AdminServiceZone", "variant": "declaration", "kind": 256, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An object used to allow specifying flexible queries with and/or conditions." - } - ] - }, "children": [ { - "id": 14615, - "name": "$and", + "id": 14600, + "name": "id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." - } - ] - }, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14601, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14602, + "name": "fulfillment_set_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14603, + "name": "geo_zones", + "variant": "declaration", + "kind": 1024, + "flags": {}, "type": { "type": "array", "elementType": { - "type": "union", - "types": [ - { - "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", - "package": "@medusajs/types" - }, - { - "type": "reference", - "target": 14196, - "typeArguments": [ - { - "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", - "package": "@medusajs/types" - } - ], - "name": "BaseFilterable", - "package": "@medusajs/types" - } - ] + "type": "reference", + "target": 14589, + "name": "AdminGeoZone", + "package": "@medusajs/types" } - }, - "inheritedFrom": { - "type": "reference", - "target": 16980, - "name": "BaseCollectionFilters.$and" } }, { - "id": 14616, - "name": "$or", + "id": 14604, + "name": "shipping_options", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." - } - ] - }, + "flags": {}, "type": { "type": "array", "elementType": { - "type": "union", - "types": [ - { - "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", - "package": "@medusajs/types" - }, - { - "type": "reference", - "target": 14196, - "typeArguments": [ - { - "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", - "package": "@medusajs/types" - } - ], - "name": "BaseFilterable", - "package": "@medusajs/types" - } - ] + "type": "reference", + "target": 15030, + "name": "AdminShippingOption", + "package": "@medusajs/types" } - }, - "inheritedFrom": { - "type": "reference", - "target": 16981, - "name": "BaseCollectionFilters.$or" } }, { - "id": 14608, - "name": "q", + "id": 14605, + "name": "created_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 16973, - "name": "BaseCollectionFilters.q" } }, { - "id": 14609, - "name": "id", + "id": 14606, + "name": "updated_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14607, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, "type": { "type": "union", "types": [ { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": null }, { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "string" } ] - }, - "inheritedFrom": { - "type": "reference", - "target": 16974, - "name": "BaseCollectionFilters.id" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14600, + 14601, + 14602, + 14603, + 14604, + 14605, + 14606, + 14607 + ] + } + ] + }, + { + "id": 14608, + "name": "AdminFulfillmentSet", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14609, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" } }, { "id": 14610, - "name": "handle", + "name": "name", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ] - }, - "inheritedFrom": { - "type": "reference", - "target": 16975, - "name": "BaseCollectionFilters.handle" + "type": "intrinsic", + "name": "string" } }, { "id": 14611, - "name": "title", + "name": "type", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ] - }, - "inheritedFrom": { - "type": "reference", - "target": 16976, - "name": "BaseCollectionFilters.title" + "type": "intrinsic", + "name": "string" } }, { "id": 14612, - "name": "created_at", + "name": "service_zones", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { - "type": "reference", - "target": 14174, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" - }, - "inheritedFrom": { - "type": "reference", - "target": 16977, - "name": "BaseCollectionFilters.created_at" + "type": "array", + "elementType": { + "type": "reference", + "target": 14599, + "name": "AdminServiceZone", + "package": "@medusajs/types" + } } }, { "id": 14613, - "name": "updated_at", + "name": "created_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { - "type": "reference", - "target": 14174, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" - }, - "inheritedFrom": { - "type": "reference", - "target": 16978, - "name": "BaseCollectionFilters.updated_at" + "type": "intrinsic", + "name": "string" } }, { "id": 14614, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14615, "name": "deleted_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { - "type": "reference", - "target": 14174, - "typeArguments": [ + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, { "type": "intrinsic", - "name": "string" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" - }, - "inheritedFrom": { - "type": "reference", - "target": 16979, - "name": "BaseCollectionFilters.deleted_at" + "name": "string" + } + ] } } ], @@ -22875,37 +27647,72 @@ { "title": "Properties", "children": [ - 14615, - 14616, - 14608, 14609, 14610, 14611, 14612, 14613, - 14614 + 14614, + 14615 ] } + ] + }, + { + "id": 14616, + "name": "AdminCreateFulfillmentSetServiceZone", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14617, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14618, + "name": "geo_zones", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 17004, + "name": "AdminUpsertFulfillmentSetServiceZoneGeoZone", + "package": "@medusajs/types" + } + } + } ], - "extendedTypes": [ + "groups": [ { - "type": "reference", - "target": 16972, - "name": "BaseCollectionFilters", - "package": "@medusajs/types" + "title": "Properties", + "children": [ + 14617, + 14618 + ] } ] }, { - "id": 14617, - "name": "SelectParams", + "id": 14619, + "name": "AdminUpdateFulfillmentSetServiceZone", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14618, - "name": "fields", + "id": 14620, + "name": "name", "variant": "declaration", "kind": 1024, "flags": { @@ -22915,102 +27722,178 @@ "type": "intrinsic", "name": "string" } + }, + { + "id": 14621, + "name": "geo_zones", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 17005, + "name": "AdminUpdateFulfillmentSetServiceZoneGeoZone", + "package": "@medusajs/types" + } + } } ], "groups": [ { "title": "Properties", "children": [ - 14618 + 14620, + 14621 ] } - ], - "extendedBy": [ - { - "type": "reference", - "target": 14619, - "name": "FindParams" - }, - { - "type": "reference", - "target": 14898, - "name": "AdminPriceListParams" - }, + ] + }, + { + "id": 14622, + "name": "AdminServiceZoneResponse", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ { - "type": "reference", - "target": 15016, - "name": "AdminProductTypeParams" - }, + "id": 14623, + "name": "service_zone", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 14599, + "name": "AdminServiceZone", + "package": "@medusajs/types" + } + } + ], + "groups": [ { - "type": "reference", - "target": 17028, - "name": "BaseProductCategoryParams" + "title": "Properties", + "children": [ + 14623 + ] } ] }, { - "id": 14619, - "name": "FindParams", + "id": 14624, + "name": "AdminServiceZoneDeleteResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14623, - "name": "fields", + "id": 14625, + "name": "id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, "isInherited": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the item that was deleted." + } + ] + }, "type": { "type": "intrinsic", "name": "string" }, "inheritedFrom": { "type": "reference", - "target": 14618, - "name": "SelectParams.fields" + "target": -1, + "name": "DeleteResponse.id" } }, { - "id": 14620, - "name": "limit", + "id": 14626, + "name": "object", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The type of the item that was deleted." + } + ] }, "type": { - "type": "intrinsic", - "name": "number" + "type": "literal", + "value": "service_zone" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.object" } }, { - "id": 14621, - "name": "offset", + "id": 14627, + "name": "deleted", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the item was deleted successfully." + } + ] }, "type": { "type": "intrinsic", - "name": "number" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.deleted" } }, { - "id": 14622, - "name": "order", + "id": 14628, + "name": "parent", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The parent resource of the item that was deleted, if applicable." + } + ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 14608, + "name": "AdminFulfillmentSet", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.parent" } } ], @@ -23018,501 +27901,180 @@ { "title": "Properties", "children": [ - 14623, - 14620, - 14621, - 14622 + 14625, + 14626, + 14627, + 14628 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14617, - "name": "SelectParams", - "package": "@medusajs/types" - } - ], - "extendedBy": [ - { - "type": "reference", - "target": 14649, - "name": "AdminFulfillmentProviderListParams" - }, - { - "type": "reference", - "target": 14758, - "name": "AdminInventoryItemParams" - }, - { - "type": "reference", - "target": 14802, - "name": "AdminInventoryLevelFilters" - }, - { - "type": "reference", - "target": 14885, - "name": "AdminPriceListListParams" - }, - { - "type": "reference", - "target": 15003, - "name": "AdminProductTypeListParams" - }, - { - "type": "reference", - "target": 15131, - "name": "AdminShippingOptionListParams" - }, - { - "type": "reference", - "target": 15180, - "name": "AdminShippingProfileListParams" - }, - { - "type": "reference", - "target": 15238, - "name": "AdminStockLocationListParams" - }, - { - "type": "reference", - "target": 15300, - "name": "AdminTaxRateListParams" - }, - { - "type": "reference", - "target": 15357, - "name": "AdminTaxRegionListParams" - }, - { - "type": "reference", - "target": 17008, - "name": "BaseProductCategoryListParams" - } - ] - }, - { - "id": 14624, - "name": "DeleteResponse", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "typeParameters": [ - { - "id": 14630, - "name": "TObject", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14631, - "name": "TParent", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "default": { - "type": "reflection", - "declaration": { - "id": 14632, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {} - } - } - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 14625, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 14626, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the item that was deleted." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14627, - "name": "object", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The type of the item that was deleted." - } - ] - }, - "type": { - "type": "reference", - "target": 14630, - "name": "TObject", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - }, + "target": 14549, + "typeArguments": [ { - "id": 14628, - "name": "deleted", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Whether the item was deleted successfully." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "boolean" - } + "type": "literal", + "value": "service_zone" }, { - "id": 14629, - "name": "parent", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The parent resource of the item that was deleted, if applicable." - } - ] - }, - "type": { - "type": "reference", - "target": 14631, - "name": "TParent", - "package": "@medusajs/types", - "refersToTypeParameter": true - } + "type": "reference", + "target": 14608, + "name": "AdminFulfillmentSet", + "package": "@medusajs/types" } ], - "groups": [ - { - "title": "Properties", - "children": [ - 14626, - 14627, - 14628, - 14629 - ] - } - ] - } - }, - "extendedBy": [ - { - "type": "reference", - "target": 14699, - "name": "AdminServiceZoneDeleteResponse" - }, - { - "type": "reference", - "target": 14706, - "name": "AdminFulfillmentSetDeleteResponse" - }, - { - "type": "reference", - "target": 14909, - "name": "AdminPriceListDeleteResponse" - }, - { - "type": "reference", - "target": 14984, - "name": "AdminProductCategoryDeleteResponse" - }, - { - "type": "reference", - "target": 15027, - "name": "AdminProductTypeDeleteResponse" - }, - { - "type": "reference", - "target": 15150, - "name": "AdminShippingOptionDeleteResponse" - }, - { - "type": "reference", - "target": 15199, - "name": "AdminShippingProfileDeleteResponse" - }, - { - "type": "reference", - "target": 15259, - "name": "AdminStockLocationDeleteResponse" - }, - { - "type": "reference", - "target": 15321, - "name": "AdminTaxRateDeleteResponse" - }, - { - "type": "reference", - "target": 15376, - "name": "AdminTaxRegionDeleteResponse" + "name": "DeleteResponse", + "package": "@medusajs/types" } ] }, { - "id": 14633, - "name": "PaginatedResponse", + "id": 14629, + "name": "AdminFulfillmentSetResponse", "variant": "declaration", - "kind": 2097152, + "kind": 256, "flags": {}, - "typeParameters": [ - { - "id": 14638, - "name": "T", - "variant": "typeParam", - "kind": 131072, - "flags": {} - } - ], - "type": { - "type": "intersection", - "types": [ - { - "type": "reflection", - "declaration": { - "id": 14634, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 14635, - "name": "limit", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 14636, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 14637, - "name": "count", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14635, - 14636, - 14637 - ] - } - ] - } - }, - { - "type": "reference", - "target": 14638, - "name": "T", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - ] - }, - "extendedBy": [ - { - "type": "reference", - "target": 14657, - "name": "AdminFulfillmentProviderListResponse" - }, - { - "type": "reference", - "target": 14902, - "name": "AdminPriceListListResponse" - }, - { - "type": "reference", - "target": 14977, - "name": "AdminProductCategoryListResponse" - }, - { - "type": "reference", - "target": 15020, - "name": "AdminProductTypeListResponse" - }, + "children": [ { - "type": "reference", - "target": 15252, - "name": "AdminStockLocationListResponse" + "id": 14630, + "name": "fulfillment_set", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 14608, + "name": "AdminFulfillmentSet", + "package": "@medusajs/types" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14630 + ] } ] }, { - "id": 14639, - "name": "AdminFile", + "id": 14631, + "name": "AdminFulfillmentSetDeleteResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14640, + "id": 14632, "name": "id", "variant": "declaration", "kind": 1024, "flags": { "isInherited": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the item that was deleted." + } + ] + }, "type": { "type": "intrinsic", "name": "string" }, "inheritedFrom": { "type": "reference", - "target": 16983, - "name": "BaseFile.id" + "target": -1, + "name": "DeleteResponse.id" } }, { - "id": 14641, - "name": "url", + "id": 14633, + "name": "object", "variant": "declaration", "kind": 1024, "flags": { "isInherited": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The type of the item that was deleted." + } + ] + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": "fulfillment_set" }, "inheritedFrom": { "type": "reference", - "target": 16984, - "name": "BaseFile.url" + "target": -1, + "name": "DeleteResponse.object" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14640, - 14641 - ] - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 16982, - "name": "BaseFile", - "package": "@medusajs/types" - } - ] - }, - { - "id": 14642, - "name": "AdminUploadFile", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "reference", - "target": 16985, - "name": "BaseUploadFile", - "package": "@medusajs/types" - } - }, - { - "id": 14643, - "name": "StoreFile", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + }, { - "id": 14644, - "name": "id", + "id": 14634, + "name": "deleted", "variant": "declaration", "kind": 1024, "flags": { "isInherited": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the item was deleted successfully." + } + ] + }, "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "target": 16983, - "name": "BaseFile.id" + "target": -1, + "name": "DeleteResponse.deleted" } }, { - "id": 14645, - "name": "url", + "id": 14635, + "name": "parent", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The parent resource of the item that was deleted, if applicable." + } + ] + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 14636, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } }, "inheritedFrom": { "type": "reference", - "target": 16984, - "name": "BaseFile.url" + "target": -1, + "name": "DeleteResponse.parent" } } ], @@ -23520,29 +28082,37 @@ { "title": "Properties", "children": [ - 14644, - 14645 + 14632, + 14633, + 14634, + 14635 ] } ], "extendedTypes": [ { "type": "reference", - "target": 16982, - "name": "BaseFile", + "target": 14549, + "typeArguments": [ + { + "type": "literal", + "value": "fulfillment_set" + } + ], + "name": "DeleteResponse", "package": "@medusajs/types" } ] }, { - "id": 14646, - "name": "AdminFulfillmentProvider", + "id": 14707, + "name": "InventoryLevel", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14647, + "id": 14708, "name": "id", "variant": "declaration", "kind": 1024, @@ -23553,14 +28123,106 @@ } }, { - "id": 14648, - "name": "is_enabled", + "id": 14709, + "name": "inventory_item_id", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" + } + }, + { + "id": 14710, + "name": "location_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14711, + "name": "stocked_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 14712, + "name": "reserved_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 14713, + "name": "available_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 14714, + "name": "incoming_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 14715, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] } } ], @@ -23568,123 +28230,144 @@ { "title": "Properties", "children": [ - 14647, - 14648 + 14708, + 14709, + 14710, + 14711, + 14712, + 14713, + 14714, + 14715 ] } ] }, { - "id": 14649, - "name": "AdminFulfillmentProviderListParams", + "id": 14716, + "name": "AdminUpdateInventoryLevel", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14656, - "name": "fields", + "id": 14717, + "name": "stocked_quantity", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 14623, - "name": "FindParams.fields" + "name": "number" } }, { - "id": 14653, - "name": "limit", + "id": 14718, + "name": "incoming_quantity", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "target": 14620, - "name": "FindParams.limit" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14717, + 14718 + ] + } + ] + }, + { + "id": 14719, + "name": "AdminCreateInventoryLevel", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14720, + "name": "location_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" } }, { - "id": 14654, - "name": "offset", + "id": 14721, + "name": "stocked_quantity", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "target": 14621, - "name": "FindParams.offset" } }, { - "id": 14655, - "name": "order", + "id": 14722, + "name": "incoming_quantity", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 14622, - "name": "FindParams.order" + "name": "number" } - }, + } + ], + "groups": [ { - "id": 14650, - "name": "id", + "title": "Properties", + "children": [ + 14720, + 14721, + 14722 + ] + } + ] + }, + { + "id": 14723, + "name": "AdminBatchUpdateInventoryLevelLocation", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14724, + "name": "delete", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ] + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 14651, - "name": "q", + "id": 14725, + "name": "update", "variant": "declaration", "kind": 1024, "flags": { @@ -23692,20 +28375,25 @@ }, "type": { "type": "intrinsic", - "name": "string" + "name": "undefined" } }, { - "id": 14652, - "name": "is_enabled", + "id": 14726, + "name": "create", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "target": 14719, + "name": "AdminCreateInventoryLevel", + "package": "@medusajs/types" + } } } ], @@ -23713,56 +28401,46 @@ { "title": "Properties", "children": [ - 14656, - 14653, - 14654, - 14655, - 14650, - 14651, - 14652 + 14724, + 14725, + 14726 ] } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 14619, - "name": "FindParams", - "package": "@medusajs/types" - } ] }, { - "id": 14657, - "name": "AdminFulfillmentProviderListResponse", + "id": 14727, + "name": "AdminInventoryLevelFilters", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14660, - "name": "limit", + "id": 14732, + "name": "fields", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, "type": { "type": "intrinsic", - "name": "number" + "name": "string" }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "PaginatedResponse.limit" + "target": 14548, + "name": "FindParams.fields" } }, { - "id": 14661, - "name": "offset", + "id": 14729, + "name": "limit", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, "type": { @@ -23771,16 +28449,17 @@ }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "PaginatedResponse.offset" + "target": 14545, + "name": "FindParams.limit" } }, { - "id": 14662, - "name": "count", + "id": 14730, + "name": "offset", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, "type": { @@ -23789,31 +28468,52 @@ }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "PaginatedResponse.count" + "target": 14546, + "name": "FindParams.offset" } }, { - "id": 14663, - "name": "fulfillment_providers", + "id": 14731, + "name": "order", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14646, - "name": "AdminFulfillmentProvider", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "string" }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "PaginatedResponse.fulfillment_providers" + "target": 14547, + "name": "FindParams.order" + } + }, + { + "id": 14728, + "name": "location_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] } } ], @@ -23821,97 +28521,114 @@ { "title": "Properties", "children": [ - 14660, - 14661, - 14662, - 14663 - ] - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 14633, - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 14658, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 14659, - "name": "fulfillment_providers", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14646, - "name": "AdminFulfillmentProvider", - "package": "@medusajs/types" - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14659 - ] - } - ] - } - } - ], - "name": "PaginatedResponse", + 14732, + 14729, + 14730, + 14731, + 14728 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 14544, + "name": "FindParams", "package": "@medusajs/types" } ] }, { - "id": 14664, - "name": "AdminGeoZone", + "id": 14733, + "name": "AdminInventoryLevelResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14665, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14666, - "name": "type", + "id": 14734, + "name": "inventory_level", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "GeoZoneType" - }, - "name": "GeoZoneType", + "target": 14707, + "name": "InventoryLevel", "package": "@medusajs/types" } - }, + } + ], + "groups": [ { - "id": 14667, - "name": "country_code", + "title": "Properties", + "children": [ + 14734 + ] + } + ] + }, + { + "id": 14735, + "name": "AdminInventoryLevelListResponse", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "reference", + "target": 14558, + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 14736, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 14737, + "name": "inventory_levels", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 14707, + "name": "InventoryLevel", + "package": "@medusajs/types" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14737 + ] + } + ] + } + } + ], + "name": "PaginatedResponse", + "package": "@medusajs/types" + } + }, + { + "id": 14637, + "name": "AdminInventoryItem", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14638, + "name": "id", "variant": "declaration", "kind": 1024, "flags": {}, @@ -23921,11 +28638,13 @@ } }, { - "id": 14668, - "name": "province_code", + "id": 14639, + "name": "sku", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "union", "types": [ @@ -23941,11 +28660,13 @@ } }, { - "id": 14669, - "name": "city", + "id": 14640, + "name": "origin_country", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "union", "types": [ @@ -23961,11 +28682,13 @@ } }, { - "id": 14670, - "name": "postal_expression", + "id": 14641, + "name": "hs_code", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "union", "types": [ @@ -23974,55 +28697,31 @@ "value": null }, { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" + "type": "intrinsic", + "name": "string" } ] } }, { - "id": 14671, - "name": "created_at", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14672, - "name": "updated_at", + "id": 14642, + "name": "requires_shipping", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 14673, - "name": "deleted_at", + "id": 14643, + "name": "mid_code", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "union", "types": [ @@ -24036,125 +28735,125 @@ } ] } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14665, - 14666, - 14667, - 14668, - 14669, - 14670, - 14671, - 14672, - 14673 - ] - } - ] - }, - { - "id": 14674, - "name": "AdminServiceZone", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 14675, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14676, - "name": "name", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } }, { - "id": 14677, - "name": "fulfillment_set_id", + "id": 14644, + "name": "material", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] } }, { - "id": 14678, - "name": "geo_zones", + "id": 14645, + "name": "weight", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14664, - "name": "AdminGeoZone", - "package": "@medusajs/types" - } + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] } }, { - "id": 14679, - "name": "shipping_options", + "id": 14646, + "name": "length", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 15062, - "name": "AdminShippingOption", - "package": "@medusajs/types" - } + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] } }, { - "id": 14680, - "name": "created_at", + "id": 14647, + "name": "height", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] } }, { - "id": 14681, - "name": "updated_at", + "id": 14648, + "name": "width", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] } }, { - "id": 14682, - "name": "deleted_at", + "id": 14649, + "name": "title", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "union", "types": [ @@ -24168,108 +28867,37 @@ } ] } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14675, - 14676, - 14677, - 14678, - 14679, - 14680, - 14681, - 14682 - ] - } - ] - }, - { - "id": 14683, - "name": "AdminFulfillmentSet", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 14684, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14685, - "name": "name", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14686, - "name": "type", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14687, - "name": "service_zones", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14674, - "name": "AdminServiceZone", - "package": "@medusajs/types" - } - } - }, - { - "id": 14688, - "name": "created_at", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } }, { - "id": 14689, - "name": "updated_at", + "id": 14650, + "name": "description", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] } }, { - "id": 14690, - "name": "deleted_at", + "id": 14651, + "name": "thumbnail", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "union", "types": [ @@ -24283,55 +28911,42 @@ } ] } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14684, - 14685, - 14686, - 14687, - 14688, - 14689, - 14690 - ] - } - ] - }, - { - "id": 14691, - "name": "AdminCreateFulfillmentSetServiceZone", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 14692, - "name": "name", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } }, { - "id": 14693, - "name": "geo_zones", + "id": 14652, + "name": "metadata", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 16991, - "name": "AdminUpsertFulfillmentSetServiceZoneGeoZone", - "package": "@medusajs/types" - } + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] } } ], @@ -24339,22 +28954,35 @@ { "title": "Properties", "children": [ - 14692, - 14693 + 14638, + 14639, + 14640, + 14641, + 14642, + 14643, + 14644, + 14645, + 14646, + 14647, + 14648, + 14649, + 14650, + 14651, + 14652 ] } ] }, { - "id": 14694, - "name": "AdminUpdateFulfillmentSetServiceZone", + "id": 14653, + "name": "AdminCreateInventoryItem", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14695, - "name": "name", + "id": 14654, + "name": "sku", "variant": "declaration", "kind": 1024, "flags": { @@ -24366,357 +28994,187 @@ } }, { - "id": 14696, - "name": "geo_zones", + "id": 14655, + "name": "hs_code", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 16992, - "name": "AdminUpdateFulfillmentSetServiceZoneGeoZone", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "string" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14695, - 14696 - ] - } - ] - }, - { - "id": 14697, - "name": "AdminServiceZoneResponse", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + }, { - "id": 14698, - "name": "service_zone", + "id": 14656, + "name": "weight", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "reference", - "target": 14674, - "name": "AdminServiceZone", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "number" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14698 - ] - } - ] - }, - { - "id": 14699, - "name": "AdminServiceZoneDeleteResponse", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + }, { - "id": 14700, - "name": "id", + "id": 14657, + "name": "length", "variant": "declaration", "kind": 1024, "flags": { - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the item that was deleted." - } - ] + "isOptional": true }, "type": { "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": -1, - "name": "DeleteResponse.id" + "name": "number" } }, { - "id": 14701, - "name": "object", + "id": 14658, + "name": "height", "variant": "declaration", "kind": 1024, "flags": { - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The type of the item that was deleted." - } - ] + "isOptional": true }, "type": { - "type": "literal", - "value": "service_zone" - }, - "inheritedFrom": { - "type": "reference", - "target": -1, - "name": "DeleteResponse.object" + "type": "intrinsic", + "name": "number" } }, { - "id": 14702, - "name": "deleted", + "id": 14659, + "name": "width", "variant": "declaration", "kind": 1024, "flags": { - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Whether the item was deleted successfully." - } - ] + "isOptional": true }, "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "target": -1, - "name": "DeleteResponse.deleted" + "name": "number" } }, { - "id": 14703, - "name": "parent", + "id": 14660, + "name": "origin_country", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The parent resource of the item that was deleted, if applicable." - } - ] + "isOptional": true }, "type": { - "type": "reference", - "target": 14683, - "name": "AdminFulfillmentSet", - "package": "@medusajs/types" - }, - "inheritedFrom": { - "type": "reference", - "target": -1, - "name": "DeleteResponse.parent" + "type": "intrinsic", + "name": "string" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14700, - 14701, - 14702, - 14703 - ] - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 14624, - "typeArguments": [ - { - "type": "literal", - "value": "service_zone" - }, - { - "type": "reference", - "target": 14683, - "name": "AdminFulfillmentSet", - "package": "@medusajs/types" - } - ], - "name": "DeleteResponse", - "package": "@medusajs/types" - } - ] - }, - { - "id": 14704, - "name": "AdminFulfillmentSetResponse", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + }, { - "id": 14705, - "name": "fulfillment_set", + "id": 14661, + "name": "mid_code", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "reference", - "target": 14683, - "name": "AdminFulfillmentSet", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14705 - ] - } - ] - }, - { - "id": 14706, - "name": "AdminFulfillmentSetDeleteResponse", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + }, { - "id": 14707, - "name": "id", + "id": 14662, + "name": "material", "variant": "declaration", "kind": 1024, "flags": { - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the item that was deleted." - } - ] + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": -1, - "name": "DeleteResponse.id" } }, { - "id": 14708, - "name": "object", + "id": 14663, + "name": "title", "variant": "declaration", "kind": 1024, "flags": { - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The type of the item that was deleted." - } - ] + "isOptional": true }, "type": { - "type": "literal", - "value": "fulfillment_set" - }, - "inheritedFrom": { - "type": "reference", - "target": -1, - "name": "DeleteResponse.object" + "type": "intrinsic", + "name": "string" } }, { - "id": 14709, - "name": "deleted", + "id": 14664, + "name": "description", "variant": "declaration", "kind": 1024, "flags": { - "isInherited": true + "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Whether the item was deleted successfully." - } - ] + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14665, + "name": "requires_shipping", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "target": -1, - "name": "DeleteResponse.deleted" } }, { - "id": 14710, - "name": "parent", + "id": 14666, + "name": "thumbnail", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The parent resource of the item that was deleted, if applicable." - } - ] + "isOptional": true }, "type": { - "type": "reflection", - "declaration": { - "id": 14711, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {} - } + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14667, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, - "inheritedFrom": { + "type": { "type": "reference", - "target": -1, - "name": "DeleteResponse.parent" + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" } } ], @@ -24724,318 +29182,317 @@ { "title": "Properties", "children": [ - 14707, - 14708, - 14709, - 14710 + 14654, + 14655, + 14656, + 14657, + 14658, + 14659, + 14660, + 14661, + 14662, + 14663, + 14664, + 14665, + 14666, + 14667 ] } ], - "extendedTypes": [ + "extendedBy": [ { "type": "reference", - "target": 14624, - "typeArguments": [ - { - "type": "literal", - "value": "fulfillment_set" - } - ], - "name": "DeleteResponse", - "package": "@medusajs/types" + "target": 14668, + "name": "AdminUpdateInventoryItem" } ] }, { - "id": 14782, - "name": "InventoryLevel", + "id": 14668, + "name": "AdminUpdateInventoryItem", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14783, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14784, - "name": "inventory_item_id", + "id": 14669, + "name": "sku", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14654, + "name": "AdminCreateInventoryItem.sku" } }, { - "id": 14785, - "name": "location_id", + "id": 14670, + "name": "hs_code", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14655, + "name": "AdminCreateInventoryItem.hs_code" } }, { - "id": 14786, - "name": "stocked_quantity", + "id": 14671, + "name": "weight", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { "type": "intrinsic", "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 14656, + "name": "AdminCreateInventoryItem.weight" } }, { - "id": 14787, - "name": "reserved_quantity", + "id": 14672, + "name": "length", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { "type": "intrinsic", "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 14657, + "name": "AdminCreateInventoryItem.length" } }, { - "id": 14788, - "name": "available_quantity", + "id": 14673, + "name": "height", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { "type": "intrinsic", "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 14658, + "name": "AdminCreateInventoryItem.height" } }, { - "id": 14789, - "name": "incoming_quantity", + "id": 14674, + "name": "width", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { "type": "intrinsic", "name": "number" - } - }, - { - "id": 14790, - "name": "metadata", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - } - ] + "inheritedFrom": { + "type": "reference", + "target": 14659, + "name": "AdminCreateInventoryItem.width" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14783, - 14784, - 14785, - 14786, - 14787, - 14788, - 14789, - 14790 - ] - } - ] - }, - { - "id": 14791, - "name": "AdminUpdateInventoryLevel", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + }, { - "id": 14792, - "name": "stocked_quantity", + "id": 14675, + "name": "origin_country", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { "type": "intrinsic", - "name": "number" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14660, + "name": "AdminCreateInventoryItem.origin_country" } }, { - "id": 14793, - "name": "incoming_quantity", + "id": 14676, + "name": "mid_code", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { "type": "intrinsic", - "name": "number" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14661, + "name": "AdminCreateInventoryItem.mid_code" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14792, - 14793 - ] - } - ] - }, - { - "id": 14794, - "name": "AdminCreateInventoryLevel", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + }, { - "id": 14795, - "name": "location_id", + "id": 14677, + "name": "material", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14662, + "name": "AdminCreateInventoryItem.material" } }, { - "id": 14796, - "name": "stocked_quantity", + "id": 14678, + "name": "title", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { "type": "intrinsic", - "name": "number" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14663, + "name": "AdminCreateInventoryItem.title" } }, { - "id": 14797, - "name": "incoming_quantity", + "id": 14679, + "name": "description", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { "type": "intrinsic", - "name": "number" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14664, + "name": "AdminCreateInventoryItem.description" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14795, - 14796, - 14797 - ] - } - ] - }, - { - "id": 14798, - "name": "AdminBatchUpdateInventoryLevelLocation", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + }, { - "id": 14799, - "name": "delete", + "id": 14680, + "name": "requires_shipping", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": 14665, + "name": "AdminCreateInventoryItem.requires_shipping" } }, { - "id": 14800, - "name": "update", + "id": 14681, + "name": "thumbnail", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { "type": "intrinsic", - "name": "undefined" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14666, + "name": "AdminCreateInventoryItem.thumbnail" } }, { - "id": 14801, - "name": "create", + "id": 14682, + "name": "metadata", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14794, - "name": "AdminCreateInventoryLevel", - "package": "@medusajs/types" - } + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + }, + "inheritedFrom": { + "type": "reference", + "target": 14667, + "name": "AdminCreateInventoryItem.metadata" } } ], @@ -25043,22 +29500,41 @@ { "title": "Properties", "children": [ - 14799, - 14800, - 14801 + 14669, + 14670, + 14671, + 14672, + 14673, + 14674, + 14675, + 14676, + 14677, + 14678, + 14679, + 14680, + 14681, + 14682 ] } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 14653, + "name": "AdminCreateInventoryItem", + "package": "@medusajs/types" + } ] }, { - "id": 14802, - "name": "AdminInventoryLevelFilters", + "id": 14683, + "name": "AdminInventoryItemParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14807, + "id": 14700, "name": "fields", "variant": "declaration", "kind": 1024, @@ -25072,12 +29548,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14623, + "target": 14548, "name": "FindParams.fields" } }, { - "id": 14804, + "id": 14697, "name": "limit", "variant": "declaration", "kind": 1024, @@ -25091,12 +29567,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14620, + "target": 14545, "name": "FindParams.limit" } }, { - "id": 14805, + "id": 14698, "name": "offset", "variant": "declaration", "kind": 1024, @@ -25110,12 +29586,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14621, + "target": 14546, "name": "FindParams.offset" } }, { - "id": 14806, + "id": 14699, "name": "order", "variant": "declaration", "kind": 1024, @@ -25129,13 +29605,151 @@ }, "inheritedFrom": { "type": "reference", - "target": 14622, + "target": 14547, "name": "FindParams.order" } }, { - "id": 14803, - "name": "location_id", + "id": 14684, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + { + "id": 14685, + "name": "q", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14686, + "name": "sku", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + { + "id": 14687, + "name": "origin_country", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + { + "id": 14688, + "name": "mid_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + { + "id": 14689, + "name": "hs_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + { + "id": 14690, + "name": "material", "variant": "declaration", "kind": 1024, "flags": { @@ -25157,46 +29771,231 @@ } ] } + }, + { + "id": 14691, + "name": "requires_shipping", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 14692, + "name": "weight", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "number" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + } + ] + } + }, + { + "id": 14693, + "name": "length", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "number" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + } + ] + } + }, + { + "id": 14694, + "name": "height", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "number" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + } + ] + } + }, + { + "id": 14695, + "name": "width", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "number" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + } + ] + } + }, + { + "id": 14696, + "name": "location_levels", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "literal", + "value": "location_id" + }, + { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + ], + "name": "Record", + "package": "typescript" + } } ], "groups": [ { "title": "Properties", "children": [ - 14807, - 14804, - 14805, - 14806, - 14803 + 14700, + 14697, + 14698, + 14699, + 14684, + 14685, + 14686, + 14687, + 14688, + 14689, + 14690, + 14691, + 14692, + 14693, + 14694, + 14695, + 14696 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14619, + "target": 14544, "name": "FindParams", "package": "@medusajs/types" } ] }, { - "id": 14808, - "name": "AdminInventoryLevelResponse", + "id": 14701, + "name": "AdminInventoryItemResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14809, - "name": "inventory_level", + "id": 14702, + "name": "inventory_item", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 14782, - "name": "InventoryLevel", + "target": 14637, + "name": "AdminInventoryItem", "package": "@medusajs/types" } } @@ -25205,33 +30004,33 @@ { "title": "Properties", "children": [ - 14809 + 14702 ] } ] }, { - "id": 14810, - "name": "AdminInventoryLevelListResponse", + "id": 14703, + "name": "AdminInventoryItemListResponse", "variant": "declaration", "kind": 2097152, "flags": {}, "type": { "type": "reference", - "target": 14633, + "target": 14558, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 14811, + "id": 14704, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14812, - "name": "inventory_levels", + "id": 14705, + "name": "inventory_items", "variant": "declaration", "kind": 1024, "flags": {}, @@ -25239,8 +30038,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 14782, - "name": "InventoryLevel", + "target": 14637, + "name": "AdminInventoryItem", "package": "@medusajs/types" } } @@ -25250,7 +30049,7 @@ { "title": "Properties", "children": [ - 14812 + 14705 ] } ] @@ -25262,333 +30061,343 @@ } }, { - "id": 14712, - "name": "AdminInventoryItem", + "id": 14706, + "name": "AdminInventoryItemDeleteResponse", "variant": "declaration", - "kind": 256, + "kind": 2097152, "flags": {}, - "children": [ - { - "id": 14713, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" + "type": { + "type": "reference", + "target": 14549, + "typeArguments": [ + { + "type": "literal", + "value": "inventory_item" } - }, - { - "id": 14714, - "name": "sku", + ], + "name": "DeleteResponse", + "package": "@medusajs/types" + } + }, + { + "id": 14738, + "name": "AdminAcceptInvite", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 14739, + "name": "__type", "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 14740, + "name": "first_name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { "type": "intrinsic", "name": "string" } - ] - } - }, - { - "id": 14715, - "name": "origin_country", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { + }, + { + "id": 14741, + "name": "last_name", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { "type": "intrinsic", "name": "string" } - ] - } - }, - { - "id": 14716, - "name": "hs_code", + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14740, + 14741 + ] + } + ] + } + } + }, + { + "id": 14742, + "name": "AdminCreateInvite", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 14743, + "name": "__type", "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 14744, + "name": "email", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { "type": "intrinsic", "name": "string" } - ] - } - }, - { - "id": 14717, - "name": "requires_shipping", + }, + { + "id": 14745, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14744, + 14745 + ] + } + ] + } + } + }, + { + "id": 14746, + "name": "AdminInviteResponse", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 14747, + "name": "__type", "variant": "declaration", - "kind": 1024, + "kind": 65536, "flags": {}, - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 14718, - "name": "mid_code", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { + "children": [ + { + "id": 14748, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { "type": "intrinsic", "name": "string" } - ] - } - }, - { - "id": 14719, - "name": "material", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { + }, + { + "id": 14749, + "name": "email", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { "type": "intrinsic", "name": "string" } - ] - } - }, - { - "id": 14720, - "name": "weight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { + }, + { + "id": 14750, + "name": "accepted", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { "type": "intrinsic", - "name": "number" + "name": "boolean" } - ] - } - }, - { - "id": 14721, - "name": "length", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { + }, + { + "id": 14751, + "name": "token", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { "type": "intrinsic", - "name": "number" + "name": "string" } - ] - } - }, - { - "id": 14722, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null + }, + { + "id": 14752, + "name": "expires_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, - { - "type": "intrinsic", - "name": "number" + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" } - ] - } - }, - { - "id": 14723, - "name": "width", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null + }, + { + "id": 14753, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, - { - "type": "intrinsic", - "name": "number" + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" } - ] - } - }, - { - "id": 14724, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null + }, + { + "id": 14754, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, - { - "type": "intrinsic", - "name": "string" + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" } - ] - } - }, - { - "id": 14725, - "name": "description", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null + }, + { + "id": 14755, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, - { - "type": "intrinsic", - "name": "string" + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" } - ] - } - }, + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14748, + 14749, + 14750, + 14751, + 14752, + 14753, + 14754, + 14755 + ] + } + ] + } + } + }, + { + "id": 14756, + "name": "AdminPriceListPrice", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ { - "id": 14726, - "name": "thumbnail", + "id": 14757, + "name": "variant_id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "intrinsic", + "name": "string" } }, { - "id": 14727, - "name": "metadata", + "id": 14758, + "name": "rules", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "union", - "types": [ + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ { - "type": "literal", - "value": null + "type": "intrinsic", + "name": "string" }, { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" + "type": "intrinsic", + "name": "unknown" } - ] + ], + "name": "Record", + "package": "typescript" } } ], @@ -25596,227 +30405,217 @@ { "title": "Properties", "children": [ - 14713, - 14714, - 14715, - 14716, - 14717, - 14718, - 14719, - 14720, - 14721, - 14722, - 14723, - 14724, - 14725, - 14726, - 14727 + 14757, + 14758 ] } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/http/pricing/admin/entities.ts", + "qualifiedName": "AdminPrice" + }, + "name": "AdminPrice", + "package": "@medusajs/types" + } ] }, { - "id": 14728, - "name": "AdminCreateInventoryItem", + "id": 14759, + "name": "AdminPriceList", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14729, - "name": "sku", + "id": 14760, + "name": "id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 14730, - "name": "hs_code", + "id": 14761, + "name": "title", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 14731, - "name": "weight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 14732, - "name": "length", + "id": 14762, + "name": "description", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", - "name": "number" + "name": "string" } }, { - "id": 14733, - "name": "height", + "id": 14763, + "name": "rules", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "intrinsic", - "name": "number" + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record", + "package": "typescript" } }, { - "id": 14734, - "name": "width", + "id": 14764, + "name": "starts_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "intrinsic", - "name": "number" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] } }, { - "id": 14735, - "name": "origin_country", + "id": 14765, + "name": "ends_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] } }, { - "id": 14736, - "name": "mid_code", + "id": 14766, + "name": "status", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", + "qualifiedName": "PriceListStatus" + }, + "name": "PriceListStatus", + "package": "@medusajs/types" } }, { - "id": 14737, - "name": "material", + "id": 14767, + "name": "type", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", + "qualifiedName": "PriceListType" + }, + "name": "PriceListType", + "package": "@medusajs/types" } }, { - "id": 14738, - "name": "title", + "id": 14768, + "name": "prices", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "target": 14756, + "name": "AdminPriceListPrice", + "package": "@medusajs/types" + } } }, { - "id": 14739, - "name": "description", + "id": 14769, + "name": "created_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 14740, - "name": "requires_shipping", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 14741, - "name": "thumbnail", + "id": 14770, + "name": "updated_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 14742, - "name": "metadata", + "id": 14771, + "name": "deleted_at", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ + "type": "union", + "types": [ { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": null }, { "type": "intrinsic", - "name": "unknown" + "name": "string" } - ], - "name": "Record", - "package": "typescript" + ] } } ], @@ -25824,293 +30623,113 @@ { "title": "Properties", "children": [ - 14729, - 14730, - 14731, - 14732, - 14733, - 14734, - 14735, - 14736, - 14737, - 14738, - 14739, - 14740, - 14741, - 14742 + 14760, + 14761, + 14762, + 14763, + 14764, + 14765, + 14766, + 14767, + 14768, + 14769, + 14770, + 14771 ] } - ], - "extendedBy": [ - { - "type": "reference", - "target": 14743, - "name": "AdminUpdateInventoryItem" - } ] }, { - "id": 14743, - "name": "AdminUpdateInventoryItem", + "id": 14772, + "name": "AdminCreatePriceListPrice", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14744, - "name": "sku", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 14729, - "name": "AdminCreateInventoryItem.sku" - } - }, - { - "id": 14745, - "name": "hs_code", + "id": 14773, + "name": "currency_code", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 14730, - "name": "AdminCreateInventoryItem.hs_code" } }, { - "id": 14746, - "name": "weight", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "target": 14731, - "name": "AdminCreateInventoryItem.weight" - } - }, - { - "id": 14747, - "name": "length", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "target": 14732, - "name": "AdminCreateInventoryItem.length" - } - }, - { - "id": 14748, - "name": "height", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "target": 14733, - "name": "AdminCreateInventoryItem.height" - } - }, - { - "id": 14749, - "name": "width", + "id": 14774, + "name": "amount", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "target": 14734, - "name": "AdminCreateInventoryItem.width" } }, { - "id": 14750, - "name": "origin_country", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 14735, - "name": "AdminCreateInventoryItem.origin_country" - } - }, - { - "id": 14751, - "name": "mid_code", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 14736, - "name": "AdminCreateInventoryItem.mid_code" - } - }, - { - "id": 14752, - "name": "material", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 14737, - "name": "AdminCreateInventoryItem.material" - } - }, - { - "id": 14753, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 14738, - "name": "AdminCreateInventoryItem.title" - } - }, - { - "id": 14754, - "name": "description", + "id": 14775, + "name": "variant_id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 14739, - "name": "AdminCreateInventoryItem.description" } }, { - "id": 14755, - "name": "requires_shipping", + "id": 14776, + "name": "min_quantity", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "target": 14740, - "name": "AdminCreateInventoryItem.requires_shipping" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] } }, { - "id": 14756, - "name": "thumbnail", + "id": 14777, + "name": "max_quantity", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 14741, - "name": "AdminCreateInventoryItem.thumbnail" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "number" + } + ] } }, - { - "id": 14757, - "name": "metadata", + { + "id": 14778, + "name": "rules", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "reference", @@ -26125,16 +30744,11 @@ }, { "type": "intrinsic", - "name": "unknown" + "name": "string" } ], "name": "Record", "package": "typescript" - }, - "inheritedFrom": { - "type": "reference", - "target": 14742, - "name": "AdminCreateInventoryItem.metadata" } } ], @@ -26142,126 +30756,147 @@ { "title": "Properties", "children": [ - 14744, - 14745, - 14746, - 14747, - 14748, - 14749, - 14750, - 14751, - 14752, - 14753, - 14754, - 14755, - 14756, - 14757 + 14773, + 14774, + 14775, + 14776, + 14777, + 14778 ] } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 14728, - "name": "AdminCreateInventoryItem", - "package": "@medusajs/types" - } ] }, { - "id": 14758, - "name": "AdminInventoryItemParams", + "id": 14779, + "name": "AdminCreatePriceList", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14775, - "name": "fields", + "id": 14780, + "name": "title", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 14623, - "name": "FindParams.fields" } }, { - "id": 14772, - "name": "limit", + "id": 14781, + "name": "description", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "target": 14620, - "name": "FindParams.limit" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] } }, { - "id": 14773, - "name": "offset", + "id": 14782, + "name": "starts_at", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "target": 14621, - "name": "FindParams.offset" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] } }, { - "id": 14774, - "name": "order", + "id": 14783, + "name": "ends_at", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 14784, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { "type": "reference", - "target": 14622, - "name": "FindParams.order" + "target": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", + "qualifiedName": "PriceListStatus" + }, + "name": "PriceListStatus", + "package": "@medusajs/types" } }, { - "id": 14759, - "name": "id", + "id": 14785, + "name": "type", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", + "qualifiedName": "PriceListType" + }, + "name": "PriceListType", + "package": "@medusajs/types" + } + }, + { + "id": 14786, + "name": "rules", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "union", - "types": [ + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ { "type": "intrinsic", "name": "string" @@ -26273,75 +30908,104 @@ "name": "string" } } - ] + ], + "name": "Record", + "package": "typescript" } }, { - "id": 14760, - "name": "q", + "id": 14787, + "name": "prices", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 14772, + "name": "AdminCreatePriceListPrice", + "package": "@medusajs/types" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14780, + 14781, + 14782, + 14783, + 14784, + 14785, + 14786, + 14787 + ] + } + ] + }, + { + "id": 14788, + "name": "AdminUpdatePriceListPrice", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14789, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 14761, - "name": "sku", + "id": 14790, + "name": "currency_code", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ] + "type": "intrinsic", + "name": "string" } }, { - "id": 14762, - "name": "origin_country", + "id": 14791, + "name": "amount", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ] + "type": "intrinsic", + "name": "number" } }, { - "id": 14763, - "name": "mid_code", + "id": 14792, + "name": "variant_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14793, + "name": "min_quantity", "variant": "declaration", "kind": 1024, "flags": { @@ -26351,22 +31015,19 @@ "type": "union", "types": [ { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": null }, { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "number" } ] } }, { - "id": 14764, - "name": "hs_code", + "id": 14794, + "name": "max_quantity", "variant": "declaration", "kind": 1024, "flags": { @@ -26376,47 +31037,83 @@ "type": "union", "types": [ { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": null }, { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "number" } ] } }, { - "id": 14765, - "name": "material", + "id": 14795, + "name": "rules", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "union", - "types": [ + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ { "type": "intrinsic", "name": "string" }, { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "string" } - ] + ], + "name": "Record", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14789, + 14790, + 14791, + 14792, + 14793, + 14794, + 14795 + ] + } + ] + }, + { + "id": 14796, + "name": "AdminUpdatePriceList", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14797, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" } }, { - "id": 14766, - "name": "requires_shipping", + "id": 14798, + "name": "description", "variant": "declaration", "kind": 1024, "flags": { @@ -26424,12 +31121,12 @@ }, "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 14767, - "name": "weight", + "id": 14799, + "name": "starts_at", "variant": "declaration", "kind": 1024, "flags": { @@ -26439,27 +31136,19 @@ "type": "union", "types": [ { - "type": "intrinsic", - "name": "number" + "type": "literal", + "value": null }, { - "type": "reference", - "target": 14174, - "typeArguments": [ - { - "type": "intrinsic", - "name": "number" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } ] } }, { - "id": 14768, - "name": "length", + "id": 14800, + "name": "ends_at", "variant": "declaration", "kind": 1024, "flags": { @@ -26469,87 +31158,55 @@ "type": "union", "types": [ { - "type": "intrinsic", - "name": "number" + "type": "literal", + "value": null }, { - "type": "reference", - "target": 14174, - "typeArguments": [ - { - "type": "intrinsic", - "name": "number" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } ] } }, { - "id": 14769, - "name": "height", + "id": 14801, + "name": "status", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "reference", - "target": 14174, - "typeArguments": [ - { - "type": "intrinsic", - "name": "number" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" - } - ] + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", + "qualifiedName": "PriceListStatus" + }, + "name": "PriceListStatus", + "package": "@medusajs/types" } }, { - "id": 14770, - "name": "width", + "id": 14802, + "name": "type", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "reference", - "target": 14174, - "typeArguments": [ - { - "type": "intrinsic", - "name": "number" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" - } - ] + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", + "qualifiedName": "PriceListType" + }, + "name": "PriceListType", + "package": "@medusajs/types" } }, { - "id": 14771, - "name": "location_levels", + "id": 14803, + "name": "rules", "variant": "declaration", "kind": 1024, "flags": { @@ -26563,24 +31220,15 @@ }, "typeArguments": [ { - "type": "literal", - "value": "location_id" + "type": "intrinsic", + "name": "string" }, { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ] + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } ], "name": "Record", @@ -26592,53 +31240,109 @@ { "title": "Properties", "children": [ - 14775, - 14772, - 14773, - 14774, - 14759, - 14760, - 14761, - 14762, - 14763, - 14764, - 14765, - 14766, - 14767, - 14768, - 14769, - 14770, - 14771 + 14797, + 14798, + 14799, + 14800, + 14801, + 14802, + 14803 ] } + ] + }, + { + "id": 14804, + "name": "AdminBatchPriceListPrice", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14805, + "name": "create", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 14772, + "name": "AdminCreatePriceListPrice", + "package": "@medusajs/types" + } + } + }, + { + "id": 14806, + "name": "update", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 14788, + "name": "AdminUpdatePriceListPrice", + "package": "@medusajs/types" + } + } + }, + { + "id": 14807, + "name": "delete", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + } ], - "extendedTypes": [ + "groups": [ { - "type": "reference", - "target": 14619, - "name": "FindParams", - "package": "@medusajs/types" + "title": "Properties", + "children": [ + 14805, + 14806, + 14807 + ] } ] }, { - "id": 14776, - "name": "AdminInventoryItemResponse", + "id": 14808, + "name": "AdminLinkPriceListProducts", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14777, - "name": "inventory_item", + "id": 14809, + "name": "remove", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "reference", - "target": 14712, - "name": "AdminInventoryItem", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } } ], @@ -26646,400 +31350,319 @@ { "title": "Properties", "children": [ - 14777 + 14809 ] } ] }, { - "id": 14778, - "name": "AdminInventoryItemListResponse", + "id": 14810, + "name": "AdminPriceListListParams", "variant": "declaration", - "kind": 2097152, + "kind": 256, "flags": {}, - "type": { - "type": "reference", - "target": 14633, - "typeArguments": [ + "comment": { + "summary": [ { - "type": "reflection", - "declaration": { - "id": 14779, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ + "kind": "text", + "text": "An object used to allow specifying flexible queries with and/or conditions." + } + ] + }, + "children": [ + { + "id": 14821, + "name": "$and", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ { - "id": 14780, - "name": "inventory_items", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { + "type": "reference", + "target": 14810, + "name": "AdminPriceListListParams", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 14080, + "typeArguments": [ + { "type": "reference", - "target": 14712, - "name": "AdminInventoryItem", + "target": 14810, + "name": "AdminPriceListListParams", "package": "@medusajs/types" } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14780 - ] + ], + "name": "BaseFilterable", + "package": "@medusajs/types" } ] } + }, + "inheritedFrom": { + "type": "reference", + "target": 14081, + "name": "BaseFilterable.$and" } - ], - "name": "PaginatedResponse", - "package": "@medusajs/types" - } - }, - { - "id": 14781, - "name": "AdminInventoryItemDeleteResponse", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "reference", - "target": 14624, - "typeArguments": [ - { - "type": "literal", - "value": "inventory_item" - } - ], - "name": "DeleteResponse", - "package": "@medusajs/types" - } - }, - { - "id": 14813, - "name": "AdminAcceptInvite", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 14814, - "name": "__type", + }, + { + "id": 14822, + "name": "$or", "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 14815, - "name": "first_name", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14816, - "name": "last_name", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14815, - 14816 + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 14810, + "name": "AdminPriceListListParams", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 14080, + "typeArguments": [ + { + "type": "reference", + "target": 14810, + "name": "AdminPriceListListParams", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } ] } - ] - } - } - }, - { - "id": 14817, - "name": "AdminCreateInvite", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { + }, + "inheritedFrom": { + "type": "reference", + "target": 14082, + "name": "BaseFilterable.$or" + } + }, + { + "id": 14820, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14548, + "name": "FindParams.fields" + } + }, + { + "id": 14817, + "name": "limit", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 14545, + "name": "FindParams.limit" + } + }, + { "id": 14818, - "name": "__type", + "name": "offset", "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 14819, - "name": "email", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14820, - "name": "metadata", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14819, - 14820 - ] - } - ] - } - } - }, - { - "id": 14821, - "name": "AdminInviteResponse", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 14822, - "name": "__type", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 14546, + "name": "FindParams.offset" + } + }, + { + "id": 14819, + "name": "order", "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 14823, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14824, - "name": "email", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14825, - "name": "accepted", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 14826, - "name": "token", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14827, - "name": "expires_at", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" - }, - "name": "Date", - "package": "typescript" - } - }, - { - "id": 14828, - "name": "metadata", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - } - }, - { - "id": 14829, - "name": "created_at", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" - }, - "name": "Date", - "package": "typescript" - } - }, - { - "id": 14830, - "name": "updated_at", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" - }, - "name": "Date", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14823, - 14824, - 14825, - 14826, - 14827, - 14828, - 14829, - 14830 - ] - } - ] - } - } - }, - { - "id": 14831, - "name": "AdminPriceListPrice", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14547, + "name": "FindParams.order" + } + }, { - "id": 14832, - "name": "variant_id", + "id": 14811, + "name": "q", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 14812, + "name": "id", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] } }, { - "id": 14833, - "name": "rules", + "id": 14813, + "name": "starts_at", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, + "target": 14058, "typeArguments": [ { "type": "intrinsic", "name": "string" - }, + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + } + }, + { + "id": 14814, + "name": "ends_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 14058, + "typeArguments": [ { "type": "intrinsic", - "name": "unknown" + "name": "string" } ], - "name": "Record", - "package": "typescript" + "name": "OperatorMap", + "package": "@medusajs/types" + } + }, + { + "id": 14815, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", + "qualifiedName": "PriceListStatus" + }, + "name": "PriceListStatus", + "package": "@medusajs/types" + } + } + }, + { + "id": 14816, + "name": "rules_count", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "number" + } } } ], @@ -27047,217 +31670,377 @@ { "title": "Properties", "children": [ - 14832, - 14833 + 14821, + 14822, + 14820, + 14817, + 14818, + 14819, + 14811, + 14812, + 14813, + 14814, + 14815, + 14816 ] } ], "extendedTypes": [ { "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/http/pricing/admin/entities.ts", - "qualifiedName": "AdminPrice" - }, - "name": "AdminPrice", + "target": 14544, + "name": "FindParams", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 14080, + "typeArguments": [ + { + "type": "reference", + "target": 14810, + "name": "AdminPriceListListParams", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", "package": "@medusajs/types" } ] }, { - "id": 14834, - "name": "AdminPriceList", + "id": 14823, + "name": "AdminPriceListParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14835, - "name": "id", + "id": 14824, + "name": "fields", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14543, + "name": "SelectParams.fields" } - }, + } + ], + "groups": [ { - "id": 14836, - "name": "title", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, + "title": "Properties", + "children": [ + 14824 + ] + } + ], + "extendedTypes": [ { - "id": 14837, - "name": "description", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, + "type": "reference", + "target": 14542, + "name": "SelectParams", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14825, + "name": "AdminPriceListResponse", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ { - "id": 14838, - "name": "rules", + "id": 14826, + "name": "price_list", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record", - "package": "typescript" + "target": 14759, + "name": "AdminPriceList", + "package": "@medusajs/types" } - }, + } + ], + "groups": [ { - "id": 14839, - "name": "starts_at", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] - } - }, + "title": "Properties", + "children": [ + 14826 + ] + } + ] + }, + { + "id": 14827, + "name": "AdminPriceListListResponse", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ { - "id": 14840, - "name": "ends_at", + "id": 14830, + "name": "limit", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "PaginatedResponse.limit" } }, { - "id": 14841, - "name": "status", + "id": 14831, + "name": "offset", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", - "qualifiedName": "PriceListStatus" - }, - "name": "PriceListStatus", - "package": "@medusajs/types" + "target": -1, + "name": "PaginatedResponse.offset" } }, { - "id": 14842, - "name": "type", + "id": 14832, + "name": "count", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", - "qualifiedName": "PriceListType" - }, - "name": "PriceListType", - "package": "@medusajs/types" + "target": -1, + "name": "PaginatedResponse.count" } }, { - "id": 14843, - "name": "prices", + "id": 14833, + "name": "price_lists", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "type": { "type": "array", "elementType": { "type": "reference", - "target": 14831, - "name": "AdminPriceListPrice", + "target": 14759, + "name": "AdminPriceList", "package": "@medusajs/types" } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "PaginatedResponse.price_lists" } - }, + } + ], + "groups": [ { - "id": 14844, - "name": "created_at", + "title": "Properties", + "children": [ + 14830, + 14831, + 14832, + 14833 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 14558, + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 14828, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 14829, + "name": "price_lists", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 14759, + "name": "AdminPriceList", + "package": "@medusajs/types" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14829 + ] + } + ] + } + } + ], + "name": "PaginatedResponse", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14834, + "name": "AdminPriceListDeleteResponse", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14835, + "name": "id", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the item that was deleted." + } + ] + }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.id" } }, { - "id": 14845, - "name": "updated_at", + "id": 14836, + "name": "object", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The type of the item that was deleted." + } + ] + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": "price_list" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.object" } }, { - "id": 14846, - "name": "deleted_at", + "id": 14837, + "name": "deleted", "variant": "declaration", "kind": 1024, - "flags": {}, - "type": { - "type": "union", - "types": [ + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ { - "type": "literal", - "value": null - }, + "kind": "text", + "text": "Whether the item was deleted successfully." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.deleted" + } + }, + { + "id": 14838, + "name": "parent", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ { - "type": "intrinsic", - "name": "string" + "kind": "text", + "text": "The parent resource of the item that was deleted, if applicable." } ] + }, + "type": { + "type": "reflection", + "declaration": { + "id": 14839, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.parent" } } ], @@ -27268,193 +32051,206 @@ 14835, 14836, 14837, - 14838, - 14839, - 14840, - 14841, - 14842, - 14843, - 14844, - 14845, - 14846 + 14838 ] } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 14549, + "typeArguments": [ + { + "type": "literal", + "value": "price_list" + } + ], + "name": "DeleteResponse", + "package": "@medusajs/types" + } ] }, { - "id": 14847, - "name": "AdminCreatePriceListPrice", + "id": 14840, + "name": "AdminProductCategory", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14848, - "name": "currency_code", + "id": 14841, + "name": "category_children", "variant": "declaration", "kind": 1024, "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "target": 14840, + "name": "AdminProductCategory", + "package": "@medusajs/types" + } + } + }, + { + "id": 14842, + "name": "parent_category", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 14840, + "name": "AdminProductCategory", + "package": "@medusajs/types" + } + ] } }, { - "id": 14849, - "name": "amount", + "id": 14843, + "name": "products", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "intrinsic", - "name": "number" + "type": "array", + "elementType": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/types/src/http/product/admin/entitites.ts", + "qualifiedName": "AdminProduct" + }, + "name": "AdminProduct", + "package": "@medusajs/types" + } } }, { - "id": 14850, - "name": "variant_id", + "id": 14845, + "name": "id", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.id" } }, { - "id": 14851, - "name": "min_quantity", + "id": 14844, + "name": "name", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.name" } }, { - "id": 14852, - "name": "max_quantity", + "id": 14849, + "name": "description", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.description" } }, { - "id": 14853, - "name": "rules", + "id": 14850, + "name": "handle", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "Record", - "package": "typescript" + "target": -1, + "name": "Omit.handle" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14848, - 14849, - 14850, - 14851, - 14852, - 14853 - ] - } - ] - }, - { - "id": 14854, - "name": "AdminCreatePriceList", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + }, { - "id": 14855, - "name": "title", + "id": 14852, + "name": "is_active", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.is_active" } }, { - "id": 14856, - "name": "description", + "id": 14853, + "name": "is_internal", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.is_internal" } }, { - "id": 14857, - "name": "starts_at", + "id": 14854, + "name": "rank", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, "type": { "type": "union", @@ -27465,18 +32261,23 @@ }, { "type": "intrinsic", - "name": "string" + "name": "number" } ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.rank" } }, { - "id": 14858, - "name": "ends_at", + "id": 14851, + "name": "parent_category_id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, "type": { "type": "union", @@ -27490,87 +32291,74 @@ "name": "string" } ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.parent_category_id" } }, { - "id": 14859, - "name": "status", + "id": 14846, + "name": "created_at", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", - "qualifiedName": "PriceListStatus" - }, - "name": "PriceListStatus", - "package": "@medusajs/types" + "target": -1, + "name": "Omit.created_at" } }, { - "id": 14860, - "name": "type", + "id": 14847, + "name": "updated_at", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", - "qualifiedName": "PriceListType" - }, - "name": "PriceListType", - "package": "@medusajs/types" + "target": -1, + "name": "Omit.updated_at" } }, { - "id": 14861, - "name": "rules", + "id": 14848, + "name": "deleted_at", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ + "type": "union", + "types": [ { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": null }, { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "string" } - ], - "name": "Record", - "package": "typescript" - } - }, - { - "id": 14862, - "name": "prices", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true + ] }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14847, - "name": "AdminCreatePriceListPrice", - "package": "@medusajs/types" - } + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.deleted_at" } } ], @@ -27578,28 +32366,70 @@ { "title": "Properties", "children": [ - 14855, - 14856, - 14857, - 14858, - 14859, - 14860, - 14861, - 14862 + 14841, + 14842, + 14843, + 14845, + 14844, + 14849, + 14850, + 14852, + 14853, + 14854, + 14851, + 14846, + 14847, + 14848 ] } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 17006, + "name": "BaseProductCategory", + "package": "@medusajs/types" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "products" + }, + { + "type": "literal", + "value": "category_children" + }, + { + "type": "literal", + "value": "parent_category" + } + ] + } + ], + "name": "Omit", + "package": "typescript" + } ] }, { - "id": 14863, - "name": "AdminUpdatePriceListPrice", + "id": 14855, + "name": "AdminCreateProductCategory", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14864, - "name": "id", + "id": 14856, + "name": "name", "variant": "declaration", "kind": 1024, "flags": {}, @@ -27609,8 +32439,8 @@ } }, { - "id": 14865, - "name": "currency_code", + "id": 14857, + "name": "description", "variant": "declaration", "kind": 1024, "flags": { @@ -27622,8 +32452,8 @@ } }, { - "id": 14866, - "name": "amount", + "id": 14858, + "name": "handle", "variant": "declaration", "kind": 1024, "flags": { @@ -27631,67 +32461,64 @@ }, "type": { "type": "intrinsic", - "name": "number" + "name": "string" } }, { - "id": 14867, - "name": "variant_id", + "id": 14859, + "name": "is_internal", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 14868, - "name": "min_quantity", + "id": 14860, + "name": "is_active", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "boolean" } }, { - "id": 14869, - "name": "max_quantity", + "id": 14861, + "name": "parent_category_id", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "string" } }, { - "id": 14870, - "name": "rules", + "id": 14862, + "name": "rank", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 14863, + "name": "metadata", "variant": "declaration", "kind": 1024, "flags": { @@ -27710,7 +32537,7 @@ }, { "type": "intrinsic", - "name": "string" + "name": "unknown" } ], "name": "Record", @@ -27722,27 +32549,28 @@ { "title": "Properties", "children": [ - 14864, - 14865, - 14866, - 14867, - 14868, - 14869, - 14870 + 14856, + 14857, + 14858, + 14859, + 14860, + 14861, + 14862, + 14863 ] } ] }, { - "id": 14871, - "name": "AdminUpdatePriceList", + "id": 14864, + "name": "AdminUpdateProductCategory", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14872, - "name": "title", + "id": 14865, + "name": "name", "variant": "declaration", "kind": 1024, "flags": { @@ -27754,7 +32582,7 @@ } }, { - "id": 14873, + "id": 14866, "name": "description", "variant": "declaration", "kind": 1024, @@ -27767,30 +32595,47 @@ } }, { - "id": 14874, - "name": "starts_at", + "id": 14867, + "name": "handle", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "intrinsic", + "name": "string" } }, { - "id": 14875, - "name": "ends_at", + "id": 14868, + "name": "is_internal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 14869, + "name": "is_active", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 14870, + "name": "parent_category_id", "variant": "declaration", "kind": 1024, "flags": { @@ -27811,44 +32656,21 @@ } }, { - "id": 14876, - "name": "status", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", - "qualifiedName": "PriceListStatus" - }, - "name": "PriceListStatus", - "package": "@medusajs/types" - } - }, - { - "id": 14877, - "name": "type", + "id": 14871, + "name": "rank", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", - "qualifiedName": "PriceListType" - }, - "name": "PriceListType", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "number" } }, - { - "id": 14878, - "name": "rules", + { + "id": 14872, + "name": "metadata", "variant": "declaration", "kind": 1024, "flags": { @@ -27866,11 +32688,8 @@ "name": "string" }, { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "unknown" } ], "name": "Record", @@ -27882,63 +32701,28 @@ { "title": "Properties", "children": [ - 14872, - 14873, - 14874, - 14875, - 14876, - 14877, - 14878 + 14865, + 14866, + 14867, + 14868, + 14869, + 14870, + 14871, + 14872 ] } ] }, { - "id": 14879, - "name": "AdminBatchPriceListPrice", + "id": 14873, + "name": "AdminUpdateProductCategoryProducts", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14880, - "name": "create", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14847, - "name": "AdminCreatePriceListPrice", - "package": "@medusajs/types" - } - } - }, - { - "id": 14881, - "name": "update", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14863, - "name": "AdminUpdatePriceListPrice", - "package": "@medusajs/types" - } - } - }, - { - "id": 14882, - "name": "delete", + "id": 14874, + "name": "add", "variant": "declaration", "kind": 1024, "flags": { @@ -27951,28 +32735,9 @@ "name": "string" } } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14880, - 14881, - 14882 - ] - } - ] - }, - { - "id": 14883, - "name": "AdminLinkPriceListProducts", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + }, { - "id": 14884, + "id": 14875, "name": "remove", "variant": "declaration", "kind": 1024, @@ -27992,14 +32757,15 @@ { "title": "Properties", "children": [ - 14884 + 14874, + 14875 ] } ] }, { - "id": 14885, - "name": "AdminPriceListListParams", + "id": 14876, + "name": "AdminProductCategoryListParams", "variant": "declaration", "kind": 256, "flags": {}, @@ -28013,7 +32779,7 @@ }, "children": [ { - "id": 14896, + "id": 14894, "name": "$and", "variant": "declaration", "kind": 1024, @@ -28036,18 +32802,18 @@ "types": [ { "type": "reference", - "target": 14885, - "name": "AdminPriceListListParams", + "target": 17021, + "name": "BaseProductCategoryListParams", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 14885, - "name": "AdminPriceListListParams", + "target": 17021, + "name": "BaseProductCategoryListParams", "package": "@medusajs/types" } ], @@ -28059,12 +32825,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14197, - "name": "BaseFilterable.$and" + "target": 17039, + "name": "BaseProductCategoryListParams.$and" } }, { - "id": 14897, + "id": 14895, "name": "$or", "variant": "declaration", "kind": 1024, @@ -28087,18 +32853,18 @@ "types": [ { "type": "reference", - "target": 14885, - "name": "AdminPriceListListParams", + "target": 17021, + "name": "BaseProductCategoryListParams", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 14885, - "name": "AdminPriceListListParams", + "target": 17021, + "name": "BaseProductCategoryListParams", "package": "@medusajs/types" } ], @@ -28110,70 +32876,13 @@ }, "inheritedFrom": { "type": "reference", - "target": 14198, - "name": "BaseFilterable.$or" - } - }, - { - "id": 14895, - "name": "fields", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 14623, - "name": "FindParams.fields" - } - }, - { - "id": 14892, - "name": "limit", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "target": 14620, - "name": "FindParams.limit" + "target": 17040, + "name": "BaseProductCategoryListParams.$or" } }, { "id": 14893, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "target": 14621, - "name": "FindParams.offset" - } - }, - { - "id": 14894, - "name": "order", + "name": "fields", "variant": "declaration", "kind": 1024, "flags": { @@ -28186,257 +32895,17 @@ }, "inheritedFrom": { "type": "reference", - "target": 14622, - "name": "FindParams.order" - } - }, - { - "id": 14886, - "name": "q", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14887, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ] - } - }, - { - "id": 14888, - "name": "starts_at", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 14174, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" - } - }, - { - "id": 14889, - "name": "ends_at", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 14174, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" + "target": 17038, + "name": "BaseProductCategoryListParams.fields" } }, { "id": 14890, - "name": "status", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", - "qualifiedName": "PriceListStatus" - }, - "name": "PriceListStatus", - "package": "@medusajs/types" - } - } - }, - { - "id": 14891, - "name": "rules_count", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "number" - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14896, - 14897, - 14895, - 14892, - 14893, - 14894, - 14886, - 14887, - 14888, - 14889, - 14890, - 14891 - ] - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 14619, - "name": "FindParams", - "package": "@medusajs/types" - }, - { - "type": "reference", - "target": 14196, - "typeArguments": [ - { - "type": "reference", - "target": 14885, - "name": "AdminPriceListListParams", - "package": "@medusajs/types" - } - ], - "name": "BaseFilterable", - "package": "@medusajs/types" - } - ] - }, - { - "id": 14898, - "name": "AdminPriceListParams", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 14899, - "name": "fields", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 14618, - "name": "SelectParams.fields" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14899 - ] - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 14617, - "name": "SelectParams", - "package": "@medusajs/types" - } - ] - }, - { - "id": 14900, - "name": "AdminPriceListResponse", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 14901, - "name": "price_list", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reference", - "target": 14834, - "name": "AdminPriceList", - "package": "@medusajs/types" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14901 - ] - } - ] - }, - { - "id": 14902, - "name": "AdminPriceListListResponse", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 14905, "name": "limit", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, "type": { @@ -28445,302 +32914,205 @@ }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "PaginatedResponse.limit" - } - }, - { - "id": 14906, - "name": "offset", - "variant": "declaration", - "kind": 1024, - "flags": { - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "target": -1, - "name": "PaginatedResponse.offset" - } - }, - { - "id": 14907, - "name": "count", - "variant": "declaration", - "kind": 1024, - "flags": { - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "target": -1, - "name": "PaginatedResponse.count" - } - }, - { - "id": 14908, - "name": "price_lists", - "variant": "declaration", - "kind": 1024, - "flags": { - "isInherited": true - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14834, - "name": "AdminPriceList", - "package": "@medusajs/types" - } - }, - "inheritedFrom": { - "type": "reference", - "target": -1, - "name": "PaginatedResponse.price_lists" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14905, - 14906, - 14907, - 14908 - ] - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 14633, - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 14903, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 14904, - "name": "price_lists", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14834, - "name": "AdminPriceList", - "package": "@medusajs/types" - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14904 - ] - } - ] - } - } - ], - "name": "PaginatedResponse", - "package": "@medusajs/types" - } - ] - }, - { - "id": 14909, - "name": "AdminPriceListDeleteResponse", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + "target": 17035, + "name": "BaseProductCategoryListParams.limit" + } + }, { - "id": 14910, - "name": "id", + "id": 14891, + "name": "offset", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the item that was deleted." - } - ] - }, "type": { "type": "intrinsic", - "name": "string" + "name": "number" }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "DeleteResponse.id" + "target": 17036, + "name": "BaseProductCategoryListParams.offset" } }, { - "id": 14911, - "name": "object", + "id": 14892, + "name": "order", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The type of the item that was deleted." - } - ] - }, "type": { - "type": "literal", - "value": "price_list" + "type": "intrinsic", + "name": "string" }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "DeleteResponse.object" + "target": 17037, + "name": "BaseProductCategoryListParams.order" } }, { - "id": 14912, - "name": "deleted", + "id": 14877, + "name": "is_internal", "variant": "declaration", "kind": 1024, "flags": { - "isInherited": true + "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Whether the item was deleted successfully." - } - ] + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "overwrites": { + "type": "reference", + "target": 17029, + "name": "BaseProductCategoryListParams.is_internal" + } + }, + { + "id": 14878, + "name": "is_active", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, "type": { "type": "intrinsic", "name": "boolean" }, + "overwrites": { + "type": "reference", + "target": 17028, + "name": "BaseProductCategoryListParams.is_active" + } + }, + { + "id": 14879, + "name": "q", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "DeleteResponse.deleted" + "target": 17022, + "name": "BaseProductCategoryListParams.q" } }, { - "id": 14913, - "name": "parent", + "id": 14880, + "name": "id", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true, "isInherited": true }, - "comment": { - "summary": [ + "type": { + "type": "union", + "types": [ { - "kind": "text", - "text": "The parent resource of the item that was deleted, if applicable." + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } ] }, + "inheritedFrom": { + "type": "reference", + "target": 17023, + "name": "BaseProductCategoryListParams.id" + } + }, + { + "id": 14881, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { - "type": "reflection", - "declaration": { - "id": 14914, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {} - } + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "DeleteResponse.parent" + "target": 17024, + "name": "BaseProductCategoryListParams.name" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 14910, - 14911, - 14912, - 14913 - ] - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 14624, - "typeArguments": [ - { - "type": "literal", - "value": "price_list" - } - ], - "name": "DeleteResponse", - "package": "@medusajs/types" - } - ] - }, - { - "id": 14915, - "name": "AdminProductCategory", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ + }, { - "id": 14916, - "name": "category_children", + "id": 14882, + "name": "description", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 14915, - "name": "AdminProductCategory", - "package": "@medusajs/types" - } + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 17025, + "name": "BaseProductCategoryListParams.description" } }, { - "id": 14917, - "name": "parent_category", + "id": 14883, + "name": "parent_category_id", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { "type": "union", "types": [ @@ -28749,200 +33121,352 @@ "value": null }, { - "type": "reference", - "target": 14915, - "name": "AdminProductCategory", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } ] + }, + "inheritedFrom": { + "type": "reference", + "target": 17026, + "name": "BaseProductCategoryListParams.parent_category_id" } }, { - "id": 14918, - "name": "products", + "id": 14884, + "name": "handle", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": { - "sourceFileName": "../../../../packages/core/types/src/http/product/admin/entitites.ts", - "qualifiedName": "AdminProduct" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" }, - "name": "AdminProduct", - "package": "@medusajs/types" - } + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 17027, + "name": "BaseProductCategoryListParams.handle" } }, { - "id": 14919, - "name": "id", + "id": 14885, + "name": "include_descendants_tree", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "Omit.id" + "target": 17030, + "name": "BaseProductCategoryListParams.include_descendants_tree" } }, { - "id": 14923, - "name": "name", + "id": 14886, + "name": "include_ancestors_tree", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "Omit.name" + "target": 17031, + "name": "BaseProductCategoryListParams.include_ancestors_tree" } }, { - "id": 14924, - "name": "description", + "id": 14887, + "name": "created_at", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "Omit.description" + "target": 17032, + "name": "BaseProductCategoryListParams.created_at" } }, { - "id": 14925, - "name": "handle", + "id": 14888, + "name": "updated_at", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "Omit.handle" + "target": 17033, + "name": "BaseProductCategoryListParams.updated_at" } }, { - "id": 14927, - "name": "is_active", + "id": 14889, + "name": "deleted_at", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "Omit.is_active" + "target": 17034, + "name": "BaseProductCategoryListParams.deleted_at" } - }, + } + ], + "groups": [ { - "id": 14928, - "name": "is_internal", + "title": "Properties", + "children": [ + 14894, + 14895, + 14893, + 14890, + 14891, + 14892, + 14877, + 14878, + 14879, + 14880, + 14881, + 14882, + 14883, + 14884, + 14885, + 14886, + 14887, + 14888, + 14889 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 17021, + "name": "BaseProductCategoryListParams", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14896, + "name": "AdminProductCategoryParams", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14899, + "name": "fields", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "Omit.is_internal" + "target": 17044, + "name": "BaseProductCategoryParams.fields" } }, { - "id": 14929, - "name": "rank", + "id": 14897, + "name": "include_ancestors_tree", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "target": -1, - "name": "Omit.rank" + "target": 17042, + "name": "BaseProductCategoryParams.include_ancestors_tree" } }, { - "id": 14926, - "name": "parent_category_id", + "id": 14898, + "name": "include_descendants_tree", "variant": "declaration", "kind": 1024, "flags": { + "isOptional": true, "isInherited": true }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": 17043, + "name": "BaseProductCategoryParams.include_descendants_tree" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14899, + 14897, + 14898 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 17041, + "name": "BaseProductCategoryParams", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14900, + "name": "AdminProductCategoryResponse", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14901, + "name": "product_category", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 14840, + "name": "AdminProductCategory", + "package": "@medusajs/types" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14901 + ] + } + ] + }, + { + "id": 14902, + "name": "AdminProductCategoryListResponse", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14905, + "name": "limit", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" }, "inheritedFrom": { "type": "reference", "target": -1, - "name": "Omit.parent_category_id" + "name": "PaginatedResponse.limit" } }, { - "id": 14920, - "name": "created_at", + "id": 14906, + "name": "offset", "variant": "declaration", "kind": 1024, "flags": { @@ -28950,17 +33474,17 @@ }, "type": { "type": "intrinsic", - "name": "string" + "name": "number" }, "inheritedFrom": { "type": "reference", "target": -1, - "name": "Omit.created_at" + "name": "PaginatedResponse.offset" } }, { - "id": 14921, - "name": "updated_at", + "id": 14907, + "name": "count", "variant": "declaration", "kind": 1024, "flags": { @@ -28968,39 +33492,35 @@ }, "type": { "type": "intrinsic", - "name": "string" + "name": "number" }, "inheritedFrom": { "type": "reference", "target": -1, - "name": "Omit.updated_at" + "name": "PaginatedResponse.count" } }, { - "id": 14922, - "name": "deleted_at", + "id": 14908, + "name": "product_categories", "variant": "declaration", "kind": 1024, "flags": { "isInherited": true }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "array", + "elementType": { + "type": "reference", + "target": 14840, + "name": "AdminProductCategory", + "package": "@medusajs/types" + } }, "inheritedFrom": { "type": "reference", "target": -1, - "name": "Omit.deleted_at" + "name": "PaginatedResponse.product_categories" } } ], @@ -29008,182 +33528,176 @@ { "title": "Properties", "children": [ - 14916, - 14917, - 14918, - 14919, - 14923, - 14924, - 14925, - 14927, - 14928, - 14929, - 14926, - 14920, - 14921, - 14922 + 14905, + 14906, + 14907, + 14908 ] } ], "extendedTypes": [ { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, + "target": 14558, "typeArguments": [ { - "type": "reference", - "target": 16993, - "name": "BaseProductCategory", - "package": "@medusajs/types" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "products" - }, - { - "type": "literal", - "value": "category_children" - }, - { - "type": "literal", - "value": "parent_category" - } - ] + "type": "reflection", + "declaration": { + "id": 14903, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 14904, + "name": "product_categories", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 14840, + "name": "AdminProductCategory", + "package": "@medusajs/types" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 14904 + ] + } + ] + } } ], - "name": "Omit", - "package": "typescript" + "name": "PaginatedResponse", + "package": "@medusajs/types" } ] }, { - "id": 14930, - "name": "AdminCreateProductCategory", + "id": 14909, + "name": "AdminProductCategoryDeleteResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14931, - "name": "name", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14932, - "name": "description", + "id": 14910, + "name": "id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 14933, - "name": "handle", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the item that was deleted." + } + ] }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.id" } }, { - "id": 14934, - "name": "is_internal", + "id": 14911, + "name": "object", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The type of the item that was deleted." + } + ] }, "type": { - "type": "intrinsic", - "name": "boolean" + "type": "literal", + "value": "product_category" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.object" } }, { - "id": 14935, - "name": "is_active", + "id": 14912, + "name": "deleted", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Whether the item was deleted successfully." + } + ] }, "type": { "type": "intrinsic", "name": "boolean" - } - }, - { - "id": 14936, - "name": "parent_category_id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true }, - "type": { - "type": "intrinsic", - "name": "string" + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "DeleteResponse.deleted" } }, { - "id": 14937, - "name": "rank", + "id": 14913, + "name": "parent", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 14938, - "name": "metadata", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true + "comment": { + "summary": [ + { + "kind": "text", + "text": "The parent resource of the item that was deleted, if applicable." + } + ] }, "type": { + "type": "reflection", + "declaration": { + "id": 14914, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {} + } + }, + "inheritedFrom": { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" + "target": -1, + "name": "DeleteResponse.parent" } } ], @@ -29191,97 +33705,143 @@ { "title": "Properties", "children": [ - 14931, - 14932, - 14933, - 14934, - 14935, - 14936, - 14937, - 14938 + 14910, + 14911, + 14912, + 14913 ] } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 14549, + "typeArguments": [ + { + "type": "literal", + "value": "product_category" + } + ], + "name": "DeleteResponse", + "package": "@medusajs/types" + } ] }, { - "id": 14939, - "name": "AdminUpdateProductCategory", + "id": 14915, + "name": "AdminProductTag", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14940, - "name": "name", + "id": 14916, + "name": "id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 17046, + "name": "BaseProductTag.id" } }, { - "id": 14941, - "name": "description", + "id": 14917, + "name": "value", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 17047, + "name": "BaseProductTag.value" } }, { - "id": 14942, - "name": "handle", + "id": 14918, + "name": "created_at", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 17048, + "name": "BaseProductTag.created_at" } }, { - "id": 14943, - "name": "is_internal", + "id": 14919, + "name": "updated_at", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isInherited": true }, "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 17049, + "name": "BaseProductTag.updated_at" } }, { - "id": 14944, - "name": "is_active", + "id": 14920, + "name": "deleted_at", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { - "type": "intrinsic", - "name": "boolean" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 17050, + "name": "BaseProductTag.deleted_at" } }, { - "id": 14945, - "name": "parent_category_id", + "id": 14921, + "name": "metadata", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { "type": "union", @@ -29291,27 +33851,75 @@ "value": null }, { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" } ] + }, + "inheritedFrom": { + "type": "reference", + "target": 17051, + "name": "BaseProductTag.metadata" } - }, + } + ], + "groups": [ { - "id": 14946, - "name": "rank", + "title": "Properties", + "children": [ + 14916, + 14917, + 14918, + 14919, + 14920, + 14921 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 17045, + "name": "BaseProductTag", + "package": "@medusajs/types" + } + ] + }, + { + "id": 14922, + "name": "AdminCreateProductTag", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 14923, + "name": "value", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", - "name": "number" + "name": "string" } }, { - "id": 14947, + "id": 14924, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -29319,23 +33927,32 @@ "isOptional": true }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ + "type": "union", + "types": [ { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": null }, { - "type": "intrinsic", - "name": "unknown" + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" } - ], - "name": "Record", - "package": "typescript" + ] } } ], @@ -29343,55 +33960,67 @@ { "title": "Properties", "children": [ - 14940, - 14941, - 14942, - 14943, - 14944, - 14945, - 14946, - 14947 + 14923, + 14924 ] } ] }, { - "id": 14948, - "name": "AdminUpdateProductCategoryProducts", + "id": 14925, + "name": "AdminUpdateProductTag", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14949, - "name": "add", + "id": 14926, + "name": "value", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "string" } }, { - "id": 14950, - "name": "remove", + "id": 14927, + "name": "metadata", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] } } ], @@ -29399,15 +34028,15 @@ { "title": "Properties", "children": [ - 14949, - 14950 + 14926, + 14927 ] } ] }, { - "id": 14951, - "name": "AdminProductCategoryListParams", + "id": 14928, + "name": "AdminProductTagListParams", "variant": "declaration", "kind": 256, "flags": {}, @@ -29421,7 +34050,7 @@ }, "children": [ { - "id": 14969, + "id": 14939, "name": "$and", "variant": "declaration", "kind": 1024, @@ -29444,18 +34073,18 @@ "types": [ { "type": "reference", - "target": 17008, - "name": "BaseProductCategoryListParams", + "target": 14928, + "name": "AdminProductTagListParams", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 17008, - "name": "BaseProductCategoryListParams", + "target": 14928, + "name": "AdminProductTagListParams", "package": "@medusajs/types" } ], @@ -29467,12 +34096,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17026, - "name": "BaseProductCategoryListParams.$and" + "target": 14081, + "name": "BaseFilterable.$and" } }, { - "id": 14970, + "id": 14940, "name": "$or", "variant": "declaration", "kind": 1024, @@ -29495,18 +34124,18 @@ "types": [ { "type": "reference", - "target": 17008, - "name": "BaseProductCategoryListParams", + "target": 14928, + "name": "AdminProductTagListParams", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 17008, - "name": "BaseProductCategoryListParams", + "target": 14928, + "name": "AdminProductTagListParams", "package": "@medusajs/types" } ], @@ -29518,12 +34147,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17027, - "name": "BaseProductCategoryListParams.$or" + "target": 14082, + "name": "BaseFilterable.$or" } }, { - "id": 14968, + "id": 14938, "name": "fields", "variant": "declaration", "kind": 1024, @@ -29537,12 +34166,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17025, - "name": "BaseProductCategoryListParams.fields" + "target": 17061, + "name": "BaseProductTagListParams.fields" } }, { - "id": 14965, + "id": 14935, "name": "limit", "variant": "declaration", "kind": 1024, @@ -29556,12 +34185,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17022, - "name": "BaseProductCategoryListParams.limit" + "target": 17058, + "name": "BaseProductTagListParams.limit" } }, { - "id": 14966, + "id": 14936, "name": "offset", "variant": "declaration", "kind": 1024, @@ -29575,12 +34204,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17023, - "name": "BaseProductCategoryListParams.offset" + "target": 17059, + "name": "BaseProductTagListParams.offset" } }, { - "id": 14967, + "id": 14937, "name": "order", "variant": "declaration", "kind": 1024, @@ -29594,130 +34223,34 @@ }, "inheritedFrom": { "type": "reference", - "target": 17024, - "name": "BaseProductCategoryListParams.order" - } - }, - { - "id": 14952, - "name": "is_internal", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "overwrites": { - "type": "reference", - "target": 17016, - "name": "BaseProductCategoryListParams.is_internal" + "target": 17060, + "name": "BaseProductTagListParams.order" } }, { - "id": 14953, - "name": "is_active", + "id": 14929, + "name": "deleted_at", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "boolean" - }, - "overwrites": { "type": "reference", - "target": 17015, - "name": "BaseProductCategoryListParams.is_active" - } - }, - { - "id": 14954, - "name": "q", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 17009, - "name": "BaseProductCategoryListParams.q" - } - }, - { - "id": 14955, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ] - }, - "inheritedFrom": { - "type": "reference", - "target": 17010, - "name": "BaseProductCategoryListParams.id" - } - }, - { - "id": 14956, - "name": "name", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "union", - "types": [ + "target": 14058, + "typeArguments": [ { "type": "intrinsic", "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } } - ] - }, - "inheritedFrom": { - "type": "reference", - "target": 17011, - "name": "BaseProductCategoryListParams.name" + ], + "name": "OperatorMap", + "package": "@medusajs/types" } }, { - "id": 14957, - "name": "description", + "id": 14930, + "name": "q", "variant": "declaration", "kind": 1024, "flags": { @@ -29725,30 +34258,18 @@ "isInherited": true }, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ] + "type": "intrinsic", + "name": "string" }, "inheritedFrom": { "type": "reference", - "target": 17012, - "name": "BaseProductCategoryListParams.description" + "target": 17053, + "name": "BaseProductTagListParams.q" } }, { - "id": 14958, - "name": "parent_category_id", + "id": 14931, + "name": "id", "variant": "declaration", "kind": 1024, "flags": { @@ -29758,10 +34279,6 @@ "type": { "type": "union", "types": [ - { - "type": "literal", - "value": null - }, { "type": "intrinsic", "name": "string" @@ -29777,13 +34294,13 @@ }, "inheritedFrom": { "type": "reference", - "target": 17013, - "name": "BaseProductCategoryListParams.parent_category_id" + "target": 17054, + "name": "BaseProductTagListParams.id" } }, { - "id": 14959, - "name": "handle", + "id": 14932, + "name": "value", "variant": "declaration", "kind": 1024, "flags": { @@ -29808,50 +34325,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17014, - "name": "BaseProductCategoryListParams.handle" - } - }, - { - "id": 14960, - "name": "include_descendants_tree", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "target": 17017, - "name": "BaseProductCategoryListParams.include_descendants_tree" + "target": 17055, + "name": "BaseProductTagListParams.value" } }, { - "id": 14961, - "name": "include_ancestors_tree", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "target": 17018, - "name": "BaseProductCategoryListParams.include_ancestors_tree" - } - }, - { - "id": 14962, + "id": 14933, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -29861,7 +34340,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -29873,12 +34352,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17019, - "name": "BaseProductCategoryListParams.created_at" + "target": 17056, + "name": "BaseProductTagListParams.created_at" } }, { - "id": 14963, + "id": 14934, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -29888,7 +34367,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -29900,35 +34379,8 @@ }, "inheritedFrom": { "type": "reference", - "target": 17020, - "name": "BaseProductCategoryListParams.updated_at" - } - }, - { - "id": 14964, - "name": "deleted_at", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "reference", - "target": 14174, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "OperatorMap", - "package": "@medusajs/types" - }, - "inheritedFrom": { - "type": "reference", - "target": 17021, - "name": "BaseProductCategoryListParams.deleted_at" + "target": 17057, + "name": "BaseProductTagListParams.updated_at" } } ], @@ -29936,46 +34388,53 @@ { "title": "Properties", "children": [ - 14969, - 14970, - 14968, - 14965, - 14966, - 14967, - 14952, - 14953, - 14954, - 14955, - 14956, - 14957, - 14958, - 14959, - 14960, - 14961, - 14962, - 14963, - 14964 + 14939, + 14940, + 14938, + 14935, + 14936, + 14937, + 14929, + 14930, + 14931, + 14932, + 14933, + 14934 ] } ], "extendedTypes": [ { "type": "reference", - "target": 17008, - "name": "BaseProductCategoryListParams", + "target": 17052, + "name": "BaseProductTagListParams", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 14080, + "typeArguments": [ + { + "type": "reference", + "target": 14928, + "name": "AdminProductTagListParams", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", "package": "@medusajs/types" } ] }, { - "id": 14971, - "name": "AdminProductCategoryParams", + "id": 14941, + "name": "AdminProductTagParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14974, + "id": 14942, "name": "fields", "variant": "declaration", "kind": 1024, @@ -29989,46 +34448,8 @@ }, "inheritedFrom": { "type": "reference", - "target": 17031, - "name": "BaseProductCategoryParams.fields" - } - }, - { - "id": 14972, - "name": "include_ancestors_tree", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "target": 17029, - "name": "BaseProductCategoryParams.include_ancestors_tree" - } - }, - { - "id": 14973, - "name": "include_descendants_tree", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "target": 17030, - "name": "BaseProductCategoryParams.include_descendants_tree" + "target": 14543, + "name": "SelectParams.fields" } } ], @@ -30036,38 +34457,36 @@ { "title": "Properties", "children": [ - 14974, - 14972, - 14973 + 14942 ] } ], "extendedTypes": [ { "type": "reference", - "target": 17028, - "name": "BaseProductCategoryParams", + "target": 14542, + "name": "SelectParams", "package": "@medusajs/types" } ] }, { - "id": 14975, - "name": "AdminProductCategoryResponse", + "id": 14943, + "name": "AdminProductTagResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14976, - "name": "product_category", + "id": 14944, + "name": "product_tag", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", "target": 14915, - "name": "AdminProductCategory", + "name": "AdminProductTag", "package": "@medusajs/types" } } @@ -30076,20 +34495,20 @@ { "title": "Properties", "children": [ - 14976 + 14944 ] } ] }, { - "id": 14977, - "name": "AdminProductCategoryListResponse", + "id": 14945, + "name": "AdminProductTagListResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14980, + "id": 14948, "name": "limit", "variant": "declaration", "kind": 1024, @@ -30107,7 +34526,7 @@ } }, { - "id": 14981, + "id": 14949, "name": "offset", "variant": "declaration", "kind": 1024, @@ -30125,7 +34544,7 @@ } }, { - "id": 14982, + "id": 14950, "name": "count", "variant": "declaration", "kind": 1024, @@ -30143,8 +34562,8 @@ } }, { - "id": 14983, - "name": "product_categories", + "id": 14951, + "name": "product_tags", "variant": "declaration", "kind": 1024, "flags": { @@ -30155,14 +34574,14 @@ "elementType": { "type": "reference", "target": 14915, - "name": "AdminProductCategory", + "name": "AdminProductTag", "package": "@medusajs/types" } }, "inheritedFrom": { "type": "reference", "target": -1, - "name": "PaginatedResponse.product_categories" + "name": "PaginatedResponse.product_tags" } } ], @@ -30170,30 +34589,30 @@ { "title": "Properties", "children": [ - 14980, - 14981, - 14982, - 14983 + 14948, + 14949, + 14950, + 14951 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14633, + "target": 14558, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 14978, + "id": 14946, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 14979, - "name": "product_categories", + "id": 14947, + "name": "product_tags", "variant": "declaration", "kind": 1024, "flags": {}, @@ -30202,7 +34621,7 @@ "elementType": { "type": "reference", "target": 14915, - "name": "AdminProductCategory", + "name": "AdminProductTag", "package": "@medusajs/types" } } @@ -30212,7 +34631,7 @@ { "title": "Properties", "children": [ - 14979 + 14947 ] } ] @@ -30225,14 +34644,14 @@ ] }, { - "id": 14984, - "name": "AdminProductCategoryDeleteResponse", + "id": 14952, + "name": "AdminProductTagDeleteResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14985, + "id": 14953, "name": "id", "variant": "declaration", "kind": 1024, @@ -30258,7 +34677,7 @@ } }, { - "id": 14986, + "id": 14954, "name": "object", "variant": "declaration", "kind": 1024, @@ -30275,7 +34694,7 @@ }, "type": { "type": "literal", - "value": "product_category" + "value": "product_tag" }, "inheritedFrom": { "type": "reference", @@ -30284,7 +34703,7 @@ } }, { - "id": 14987, + "id": 14955, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -30310,7 +34729,7 @@ } }, { - "id": 14988, + "id": 14956, "name": "parent", "variant": "declaration", "kind": 1024, @@ -30329,7 +34748,7 @@ "type": { "type": "reflection", "declaration": { - "id": 14989, + "id": 14957, "name": "__type", "variant": "declaration", "kind": 65536, @@ -30347,21 +34766,21 @@ { "title": "Properties", "children": [ - 14985, - 14986, - 14987, - 14988 + 14953, + 14954, + 14955, + 14956 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14624, + "target": 14549, "typeArguments": [ { "type": "literal", - "value": "product_category" + "value": "product_tag" } ], "name": "DeleteResponse", @@ -30370,14 +34789,14 @@ ] }, { - "id": 14990, + "id": 14958, "name": "AdminProductType", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14991, + "id": 14959, "name": "id", "variant": "declaration", "kind": 1024, @@ -30390,12 +34809,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17033, + "target": 17063, "name": "BaseProductType.id" } }, { - "id": 14992, + "id": 14960, "name": "value", "variant": "declaration", "kind": 1024, @@ -30408,17 +34827,16 @@ }, "inheritedFrom": { "type": "reference", - "target": 17034, + "target": 17064, "name": "BaseProductType.value" } }, { - "id": 14993, + "id": 14961, "name": "created_at", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, "isInherited": true }, "type": { @@ -30427,17 +34845,16 @@ }, "inheritedFrom": { "type": "reference", - "target": 17035, + "target": 17065, "name": "BaseProductType.created_at" } }, { - "id": 14994, + "id": 14962, "name": "updated_at", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, "isInherited": true }, "type": { @@ -30446,12 +34863,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17036, + "target": 17066, "name": "BaseProductType.updated_at" } }, { - "id": 14995, + "id": 14963, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -30474,12 +34891,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 17037, + "target": 17067, "name": "BaseProductType.deleted_at" } }, { - "id": 14996, + "id": 14964, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -30517,7 +34934,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 17038, + "target": 17068, "name": "BaseProductType.metadata" } } @@ -30526,33 +34943,33 @@ { "title": "Properties", "children": [ - 14991, - 14992, - 14993, - 14994, - 14995, - 14996 + 14959, + 14960, + 14961, + 14962, + 14963, + 14964 ] } ], "extendedTypes": [ { "type": "reference", - "target": 17032, + "target": 17062, "name": "BaseProductType", "package": "@medusajs/types" } ] }, { - "id": 14997, + "id": 14965, "name": "AdminCreateProductType", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 14998, + "id": 14966, "name": "value", "variant": "declaration", "kind": 1024, @@ -30563,7 +34980,7 @@ } }, { - "id": 14999, + "id": 14967, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -30604,21 +35021,21 @@ { "title": "Properties", "children": [ - 14998, - 14999 + 14966, + 14967 ] } ] }, { - "id": 15000, + "id": 14968, "name": "AdminUpdateProductType", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15001, + "id": 14969, "name": "value", "variant": "declaration", "kind": 1024, @@ -30631,7 +35048,7 @@ } }, { - "id": 15002, + "id": 14970, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -30672,14 +35089,14 @@ { "title": "Properties", "children": [ - 15001, - 15002 + 14969, + 14970 ] } ] }, { - "id": 15003, + "id": 14971, "name": "AdminProductTypeListParams", "variant": "declaration", "kind": 256, @@ -30694,7 +35111,7 @@ }, "children": [ { - "id": 15014, + "id": 14982, "name": "$and", "variant": "declaration", "kind": 1024, @@ -30717,17 +35134,17 @@ "types": [ { "type": "reference", - "target": 15003, + "target": 14971, "name": "AdminProductTypeListParams", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 15003, + "target": 14971, "name": "AdminProductTypeListParams", "package": "@medusajs/types" } @@ -30740,12 +35157,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14197, + "target": 14081, "name": "BaseFilterable.$and" } }, { - "id": 15015, + "id": 14983, "name": "$or", "variant": "declaration", "kind": 1024, @@ -30768,17 +35185,17 @@ "types": [ { "type": "reference", - "target": 15003, + "target": 14971, "name": "AdminProductTypeListParams", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 15003, + "target": 14971, "name": "AdminProductTypeListParams", "package": "@medusajs/types" } @@ -30791,12 +35208,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14198, + "target": 14082, "name": "BaseFilterable.$or" } }, { - "id": 15013, + "id": 14981, "name": "fields", "variant": "declaration", "kind": 1024, @@ -30810,12 +35227,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14623, + "target": 14548, "name": "FindParams.fields" } }, { - "id": 15010, + "id": 14978, "name": "limit", "variant": "declaration", "kind": 1024, @@ -30829,12 +35246,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14620, + "target": 14545, "name": "FindParams.limit" } }, { - "id": 15011, + "id": 14979, "name": "offset", "variant": "declaration", "kind": 1024, @@ -30848,12 +35265,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14621, + "target": 14546, "name": "FindParams.offset" } }, { - "id": 15012, + "id": 14980, "name": "order", "variant": "declaration", "kind": 1024, @@ -30867,12 +35284,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14622, + "target": 14547, "name": "FindParams.order" } }, { - "id": 15004, + "id": 14972, "name": "q", "variant": "declaration", "kind": 1024, @@ -30885,7 +35302,7 @@ } }, { - "id": 15005, + "id": 14973, "name": "id", "variant": "declaration", "kind": 1024, @@ -30910,7 +35327,7 @@ } }, { - "id": 15006, + "id": 14974, "name": "value", "variant": "declaration", "kind": 1024, @@ -30935,7 +35352,7 @@ } }, { - "id": 15007, + "id": 14975, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -30944,7 +35361,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -30956,7 +35373,7 @@ } }, { - "id": 15008, + "id": 14976, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -30965,7 +35382,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -30977,7 +35394,7 @@ } }, { - "id": 15009, + "id": 14977, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -30986,7 +35403,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -31002,35 +35419,35 @@ { "title": "Properties", "children": [ - 15014, - 15015, - 15013, - 15010, - 15011, - 15012, - 15004, - 15005, - 15006, - 15007, - 15008, - 15009 + 14982, + 14983, + 14981, + 14978, + 14979, + 14980, + 14972, + 14973, + 14974, + 14975, + 14976, + 14977 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14619, + "target": 14544, "name": "FindParams", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 15003, + "target": 14971, "name": "AdminProductTypeListParams", "package": "@medusajs/types" } @@ -31041,14 +35458,14 @@ ] }, { - "id": 15016, + "id": 14984, "name": "AdminProductTypeParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15017, + "id": 14985, "name": "fields", "variant": "declaration", "kind": 1024, @@ -31062,7 +35479,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 14618, + "target": 14543, "name": "SelectParams.fields" } } @@ -31071,35 +35488,35 @@ { "title": "Properties", "children": [ - 15017 + 14985 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14617, + "target": 14542, "name": "SelectParams", "package": "@medusajs/types" } ] }, { - "id": 15018, + "id": 14986, "name": "AdminProductTypeResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15019, + "id": 14987, "name": "product_type", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 14990, + "target": 14958, "name": "AdminProductType", "package": "@medusajs/types" } @@ -31109,20 +35526,20 @@ { "title": "Properties", "children": [ - 15019 + 14987 ] } ] }, { - "id": 15020, + "id": 14988, "name": "AdminProductTypeListResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15023, + "id": 14991, "name": "limit", "variant": "declaration", "kind": 1024, @@ -31140,7 +35557,7 @@ } }, { - "id": 15024, + "id": 14992, "name": "offset", "variant": "declaration", "kind": 1024, @@ -31158,7 +35575,7 @@ } }, { - "id": 15025, + "id": 14993, "name": "count", "variant": "declaration", "kind": 1024, @@ -31176,7 +35593,7 @@ } }, { - "id": 15026, + "id": 14994, "name": "product_types", "variant": "declaration", "kind": 1024, @@ -31187,7 +35604,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14990, + "target": 14958, "name": "AdminProductType", "package": "@medusajs/types" } @@ -31203,29 +35620,29 @@ { "title": "Properties", "children": [ - 15023, - 15024, - 15025, - 15026 + 14991, + 14992, + 14993, + 14994 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14633, + "target": 14558, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 15021, + "id": 14989, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15022, + "id": 14990, "name": "product_types", "variant": "declaration", "kind": 1024, @@ -31234,7 +35651,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14990, + "target": 14958, "name": "AdminProductType", "package": "@medusajs/types" } @@ -31245,7 +35662,7 @@ { "title": "Properties", "children": [ - 15022 + 14990 ] } ] @@ -31258,14 +35675,14 @@ ] }, { - "id": 15027, + "id": 14995, "name": "AdminProductTypeDeleteResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15028, + "id": 14996, "name": "id", "variant": "declaration", "kind": 1024, @@ -31291,7 +35708,7 @@ } }, { - "id": 15029, + "id": 14997, "name": "object", "variant": "declaration", "kind": 1024, @@ -31317,7 +35734,7 @@ } }, { - "id": 15030, + "id": 14998, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -31343,7 +35760,7 @@ } }, { - "id": 15031, + "id": 14999, "name": "parent", "variant": "declaration", "kind": 1024, @@ -31362,7 +35779,7 @@ "type": { "type": "reflection", "declaration": { - "id": 15032, + "id": 15000, "name": "__type", "variant": "declaration", "kind": 65536, @@ -31380,17 +35797,17 @@ { "title": "Properties", "children": [ - 15028, - 15029, - 15030, - 15031 + 14996, + 14997, + 14998, + 14999 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14624, + "target": 14549, "typeArguments": [ { "type": "literal", @@ -31403,21 +35820,21 @@ ] }, { - "id": 15033, + "id": 15001, "name": "AdminReservationResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15034, + "id": 15002, "name": "reservation", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 17039, + "target": 17069, "name": "ReservationResponse", "package": "@medusajs/types" } @@ -31427,32 +35844,32 @@ { "title": "Properties", "children": [ - 15034 + 15002 ] } ] }, { - "id": 15035, + "id": 15003, "name": "AdminReservationListResponse", "variant": "declaration", "kind": 2097152, "flags": {}, "type": { "type": "reference", - "target": 14633, + "target": 14558, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 15036, + "id": 15004, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15037, + "id": 15005, "name": "reservations", "variant": "declaration", "kind": 1024, @@ -31461,7 +35878,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 17039, + "target": 17069, "name": "ReservationResponse", "package": "@medusajs/types" } @@ -31472,7 +35889,7 @@ { "title": "Properties", "children": [ - 15037 + 15005 ] } ] @@ -31484,14 +35901,14 @@ } }, { - "id": 15038, + "id": 15006, "name": "AdminShippingOptionType", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15039, + "id": 15007, "name": "id", "variant": "declaration", "kind": 1024, @@ -31502,7 +35919,7 @@ } }, { - "id": 15040, + "id": 15008, "name": "label", "variant": "declaration", "kind": 1024, @@ -31513,7 +35930,7 @@ } }, { - "id": 15041, + "id": 15009, "name": "description", "variant": "declaration", "kind": 1024, @@ -31524,7 +35941,7 @@ } }, { - "id": 15042, + "id": 15010, "name": "code", "variant": "declaration", "kind": 1024, @@ -31535,7 +35952,7 @@ } }, { - "id": 15043, + "id": 15011, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -31546,7 +35963,7 @@ } }, { - "id": 15044, + "id": 15012, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -31557,7 +35974,7 @@ } }, { - "id": 15045, + "id": 15013, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -31568,7 +35985,7 @@ } }, { - "id": 15046, + "id": 15014, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -31592,27 +36009,27 @@ { "title": "Properties", "children": [ - 15039, - 15040, - 15041, - 15042, - 15043, - 15044, - 15045, - 15046 + 15007, + 15008, + 15009, + 15010, + 15011, + 15012, + 15013, + 15014 ] } ] }, { - "id": 15047, + "id": 15015, "name": "AdminShippingOptionRule", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15048, + "id": 15016, "name": "id", "variant": "declaration", "kind": 1024, @@ -31623,7 +36040,7 @@ } }, { - "id": 15049, + "id": 15017, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -31634,7 +36051,7 @@ } }, { - "id": 15050, + "id": 15018, "name": "operator", "variant": "declaration", "kind": 1024, @@ -31645,7 +36062,7 @@ } }, { - "id": 15051, + "id": 15019, "name": "value", "variant": "declaration", "kind": 1024, @@ -31672,7 +36089,7 @@ } }, { - "id": 15052, + "id": 15020, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -31683,7 +36100,7 @@ } }, { - "id": 15053, + "id": 15021, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -31694,7 +36111,7 @@ } }, { - "id": 15054, + "id": 15022, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -31705,7 +36122,7 @@ } }, { - "id": 15055, + "id": 15023, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -31729,27 +36146,27 @@ { "title": "Properties", "children": [ - 15048, - 15049, - 15050, - 15051, - 15052, - 15053, - 15054, - 15055 + 15016, + 15017, + 15018, + 15019, + 15020, + 15021, + 15022, + 15023 ] } ] }, { - "id": 15056, + "id": 15024, "name": "AdminShippingOptionPriceRule", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15057, + "id": 15025, "name": "id", "variant": "declaration", "kind": 1024, @@ -31760,7 +36177,7 @@ } }, { - "id": 15058, + "id": 15026, "name": "value", "variant": "declaration", "kind": 1024, @@ -31775,21 +36192,21 @@ { "title": "Properties", "children": [ - 15057, - 15058 + 15025, + 15026 ] } ] }, { - "id": 15059, + "id": 15027, "name": "AdminShippingOptionPrice", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15060, + "id": 15028, "name": "price_rules", "variant": "declaration", "kind": 1024, @@ -31798,14 +36215,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15056, + "target": 15024, "name": "AdminShippingOptionPriceRule", "package": "@medusajs/types" } } }, { - "id": 15061, + "id": 15029, "name": "rules_count", "variant": "declaration", "kind": 1024, @@ -31820,8 +36237,8 @@ { "title": "Properties", "children": [ - 15060, - 15061 + 15028, + 15029 ] } ], @@ -31838,14 +36255,14 @@ ] }, { - "id": 15062, + "id": 15030, "name": "AdminShippingOption", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15063, + "id": 15031, "name": "id", "variant": "declaration", "kind": 1024, @@ -31856,7 +36273,7 @@ } }, { - "id": 15064, + "id": 15032, "name": "name", "variant": "declaration", "kind": 1024, @@ -31867,7 +36284,7 @@ } }, { - "id": 15065, + "id": 15033, "name": "price_type", "variant": "declaration", "kind": 1024, @@ -31883,7 +36300,7 @@ } }, { - "id": 15066, + "id": 15034, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -31894,20 +36311,20 @@ } }, { - "id": 15067, + "id": 15035, "name": "service_zone", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 14674, + "target": 14599, "name": "AdminServiceZone", "package": "@medusajs/types" } }, { - "id": 15068, + "id": 15036, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -31918,20 +36335,20 @@ } }, { - "id": 15069, + "id": 15037, "name": "provider", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 14646, + "target": 14571, "name": "AdminFulfillmentProvider", "package": "@medusajs/types" } }, { - "id": 15070, + "id": 15038, "name": "shipping_option_type_id", "variant": "declaration", "kind": 1024, @@ -31951,20 +36368,20 @@ } }, { - "id": 15071, + "id": 15039, "name": "type", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15038, + "target": 15006, "name": "AdminShippingOptionType", "package": "@medusajs/types" } }, { - "id": 15072, + "id": 15040, "name": "shipping_profile_id", "variant": "declaration", "kind": 1024, @@ -31975,20 +36392,20 @@ } }, { - "id": 15073, + "id": 15041, "name": "shipping_profile", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15164, + "target": 15132, "name": "AdminShippingProfile", "package": "@medusajs/types" } }, { - "id": 15074, + "id": 15042, "name": "rules", "variant": "declaration", "kind": 1024, @@ -31997,14 +36414,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15047, + "target": 15015, "name": "AdminShippingOptionRule", "package": "@medusajs/types" } } }, { - "id": 15075, + "id": 15043, "name": "prices", "variant": "declaration", "kind": 1024, @@ -32013,14 +36430,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15059, + "target": 15027, "name": "AdminShippingOptionPrice", "package": "@medusajs/types" } } }, { - "id": 15076, + "id": 15044, "name": "data", "variant": "declaration", "kind": 1024, @@ -32055,7 +36472,7 @@ } }, { - "id": 15077, + "id": 15045, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -32090,7 +36507,7 @@ } }, { - "id": 15078, + "id": 15046, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -32106,7 +36523,7 @@ } }, { - "id": 15079, + "id": 15047, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -32122,7 +36539,7 @@ } }, { - "id": 15080, + "id": 15048, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -32151,50 +36568,50 @@ { "title": "Properties", "children": [ - 15063, - 15064, - 15065, - 15066, - 15067, - 15068, - 15069, - 15070, - 15071, - 15072, - 15073, - 15074, - 15075, - 15076, - 15077, - 15078, - 15079, - 15080 + 15031, + 15032, + 15033, + 15034, + 15035, + 15036, + 15037, + 15038, + 15039, + 15040, + 15041, + 15042, + 15043, + 15044, + 15045, + 15046, + 15047, + 15048 ] } ] }, { - "id": 15081, + "id": 15049, "name": "AdminCreateShippingOptionRule", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15082, + "id": 15050, "name": "operator", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 14032, + "target": 13918, "name": "RuleOperatorType", "package": "@medusajs/types" } }, { - "id": 15083, + "id": 15051, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -32205,7 +36622,7 @@ } }, { - "id": 15084, + "id": 15052, "name": "value", "variant": "declaration", "kind": 1024, @@ -32232,29 +36649,29 @@ { "title": "Properties", "children": [ - 15082, - 15083, - 15084 + 15050, + 15051, + 15052 ] } ], "extendedBy": [ { "type": "reference", - "target": 15105, + "target": 15073, "name": "AdminUpdateShippingOptionRule" } ] }, { - "id": 15085, + "id": 15053, "name": "AdminCreateShippingOptionType", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15086, + "id": 15054, "name": "label", "variant": "declaration", "kind": 1024, @@ -32265,7 +36682,7 @@ } }, { - "id": 15087, + "id": 15055, "name": "description", "variant": "declaration", "kind": 1024, @@ -32276,7 +36693,7 @@ } }, { - "id": 15088, + "id": 15056, "name": "code", "variant": "declaration", "kind": 1024, @@ -32291,22 +36708,22 @@ { "title": "Properties", "children": [ - 15086, - 15087, - 15088 + 15054, + 15055, + 15056 ] } ] }, { - "id": 15089, + "id": 15057, "name": "AdminCreateShippingOptionPriceWithCurrency", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15090, + "id": 15058, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -32317,7 +36734,7 @@ } }, { - "id": 15091, + "id": 15059, "name": "amount", "variant": "declaration", "kind": 1024, @@ -32332,21 +36749,21 @@ { "title": "Properties", "children": [ - 15090, - 15091 + 15058, + 15059 ] } ] }, { - "id": 15092, + "id": 15060, "name": "AdminCreateShippingOptionPriceWithRegion", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15093, + "id": 15061, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -32357,7 +36774,7 @@ } }, { - "id": 15094, + "id": 15062, "name": "amount", "variant": "declaration", "kind": 1024, @@ -32372,21 +36789,21 @@ { "title": "Properties", "children": [ - 15093, - 15094 + 15061, + 15062 ] } ] }, { - "id": 15095, + "id": 15063, "name": "AdminCreateShippingOption", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15096, + "id": 15064, "name": "name", "variant": "declaration", "kind": 1024, @@ -32397,7 +36814,7 @@ } }, { - "id": 15097, + "id": 15065, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -32408,7 +36825,7 @@ } }, { - "id": 15098, + "id": 15066, "name": "shipping_profile_id", "variant": "declaration", "kind": 1024, @@ -32419,7 +36836,7 @@ } }, { - "id": 15099, + "id": 15067, "name": "data", "variant": "declaration", "kind": 1024, @@ -32447,7 +36864,7 @@ } }, { - "id": 15100, + "id": 15068, "name": "price_type", "variant": "declaration", "kind": 1024, @@ -32463,7 +36880,7 @@ } }, { - "id": 15101, + "id": 15069, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -32474,20 +36891,20 @@ } }, { - "id": 15102, + "id": 15070, "name": "type", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15085, + "target": 15053, "name": "AdminCreateShippingOptionType", "package": "@medusajs/types" } }, { - "id": 15103, + "id": 15071, "name": "prices", "variant": "declaration", "kind": 1024, @@ -32499,13 +36916,13 @@ "types": [ { "type": "reference", - "target": 15089, + "target": 15057, "name": "AdminCreateShippingOptionPriceWithCurrency", "package": "@medusajs/types" }, { "type": "reference", - "target": 15092, + "target": 15060, "name": "AdminCreateShippingOptionPriceWithRegion", "package": "@medusajs/types" } @@ -32514,7 +36931,7 @@ } }, { - "id": 15104, + "id": 15072, "name": "rules", "variant": "declaration", "kind": 1024, @@ -32525,7 +36942,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15081, + "target": 15049, "name": "AdminCreateShippingOptionRule", "package": "@medusajs/types" } @@ -32536,28 +36953,28 @@ { "title": "Properties", "children": [ - 15096, - 15097, - 15098, - 15099, - 15100, - 15101, - 15102, - 15103, - 15104 + 15064, + 15065, + 15066, + 15067, + 15068, + 15069, + 15070, + 15071, + 15072 ] } ] }, { - "id": 15105, + "id": 15073, "name": "AdminUpdateShippingOptionRule", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15107, + "id": 15075, "name": "operator", "variant": "declaration", "kind": 1024, @@ -32566,18 +36983,18 @@ }, "type": { "type": "reference", - "target": 14032, + "target": 13918, "name": "RuleOperatorType", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 15082, + "target": 15050, "name": "AdminCreateShippingOptionRule.operator" } }, { - "id": 15108, + "id": 15076, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -32590,12 +37007,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 15083, + "target": 15051, "name": "AdminCreateShippingOptionRule.attribute" } }, { - "id": 15109, + "id": 15077, "name": "value", "variant": "declaration", "kind": 1024, @@ -32620,12 +37037,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 15084, + "target": 15052, "name": "AdminCreateShippingOptionRule.value" } }, { - "id": 15106, + "id": 15074, "name": "id", "variant": "declaration", "kind": 1024, @@ -32642,31 +37059,31 @@ { "title": "Properties", "children": [ - 15107, - 15108, - 15109, - 15106 + 15075, + 15076, + 15077, + 15074 ] } ], "extendedTypes": [ { "type": "reference", - "target": 15081, + "target": 15049, "name": "AdminCreateShippingOptionRule", "package": "@medusajs/types" } ] }, { - "id": 15110, + "id": 15078, "name": "AdminUpdateShippingOptionPriceWithCurrency", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15111, + "id": 15079, "name": "id", "variant": "declaration", "kind": 1024, @@ -32679,7 +37096,7 @@ } }, { - "id": 15112, + "id": 15080, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -32692,7 +37109,7 @@ } }, { - "id": 15113, + "id": 15081, "name": "amount", "variant": "declaration", "kind": 1024, @@ -32709,22 +37126,22 @@ { "title": "Properties", "children": [ - 15111, - 15112, - 15113 + 15079, + 15080, + 15081 ] } ] }, { - "id": 15114, + "id": 15082, "name": "AdminUpdateShippingOptionPriceWithRegion", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15115, + "id": 15083, "name": "id", "variant": "declaration", "kind": 1024, @@ -32737,7 +37154,7 @@ } }, { - "id": 15116, + "id": 15084, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -32750,7 +37167,7 @@ } }, { - "id": 15117, + "id": 15085, "name": "amount", "variant": "declaration", "kind": 1024, @@ -32767,22 +37184,22 @@ { "title": "Properties", "children": [ - 15115, - 15116, - 15117 + 15083, + 15084, + 15085 ] } ] }, { - "id": 15118, + "id": 15086, "name": "AdminUpdateShippingOption", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15119, + "id": 15087, "name": "name", "variant": "declaration", "kind": 1024, @@ -32795,7 +37212,7 @@ } }, { - "id": 15120, + "id": 15088, "name": "data", "variant": "declaration", "kind": 1024, @@ -32823,7 +37240,7 @@ } }, { - "id": 15121, + "id": 15089, "name": "price_type", "variant": "declaration", "kind": 1024, @@ -32841,7 +37258,7 @@ } }, { - "id": 15122, + "id": 15090, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -32854,7 +37271,7 @@ } }, { - "id": 15123, + "id": 15091, "name": "shipping_profile_id", "variant": "declaration", "kind": 1024, @@ -32867,7 +37284,7 @@ } }, { - "id": 15124, + "id": 15092, "name": "type", "variant": "declaration", "kind": 1024, @@ -32876,13 +37293,13 @@ }, "type": { "type": "reference", - "target": 15085, + "target": 15053, "name": "AdminCreateShippingOptionType", "package": "@medusajs/types" } }, { - "id": 15125, + "id": 15093, "name": "prices", "variant": "declaration", "kind": 1024, @@ -32896,13 +37313,13 @@ "types": [ { "type": "reference", - "target": 15110, + "target": 15078, "name": "AdminUpdateShippingOptionPriceWithCurrency", "package": "@medusajs/types" }, { "type": "reference", - "target": 15114, + "target": 15082, "name": "AdminUpdateShippingOptionPriceWithRegion", "package": "@medusajs/types" } @@ -32911,7 +37328,7 @@ } }, { - "id": 15126, + "id": 15094, "name": "rules", "variant": "declaration", "kind": 1024, @@ -32925,13 +37342,13 @@ "types": [ { "type": "reference", - "target": 15081, + "target": 15049, "name": "AdminCreateShippingOptionRule", "package": "@medusajs/types" }, { "type": "reference", - "target": 15105, + "target": 15073, "name": "AdminUpdateShippingOptionRule", "package": "@medusajs/types" } @@ -32944,27 +37361,27 @@ { "title": "Properties", "children": [ - 15119, - 15120, - 15121, - 15122, - 15123, - 15124, - 15125, - 15126 + 15087, + 15088, + 15089, + 15090, + 15091, + 15092, + 15093, + 15094 ] } ] }, { - "id": 15127, + "id": 15095, "name": "AdminUpdateShippingOptionRules", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15128, + "id": 15096, "name": "create", "variant": "declaration", "kind": 1024, @@ -32980,7 +37397,7 @@ } }, { - "id": 15129, + "id": 15097, "name": "update", "variant": "declaration", "kind": 1024, @@ -32996,7 +37413,7 @@ } }, { - "id": 15130, + "id": 15098, "name": "delete", "variant": "declaration", "kind": 1024, @@ -33016,22 +37433,22 @@ { "title": "Properties", "children": [ - 15128, - 15129, - 15130 + 15096, + 15097, + 15098 ] } ] }, { - "id": 15131, + "id": 15099, "name": "AdminShippingOptionListParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15144, + "id": 15112, "name": "fields", "variant": "declaration", "kind": 1024, @@ -33045,12 +37462,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14623, + "target": 14548, "name": "FindParams.fields" } }, { - "id": 15141, + "id": 15109, "name": "limit", "variant": "declaration", "kind": 1024, @@ -33064,12 +37481,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14620, + "target": 14545, "name": "FindParams.limit" } }, { - "id": 15142, + "id": 15110, "name": "offset", "variant": "declaration", "kind": 1024, @@ -33083,12 +37500,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14621, + "target": 14546, "name": "FindParams.offset" } }, { - "id": 15143, + "id": 15111, "name": "order", "variant": "declaration", "kind": 1024, @@ -33102,12 +37519,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14622, + "target": 14547, "name": "FindParams.order" } }, { - "id": 15132, + "id": 15100, "name": "id", "variant": "declaration", "kind": 1024, @@ -33132,7 +37549,7 @@ } }, { - "id": 15133, + "id": 15101, "name": "q", "variant": "declaration", "kind": 1024, @@ -33145,7 +37562,7 @@ } }, { - "id": 15134, + "id": 15102, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -33158,7 +37575,7 @@ } }, { - "id": 15135, + "id": 15103, "name": "shipping_profile_id", "variant": "declaration", "kind": 1024, @@ -33171,7 +37588,7 @@ } }, { - "id": 15136, + "id": 15104, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -33184,7 +37601,7 @@ } }, { - "id": 15137, + "id": 15105, "name": "shipping_option_type_id", "variant": "declaration", "kind": 1024, @@ -33197,7 +37614,7 @@ } }, { - "id": 15138, + "id": 15106, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -33206,7 +37623,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -33218,7 +37635,7 @@ } }, { - "id": 15139, + "id": 15107, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -33227,7 +37644,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -33239,7 +37656,7 @@ } }, { - "id": 15140, + "id": 15108, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -33248,7 +37665,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -33264,47 +37681,47 @@ { "title": "Properties", "children": [ - 15144, - 15141, - 15142, - 15143, - 15132, - 15133, - 15134, - 15135, - 15136, - 15137, - 15138, - 15139, - 15140 + 15112, + 15109, + 15110, + 15111, + 15100, + 15101, + 15102, + 15103, + 15104, + 15105, + 15106, + 15107, + 15108 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14619, + "target": 14544, "name": "FindParams", "package": "@medusajs/types" } ] }, { - "id": 15145, + "id": 15113, "name": "AdminShippingOptionResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15146, + "id": 15114, "name": "shipping_option", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15062, + "target": 15030, "name": "AdminShippingOption", "package": "@medusajs/types" } @@ -33314,32 +37731,32 @@ { "title": "Properties", "children": [ - 15146 + 15114 ] } ] }, { - "id": 15147, + "id": 15115, "name": "AdminShippingOptionListResponse", "variant": "declaration", "kind": 2097152, "flags": {}, "type": { "type": "reference", - "target": 14633, + "target": 14558, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 15148, + "id": 15116, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15149, + "id": 15117, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -33348,7 +37765,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15062, + "target": 15030, "name": "AdminShippingOption", "package": "@medusajs/types" } @@ -33359,7 +37776,7 @@ { "title": "Properties", "children": [ - 15149 + 15117 ] } ] @@ -33371,14 +37788,14 @@ } }, { - "id": 15150, + "id": 15118, "name": "AdminShippingOptionDeleteResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15151, + "id": 15119, "name": "id", "variant": "declaration", "kind": 1024, @@ -33404,7 +37821,7 @@ } }, { - "id": 15152, + "id": 15120, "name": "object", "variant": "declaration", "kind": 1024, @@ -33430,7 +37847,7 @@ } }, { - "id": 15153, + "id": 15121, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -33456,7 +37873,7 @@ } }, { - "id": 15154, + "id": 15122, "name": "parent", "variant": "declaration", "kind": 1024, @@ -33475,7 +37892,7 @@ "type": { "type": "reflection", "declaration": { - "id": 15155, + "id": 15123, "name": "__type", "variant": "declaration", "kind": 65536, @@ -33493,17 +37910,17 @@ { "title": "Properties", "children": [ - 15151, - 15152, - 15153, - 15154 + 15119, + 15120, + 15121, + 15122 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14624, + "target": 14549, "typeArguments": [ { "type": "literal", @@ -33516,14 +37933,14 @@ ] }, { - "id": 15156, + "id": 15124, "name": "AdminUpdateShippingOptionRulesResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15157, + "id": 15125, "name": "created", "variant": "declaration", "kind": 1024, @@ -33532,14 +37949,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15047, + "target": 15015, "name": "AdminShippingOptionRule", "package": "@medusajs/types" } } }, { - "id": 15158, + "id": 15126, "name": "updated", "variant": "declaration", "kind": 1024, @@ -33548,14 +37965,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15047, + "target": 15015, "name": "AdminShippingOptionRule", "package": "@medusajs/types" } } }, { - "id": 15159, + "id": 15127, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -33563,14 +37980,14 @@ "type": { "type": "reflection", "declaration": { - "id": 15160, + "id": 15128, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15161, + "id": 15129, "name": "ids", "variant": "declaration", "kind": 1024, @@ -33584,7 +38001,7 @@ } }, { - "id": 15162, + "id": 15130, "name": "object", "variant": "declaration", "kind": 1024, @@ -33595,7 +38012,7 @@ } }, { - "id": 15163, + "id": 15131, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -33610,9 +38027,9 @@ { "title": "Properties", "children": [ - 15161, - 15162, - 15163 + 15129, + 15130, + 15131 ] } ] @@ -33624,22 +38041,22 @@ { "title": "Properties", "children": [ - 15157, - 15158, - 15159 + 15125, + 15126, + 15127 ] } ] }, { - "id": 15164, + "id": 15132, "name": "AdminShippingProfile", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15165, + "id": 15133, "name": "id", "variant": "declaration", "kind": 1024, @@ -33650,7 +38067,7 @@ } }, { - "id": 15166, + "id": 15134, "name": "name", "variant": "declaration", "kind": 1024, @@ -33661,7 +38078,7 @@ } }, { - "id": 15167, + "id": 15135, "name": "type", "variant": "declaration", "kind": 1024, @@ -33672,7 +38089,7 @@ } }, { - "id": 15168, + "id": 15136, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -33707,7 +38124,7 @@ } }, { - "id": 15169, + "id": 15137, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -33718,7 +38135,7 @@ } }, { - "id": 15170, + "id": 15138, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -33729,7 +38146,7 @@ } }, { - "id": 15171, + "id": 15139, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -33753,26 +38170,26 @@ { "title": "Properties", "children": [ - 15165, - 15166, - 15167, - 15168, - 15169, - 15170, - 15171 + 15133, + 15134, + 15135, + 15136, + 15137, + 15138, + 15139 ] } ] }, { - "id": 15172, + "id": 15140, "name": "AdminCreateShippingProfile", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15173, + "id": 15141, "name": "name", "variant": "declaration", "kind": 1024, @@ -33783,7 +38200,7 @@ } }, { - "id": 15174, + "id": 15142, "name": "type", "variant": "declaration", "kind": 1024, @@ -33794,7 +38211,7 @@ } }, { - "id": 15175, + "id": 15143, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -33826,22 +38243,22 @@ { "title": "Properties", "children": [ - 15173, - 15174, - 15175 + 15141, + 15142, + 15143 ] } ] }, { - "id": 15176, + "id": 15144, "name": "AdminUpdateShippingProfile", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15177, + "id": 15145, "name": "name", "variant": "declaration", "kind": 1024, @@ -33854,7 +38271,7 @@ } }, { - "id": 15178, + "id": 15146, "name": "type", "variant": "declaration", "kind": 1024, @@ -33867,7 +38284,7 @@ } }, { - "id": 15179, + "id": 15147, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -33908,22 +38325,22 @@ { "title": "Properties", "children": [ - 15177, - 15178, - 15179 + 15145, + 15146, + 15147 ] } ] }, { - "id": 15180, + "id": 15148, "name": "AdminShippingProfileListParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15193, + "id": 15161, "name": "fields", "variant": "declaration", "kind": 1024, @@ -33937,12 +38354,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14623, + "target": 14548, "name": "FindParams.fields" } }, { - "id": 15190, + "id": 15158, "name": "limit", "variant": "declaration", "kind": 1024, @@ -33956,12 +38373,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14620, + "target": 14545, "name": "FindParams.limit" } }, { - "id": 15191, + "id": 15159, "name": "offset", "variant": "declaration", "kind": 1024, @@ -33975,12 +38392,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14621, + "target": 14546, "name": "FindParams.offset" } }, { - "id": 15192, + "id": 15160, "name": "order", "variant": "declaration", "kind": 1024, @@ -33994,12 +38411,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14622, + "target": 14547, "name": "FindParams.order" } }, { - "id": 15181, + "id": 15149, "name": "id", "variant": "declaration", "kind": 1024, @@ -34024,7 +38441,7 @@ } }, { - "id": 15182, + "id": 15150, "name": "q", "variant": "declaration", "kind": 1024, @@ -34037,7 +38454,7 @@ } }, { - "id": 15183, + "id": 15151, "name": "type", "variant": "declaration", "kind": 1024, @@ -34050,7 +38467,7 @@ } }, { - "id": 15184, + "id": 15152, "name": "name", "variant": "declaration", "kind": 1024, @@ -34063,7 +38480,7 @@ } }, { - "id": 15185, + "id": 15153, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -34072,7 +38489,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -34084,7 +38501,7 @@ } }, { - "id": 15186, + "id": 15154, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -34093,7 +38510,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -34105,7 +38522,7 @@ } }, { - "id": 15187, + "id": 15155, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -34114,7 +38531,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -34126,7 +38543,7 @@ } }, { - "id": 15188, + "id": 15156, "name": "$and", "variant": "declaration", "kind": 1024, @@ -34137,14 +38554,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15180, + "target": 15148, "name": "AdminShippingProfileListParams", "package": "@medusajs/types" } } }, { - "id": 15189, + "id": 15157, "name": "$or", "variant": "declaration", "kind": 1024, @@ -34155,7 +38572,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15180, + "target": 15148, "name": "AdminShippingProfileListParams", "package": "@medusajs/types" } @@ -34166,47 +38583,47 @@ { "title": "Properties", "children": [ - 15193, - 15190, - 15191, - 15192, - 15181, - 15182, - 15183, - 15184, - 15185, - 15186, - 15187, - 15188, - 15189 + 15161, + 15158, + 15159, + 15160, + 15149, + 15150, + 15151, + 15152, + 15153, + 15154, + 15155, + 15156, + 15157 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14619, + "target": 14544, "name": "FindParams", "package": "@medusajs/types" } ] }, { - "id": 15194, + "id": 15162, "name": "AdminShippingProfileResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15195, + "id": 15163, "name": "shipping_profile", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15164, + "target": 15132, "name": "AdminShippingProfile", "package": "@medusajs/types" } @@ -34216,32 +38633,32 @@ { "title": "Properties", "children": [ - 15195 + 15163 ] } ] }, { - "id": 15196, + "id": 15164, "name": "AdminShippingProfileListResponse", "variant": "declaration", "kind": 2097152, "flags": {}, "type": { "type": "reference", - "target": 14633, + "target": 14558, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 15197, + "id": 15165, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15198, + "id": 15166, "name": "shipping_profiles", "variant": "declaration", "kind": 1024, @@ -34250,7 +38667,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15164, + "target": 15132, "name": "AdminShippingProfile", "package": "@medusajs/types" } @@ -34261,7 +38678,7 @@ { "title": "Properties", "children": [ - 15198 + 15166 ] } ] @@ -34273,14 +38690,14 @@ } }, { - "id": 15199, + "id": 15167, "name": "AdminShippingProfileDeleteResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15200, + "id": 15168, "name": "id", "variant": "declaration", "kind": 1024, @@ -34306,7 +38723,7 @@ } }, { - "id": 15201, + "id": 15169, "name": "object", "variant": "declaration", "kind": 1024, @@ -34332,7 +38749,7 @@ } }, { - "id": 15202, + "id": 15170, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -34358,7 +38775,7 @@ } }, { - "id": 15203, + "id": 15171, "name": "parent", "variant": "declaration", "kind": 1024, @@ -34377,7 +38794,7 @@ "type": { "type": "reflection", "declaration": { - "id": 15204, + "id": 15172, "name": "__type", "variant": "declaration", "kind": 65536, @@ -34395,17 +38812,17 @@ { "title": "Properties", "children": [ - 15200, - 15201, - 15202, - 15203 + 15168, + 15169, + 15170, + 15171 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14624, + "target": 14549, "typeArguments": [ { "type": "literal", @@ -34418,14 +38835,14 @@ ] }, { - "id": 15205, + "id": 15173, "name": "AdminStockLocationAddress", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15206, + "id": 15174, "name": "id", "variant": "declaration", "kind": 1024, @@ -34436,7 +38853,7 @@ } }, { - "id": 15207, + "id": 15175, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -34447,7 +38864,7 @@ } }, { - "id": 15208, + "id": 15176, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -34467,7 +38884,7 @@ } }, { - "id": 15209, + "id": 15177, "name": "company", "variant": "declaration", "kind": 1024, @@ -34487,7 +38904,7 @@ } }, { - "id": 15210, + "id": 15178, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -34498,7 +38915,7 @@ } }, { - "id": 15211, + "id": 15179, "name": "city", "variant": "declaration", "kind": 1024, @@ -34518,7 +38935,7 @@ } }, { - "id": 15212, + "id": 15180, "name": "phone", "variant": "declaration", "kind": 1024, @@ -34538,7 +38955,7 @@ } }, { - "id": 15213, + "id": 15181, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -34558,7 +38975,7 @@ } }, { - "id": 15214, + "id": 15182, "name": "province", "variant": "declaration", "kind": 1024, @@ -34582,28 +38999,28 @@ { "title": "Properties", "children": [ - 15206, - 15207, - 15208, - 15209, - 15210, - 15211, - 15212, - 15213, - 15214 + 15174, + 15175, + 15176, + 15177, + 15178, + 15179, + 15180, + 15181, + 15182 ] } ] }, { - "id": 15215, + "id": 15183, "name": "AdminStockLocation", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15216, + "id": 15184, "name": "id", "variant": "declaration", "kind": 1024, @@ -34614,7 +39031,7 @@ } }, { - "id": 15217, + "id": 15185, "name": "name", "variant": "declaration", "kind": 1024, @@ -34625,7 +39042,7 @@ } }, { - "id": 15218, + "id": 15186, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -34636,7 +39053,7 @@ } }, { - "id": 15219, + "id": 15187, "name": "address", "variant": "declaration", "kind": 1024, @@ -34645,13 +39062,13 @@ }, "type": { "type": "reference", - "target": 15205, + "target": 15173, "name": "AdminStockLocationAddress", "package": "@medusajs/types" } }, { - "id": 15220, + "id": 15188, "name": "sales_channels", "variant": "declaration", "kind": 1024, @@ -34672,7 +39089,7 @@ } }, { - "id": 15221, + "id": 15189, "name": "fulfillment_sets", "variant": "declaration", "kind": 1024, @@ -34683,7 +39100,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14683, + "target": 14608, "name": "AdminFulfillmentSet", "package": "@medusajs/types" } @@ -34694,25 +39111,25 @@ { "title": "Properties", "children": [ - 15216, - 15217, - 15218, - 15219, - 15220, - 15221 + 15184, + 15185, + 15186, + 15187, + 15188, + 15189 ] } ] }, { - "id": 15222, + "id": 15190, "name": "AdminCreateStockLocation", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15223, + "id": 15191, "name": "name", "variant": "declaration", "kind": 1024, @@ -34723,7 +39140,7 @@ } }, { - "id": 15224, + "id": 15192, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -34736,7 +39153,7 @@ } }, { - "id": 15225, + "id": 15193, "name": "address", "variant": "declaration", "kind": 1024, @@ -34745,13 +39162,13 @@ }, "type": { "type": "reference", - "target": 17053, + "target": 17083, "name": "AdminUpsertStockLocationAddress", "package": "@medusajs/types" } }, { - "id": 15226, + "id": 15194, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -34783,23 +39200,23 @@ { "title": "Properties", "children": [ - 15223, - 15224, - 15225, - 15226 + 15191, + 15192, + 15193, + 15194 ] } ] }, { - "id": 15227, + "id": 15195, "name": "AdminUpdateStockLocation", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15228, + "id": 15196, "name": "name", "variant": "declaration", "kind": 1024, @@ -34812,7 +39229,7 @@ } }, { - "id": 15229, + "id": 15197, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -34825,7 +39242,7 @@ } }, { - "id": 15230, + "id": 15198, "name": "address", "variant": "declaration", "kind": 1024, @@ -34834,13 +39251,13 @@ }, "type": { "type": "reference", - "target": 17053, + "target": 17083, "name": "AdminUpsertStockLocationAddress", "package": "@medusajs/types" } }, { - "id": 15231, + "id": 15199, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -34872,23 +39289,23 @@ { "title": "Properties", "children": [ - 15228, - 15229, - 15230, - 15231 + 15196, + 15197, + 15198, + 15199 ] } ] }, { - "id": 15232, + "id": 15200, "name": "AdminUpdateStockLocationSalesChannels", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15233, + "id": 15201, "name": "add", "variant": "declaration", "kind": 1024, @@ -34904,7 +39321,7 @@ } }, { - "id": 15234, + "id": 15202, "name": "remove", "variant": "declaration", "kind": 1024, @@ -34924,21 +39341,21 @@ { "title": "Properties", "children": [ - 15233, - 15234 + 15201, + 15202 ] } ] }, { - "id": 15235, + "id": 15203, "name": "AdminCreateStockLocationFulfillmentSet", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15236, + "id": 15204, "name": "name", "variant": "declaration", "kind": 1024, @@ -34949,7 +39366,7 @@ } }, { - "id": 15237, + "id": 15205, "name": "type", "variant": "declaration", "kind": 1024, @@ -34964,21 +39381,21 @@ { "title": "Properties", "children": [ - 15236, - 15237 + 15204, + 15205 ] } ] }, { - "id": 15238, + "id": 15206, "name": "AdminStockLocationListParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15249, + "id": 15217, "name": "fields", "variant": "declaration", "kind": 1024, @@ -34992,12 +39409,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14623, + "target": 14548, "name": "FindParams.fields" } }, { - "id": 15246, + "id": 15214, "name": "limit", "variant": "declaration", "kind": 1024, @@ -35011,12 +39428,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14620, + "target": 14545, "name": "FindParams.limit" } }, { - "id": 15247, + "id": 15215, "name": "offset", "variant": "declaration", "kind": 1024, @@ -35030,12 +39447,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14621, + "target": 14546, "name": "FindParams.offset" } }, { - "id": 15248, + "id": 15216, "name": "order", "variant": "declaration", "kind": 1024, @@ -35049,12 +39466,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14622, + "target": 14547, "name": "FindParams.order" } }, { - "id": 15239, + "id": 15207, "name": "id", "variant": "declaration", "kind": 1024, @@ -35079,7 +39496,7 @@ } }, { - "id": 15240, + "id": 15208, "name": "q", "variant": "declaration", "kind": 1024, @@ -35092,7 +39509,7 @@ } }, { - "id": 15241, + "id": 15209, "name": "name", "variant": "declaration", "kind": 1024, @@ -35117,7 +39534,7 @@ } }, { - "id": 15242, + "id": 15210, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -35142,7 +39559,7 @@ } }, { - "id": 15243, + "id": 15211, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -35167,7 +39584,7 @@ } }, { - "id": 15244, + "id": 15212, "name": "$and", "variant": "declaration", "kind": 1024, @@ -35178,14 +39595,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15238, + "target": 15206, "name": "AdminStockLocationListParams", "package": "@medusajs/types" } } }, { - "id": 15245, + "id": 15213, "name": "$or", "variant": "declaration", "kind": 1024, @@ -35196,7 +39613,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15238, + "target": 15206, "name": "AdminStockLocationListParams", "package": "@medusajs/types" } @@ -35207,45 +39624,45 @@ { "title": "Properties", "children": [ - 15249, - 15246, - 15247, - 15248, - 15239, - 15240, - 15241, - 15242, - 15243, - 15244, - 15245 + 15217, + 15214, + 15215, + 15216, + 15207, + 15208, + 15209, + 15210, + 15211, + 15212, + 15213 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14619, + "target": 14544, "name": "FindParams", "package": "@medusajs/types" } ] }, { - "id": 15250, + "id": 15218, "name": "AdminStockLocationResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15251, + "id": 15219, "name": "stock_location", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15215, + "target": 15183, "name": "AdminStockLocation", "package": "@medusajs/types" } @@ -35255,20 +39672,20 @@ { "title": "Properties", "children": [ - 15251 + 15219 ] } ] }, { - "id": 15252, + "id": 15220, "name": "AdminStockLocationListResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15255, + "id": 15223, "name": "limit", "variant": "declaration", "kind": 1024, @@ -35286,7 +39703,7 @@ } }, { - "id": 15256, + "id": 15224, "name": "offset", "variant": "declaration", "kind": 1024, @@ -35304,7 +39721,7 @@ } }, { - "id": 15257, + "id": 15225, "name": "count", "variant": "declaration", "kind": 1024, @@ -35322,7 +39739,7 @@ } }, { - "id": 15258, + "id": 15226, "name": "stock_locations", "variant": "declaration", "kind": 1024, @@ -35333,7 +39750,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15215, + "target": 15183, "name": "AdminStockLocation", "package": "@medusajs/types" } @@ -35349,29 +39766,29 @@ { "title": "Properties", "children": [ - 15255, - 15256, - 15257, - 15258 + 15223, + 15224, + 15225, + 15226 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14633, + "target": 14558, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 15253, + "id": 15221, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15254, + "id": 15222, "name": "stock_locations", "variant": "declaration", "kind": 1024, @@ -35380,7 +39797,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15215, + "target": 15183, "name": "AdminStockLocation", "package": "@medusajs/types" } @@ -35391,7 +39808,7 @@ { "title": "Properties", "children": [ - 15254 + 15222 ] } ] @@ -35404,14 +39821,14 @@ ] }, { - "id": 15259, + "id": 15227, "name": "AdminStockLocationDeleteResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15260, + "id": 15228, "name": "id", "variant": "declaration", "kind": 1024, @@ -35437,7 +39854,7 @@ } }, { - "id": 15261, + "id": 15229, "name": "object", "variant": "declaration", "kind": 1024, @@ -35463,7 +39880,7 @@ } }, { - "id": 15262, + "id": 15230, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -35489,7 +39906,7 @@ } }, { - "id": 15263, + "id": 15231, "name": "parent", "variant": "declaration", "kind": 1024, @@ -35508,7 +39925,7 @@ "type": { "type": "reflection", "declaration": { - "id": 15264, + "id": 15232, "name": "__type", "variant": "declaration", "kind": 65536, @@ -35526,17 +39943,17 @@ { "title": "Properties", "children": [ - 15260, - 15261, - 15262, - 15263 + 15228, + 15229, + 15230, + 15231 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14624, + "target": 14549, "typeArguments": [ { "type": "literal", @@ -35549,14 +39966,14 @@ ] }, { - "id": 15265, + "id": 15233, "name": "AdminTaxRateRule", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15266, + "id": 15234, "name": "reference", "variant": "declaration", "kind": 1024, @@ -35567,7 +39984,7 @@ } }, { - "id": 15267, + "id": 15235, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -35582,21 +39999,21 @@ { "title": "Properties", "children": [ - 15266, - 15267 + 15234, + 15235 ] } ] }, { - "id": 15268, + "id": 15236, "name": "AdminTaxRate", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15269, + "id": 15237, "name": "id", "variant": "declaration", "kind": 1024, @@ -35607,7 +40024,7 @@ } }, { - "id": 15270, + "id": 15238, "name": "rate", "variant": "declaration", "kind": 1024, @@ -35627,7 +40044,7 @@ } }, { - "id": 15271, + "id": 15239, "name": "code", "variant": "declaration", "kind": 1024, @@ -35647,7 +40064,7 @@ } }, { - "id": 15272, + "id": 15240, "name": "name", "variant": "declaration", "kind": 1024, @@ -35658,7 +40075,7 @@ } }, { - "id": 15273, + "id": 15241, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -35693,7 +40110,7 @@ } }, { - "id": 15274, + "id": 15242, "name": "tax_region_id", "variant": "declaration", "kind": 1024, @@ -35704,7 +40121,7 @@ } }, { - "id": 15275, + "id": 15243, "name": "is_combinable", "variant": "declaration", "kind": 1024, @@ -35715,7 +40132,7 @@ } }, { - "id": 15276, + "id": 15244, "name": "is_default", "variant": "declaration", "kind": 1024, @@ -35726,7 +40143,7 @@ } }, { - "id": 15277, + "id": 15245, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -35737,7 +40154,7 @@ } }, { - "id": 15278, + "id": 15246, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -35748,7 +40165,7 @@ } }, { - "id": 15279, + "id": 15247, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -35759,7 +40176,7 @@ } }, { - "id": 15280, + "id": 15248, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -35779,20 +40196,20 @@ } }, { - "id": 15281, + "id": 15249, "name": "tax_region", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15327, + "target": 15295, "name": "AdminTaxRegion", "package": "@medusajs/types" } }, { - "id": 15282, + "id": 15250, "name": "rules", "variant": "declaration", "kind": 1024, @@ -35801,7 +40218,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15265, + "target": 15233, "name": "AdminTaxRateRule", "package": "@medusajs/types" } @@ -35812,33 +40229,33 @@ { "title": "Properties", "children": [ - 15269, - 15270, - 15271, - 15272, - 15273, - 15274, - 15275, - 15276, - 15277, - 15278, - 15279, - 15280, - 15281, - 15282 + 15237, + 15238, + 15239, + 15240, + 15241, + 15242, + 15243, + 15244, + 15245, + 15246, + 15247, + 15248, + 15249, + 15250 ] } ] }, { - "id": 15283, + "id": 15251, "name": "AdminCreateTaxRate", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15284, + "id": 15252, "name": "name", "variant": "declaration", "kind": 1024, @@ -35849,7 +40266,7 @@ } }, { - "id": 15285, + "id": 15253, "name": "tax_region_id", "variant": "declaration", "kind": 1024, @@ -35860,7 +40277,7 @@ } }, { - "id": 15286, + "id": 15254, "name": "rate", "variant": "declaration", "kind": 1024, @@ -35873,7 +40290,7 @@ } }, { - "id": 15287, + "id": 15255, "name": "code", "variant": "declaration", "kind": 1024, @@ -35886,7 +40303,7 @@ } }, { - "id": 15288, + "id": 15256, "name": "rules", "variant": "declaration", "kind": 1024, @@ -35897,14 +40314,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 17062, + "target": 17092, "name": "AdminCreateTaxRateRule", "package": "@medusajs/types" } } }, { - "id": 15289, + "id": 15257, "name": "is_default", "variant": "declaration", "kind": 1024, @@ -35917,7 +40334,7 @@ } }, { - "id": 15290, + "id": 15258, "name": "is_combinable", "variant": "declaration", "kind": 1024, @@ -35930,7 +40347,7 @@ } }, { - "id": 15291, + "id": 15259, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -35962,27 +40379,27 @@ { "title": "Properties", "children": [ - 15284, - 15285, - 15286, - 15287, - 15288, - 15289, - 15290, - 15291 + 15252, + 15253, + 15254, + 15255, + 15256, + 15257, + 15258, + 15259 ] } ] }, { - "id": 15292, + "id": 15260, "name": "AdminUpdateTaxRate", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15293, + "id": 15261, "name": "name", "variant": "declaration", "kind": 1024, @@ -35995,7 +40412,7 @@ } }, { - "id": 15294, + "id": 15262, "name": "rate", "variant": "declaration", "kind": 1024, @@ -36008,7 +40425,7 @@ } }, { - "id": 15295, + "id": 15263, "name": "code", "variant": "declaration", "kind": 1024, @@ -36016,12 +40433,21 @@ "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] } }, { - "id": 15296, + "id": 15264, "name": "rules", "variant": "declaration", "kind": 1024, @@ -36032,14 +40458,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 17062, + "target": 17092, "name": "AdminCreateTaxRateRule", "package": "@medusajs/types" } } }, { - "id": 15297, + "id": 15265, "name": "is_default", "variant": "declaration", "kind": 1024, @@ -36052,7 +40478,7 @@ } }, { - "id": 15298, + "id": 15266, "name": "is_combinable", "variant": "declaration", "kind": 1024, @@ -36065,7 +40491,7 @@ } }, { - "id": 15299, + "id": 15267, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -36097,26 +40523,26 @@ { "title": "Properties", "children": [ - 15293, - 15294, - 15295, - 15296, - 15297, - 15298, - 15299 + 15261, + 15262, + 15263, + 15264, + 15265, + 15266, + 15267 ] } ] }, { - "id": 15300, + "id": 15268, "name": "AdminTaxRateListParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15315, + "id": 15283, "name": "fields", "variant": "declaration", "kind": 1024, @@ -36130,12 +40556,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14623, + "target": 14548, "name": "FindParams.fields" } }, { - "id": 15312, + "id": 15280, "name": "limit", "variant": "declaration", "kind": 1024, @@ -36149,12 +40575,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14620, + "target": 14545, "name": "FindParams.limit" } }, { - "id": 15313, + "id": 15281, "name": "offset", "variant": "declaration", "kind": 1024, @@ -36168,12 +40594,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14621, + "target": 14546, "name": "FindParams.offset" } }, { - "id": 15314, + "id": 15282, "name": "order", "variant": "declaration", "kind": 1024, @@ -36187,12 +40613,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14622, + "target": 14547, "name": "FindParams.order" } }, { - "id": 15301, + "id": 15269, "name": "id", "variant": "declaration", "kind": 1024, @@ -36217,7 +40643,7 @@ } }, { - "id": 15302, + "id": 15270, "name": "q", "variant": "declaration", "kind": 1024, @@ -36230,7 +40656,7 @@ } }, { - "id": 15303, + "id": 15271, "name": "tax_region_id", "variant": "declaration", "kind": 1024, @@ -36253,7 +40679,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "union", @@ -36279,7 +40705,7 @@ } }, { - "id": 15304, + "id": 15272, "name": "is_default", "variant": "declaration", "kind": 1024, @@ -36292,7 +40718,7 @@ } }, { - "id": 15305, + "id": 15273, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -36305,7 +40731,7 @@ } }, { - "id": 15306, + "id": 15274, "name": "shipping_profile_id", "variant": "declaration", "kind": 1024, @@ -36318,7 +40744,7 @@ } }, { - "id": 15307, + "id": 15275, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -36331,7 +40757,7 @@ } }, { - "id": 15308, + "id": 15276, "name": "shipping_option_type_id", "variant": "declaration", "kind": 1024, @@ -36344,7 +40770,7 @@ } }, { - "id": 15309, + "id": 15277, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -36360,7 +40786,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -36374,7 +40800,7 @@ } }, { - "id": 15310, + "id": 15278, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -36390,7 +40816,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -36404,7 +40830,7 @@ } }, { - "id": 15311, + "id": 15279, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -36420,7 +40846,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -36438,49 +40864,49 @@ { "title": "Properties", "children": [ - 15315, - 15312, - 15313, - 15314, - 15301, - 15302, - 15303, - 15304, - 15305, - 15306, - 15307, - 15308, - 15309, - 15310, - 15311 + 15283, + 15280, + 15281, + 15282, + 15269, + 15270, + 15271, + 15272, + 15273, + 15274, + 15275, + 15276, + 15277, + 15278, + 15279 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14619, + "target": 14544, "name": "FindParams", "package": "@medusajs/types" } ] }, { - "id": 15316, + "id": 15284, "name": "AdminTaxRateResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15317, + "id": 15285, "name": "tax_rate", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15268, + "target": 15236, "name": "AdminTaxRate", "package": "@medusajs/types" } @@ -36490,32 +40916,32 @@ { "title": "Properties", "children": [ - 15317 + 15285 ] } ] }, { - "id": 15318, + "id": 15286, "name": "AdminTaxRateListResponse", "variant": "declaration", "kind": 2097152, "flags": {}, "type": { "type": "reference", - "target": 14633, + "target": 14558, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 15319, + "id": 15287, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15320, + "id": 15288, "name": "tax_rates", "variant": "declaration", "kind": 1024, @@ -36524,7 +40950,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15268, + "target": 15236, "name": "AdminTaxRate", "package": "@medusajs/types" } @@ -36535,7 +40961,7 @@ { "title": "Properties", "children": [ - 15320 + 15288 ] } ] @@ -36547,14 +40973,14 @@ } }, { - "id": 15321, + "id": 15289, "name": "AdminTaxRateDeleteResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15322, + "id": 15290, "name": "id", "variant": "declaration", "kind": 1024, @@ -36580,7 +41006,7 @@ } }, { - "id": 15323, + "id": 15291, "name": "object", "variant": "declaration", "kind": 1024, @@ -36606,7 +41032,7 @@ } }, { - "id": 15324, + "id": 15292, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -36632,7 +41058,7 @@ } }, { - "id": 15325, + "id": 15293, "name": "parent", "variant": "declaration", "kind": 1024, @@ -36651,7 +41077,7 @@ "type": { "type": "reflection", "declaration": { - "id": 15326, + "id": 15294, "name": "__type", "variant": "declaration", "kind": 65536, @@ -36669,17 +41095,17 @@ { "title": "Properties", "children": [ - 15322, - 15323, - 15324, - 15325 + 15290, + 15291, + 15292, + 15293 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14624, + "target": 14549, "typeArguments": [ { "type": "literal", @@ -36692,14 +41118,14 @@ ] }, { - "id": 15327, + "id": 15295, "name": "AdminTaxRegion", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15328, + "id": 15296, "name": "id", "variant": "declaration", "kind": 1024, @@ -36710,7 +41136,7 @@ } }, { - "id": 15329, + "id": 15297, "name": "rate", "variant": "declaration", "kind": 1024, @@ -36730,7 +41156,7 @@ } }, { - "id": 15330, + "id": 15298, "name": "code", "variant": "declaration", "kind": 1024, @@ -36750,7 +41176,7 @@ } }, { - "id": 15331, + "id": 15299, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -36770,7 +41196,7 @@ } }, { - "id": 15332, + "id": 15300, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -36790,7 +41216,7 @@ } }, { - "id": 15333, + "id": 15301, "name": "name", "variant": "declaration", "kind": 1024, @@ -36801,7 +41227,7 @@ } }, { - "id": 15334, + "id": 15302, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -36836,7 +41262,7 @@ } }, { - "id": 15335, + "id": 15303, "name": "tax_region_id", "variant": "declaration", "kind": 1024, @@ -36847,7 +41273,7 @@ } }, { - "id": 15336, + "id": 15304, "name": "is_combinable", "variant": "declaration", "kind": 1024, @@ -36858,7 +41284,7 @@ } }, { - "id": 15337, + "id": 15305, "name": "is_default", "variant": "declaration", "kind": 1024, @@ -36869,7 +41295,7 @@ } }, { - "id": 15338, + "id": 15306, "name": "parent_id", "variant": "declaration", "kind": 1024, @@ -36889,7 +41315,7 @@ } }, { - "id": 15339, + "id": 15307, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -36900,7 +41326,7 @@ } }, { - "id": 15340, + "id": 15308, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -36911,7 +41337,7 @@ } }, { - "id": 15341, + "id": 15309, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -36931,7 +41357,7 @@ } }, { - "id": 15342, + "id": 15310, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -36951,7 +41377,7 @@ } }, { - "id": 15343, + "id": 15311, "name": "tax_rates", "variant": "declaration", "kind": 1024, @@ -36960,23 +41386,48 @@ "type": "array", "elementType": { "type": "reference", - "target": 15268, + "target": 15236, "name": "AdminTaxRate", "package": "@medusajs/types" } } }, { - "id": 15344, + "id": 15312, "name": "parent", "variant": "declaration", "kind": 1024, "flags": {}, "type": { - "type": "reference", - "target": 15327, - "name": "AdminTaxRegion", - "package": "@medusajs/types" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 15295, + "name": "AdminTaxRegion", + "package": "@medusajs/types" + } + ] + } + }, + { + "id": 15313, + "name": "children", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 15295, + "name": "AdminTaxRegion", + "package": "@medusajs/types" + } } } ], @@ -36984,36 +41435,37 @@ { "title": "Properties", "children": [ - 15328, - 15329, - 15330, - 15331, - 15332, - 15333, - 15334, - 15335, - 15336, - 15337, - 15338, - 15339, - 15340, - 15341, - 15342, - 15343, - 15344 + 15296, + 15297, + 15298, + 15299, + 15300, + 15301, + 15302, + 15303, + 15304, + 15305, + 15306, + 15307, + 15308, + 15309, + 15310, + 15311, + 15312, + 15313 ] } ] }, { - "id": 15345, + "id": 15314, "name": "AdminCreateTaxRegion", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15346, + "id": 15315, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -37024,7 +41476,7 @@ } }, { - "id": 15347, + "id": 15316, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -37037,7 +41489,7 @@ } }, { - "id": 15348, + "id": 15317, "name": "parent_id", "variant": "declaration", "kind": 1024, @@ -37050,7 +41502,7 @@ } }, { - "id": 15349, + "id": 15318, "name": "default_tax_rate", "variant": "declaration", "kind": 1024, @@ -37060,14 +41512,14 @@ "type": { "type": "reflection", "declaration": { - "id": 15350, + "id": 15319, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15351, + "id": 15320, "name": "rate", "variant": "declaration", "kind": 1024, @@ -37080,7 +41532,7 @@ } }, { - "id": 15352, + "id": 15321, "name": "code", "variant": "declaration", "kind": 1024, @@ -37093,7 +41545,7 @@ } }, { - "id": 15353, + "id": 15322, "name": "name", "variant": "declaration", "kind": 1024, @@ -37104,7 +41556,7 @@ } }, { - "id": 15354, + "id": 15323, "name": "is_combinable", "variant": "declaration", "kind": 1024, @@ -37117,7 +41569,7 @@ } }, { - "id": 15355, + "id": 15324, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -37149,11 +41601,11 @@ { "title": "Properties", "children": [ - 15351, - 15352, - 15353, - 15354, - 15355 + 15320, + 15321, + 15322, + 15323, + 15324 ] } ] @@ -37161,7 +41613,7 @@ } }, { - "id": 15356, + "id": 15325, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -37193,24 +41645,134 @@ { "title": "Properties", "children": [ - 15346, - 15347, - 15348, - 15349, - 15356 + 15315, + 15316, + 15317, + 15318, + 15325 ] } ] }, { - "id": 15357, + "id": 15326, "name": "AdminTaxRegionListParams", "variant": "declaration", "kind": 256, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An object used to allow specifying flexible queries with and/or conditions." + } + ] + }, "children": [ { - "id": 15370, + "id": 15340, + "name": "$and", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 15326, + "name": "AdminTaxRegionListParams", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 14080, + "typeArguments": [ + { + "type": "reference", + "target": 15326, + "name": "AdminTaxRegionListParams", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 14081, + "name": "BaseFilterable.$and" + } + }, + { + "id": 15341, + "name": "$or", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 15326, + "name": "AdminTaxRegionListParams", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 14080, + "typeArguments": [ + { + "type": "reference", + "target": 15326, + "name": "AdminTaxRegionListParams", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 14082, + "name": "BaseFilterable.$or" + } + }, + { + "id": 15339, "name": "fields", "variant": "declaration", "kind": 1024, @@ -37224,12 +41786,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14623, + "target": 14548, "name": "FindParams.fields" } }, { - "id": 15367, + "id": 15336, "name": "limit", "variant": "declaration", "kind": 1024, @@ -37243,12 +41805,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14620, + "target": 14545, "name": "FindParams.limit" } }, { - "id": 15368, + "id": 15337, "name": "offset", "variant": "declaration", "kind": 1024, @@ -37262,12 +41824,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14621, + "target": 14546, "name": "FindParams.offset" } }, { - "id": 15369, + "id": 15338, "name": "order", "variant": "declaration", "kind": 1024, @@ -37281,12 +41843,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14622, + "target": 14547, "name": "FindParams.order" } }, { - "id": 15358, + "id": 15327, "name": "id", "variant": "declaration", "kind": 1024, @@ -37311,7 +41873,7 @@ } }, { - "id": 15359, + "id": 15328, "name": "q", "variant": "declaration", "kind": 1024, @@ -37324,7 +41886,7 @@ } }, { - "id": 15360, + "id": 15329, "name": "parent_id", "variant": "declaration", "kind": 1024, @@ -37347,7 +41909,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "union", @@ -37373,7 +41935,7 @@ } }, { - "id": 15361, + "id": 15330, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -37396,7 +41958,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "union", @@ -37422,7 +41984,7 @@ } }, { - "id": 15362, + "id": 15331, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -37445,7 +42007,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "union", @@ -37471,7 +42033,7 @@ } }, { - "id": 15363, + "id": 15332, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -37487,7 +42049,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -37501,7 +42063,7 @@ } }, { - "id": 15364, + "id": 15333, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -37517,7 +42079,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -37531,7 +42093,7 @@ } }, { - "id": 15365, + "id": 15334, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -37547,7 +42109,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -37561,7 +42123,7 @@ } }, { - "id": 15366, + "id": 15335, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -37577,7 +42139,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -37595,47 +42157,107 @@ { "title": "Properties", "children": [ - 15370, - 15367, - 15368, - 15369, - 15358, - 15359, - 15360, - 15361, - 15362, - 15363, - 15364, - 15365, - 15366 + 15340, + 15341, + 15339, + 15336, + 15337, + 15338, + 15327, + 15328, + 15329, + 15330, + 15331, + 15332, + 15333, + 15334, + 15335 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14619, + "target": 14544, "name": "FindParams", "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 14080, + "typeArguments": [ + { + "type": "reference", + "target": 15326, + "name": "AdminTaxRegionListParams", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" } ] }, { - "id": 15371, + "id": 15342, + "name": "AdminTaxRegionParams", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 15343, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14543, + "name": "SelectParams.fields" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 15343 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 14542, + "name": "SelectParams", + "package": "@medusajs/types" + } + ] + }, + { + "id": 15344, "name": "AdminTaxRegionResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15372, + "id": 15345, "name": "tax_region", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15327, + "target": 15295, "name": "AdminTaxRegion", "package": "@medusajs/types" } @@ -37645,32 +42267,32 @@ { "title": "Properties", "children": [ - 15372 + 15345 ] } ] }, { - "id": 15373, + "id": 15346, "name": "AdminTaxRegionListResponse", "variant": "declaration", "kind": 2097152, "flags": {}, "type": { "type": "reference", - "target": 14633, + "target": 14558, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 15374, + "id": 15347, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15375, + "id": 15348, "name": "tax_regions", "variant": "declaration", "kind": 1024, @@ -37679,7 +42301,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15327, + "target": 15295, "name": "AdminTaxRegion", "package": "@medusajs/types" } @@ -37690,7 +42312,7 @@ { "title": "Properties", "children": [ - 15375 + 15348 ] } ] @@ -37702,14 +42324,14 @@ } }, { - "id": 15376, + "id": 15349, "name": "AdminTaxRegionDeleteResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15377, + "id": 15350, "name": "id", "variant": "declaration", "kind": 1024, @@ -37735,7 +42357,7 @@ } }, { - "id": 15378, + "id": 15351, "name": "object", "variant": "declaration", "kind": 1024, @@ -37761,7 +42383,7 @@ } }, { - "id": 15379, + "id": 15352, "name": "deleted", "variant": "declaration", "kind": 1024, @@ -37787,7 +42409,7 @@ } }, { - "id": 15380, + "id": 15353, "name": "parent", "variant": "declaration", "kind": 1024, @@ -37806,7 +42428,7 @@ "type": { "type": "reflection", "declaration": { - "id": 15381, + "id": 15354, "name": "__type", "variant": "declaration", "kind": 65536, @@ -37824,17 +42446,17 @@ { "title": "Properties", "children": [ - 15377, - 15378, - 15379, - 15380 + 15350, + 15351, + 15352, + 15353 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14624, + "target": 14549, "typeArguments": [ { "type": "literal", @@ -37851,153 +42473,168 @@ { "title": "Interfaces", "children": [ - 14548, - 14566, + 14425, + 14437, + 14449, + 14467, + 14469, + 14478, + 14482, + 14486, + 14489, + 14503, + 14505, + 14507, + 14514, + 14520, + 14529, + 14542, + 14544, + 14564, 14568, - 14577, - 14587, - 14591, - 14595, - 14598, - 14607, - 14617, + 14571, + 14574, + 14582, + 14589, + 14599, + 14608, + 14616, 14619, - 14639, - 14643, - 14646, - 14649, - 14657, - 14664, - 14674, + 14622, + 14624, + 14629, + 14631, + 14707, + 14716, + 14719, + 14723, + 14727, + 14733, + 14637, + 14653, + 14668, 14683, - 14691, - 14694, - 14697, - 14699, - 14704, - 14706, - 14782, - 14791, - 14794, - 14798, - 14802, + 14701, + 14756, + 14759, + 14772, + 14779, + 14788, + 14796, + 14804, 14808, - 14712, - 14728, - 14743, - 14758, - 14776, - 14831, + 14810, + 14823, + 14825, + 14827, 14834, - 14847, - 14854, - 14863, - 14871, - 14879, - 14883, - 14885, - 14898, + 14840, + 14855, + 14864, + 14873, + 14876, + 14896, 14900, 14902, 14909, 14915, - 14930, - 14939, - 14948, - 14951, + 14922, + 14925, + 14928, + 14941, + 14943, + 14945, + 14952, + 14958, + 14965, + 14968, 14971, - 14975, - 14977, 14984, - 14990, - 14997, - 15000, - 15003, - 15016, - 15018, - 15020, + 14986, + 14988, + 14995, + 15001, + 15006, + 15015, + 15024, 15027, - 15033, - 15038, - 15047, - 15056, - 15059, - 15062, - 15081, - 15085, - 15089, - 15092, + 15030, + 15049, + 15053, + 15057, + 15060, + 15063, + 15073, + 15078, + 15082, + 15086, 15095, - 15105, - 15110, - 15114, + 15099, + 15113, 15118, - 15127, - 15131, - 15145, - 15150, - 15156, - 15164, - 15172, - 15176, - 15180, - 15194, - 15199, - 15205, - 15215, - 15222, + 15124, + 15132, + 15140, + 15144, + 15148, + 15162, + 15167, + 15173, + 15183, + 15190, + 15195, + 15200, + 15203, + 15206, + 15218, + 15220, 15227, - 15232, - 15235, - 15238, - 15250, - 15252, - 15259, - 15265, + 15233, + 15236, + 15251, + 15260, 15268, - 15283, - 15292, - 15300, - 15316, - 15321, - 15327, - 15345, - 15357, - 15371, - 15376 + 15284, + 15289, + 15295, + 15314, + 15326, + 15342, + 15344, + 15349 ] }, { "title": "Type Aliases", "children": [ - 14563, - 14624, - 14633, - 14642, - 14810, - 14778, - 14781, - 14813, - 14817, - 14821, - 15035, - 15147, - 15196, - 15318, - 15373 + 14464, + 14549, + 14558, + 14567, + 14735, + 14703, + 14706, + 14738, + 14742, + 14746, + 15003, + 15115, + 15164, + 15286, + 15346 ] } ] }, { - "id": 16993, + "id": 17006, "name": "BaseProductCategory", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16994, + "id": 17007, "name": "id", "variant": "declaration", "kind": 1024, @@ -38008,7 +42645,7 @@ } }, { - "id": 16995, + "id": 17008, "name": "name", "variant": "declaration", "kind": 1024, @@ -38019,7 +42656,7 @@ } }, { - "id": 16996, + "id": 17009, "name": "description", "variant": "declaration", "kind": 1024, @@ -38030,7 +42667,7 @@ } }, { - "id": 16997, + "id": 17010, "name": "handle", "variant": "declaration", "kind": 1024, @@ -38041,7 +42678,7 @@ } }, { - "id": 16998, + "id": 17011, "name": "is_active", "variant": "declaration", "kind": 1024, @@ -38052,7 +42689,7 @@ } }, { - "id": 16999, + "id": 17012, "name": "is_internal", "variant": "declaration", "kind": 1024, @@ -38063,7 +42700,7 @@ } }, { - "id": 17000, + "id": 17013, "name": "rank", "variant": "declaration", "kind": 1024, @@ -38083,7 +42720,7 @@ } }, { - "id": 17001, + "id": 17014, "name": "parent_category_id", "variant": "declaration", "kind": 1024, @@ -38103,7 +42740,7 @@ } }, { - "id": 17002, + "id": 17015, "name": "parent_category", "variant": "declaration", "kind": 1024, @@ -38117,7 +42754,7 @@ }, { "type": "reference", - "target": 16993, + "target": 17006, "name": "BaseProductCategory", "package": "@medusajs/types" } @@ -38125,7 +42762,7 @@ } }, { - "id": 17003, + "id": 17016, "name": "category_children", "variant": "declaration", "kind": 1024, @@ -38134,14 +42771,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 16993, + "target": 17006, "name": "BaseProductCategory", "package": "@medusajs/types" } } }, { - "id": 17004, + "id": 17017, "name": "products", "variant": "declaration", "kind": 1024, @@ -38162,7 +42799,7 @@ } }, { - "id": 17005, + "id": 17018, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -38173,7 +42810,7 @@ } }, { - "id": 17006, + "id": 17019, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -38184,7 +42821,7 @@ } }, { - "id": 17007, + "id": 17020, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -38208,26 +42845,26 @@ { "title": "Properties", "children": [ - 16994, - 16995, - 16996, - 16997, - 16998, - 16999, - 17000, - 17001, - 17002, - 17003, - 17004, - 17005, - 17006, - 17007 + 17007, + 17008, + 17009, + 17010, + 17011, + 17012, + 17013, + 17014, + 17015, + 17016, + 17017, + 17018, + 17019, + 17020 ] } ] }, { - "id": 17008, + "id": 17021, "name": "BaseProductCategoryListParams", "variant": "declaration", "kind": 256, @@ -38242,7 +42879,7 @@ }, "children": [ { - "id": 17026, + "id": 17039, "name": "$and", "variant": "declaration", "kind": 1024, @@ -38265,17 +42902,17 @@ "types": [ { "type": "reference", - "target": 17008, + "target": 17021, "name": "BaseProductCategoryListParams", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 17008, + "target": 17021, "name": "BaseProductCategoryListParams", "package": "@medusajs/types" } @@ -38288,12 +42925,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14197, + "target": 14081, "name": "BaseFilterable.$and" } }, { - "id": 17027, + "id": 17040, "name": "$or", "variant": "declaration", "kind": 1024, @@ -38316,17 +42953,17 @@ "types": [ { "type": "reference", - "target": 17008, + "target": 17021, "name": "BaseProductCategoryListParams", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 17008, + "target": 17021, "name": "BaseProductCategoryListParams", "package": "@medusajs/types" } @@ -38339,12 +42976,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14198, + "target": 14082, "name": "BaseFilterable.$or" } }, { - "id": 17025, + "id": 17038, "name": "fields", "variant": "declaration", "kind": 1024, @@ -38358,12 +42995,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14623, + "target": 14548, "name": "FindParams.fields" } }, { - "id": 17022, + "id": 17035, "name": "limit", "variant": "declaration", "kind": 1024, @@ -38377,12 +43014,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14620, + "target": 14545, "name": "FindParams.limit" } }, { - "id": 17023, + "id": 17036, "name": "offset", "variant": "declaration", "kind": 1024, @@ -38396,12 +43033,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14621, + "target": 14546, "name": "FindParams.offset" } }, { - "id": 17024, + "id": 17037, "name": "order", "variant": "declaration", "kind": 1024, @@ -38415,12 +43052,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14622, + "target": 14547, "name": "FindParams.order" } }, { - "id": 17009, + "id": 17022, "name": "q", "variant": "declaration", "kind": 1024, @@ -38433,7 +43070,7 @@ } }, { - "id": 17010, + "id": 17023, "name": "id", "variant": "declaration", "kind": 1024, @@ -38458,7 +43095,7 @@ } }, { - "id": 17011, + "id": 17024, "name": "name", "variant": "declaration", "kind": 1024, @@ -38483,7 +43120,7 @@ } }, { - "id": 17012, + "id": 17025, "name": "description", "variant": "declaration", "kind": 1024, @@ -38508,7 +43145,7 @@ } }, { - "id": 17013, + "id": 17026, "name": "parent_category_id", "variant": "declaration", "kind": 1024, @@ -38537,7 +43174,7 @@ } }, { - "id": 17014, + "id": 17027, "name": "handle", "variant": "declaration", "kind": 1024, @@ -38562,7 +43199,7 @@ } }, { - "id": 17015, + "id": 17028, "name": "is_active", "variant": "declaration", "kind": 1024, @@ -38575,7 +43212,7 @@ } }, { - "id": 17016, + "id": 17029, "name": "is_internal", "variant": "declaration", "kind": 1024, @@ -38588,7 +43225,7 @@ } }, { - "id": 17017, + "id": 17030, "name": "include_descendants_tree", "variant": "declaration", "kind": 1024, @@ -38601,7 +43238,7 @@ } }, { - "id": 17018, + "id": 17031, "name": "include_ancestors_tree", "variant": "declaration", "kind": 1024, @@ -38614,7 +43251,7 @@ } }, { - "id": 17019, + "id": 17032, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -38623,7 +43260,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -38635,7 +43272,7 @@ } }, { - "id": 17020, + "id": 17033, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -38644,7 +43281,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -38656,7 +43293,7 @@ } }, { - "id": 17021, + "id": 17034, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -38665,7 +43302,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -38681,42 +43318,42 @@ { "title": "Properties", "children": [ - 17026, - 17027, - 17025, + 17039, + 17040, + 17038, + 17035, + 17036, + 17037, 17022, 17023, 17024, - 17009, - 17010, - 17011, - 17012, - 17013, - 17014, - 17015, - 17016, - 17017, - 17018, - 17019, - 17020, - 17021 + 17025, + 17026, + 17027, + 17028, + 17029, + 17030, + 17031, + 17032, + 17033, + 17034 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14619, + "target": 14544, "name": "FindParams", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 17008, + "target": 17021, "name": "BaseProductCategoryListParams", "package": "@medusajs/types" } @@ -38728,20 +43365,20 @@ "extendedBy": [ { "type": "reference", - "target": 14951, + "target": 14876, "name": "AdminProductCategoryListParams" } ] }, { - "id": 17028, + "id": 17041, "name": "BaseProductCategoryParams", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17031, + "id": 17044, "name": "fields", "variant": "declaration", "kind": 1024, @@ -38755,12 +43392,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14618, + "target": 14543, "name": "SelectParams.fields" } }, { - "id": 17029, + "id": 17042, "name": "include_ancestors_tree", "variant": "declaration", "kind": 1024, @@ -38773,7 +43410,7 @@ } }, { - "id": 17030, + "id": 17043, "name": "include_descendants_tree", "variant": "declaration", "kind": 1024, @@ -38790,16 +43427,16 @@ { "title": "Properties", "children": [ - 17031, - 17029, - 17030 + 17044, + 17042, + 17043 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14617, + "target": 14542, "name": "SelectParams", "package": "@medusajs/types" } @@ -38807,20 +43444,20 @@ "extendedBy": [ { "type": "reference", - "target": 14971, + "target": 14896, "name": "AdminProductCategoryParams" } ] }, { - "id": 17032, - "name": "BaseProductType", + "id": 17045, + "name": "BaseProductTag", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17033, + "id": 17046, "name": "id", "variant": "declaration", "kind": 1024, @@ -38831,7 +43468,7 @@ } }, { - "id": 17034, + "id": 17047, "name": "value", "variant": "declaration", "kind": 1024, @@ -38842,33 +43479,382 @@ } }, { - "id": 17035, + "id": 17048, "name": "created_at", "variant": "declaration", "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 17049, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 17050, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, "flags": { "isOptional": true }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 17051, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 17046, + 17047, + 17048, + 17049, + 17050, + 17051 + ] + } + ], + "extendedBy": [ + { + "type": "reference", + "target": 14915, + "name": "AdminProductTag" + } + ] + }, + { + "id": 17052, + "name": "BaseProductTagListParams", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 17061, + "name": "fields", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14548, + "name": "FindParams.fields" } }, { - "id": 17036, + "id": 17058, + "name": "limit", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 14545, + "name": "FindParams.limit" + } + }, + { + "id": 17059, + "name": "offset", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "target": 14546, + "name": "FindParams.offset" + } + }, + { + "id": 17060, + "name": "order", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 14547, + "name": "FindParams.order" + } + }, + { + "id": 17053, + "name": "q", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 17054, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + { + "id": 17055, + "name": "value", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + { + "id": 17056, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + } + }, + { + "id": 17057, "name": "updated_at", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, + "type": { + "type": "reference", + "target": 14058, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 17061, + 17058, + 17059, + 17060, + 17053, + 17054, + 17055, + 17056, + 17057 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 14544, + "name": "FindParams", + "package": "@medusajs/types" + } + ], + "extendedBy": [ + { + "type": "reference", + "target": 14928, + "name": "AdminProductTagListParams" + } + ] + }, + { + "id": 17062, + "name": "BaseProductType", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 17063, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 17037, + "id": 17064, + "name": "value", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 17065, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 17066, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 17067, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -38890,7 +43876,7 @@ } }, { - "id": 17038, + "id": 17068, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -38931,32 +43917,32 @@ { "title": "Properties", "children": [ - 17033, - 17034, - 17035, - 17036, - 17037, - 17038 + 17063, + 17064, + 17065, + 17066, + 17067, + 17068 ] } ], "extendedBy": [ { "type": "reference", - "target": 14990, + "target": 14958, "name": "AdminProductType" } ] }, { - "id": 17039, + "id": 17069, "name": "ReservationResponse", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17040, + "id": 17070, "name": "id", "variant": "declaration", "kind": 1024, @@ -38967,7 +43953,7 @@ } }, { - "id": 17041, + "id": 17071, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -38987,7 +43973,7 @@ } }, { - "id": 17042, + "id": 17072, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -38998,7 +43984,7 @@ } }, { - "id": 17043, + "id": 17073, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -39009,7 +43995,7 @@ } }, { - "id": 17044, + "id": 17074, "name": "external_id", "variant": "declaration", "kind": 1024, @@ -39029,7 +44015,7 @@ } }, { - "id": 17045, + "id": 17075, "name": "description", "variant": "declaration", "kind": 1024, @@ -39049,7 +44035,7 @@ } }, { - "id": 17046, + "id": 17076, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -39060,7 +44046,7 @@ } }, { - "id": 17047, + "id": 17077, "name": "inventory_item", "variant": "declaration", "kind": 1024, @@ -39086,7 +44072,7 @@ } }, { - "id": 17048, + "id": 17078, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -39114,7 +44100,7 @@ } }, { - "id": 17049, + "id": 17079, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -39136,7 +44122,7 @@ } }, { - "id": 17050, + "id": 17080, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -39167,7 +44153,7 @@ } }, { - "id": 17051, + "id": 17081, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -39194,7 +44180,7 @@ } }, { - "id": 17052, + "id": 17082, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -39225,32 +44211,32 @@ { "title": "Properties", "children": [ - 17040, - 17041, - 17042, - 17043, - 17044, - 17045, - 17046, - 17047, - 17048, - 17049, - 17050, - 17051, - 17052 + 17070, + 17071, + 17072, + 17073, + 17074, + 17075, + 17076, + 17077, + 17078, + 17079, + 17080, + 17081, + 17082 ] } ] }, { - "id": 17053, + "id": 17083, "name": "AdminUpsertStockLocationAddress", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17054, + "id": 17084, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -39261,7 +44247,7 @@ } }, { - "id": 17055, + "id": 17085, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -39274,7 +44260,7 @@ } }, { - "id": 17056, + "id": 17086, "name": "company", "variant": "declaration", "kind": 1024, @@ -39287,7 +44273,7 @@ } }, { - "id": 17057, + "id": 17087, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -39298,7 +44284,7 @@ } }, { - "id": 17058, + "id": 17088, "name": "city", "variant": "declaration", "kind": 1024, @@ -39311,7 +44297,7 @@ } }, { - "id": 17059, + "id": 17089, "name": "phone", "variant": "declaration", "kind": 1024, @@ -39324,7 +44310,7 @@ } }, { - "id": 17060, + "id": 17090, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -39337,7 +44323,7 @@ } }, { - "id": 17061, + "id": 17091, "name": "province", "variant": "declaration", "kind": 1024, @@ -39354,27 +44340,27 @@ { "title": "Properties", "children": [ - 17054, - 17055, - 17056, - 17057, - 17058, - 17059, - 17060, - 17061 + 17084, + 17085, + 17086, + 17087, + 17088, + 17089, + 17090, + 17091 ] } ] }, { - "id": 17062, + "id": 17092, "name": "AdminCreateTaxRateRule", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17063, + "id": 17093, "name": "reference", "variant": "declaration", "kind": 1024, @@ -39385,7 +44371,7 @@ } }, { - "id": 17064, + "id": 17094, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -39400,21 +44386,21 @@ { "title": "Properties", "children": [ - 17063, - 17064 + 17093, + 17094 ] } ] }, { - "id": 15382, + "id": 15355, "name": "InventoryTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 15383, + "id": 15356, "name": "InventoryItemDTO", "variant": "declaration", "kind": 256, @@ -39429,7 +44415,7 @@ }, "children": [ { - "id": 15384, + "id": 15357, "name": "id", "variant": "declaration", "kind": 1024, @@ -39448,7 +44434,7 @@ } }, { - "id": 15385, + "id": 15358, "name": "sku", "variant": "declaration", "kind": 1024, @@ -39478,7 +44464,7 @@ } }, { - "id": 15386, + "id": 15359, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -39508,7 +44494,7 @@ } }, { - "id": 15387, + "id": 15360, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -39538,7 +44524,7 @@ } }, { - "id": 15388, + "id": 15361, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -39557,7 +44543,7 @@ } }, { - "id": 15389, + "id": 15362, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -39587,7 +44573,7 @@ } }, { - "id": 15390, + "id": 15363, "name": "material", "variant": "declaration", "kind": 1024, @@ -39617,7 +44603,7 @@ } }, { - "id": 15391, + "id": 15364, "name": "weight", "variant": "declaration", "kind": 1024, @@ -39647,7 +44633,7 @@ } }, { - "id": 15392, + "id": 15365, "name": "length", "variant": "declaration", "kind": 1024, @@ -39677,7 +44663,7 @@ } }, { - "id": 15393, + "id": 15366, "name": "height", "variant": "declaration", "kind": 1024, @@ -39707,7 +44693,7 @@ } }, { - "id": 15394, + "id": 15367, "name": "width", "variant": "declaration", "kind": 1024, @@ -39737,7 +44723,7 @@ } }, { - "id": 15395, + "id": 15368, "name": "title", "variant": "declaration", "kind": 1024, @@ -39767,7 +44753,7 @@ } }, { - "id": 15396, + "id": 15369, "name": "description", "variant": "declaration", "kind": 1024, @@ -39797,7 +44783,7 @@ } }, { - "id": 15397, + "id": 15370, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -39827,7 +44813,7 @@ } }, { - "id": 15398, + "id": 15371, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -39872,7 +44858,7 @@ } }, { - "id": 15399, + "id": 15372, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -39905,7 +44891,7 @@ } }, { - "id": 15400, + "id": 15373, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -39938,7 +44924,7 @@ } }, { - "id": 15401, + "id": 15374, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -39979,30 +44965,30 @@ { "title": "Properties", "children": [ - 15384, - 15385, - 15386, - 15387, - 15388, - 15389, - 15390, - 15391, - 15392, - 15393, - 15394, - 15395, - 15396, - 15397, - 15398, - 15399, - 15400, - 15401 + 15357, + 15358, + 15359, + 15360, + 15361, + 15362, + 15363, + 15364, + 15365, + 15366, + 15367, + 15368, + 15369, + 15370, + 15371, + 15372, + 15373, + 15374 ] } ] }, { - "id": 15402, + "id": 15375, "name": "FilterableInventoryItemProps", "variant": "declaration", "kind": 256, @@ -40017,7 +45003,7 @@ }, "children": [ { - "id": 15403, + "id": 15376, "name": "q", "variant": "declaration", "kind": 1024, @@ -40038,7 +45024,7 @@ } }, { - "id": 15404, + "id": 15377, "name": "id", "variant": "declaration", "kind": 1024, @@ -40071,7 +45057,7 @@ } }, { - "id": 15405, + "id": 15378, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -40104,7 +45090,7 @@ } }, { - "id": 15406, + "id": 15379, "name": "sku", "variant": "declaration", "kind": 1024, @@ -40135,7 +45121,7 @@ }, { "type": "reference", - "target": 14008, + "target": 13894, "name": "StringComparisonOperator", "package": "@medusajs/types" } @@ -40143,7 +45129,7 @@ } }, { - "id": 15407, + "id": 15380, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -40176,7 +45162,7 @@ } }, { - "id": 15408, + "id": 15381, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -40207,7 +45193,7 @@ }, { "type": "reference", - "target": 14008, + "target": 13894, "name": "StringComparisonOperator", "package": "@medusajs/types" } @@ -40215,7 +45201,7 @@ } }, { - "id": 15409, + "id": 15382, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -40240,19 +45226,19 @@ { "title": "Properties", "children": [ - 15403, - 15404, - 15405, - 15406, - 15407, - 15408, - 15409 + 15376, + 15377, + 15378, + 15379, + 15380, + 15381, + 15382 ] } ] }, { - "id": 15410, + "id": 15383, "name": "InventoryLevelDTO", "variant": "declaration", "kind": 256, @@ -40267,7 +45253,7 @@ }, "children": [ { - "id": 15411, + "id": 15384, "name": "id", "variant": "declaration", "kind": 1024, @@ -40286,7 +45272,7 @@ } }, { - "id": 15412, + "id": 15385, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -40305,7 +45291,7 @@ } }, { - "id": 15413, + "id": 15386, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -40324,7 +45310,7 @@ } }, { - "id": 15414, + "id": 15387, "name": "stocked_quantity", "variant": "declaration", "kind": 1024, @@ -40343,7 +45329,7 @@ } }, { - "id": 15415, + "id": 15388, "name": "reserved_quantity", "variant": "declaration", "kind": 1024, @@ -40362,7 +45348,7 @@ } }, { - "id": 15416, + "id": 15389, "name": "incoming_quantity", "variant": "declaration", "kind": 1024, @@ -40381,7 +45367,7 @@ } }, { - "id": 15417, + "id": 15390, "name": "available_quantity", "variant": "declaration", "kind": 1024, @@ -40400,7 +45386,7 @@ } }, { - "id": 15418, + "id": 15391, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -40443,7 +45429,7 @@ } }, { - "id": 15419, + "id": 15392, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -40476,7 +45462,7 @@ } }, { - "id": 15420, + "id": 15393, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -40509,7 +45495,7 @@ } }, { - "id": 15421, + "id": 15394, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -40550,23 +45536,23 @@ { "title": "Properties", "children": [ - 15411, - 15412, - 15413, - 15414, - 15415, - 15416, - 15417, - 15418, - 15419, - 15420, - 15421 + 15384, + 15385, + 15386, + 15387, + 15388, + 15389, + 15390, + 15391, + 15392, + 15393, + 15394 ] } ] }, { - "id": 15422, + "id": 15395, "name": "FilterableInventoryLevelProps", "variant": "declaration", "kind": 256, @@ -40581,7 +45567,7 @@ }, "children": [ { - "id": 15428, + "id": 15401, "name": "$and", "variant": "declaration", "kind": 1024, @@ -40604,17 +45590,17 @@ "types": [ { "type": "reference", - "target": 15422, + "target": 15395, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 15422, + "target": 15395, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" } @@ -40627,12 +45613,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14197, + "target": 14081, "name": "BaseFilterable.$and" } }, { - "id": 15429, + "id": 15402, "name": "$or", "variant": "declaration", "kind": 1024, @@ -40655,17 +45641,17 @@ "types": [ { "type": "reference", - "target": 15422, + "target": 15395, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 15422, + "target": 15395, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" } @@ -40678,12 +45664,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14198, + "target": 14082, "name": "BaseFilterable.$or" } }, { - "id": 15423, + "id": 15396, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -40716,7 +45702,7 @@ } }, { - "id": 15424, + "id": 15397, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -40749,7 +45735,7 @@ } }, { - "id": 15425, + "id": 15398, "name": "stocked_quantity", "variant": "declaration", "kind": 1024, @@ -40781,7 +45767,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "reference", @@ -40800,7 +45786,7 @@ } }, { - "id": 15426, + "id": 15399, "name": "reserved_quantity", "variant": "declaration", "kind": 1024, @@ -40832,7 +45818,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "reference", @@ -40851,7 +45837,7 @@ } }, { - "id": 15427, + "id": 15400, "name": "incoming_quantity", "variant": "declaration", "kind": 1024, @@ -40883,7 +45869,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "reference", @@ -40906,24 +45892,24 @@ { "title": "Properties", "children": [ - 15428, - 15429, - 15423, - 15424, - 15425, - 15426, - 15427 + 15401, + 15402, + 15396, + 15397, + 15398, + 15399, + 15400 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 15422, + "target": 15395, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" } @@ -40934,7 +45920,7 @@ ] }, { - "id": 15430, + "id": 15403, "name": "ReservationItemDTO", "variant": "declaration", "kind": 256, @@ -40949,7 +45935,7 @@ }, "children": [ { - "id": 15431, + "id": 15404, "name": "id", "variant": "declaration", "kind": 1024, @@ -40968,7 +45954,7 @@ } }, { - "id": 15432, + "id": 15405, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -40987,7 +45973,7 @@ } }, { - "id": 15433, + "id": 15406, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -41006,7 +45992,7 @@ } }, { - "id": 15434, + "id": 15407, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -41025,7 +46011,7 @@ } }, { - "id": 15435, + "id": 15408, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -41055,7 +46041,7 @@ } }, { - "id": 15436, + "id": 15409, "name": "description", "variant": "declaration", "kind": 1024, @@ -41085,7 +46071,7 @@ } }, { - "id": 15437, + "id": 15410, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -41106,7 +46092,7 @@ } }, { - "id": 15438, + "id": 15411, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -41136,7 +46122,7 @@ } }, { - "id": 15439, + "id": 15412, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -41179,7 +46165,7 @@ } }, { - "id": 15440, + "id": 15413, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -41212,7 +46198,7 @@ } }, { - "id": 15441, + "id": 15414, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -41245,7 +46231,7 @@ } }, { - "id": 15442, + "id": 15415, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -41286,24 +46272,24 @@ { "title": "Properties", "children": [ - 15431, - 15432, - 15433, - 15434, - 15435, - 15436, - 15437, - 15438, - 15439, - 15440, - 15441, - 15442 + 15404, + 15405, + 15406, + 15407, + 15408, + 15409, + 15410, + 15411, + 15412, + 15413, + 15414, + 15415 ] } ] }, { - "id": 15443, + "id": 15416, "name": "FilterableReservationItemProps", "variant": "declaration", "kind": 256, @@ -41318,7 +46304,7 @@ }, "children": [ { - "id": 15444, + "id": 15417, "name": "id", "variant": "declaration", "kind": 1024, @@ -41351,7 +46337,7 @@ } }, { - "id": 15446, + "id": 15419, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -41384,7 +46370,7 @@ } }, { - "id": 15447, + "id": 15420, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -41417,7 +46403,7 @@ } }, { - "id": 15448, + "id": 15421, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -41450,7 +46436,7 @@ } }, { - "id": 15449, + "id": 15422, "name": "description", "variant": "declaration", "kind": 1024, @@ -41482,7 +46468,7 @@ }, { "type": "reference", - "target": 14008, + "target": 13894, "name": "StringComparisonOperator", "package": "@medusajs/types" } @@ -41490,7 +46476,7 @@ } }, { - "id": 15450, + "id": 15423, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -41523,7 +46509,7 @@ } }, { - "id": 15451, + "id": 15424, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -41555,7 +46541,7 @@ }, { "type": "reference", - "target": 14016, + "target": 13902, "name": "NumericalComparisonOperator", "package": "@medusajs/types" } @@ -41567,26 +46553,26 @@ { "title": "Properties", "children": [ - 15444, - 15446, - 15447, - 15448, - 15449, - 15450, - 15451 + 15417, + 15419, + 15420, + 15421, + 15422, + 15423, + 15424 ] } ] }, { - "id": 15452, + "id": 15425, "name": "UpdateInventoryItemInput", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15453, + "id": 15426, "name": "id", "variant": "declaration", "kind": 1024, @@ -41597,7 +46583,7 @@ } }, { - "id": 15454, + "id": 15427, "name": "sku", "variant": "declaration", "kind": 1024, @@ -41633,7 +46619,7 @@ } }, { - "id": 15455, + "id": 15428, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -41669,7 +46655,7 @@ } }, { - "id": 15456, + "id": 15429, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -41705,7 +46691,7 @@ } }, { - "id": 15457, + "id": 15430, "name": "material", "variant": "declaration", "kind": 1024, @@ -41741,7 +46727,7 @@ } }, { - "id": 15458, + "id": 15431, "name": "weight", "variant": "declaration", "kind": 1024, @@ -41777,7 +46763,7 @@ } }, { - "id": 15459, + "id": 15432, "name": "length", "variant": "declaration", "kind": 1024, @@ -41813,7 +46799,7 @@ } }, { - "id": 15460, + "id": 15433, "name": "height", "variant": "declaration", "kind": 1024, @@ -41849,7 +46835,7 @@ } }, { - "id": 15461, + "id": 15434, "name": "width", "variant": "declaration", "kind": 1024, @@ -41885,7 +46871,7 @@ } }, { - "id": 15462, + "id": 15435, "name": "title", "variant": "declaration", "kind": 1024, @@ -41921,7 +46907,7 @@ } }, { - "id": 15463, + "id": 15436, "name": "description", "variant": "declaration", "kind": 1024, @@ -41957,7 +46943,7 @@ } }, { - "id": 15464, + "id": 15437, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -41993,7 +46979,7 @@ } }, { - "id": 15465, + "id": 15438, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -42044,7 +47030,7 @@ } }, { - "id": 15466, + "id": 15439, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -42080,7 +47066,7 @@ } }, { - "id": 15467, + "id": 15440, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -42111,21 +47097,21 @@ { "title": "Properties", "children": [ - 15453, - 15454, - 15455, - 15456, - 15457, - 15458, - 15459, - 15460, - 15461, - 15462, - 15463, - 15464, - 15465, - 15466, - 15467 + 15426, + 15427, + 15428, + 15429, + 15430, + 15431, + 15432, + 15433, + 15434, + 15435, + 15436, + 15437, + 15438, + 15439, + 15440 ] } ], @@ -42139,7 +47125,7 @@ "typeArguments": [ { "type": "reference", - "target": 15468, + "target": 15441, "name": "CreateInventoryItemInput", "package": "@medusajs/types" } @@ -42150,7 +47136,7 @@ ] }, { - "id": 15468, + "id": 15441, "name": "CreateInventoryItemInput", "variant": "declaration", "kind": 256, @@ -42165,7 +47151,7 @@ }, "children": [ { - "id": 15469, + "id": 15442, "name": "sku", "variant": "declaration", "kind": 1024, @@ -42195,7 +47181,7 @@ } }, { - "id": 15470, + "id": 15443, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -42225,7 +47211,7 @@ } }, { - "id": 15471, + "id": 15444, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -42255,7 +47241,7 @@ } }, { - "id": 15472, + "id": 15445, "name": "material", "variant": "declaration", "kind": 1024, @@ -42285,7 +47271,7 @@ } }, { - "id": 15473, + "id": 15446, "name": "weight", "variant": "declaration", "kind": 1024, @@ -42315,7 +47301,7 @@ } }, { - "id": 15474, + "id": 15447, "name": "length", "variant": "declaration", "kind": 1024, @@ -42345,7 +47331,7 @@ } }, { - "id": 15475, + "id": 15448, "name": "height", "variant": "declaration", "kind": 1024, @@ -42375,7 +47361,7 @@ } }, { - "id": 15476, + "id": 15449, "name": "width", "variant": "declaration", "kind": 1024, @@ -42405,7 +47391,7 @@ } }, { - "id": 15477, + "id": 15450, "name": "title", "variant": "declaration", "kind": 1024, @@ -42435,7 +47421,7 @@ } }, { - "id": 15478, + "id": 15451, "name": "description", "variant": "declaration", "kind": 1024, @@ -42465,7 +47451,7 @@ } }, { - "id": 15479, + "id": 15452, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -42495,7 +47481,7 @@ } }, { - "id": 15480, + "id": 15453, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -42540,7 +47526,7 @@ } }, { - "id": 15481, + "id": 15454, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -42570,7 +47556,7 @@ } }, { - "id": 15482, + "id": 15455, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -42595,33 +47581,33 @@ { "title": "Properties", "children": [ - 15469, - 15470, - 15471, - 15472, - 15473, - 15474, - 15475, - 15476, - 15477, - 15478, - 15479, - 15480, - 15481, - 15482 + 15442, + 15443, + 15444, + 15445, + 15446, + 15447, + 15448, + 15449, + 15450, + 15451, + 15452, + 15453, + 15454, + 15455 ] } ] }, { - "id": 15483, + "id": 15456, "name": "CreateInventoryLevelInput", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15484, + "id": 15457, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -42640,7 +47626,7 @@ } }, { - "id": 15485, + "id": 15458, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -42659,7 +47645,7 @@ } }, { - "id": 15486, + "id": 15459, "name": "stocked_quantity", "variant": "declaration", "kind": 1024, @@ -42680,7 +47666,7 @@ } }, { - "id": 15487, + "id": 15460, "name": "incoming_quantity", "variant": "declaration", "kind": 1024, @@ -42705,16 +47691,16 @@ { "title": "Properties", "children": [ - 15484, - 15485, - 15486, - 15487 + 15457, + 15458, + 15459, + 15460 ] } ] }, { - "id": 15488, + "id": 15461, "name": "UpdateInventoryLevelInput", "variant": "declaration", "kind": 256, @@ -42729,7 +47715,7 @@ }, "children": [ { - "id": 15489, + "id": 15462, "name": "id", "variant": "declaration", "kind": 1024, @@ -42750,7 +47736,7 @@ } }, { - "id": 15490, + "id": 15463, "name": "stocked_quantity", "variant": "declaration", "kind": 1024, @@ -42771,7 +47757,7 @@ } }, { - "id": 15491, + "id": 15464, "name": "incoming_quantity", "variant": "declaration", "kind": 1024, @@ -42796,15 +47782,15 @@ { "title": "Properties", "children": [ - 15489, - 15490, - 15491 + 15462, + 15463, + 15464 ] } ] }, { - "id": 15492, + "id": 15465, "name": "BulkUpdateInventoryLevelInput", "variant": "declaration", "kind": 256, @@ -42819,7 +47805,7 @@ }, "children": [ { - "id": 15495, + "id": 15468, "name": "id", "variant": "declaration", "kind": 1024, @@ -42840,7 +47826,7 @@ } }, { - "id": 15496, + "id": 15469, "name": "stocked_quantity", "variant": "declaration", "kind": 1024, @@ -42861,7 +47847,7 @@ } }, { - "id": 15497, + "id": 15470, "name": "incoming_quantity", "variant": "declaration", "kind": 1024, @@ -42882,7 +47868,7 @@ } }, { - "id": 15493, + "id": 15466, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -42901,7 +47887,7 @@ } }, { - "id": 15494, + "id": 15467, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -42924,17 +47910,17 @@ { "title": "Properties", "children": [ - 15495, - 15496, - 15497, - 15493, - 15494 + 15468, + 15469, + 15470, + 15466, + 15467 ] } ] }, { - "id": 15498, + "id": 15471, "name": "BulkAdjustInventoryLevelInput", "variant": "declaration", "kind": 2097152, @@ -42945,14 +47931,14 @@ { "type": "reflection", "declaration": { - "id": 15499, + "id": 15472, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15500, + "id": 15473, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -42971,7 +47957,7 @@ } }, { - "id": 15501, + "id": 15474, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -42990,7 +47976,7 @@ } }, { - "id": 15502, + "id": 15475, "name": "adjustment", "variant": "declaration", "kind": 1024, @@ -43013,9 +47999,9 @@ { "title": "Properties", "children": [ - 15500, - 15501, - 15502 + 15473, + 15474, + 15475 ] } ] @@ -43023,7 +48009,7 @@ }, { "type": "reference", - "target": 15488, + "target": 15461, "name": "UpdateInventoryLevelInput", "package": "@medusajs/types" } @@ -43031,7 +48017,7 @@ } }, { - "id": 15503, + "id": 15476, "name": "UpdateReservationItemInput", "variant": "declaration", "kind": 256, @@ -43046,7 +48032,7 @@ }, "children": [ { - "id": 15504, + "id": 15477, "name": "id", "variant": "declaration", "kind": 1024, @@ -43057,7 +48043,7 @@ } }, { - "id": 15505, + "id": 15478, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -43078,7 +48064,7 @@ } }, { - "id": 15506, + "id": 15479, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -43099,7 +48085,7 @@ } }, { - "id": 15507, + "id": 15480, "name": "description", "variant": "declaration", "kind": 1024, @@ -43129,7 +48115,7 @@ } }, { - "id": 15508, + "id": 15481, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -43150,7 +48136,7 @@ } }, { - "id": 15509, + "id": 15482, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -43199,18 +48185,18 @@ { "title": "Properties", "children": [ - 15504, - 15505, - 15506, - 15507, - 15508, - 15509 + 15477, + 15478, + 15479, + 15480, + 15481, + 15482 ] } ] }, { - "id": 15510, + "id": 15483, "name": "CreateReservationItemInput", "variant": "declaration", "kind": 256, @@ -43225,7 +48211,7 @@ }, "children": [ { - "id": 15511, + "id": 15484, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -43255,7 +48241,7 @@ } }, { - "id": 15512, + "id": 15485, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -43274,7 +48260,7 @@ } }, { - "id": 15513, + "id": 15486, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -43293,7 +48279,7 @@ } }, { - "id": 15514, + "id": 15487, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -43312,7 +48298,7 @@ } }, { - "id": 15515, + "id": 15488, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -43333,7 +48319,7 @@ } }, { - "id": 15516, + "id": 15489, "name": "description", "variant": "declaration", "kind": 1024, @@ -43363,7 +48349,7 @@ } }, { - "id": 15517, + "id": 15490, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -43393,7 +48379,7 @@ } }, { - "id": 15518, + "id": 15491, "name": "external_id", "variant": "declaration", "kind": 1024, @@ -43423,7 +48409,7 @@ } }, { - "id": 15519, + "id": 15492, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -43472,28 +48458,28 @@ { "title": "Properties", "children": [ - 15511, - 15512, - 15513, - 15514, - 15515, - 15516, - 15517, - 15518, - 15519 + 15484, + 15485, + 15486, + 15487, + 15488, + 15489, + 15490, + 15491, + 15492 ] } ] }, { - "id": 15520, + "id": 15493, "name": "ReserveQuantityContext", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15521, + "id": 15494, "name": "locationId", "variant": "declaration", "kind": 1024, @@ -43515,7 +48501,7 @@ } }, { - "id": 15522, + "id": 15495, "name": "lineItemId", "variant": "declaration", "kind": 1024, @@ -43537,7 +48523,7 @@ } }, { - "id": 15523, + "id": 15496, "name": "salesChannelId", "variant": "declaration", "kind": 1024, @@ -43563,15 +48549,15 @@ { "title": "Properties", "children": [ - 15521, - 15522, - 15523 + 15494, + 15495, + 15496 ] } ] }, { - "id": 15524, + "id": 15497, "name": "IInventoryService", "variant": "declaration", "kind": 256, @@ -43586,14 +48572,14 @@ }, "children": [ { - "id": 15525, + "id": 15498, "name": "listInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15526, + "id": 15499, "name": "listInventoryItems", "variant": "signature", "kind": 4096, @@ -43680,7 +48666,7 @@ }, "parameters": [ { - "id": 15527, + "id": 15500, "name": "selector", "variant": "param", "kind": 32768, @@ -43695,13 +48681,13 @@ }, "type": { "type": "reference", - "target": 15402, + "target": 15375, "name": "FilterableInventoryItemProps", "package": "@medusajs/types" } }, { - "id": 15528, + "id": 15501, "name": "config", "variant": "param", "kind": 32768, @@ -43734,11 +48720,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 15383, + "target": 15356, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -43748,7 +48734,7 @@ } }, { - "id": 15529, + "id": 15502, "name": "context", "variant": "param", "kind": 32768, @@ -43765,7 +48751,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -43782,7 +48768,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15383, + "target": 15356, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -43795,14 +48781,14 @@ ] }, { - "id": 15530, + "id": 15503, "name": "listAndCountInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15531, + "id": 15504, "name": "listAndCountInventoryItems", "variant": "signature", "kind": 4096, @@ -43889,7 +48875,7 @@ }, "parameters": [ { - "id": 15532, + "id": 15505, "name": "selector", "variant": "param", "kind": 32768, @@ -43904,13 +48890,13 @@ }, "type": { "type": "reference", - "target": 15402, + "target": 15375, "name": "FilterableInventoryItemProps", "package": "@medusajs/types" } }, { - "id": 15533, + "id": 15506, "name": "config", "variant": "param", "kind": 32768, @@ -43943,11 +48929,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 15383, + "target": 15356, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -43957,7 +48943,7 @@ } }, { - "id": 15534, + "id": 15507, "name": "context", "variant": "param", "kind": 32768, @@ -43974,7 +48960,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -43994,7 +48980,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15383, + "target": 15356, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -44013,14 +48999,14 @@ ] }, { - "id": 15535, + "id": 15508, "name": "listReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15536, + "id": 15509, "name": "listReservationItems", "variant": "signature", "kind": 4096, @@ -44107,7 +49093,7 @@ }, "parameters": [ { - "id": 15537, + "id": 15510, "name": "selector", "variant": "param", "kind": 32768, @@ -44122,13 +49108,13 @@ }, "type": { "type": "reference", - "target": 15443, + "target": 15416, "name": "FilterableReservationItemProps", "package": "@medusajs/types" } }, { - "id": 15538, + "id": 15511, "name": "config", "variant": "param", "kind": 32768, @@ -44161,11 +49147,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 15430, + "target": 15403, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -44175,7 +49161,7 @@ } }, { - "id": 15539, + "id": 15512, "name": "context", "variant": "param", "kind": 32768, @@ -44192,7 +49178,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -44209,7 +49195,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15430, + "target": 15403, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -44222,14 +49208,14 @@ ] }, { - "id": 15540, + "id": 15513, "name": "listAndCountReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15541, + "id": 15514, "name": "listAndCountReservationItems", "variant": "signature", "kind": 4096, @@ -44316,7 +49302,7 @@ }, "parameters": [ { - "id": 15542, + "id": 15515, "name": "selector", "variant": "param", "kind": 32768, @@ -44331,13 +49317,13 @@ }, "type": { "type": "reference", - "target": 15443, + "target": 15416, "name": "FilterableReservationItemProps", "package": "@medusajs/types" } }, { - "id": 15543, + "id": 15516, "name": "config", "variant": "param", "kind": 32768, @@ -44370,11 +49356,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 15430, + "target": 15403, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -44384,7 +49370,7 @@ } }, { - "id": 15544, + "id": 15517, "name": "context", "variant": "param", "kind": 32768, @@ -44401,7 +49387,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -44421,7 +49407,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15430, + "target": 15403, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -44440,14 +49426,14 @@ ] }, { - "id": 15545, + "id": 15518, "name": "listInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15546, + "id": 15519, "name": "listInventoryLevels", "variant": "signature", "kind": 4096, @@ -44534,7 +49520,7 @@ }, "parameters": [ { - "id": 15547, + "id": 15520, "name": "selector", "variant": "param", "kind": 32768, @@ -44549,13 +49535,13 @@ }, "type": { "type": "reference", - "target": 15422, + "target": 15395, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" } }, { - "id": 15548, + "id": 15521, "name": "config", "variant": "param", "kind": 32768, @@ -44588,11 +49574,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 15410, + "target": 15383, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -44602,7 +49588,7 @@ } }, { - "id": 15549, + "id": 15522, "name": "context", "variant": "param", "kind": 32768, @@ -44619,7 +49605,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -44636,7 +49622,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15410, + "target": 15383, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -44649,14 +49635,14 @@ ] }, { - "id": 15550, + "id": 15523, "name": "listAndCountInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15551, + "id": 15524, "name": "listAndCountInventoryLevels", "variant": "signature", "kind": 4096, @@ -44743,7 +49729,7 @@ }, "parameters": [ { - "id": 15552, + "id": 15525, "name": "selector", "variant": "param", "kind": 32768, @@ -44758,13 +49744,13 @@ }, "type": { "type": "reference", - "target": 15422, + "target": 15395, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" } }, { - "id": 15553, + "id": 15526, "name": "config", "variant": "param", "kind": 32768, @@ -44797,11 +49783,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 15410, + "target": 15383, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -44811,7 +49797,7 @@ } }, { - "id": 15554, + "id": 15527, "name": "context", "variant": "param", "kind": 32768, @@ -44828,7 +49814,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -44848,7 +49834,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15410, + "target": 15383, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -44867,14 +49853,14 @@ ] }, { - "id": 15555, + "id": 15528, "name": "retrieveInventoryItem", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15556, + "id": 15529, "name": "retrieveInventoryItem", "variant": "signature", "kind": 4096, @@ -44921,7 +49907,7 @@ }, "parameters": [ { - "id": 15557, + "id": 15530, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -44940,7 +49926,7 @@ } }, { - "id": 15558, + "id": 15531, "name": "config", "variant": "param", "kind": 32768, @@ -44973,11 +49959,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 15383, + "target": 15356, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -44987,7 +49973,7 @@ } }, { - "id": 15559, + "id": 15532, "name": "context", "variant": "param", "kind": 32768, @@ -45004,7 +49990,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -45019,7 +50005,7 @@ "typeArguments": [ { "type": "reference", - "target": 15383, + "target": 15356, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -45031,14 +50017,14 @@ ] }, { - "id": 15560, + "id": 15533, "name": "retrieveInventoryLevelByItemAndLocation", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15561, + "id": 15534, "name": "retrieveInventoryLevelByItemAndLocation", "variant": "signature", "kind": 4096, @@ -45073,7 +50059,7 @@ }, "parameters": [ { - "id": 15562, + "id": 15535, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -45092,7 +50078,7 @@ } }, { - "id": 15563, + "id": 15536, "name": "locationId", "variant": "param", "kind": 32768, @@ -45111,7 +50097,7 @@ } }, { - "id": 15564, + "id": 15537, "name": "context", "variant": "param", "kind": 32768, @@ -45128,7 +50114,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -45143,7 +50129,7 @@ "typeArguments": [ { "type": "reference", - "target": 15410, + "target": 15383, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -45155,14 +50141,14 @@ ] }, { - "id": 15565, + "id": 15538, "name": "retrieveInventoryLevel", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15566, + "id": 15539, "name": "retrieveInventoryLevel", "variant": "signature", "kind": 4096, @@ -45209,7 +50195,7 @@ }, "parameters": [ { - "id": 15567, + "id": 15540, "name": "inventoryLevelId", "variant": "param", "kind": 32768, @@ -45228,7 +50214,7 @@ } }, { - "id": 15568, + "id": 15541, "name": "config", "variant": "param", "kind": 32768, @@ -45261,11 +50247,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 15410, + "target": 15383, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -45275,7 +50261,7 @@ } }, { - "id": 15569, + "id": 15542, "name": "context", "variant": "param", "kind": 32768, @@ -45292,7 +50278,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -45307,7 +50293,7 @@ "typeArguments": [ { "type": "reference", - "target": 15410, + "target": 15383, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -45319,14 +50305,14 @@ ] }, { - "id": 15570, + "id": 15543, "name": "retrieveReservationItem", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15571, + "id": 15544, "name": "retrieveReservationItem", "variant": "signature", "kind": 4096, @@ -45373,7 +50359,7 @@ }, "parameters": [ { - "id": 15572, + "id": 15545, "name": "reservationId", "variant": "param", "kind": 32768, @@ -45392,7 +50378,7 @@ } }, { - "id": 15573, + "id": 15546, "name": "config", "variant": "param", "kind": 32768, @@ -45425,11 +50411,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 15430, + "target": 15403, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -45439,7 +50425,7 @@ } }, { - "id": 15574, + "id": 15547, "name": "context", "variant": "param", "kind": 32768, @@ -45456,7 +50442,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -45471,7 +50457,7 @@ "typeArguments": [ { "type": "reference", - "target": 15430, + "target": 15403, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -45483,14 +50469,14 @@ ] }, { - "id": 15575, + "id": 15548, "name": "createReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15576, + "id": 15549, "name": "createReservationItems", "variant": "signature", "kind": 4096, @@ -45525,7 +50511,7 @@ }, "parameters": [ { - "id": 15577, + "id": 15550, "name": "input", "variant": "param", "kind": 32768, @@ -45542,14 +50528,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15510, + "target": 15483, "name": "CreateReservationItemInput", "package": "@medusajs/types" } } }, { - "id": 15578, + "id": 15551, "name": "context", "variant": "param", "kind": 32768, @@ -45566,7 +50552,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -45583,7 +50569,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15430, + "target": 15403, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -45594,7 +50580,7 @@ } }, { - "id": 15579, + "id": 15552, "name": "createReservationItems", "variant": "signature", "kind": 4096, @@ -45629,7 +50615,7 @@ }, "parameters": [ { - "id": 15580, + "id": 15553, "name": "input", "variant": "param", "kind": 32768, @@ -45644,13 +50630,13 @@ }, "type": { "type": "reference", - "target": 15510, + "target": 15483, "name": "CreateReservationItemInput", "package": "@medusajs/types" } }, { - "id": 15581, + "id": 15554, "name": "context", "variant": "param", "kind": 32768, @@ -45667,7 +50653,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -45682,7 +50668,7 @@ "typeArguments": [ { "type": "reference", - "target": 15430, + "target": 15403, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -45694,14 +50680,14 @@ ] }, { - "id": 15582, + "id": 15555, "name": "createInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15583, + "id": 15556, "name": "createInventoryItems", "variant": "signature", "kind": 4096, @@ -45736,7 +50722,7 @@ }, "parameters": [ { - "id": 15584, + "id": 15557, "name": "input", "variant": "param", "kind": 32768, @@ -45753,14 +50739,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15468, + "target": 15441, "name": "CreateInventoryItemInput", "package": "@medusajs/types" } } }, { - "id": 15585, + "id": 15558, "name": "context", "variant": "param", "kind": 32768, @@ -45777,7 +50763,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -45794,7 +50780,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15383, + "target": 15356, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -45805,7 +50791,7 @@ } }, { - "id": 15586, + "id": 15559, "name": "createInventoryItems", "variant": "signature", "kind": 4096, @@ -45840,7 +50826,7 @@ }, "parameters": [ { - "id": 15587, + "id": 15560, "name": "input", "variant": "param", "kind": 32768, @@ -45855,13 +50841,13 @@ }, "type": { "type": "reference", - "target": 15468, + "target": 15441, "name": "CreateInventoryItemInput", "package": "@medusajs/types" } }, { - "id": 15588, + "id": 15561, "name": "context", "variant": "param", "kind": 32768, @@ -45878,7 +50864,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -45893,7 +50879,7 @@ "typeArguments": [ { "type": "reference", - "target": 15383, + "target": 15356, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -45905,14 +50891,14 @@ ] }, { - "id": 15589, + "id": 15562, "name": "createInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15590, + "id": 15563, "name": "createInventoryLevels", "variant": "signature", "kind": 4096, @@ -45947,7 +50933,7 @@ }, "parameters": [ { - "id": 15591, + "id": 15564, "name": "data", "variant": "param", "kind": 32768, @@ -45964,14 +50950,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15483, + "target": 15456, "name": "CreateInventoryLevelInput", "package": "@medusajs/types" } } }, { - "id": 15592, + "id": 15565, "name": "context", "variant": "param", "kind": 32768, @@ -45988,7 +50974,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -46005,7 +50991,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15410, + "target": 15383, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -46016,7 +51002,7 @@ } }, { - "id": 15593, + "id": 15566, "name": "createInventoryLevels", "variant": "signature", "kind": 4096, @@ -46051,7 +51037,7 @@ }, "parameters": [ { - "id": 15594, + "id": 15567, "name": "data", "variant": "param", "kind": 32768, @@ -46066,13 +51052,13 @@ }, "type": { "type": "reference", - "target": 15483, + "target": 15456, "name": "CreateInventoryLevelInput", "package": "@medusajs/types" } }, { - "id": 15595, + "id": 15568, "name": "context", "variant": "param", "kind": 32768, @@ -46089,7 +51075,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -46104,7 +51090,7 @@ "typeArguments": [ { "type": "reference", - "target": 15410, + "target": 15383, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -46116,14 +51102,14 @@ ] }, { - "id": 15596, + "id": 15569, "name": "updateInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15597, + "id": 15570, "name": "updateInventoryLevels", "variant": "signature", "kind": 4096, @@ -46158,7 +51144,7 @@ }, "parameters": [ { - "id": 15598, + "id": 15571, "name": "updates", "variant": "param", "kind": 32768, @@ -46175,14 +51161,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15492, + "target": 15465, "name": "BulkUpdateInventoryLevelInput", "package": "@medusajs/types" } } }, { - "id": 15599, + "id": 15572, "name": "context", "variant": "param", "kind": 32768, @@ -46199,7 +51185,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -46216,7 +51202,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15410, + "target": 15383, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -46227,7 +51213,7 @@ } }, { - "id": 15600, + "id": 15573, "name": "updateInventoryLevels", "variant": "signature", "kind": 4096, @@ -46262,7 +51248,7 @@ }, "parameters": [ { - "id": 15601, + "id": 15574, "name": "updates", "variant": "param", "kind": 32768, @@ -46277,13 +51263,13 @@ }, "type": { "type": "reference", - "target": 15492, + "target": 15465, "name": "BulkUpdateInventoryLevelInput", "package": "@medusajs/types" } }, { - "id": 15602, + "id": 15575, "name": "context", "variant": "param", "kind": 32768, @@ -46300,7 +51286,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -46315,7 +51301,7 @@ "typeArguments": [ { "type": "reference", - "target": 15410, + "target": 15383, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -46327,14 +51313,14 @@ ] }, { - "id": 15603, + "id": 15576, "name": "updateInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15604, + "id": 15577, "name": "updateInventoryItems", "variant": "signature", "kind": 4096, @@ -46369,7 +51355,7 @@ }, "parameters": [ { - "id": 15605, + "id": 15578, "name": "input", "variant": "param", "kind": 32768, @@ -46384,13 +51370,13 @@ }, "type": { "type": "reference", - "target": 15452, + "target": 15425, "name": "UpdateInventoryItemInput", "package": "@medusajs/types" } }, { - "id": 15606, + "id": 15579, "name": "context", "variant": "param", "kind": 32768, @@ -46407,7 +51393,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -46422,7 +51408,7 @@ "typeArguments": [ { "type": "reference", - "target": 15383, + "target": 15356, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -46432,7 +51418,7 @@ } }, { - "id": 15607, + "id": 15580, "name": "updateInventoryItems", "variant": "signature", "kind": 4096, @@ -46467,7 +51453,7 @@ }, "parameters": [ { - "id": 15608, + "id": 15581, "name": "input", "variant": "param", "kind": 32768, @@ -46484,14 +51470,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15452, + "target": 15425, "name": "UpdateInventoryItemInput", "package": "@medusajs/types" } } }, { - "id": 15609, + "id": 15582, "name": "context", "variant": "param", "kind": 32768, @@ -46508,7 +51494,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -46525,7 +51511,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15383, + "target": 15356, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -46538,14 +51524,14 @@ ] }, { - "id": 15610, + "id": 15583, "name": "updateReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15611, + "id": 15584, "name": "updateReservationItems", "variant": "signature", "kind": 4096, @@ -46580,7 +51566,7 @@ }, "parameters": [ { - "id": 15612, + "id": 15585, "name": "input", "variant": "param", "kind": 32768, @@ -46595,13 +51581,13 @@ }, "type": { "type": "reference", - "target": 15503, + "target": 15476, "name": "UpdateReservationItemInput", "package": "@medusajs/types" } }, { - "id": 15613, + "id": 15586, "name": "context", "variant": "param", "kind": 32768, @@ -46618,7 +51604,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -46633,7 +51619,7 @@ "typeArguments": [ { "type": "reference", - "target": 15430, + "target": 15403, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -46643,7 +51629,7 @@ } }, { - "id": 15614, + "id": 15587, "name": "updateReservationItems", "variant": "signature", "kind": 4096, @@ -46678,7 +51664,7 @@ }, "parameters": [ { - "id": 15615, + "id": 15588, "name": "input", "variant": "param", "kind": 32768, @@ -46695,14 +51681,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15503, + "target": 15476, "name": "UpdateReservationItemInput", "package": "@medusajs/types" } } }, { - "id": 15616, + "id": 15589, "name": "context", "variant": "param", "kind": 32768, @@ -46719,7 +51705,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -46736,7 +51722,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15430, + "target": 15403, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -46749,14 +51735,14 @@ ] }, { - "id": 15617, + "id": 15590, "name": "deleteReservationItemsByLineItem", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15618, + "id": 15591, "name": "deleteReservationItemsByLineItem", "variant": "signature", "kind": 4096, @@ -46791,7 +51777,7 @@ }, "parameters": [ { - "id": 15619, + "id": 15592, "name": "lineItemId", "variant": "param", "kind": 32768, @@ -46822,7 +51808,7 @@ } }, { - "id": 15620, + "id": 15593, "name": "context", "variant": "param", "kind": 32768, @@ -46839,7 +51825,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -46864,14 +51850,14 @@ ] }, { - "id": 15621, + "id": 15594, "name": "restoreReservationItemsByLineItem", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15622, + "id": 15595, "name": "restoreReservationItemsByLineItem", "variant": "signature", "kind": 4096, @@ -46906,7 +51892,7 @@ }, "parameters": [ { - "id": 15623, + "id": 15596, "name": "lineItemId", "variant": "param", "kind": 32768, @@ -46937,7 +51923,7 @@ } }, { - "id": 15624, + "id": 15597, "name": "context", "variant": "param", "kind": 32768, @@ -46954,7 +51940,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -46979,14 +51965,14 @@ ] }, { - "id": 15625, + "id": 15598, "name": "deleteReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15626, + "id": 15599, "name": "deleteReservationItems", "variant": "signature", "kind": 4096, @@ -47021,7 +52007,7 @@ }, "parameters": [ { - "id": 15627, + "id": 15600, "name": "reservationItemId", "variant": "param", "kind": 32768, @@ -47052,7 +52038,7 @@ } }, { - "id": 15628, + "id": 15601, "name": "context", "variant": "param", "kind": 32768, @@ -47069,7 +52055,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -47094,14 +52080,14 @@ ] }, { - "id": 15629, + "id": 15602, "name": "softDeleteReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15630, + "id": 15603, "name": "softDeleteReservationItems", "variant": "signature", "kind": 4096, @@ -47144,7 +52130,7 @@ }, "typeParameters": [ { - "id": 15631, + "id": 15604, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -47161,7 +52147,7 @@ ], "parameters": [ { - "id": 15632, + "id": 15605, "name": "ReservationItemIds", "variant": "param", "kind": 32768, @@ -47175,7 +52161,7 @@ } }, { - "id": 15633, + "id": 15606, "name": "config", "variant": "param", "kind": 32768, @@ -47192,11 +52178,11 @@ }, "type": { "type": "reference", - "target": 14348, + "target": 14232, "typeArguments": [ { "type": "reference", - "target": 15631, + "target": 15604, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -47207,7 +52193,7 @@ } }, { - "id": 15634, + "id": 15607, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -47224,7 +52210,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -47276,14 +52262,14 @@ ] }, { - "id": 15635, + "id": 15608, "name": "restoreReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15636, + "id": 15609, "name": "restoreReservationItems", "variant": "signature", "kind": 4096, @@ -47326,7 +52312,7 @@ }, "typeParameters": [ { - "id": 15637, + "id": 15610, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -47343,7 +52329,7 @@ ], "parameters": [ { - "id": 15638, + "id": 15611, "name": "ReservationItemIds", "variant": "param", "kind": 32768, @@ -47365,7 +52351,7 @@ } }, { - "id": 15639, + "id": 15612, "name": "config", "variant": "param", "kind": 32768, @@ -47398,11 +52384,11 @@ }, "type": { "type": "reference", - "target": 14351, + "target": 14235, "typeArguments": [ { "type": "reference", - "target": 15637, + "target": 15610, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -47413,7 +52399,7 @@ } }, { - "id": 15640, + "id": 15613, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -47430,7 +52416,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -47482,14 +52468,14 @@ ] }, { - "id": 15641, + "id": 15614, "name": "deleteInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15642, + "id": 15615, "name": "deleteInventoryItems", "variant": "signature", "kind": 4096, @@ -47524,7 +52510,7 @@ }, "parameters": [ { - "id": 15643, + "id": 15616, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -47555,7 +52541,7 @@ } }, { - "id": 15644, + "id": 15617, "name": "context", "variant": "param", "kind": 32768, @@ -47572,7 +52558,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -47597,14 +52583,14 @@ ] }, { - "id": 15645, + "id": 15618, "name": "softDeleteInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15646, + "id": 15619, "name": "softDeleteInventoryItems", "variant": "signature", "kind": 4096, @@ -47655,7 +52641,7 @@ }, "typeParameters": [ { - "id": 15647, + "id": 15620, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -47672,7 +52658,7 @@ ], "parameters": [ { - "id": 15648, + "id": 15621, "name": "inventoryItemIds", "variant": "param", "kind": 32768, @@ -47694,7 +52680,7 @@ } }, { - "id": 15649, + "id": 15622, "name": "config", "variant": "param", "kind": 32768, @@ -47711,11 +52697,11 @@ }, "type": { "type": "reference", - "target": 14348, + "target": 14232, "typeArguments": [ { "type": "reference", - "target": 15647, + "target": 15620, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -47726,7 +52712,7 @@ } }, { - "id": 15650, + "id": 15623, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -47743,7 +52729,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -47795,14 +52781,14 @@ ] }, { - "id": 15651, + "id": 15624, "name": "restoreInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15652, + "id": 15625, "name": "restoreInventoryItems", "variant": "signature", "kind": 4096, @@ -47853,7 +52839,7 @@ }, "typeParameters": [ { - "id": 15653, + "id": 15626, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -47870,7 +52856,7 @@ ], "parameters": [ { - "id": 15654, + "id": 15627, "name": "inventoryItemIds", "variant": "param", "kind": 32768, @@ -47892,7 +52878,7 @@ } }, { - "id": 15655, + "id": 15628, "name": "config", "variant": "param", "kind": 32768, @@ -47925,11 +52911,11 @@ }, "type": { "type": "reference", - "target": 14351, + "target": 14235, "typeArguments": [ { "type": "reference", - "target": 15653, + "target": 15626, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -47940,7 +52926,7 @@ } }, { - "id": 15656, + "id": 15629, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -47957,7 +52943,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -48009,14 +52995,14 @@ ] }, { - "id": 15657, + "id": 15630, "name": "deleteInventoryItemLevelByLocationId", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15658, + "id": 15631, "name": "deleteInventoryItemLevelByLocationId", "variant": "signature", "kind": 4096, @@ -48051,7 +53037,7 @@ }, "parameters": [ { - "id": 15659, + "id": 15632, "name": "locationId", "variant": "param", "kind": 32768, @@ -48082,7 +53068,7 @@ } }, { - "id": 15660, + "id": 15633, "name": "context", "variant": "param", "kind": 32768, @@ -48099,7 +53085,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -48154,14 +53140,14 @@ ] }, { - "id": 15661, + "id": 15634, "name": "deleteReservationItemByLocationId", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15662, + "id": 15635, "name": "deleteReservationItemByLocationId", "variant": "signature", "kind": 4096, @@ -48196,7 +53182,7 @@ }, "parameters": [ { - "id": 15663, + "id": 15636, "name": "locationId", "variant": "param", "kind": 32768, @@ -48227,7 +53213,7 @@ } }, { - "id": 15664, + "id": 15637, "name": "context", "variant": "param", "kind": 32768, @@ -48244,7 +53230,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -48269,14 +53255,14 @@ ] }, { - "id": 15665, + "id": 15638, "name": "deleteInventoryLevel", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15666, + "id": 15639, "name": "deleteInventoryLevel", "variant": "signature", "kind": 4096, @@ -48311,7 +53297,7 @@ }, "parameters": [ { - "id": 15667, + "id": 15640, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -48330,7 +53316,7 @@ } }, { - "id": 15668, + "id": 15641, "name": "locationId", "variant": "param", "kind": 32768, @@ -48349,7 +53335,7 @@ } }, { - "id": 15669, + "id": 15642, "name": "context", "variant": "param", "kind": 32768, @@ -48366,7 +53352,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -48391,14 +53377,14 @@ ] }, { - "id": 15670, + "id": 15643, "name": "deleteInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15671, + "id": 15644, "name": "deleteInventoryLevels", "variant": "signature", "kind": 4096, @@ -48433,7 +53419,7 @@ }, "parameters": [ { - "id": 15672, + "id": 15645, "name": "inventoryLevelIds", "variant": "param", "kind": 32768, @@ -48464,7 +53450,7 @@ } }, { - "id": 15673, + "id": 15646, "name": "context", "variant": "param", "kind": 32768, @@ -48481,7 +53467,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -48506,14 +53492,14 @@ ] }, { - "id": 15674, + "id": 15647, "name": "softDeleteInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15675, + "id": 15648, "name": "softDeleteInventoryLevels", "variant": "signature", "kind": 4096, @@ -48556,7 +53542,7 @@ }, "typeParameters": [ { - "id": 15676, + "id": 15649, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -48573,7 +53559,7 @@ ], "parameters": [ { - "id": 15677, + "id": 15650, "name": "inventoryLevelIds", "variant": "param", "kind": 32768, @@ -48595,7 +53581,7 @@ } }, { - "id": 15678, + "id": 15651, "name": "config", "variant": "param", "kind": 32768, @@ -48612,11 +53598,11 @@ }, "type": { "type": "reference", - "target": 14348, + "target": 14232, "typeArguments": [ { "type": "reference", - "target": 15676, + "target": 15649, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -48627,7 +53613,7 @@ } }, { - "id": 15679, + "id": 15652, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -48644,7 +53630,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -48696,14 +53682,14 @@ ] }, { - "id": 15680, + "id": 15653, "name": "restoreInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15681, + "id": 15654, "name": "restoreInventoryLevels", "variant": "signature", "kind": 4096, @@ -48746,7 +53732,7 @@ }, "typeParameters": [ { - "id": 15682, + "id": 15655, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -48763,7 +53749,7 @@ ], "parameters": [ { - "id": 15683, + "id": 15656, "name": "inventoryLevelIds", "variant": "param", "kind": 32768, @@ -48785,7 +53771,7 @@ } }, { - "id": 15684, + "id": 15657, "name": "config", "variant": "param", "kind": 32768, @@ -48818,11 +53804,11 @@ }, "type": { "type": "reference", - "target": 14351, + "target": 14235, "typeArguments": [ { "type": "reference", - "target": 15682, + "target": 15655, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -48833,7 +53819,7 @@ } }, { - "id": 15685, + "id": 15658, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -48850,7 +53836,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -48902,14 +53888,14 @@ ] }, { - "id": 15686, + "id": 15659, "name": "adjustInventory", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15687, + "id": 15660, "name": "adjustInventory", "variant": "signature", "kind": 4096, @@ -48944,7 +53930,7 @@ }, "parameters": [ { - "id": 15688, + "id": 15661, "name": "data", "variant": "param", "kind": 32768, @@ -48954,14 +53940,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 15689, + "id": 15662, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15690, + "id": 15663, "name": "inventoryItemId", "variant": "declaration", "kind": 1024, @@ -48972,7 +53958,7 @@ } }, { - "id": 15691, + "id": 15664, "name": "locationId", "variant": "declaration", "kind": 1024, @@ -48983,7 +53969,7 @@ } }, { - "id": 15692, + "id": 15665, "name": "adjustment", "variant": "declaration", "kind": 1024, @@ -48998,9 +53984,9 @@ { "title": "Properties", "children": [ - 15690, - 15691, - 15692 + 15663, + 15664, + 15665 ] } ] @@ -49009,7 +53995,7 @@ } }, { - "id": 15693, + "id": 15666, "name": "context", "variant": "param", "kind": 32768, @@ -49026,7 +54012,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -49043,7 +54029,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15410, + "target": 15383, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -49054,14 +54040,14 @@ } }, { - "id": 15694, + "id": 15667, "name": "adjustInventory", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15695, + "id": 15668, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -49072,7 +54058,7 @@ } }, { - "id": 15696, + "id": 15669, "name": "locationId", "variant": "param", "kind": 32768, @@ -49083,7 +54069,7 @@ } }, { - "id": 15697, + "id": 15670, "name": "adjustment", "variant": "param", "kind": 32768, @@ -49094,7 +54080,7 @@ } }, { - "id": 15698, + "id": 15671, "name": "context", "variant": "param", "kind": 32768, @@ -49103,7 +54089,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -49118,7 +54104,7 @@ "typeArguments": [ { "type": "reference", - "target": 15410, + "target": 15383, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -49130,14 +54116,14 @@ ] }, { - "id": 15699, + "id": 15672, "name": "confirmInventory", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15700, + "id": 15673, "name": "confirmInventory", "variant": "signature", "kind": 4096, @@ -49172,7 +54158,7 @@ }, "parameters": [ { - "id": 15701, + "id": 15674, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -49191,7 +54177,7 @@ } }, { - "id": 15702, + "id": 15675, "name": "locationIds", "variant": "param", "kind": 32768, @@ -49213,7 +54199,7 @@ } }, { - "id": 15703, + "id": 15676, "name": "quantity", "variant": "param", "kind": 32768, @@ -49232,7 +54218,7 @@ } }, { - "id": 15704, + "id": 15677, "name": "context", "variant": "param", "kind": 32768, @@ -49249,7 +54235,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -49274,14 +54260,14 @@ ] }, { - "id": 15705, + "id": 15678, "name": "retrieveAvailableQuantity", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15706, + "id": 15679, "name": "retrieveAvailableQuantity", "variant": "signature", "kind": 4096, @@ -49316,7 +54302,7 @@ }, "parameters": [ { - "id": 15707, + "id": 15680, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -49335,7 +54321,7 @@ } }, { - "id": 15708, + "id": 15681, "name": "locationIds", "variant": "param", "kind": 32768, @@ -49357,7 +54343,7 @@ } }, { - "id": 15709, + "id": 15682, "name": "context", "variant": "param", "kind": 32768, @@ -49374,7 +54360,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -49399,14 +54385,14 @@ ] }, { - "id": 15710, + "id": 15683, "name": "retrieveStockedQuantity", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15711, + "id": 15684, "name": "retrieveStockedQuantity", "variant": "signature", "kind": 4096, @@ -49441,7 +54427,7 @@ }, "parameters": [ { - "id": 15712, + "id": 15685, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -49460,7 +54446,7 @@ } }, { - "id": 15713, + "id": 15686, "name": "locationIds", "variant": "param", "kind": 32768, @@ -49482,7 +54468,7 @@ } }, { - "id": 15714, + "id": 15687, "name": "context", "variant": "param", "kind": 32768, @@ -49499,7 +54485,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -49524,14 +54510,14 @@ ] }, { - "id": 15715, + "id": 15688, "name": "retrieveReservedQuantity", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15716, + "id": 15689, "name": "retrieveReservedQuantity", "variant": "signature", "kind": 4096, @@ -49566,7 +54552,7 @@ }, "parameters": [ { - "id": 15717, + "id": 15690, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -49585,7 +54571,7 @@ } }, { - "id": 15718, + "id": 15691, "name": "locationIds", "variant": "param", "kind": 32768, @@ -49607,7 +54593,7 @@ } }, { - "id": 15719, + "id": 15692, "name": "context", "variant": "param", "kind": 32768, @@ -49624,7 +54610,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -49653,48 +54639,48 @@ { "title": "Methods", "children": [ - 15525, - 15530, - 15535, - 15540, - 15545, - 15550, + 15498, + 15503, + 15508, + 15513, + 15518, + 15523, + 15528, + 15533, + 15538, + 15543, + 15548, 15555, - 15560, - 15565, - 15570, - 15575, - 15582, - 15589, - 15596, - 15603, - 15610, - 15617, - 15621, - 15625, - 15629, - 15635, - 15641, - 15645, - 15651, - 15657, - 15661, - 15665, - 15670, - 15674, - 15680, - 15686, - 15699, - 15705, - 15710, - 15715 + 15562, + 15569, + 15576, + 15583, + 15590, + 15594, + 15598, + 15602, + 15608, + 15614, + 15618, + 15624, + 15630, + 15634, + 15638, + 15643, + 15647, + 15653, + 15659, + 15672, + 15678, + 15683, + 15688 ] } ], "extendedTypes": [ { "type": "reference", - "target": 15956, + "target": 15930, "name": "IModuleService", "package": "@medusajs/types" } @@ -49705,33 +54691,33 @@ { "title": "Interfaces", "children": [ + 15356, + 15375, 15383, - 15402, - 15410, - 15422, - 15430, - 15443, - 15452, - 15468, + 15395, + 15403, + 15416, + 15425, + 15441, + 15456, + 15461, + 15465, + 15476, 15483, - 15488, - 15492, - 15503, - 15510, - 15520, - 15524 + 15493, + 15497 ] }, { "title": "Type Aliases", "children": [ - 15498 + 15471 ] } ] }, { - "id": 16705, + "id": 16704, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -49739,14 +54725,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16706, + "id": 16705, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16707, + "id": 16706, "name": "alias", "variant": "declaration", "kind": 1024, @@ -49757,7 +54743,7 @@ } }, { - "id": 16708, + "id": 16707, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -49768,7 +54754,7 @@ } }, { - "id": 16709, + "id": 16708, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -49779,7 +54765,7 @@ } }, { - "id": 16710, + "id": 16709, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -49790,7 +54776,7 @@ } }, { - "id": 16711, + "id": 16710, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -49811,7 +54797,7 @@ } }, { - "id": 16712, + "id": 16711, "name": "isList", "variant": "declaration", "kind": 1024, @@ -49832,7 +54818,7 @@ } }, { - "id": 16713, + "id": 16712, "name": "args", "variant": "declaration", "kind": 1024, @@ -49872,13 +54858,13 @@ { "title": "Properties", "children": [ + 16706, 16707, 16708, 16709, 16710, 16711, - 16712, - 16713 + 16712 ] } ] @@ -49886,14 +54872,14 @@ } }, { - "id": 16714, + "id": 16713, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16715, + "id": 16714, "name": "name", "variant": "declaration", "kind": 1024, @@ -49916,7 +54902,7 @@ } }, { - "id": 16716, + "id": 16715, "name": "args", "variant": "declaration", "kind": 1024, @@ -49956,21 +54942,21 @@ { "title": "Properties", "children": [ - 16715, - 16716 + 16714, + 16715 ] } ] }, { - "id": 16717, + "id": 16716, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16718, + "id": 16717, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -49981,7 +54967,7 @@ } }, { - "id": 16719, + "id": 16718, "name": "alias", "variant": "declaration", "kind": 1024, @@ -50001,7 +54987,7 @@ "types": [ { "type": "reference", - "target": 16714, + "target": 16713, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -50009,7 +54995,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16714, + "target": 16713, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -50018,7 +55004,7 @@ } }, { - "id": 16720, + "id": 16719, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -50054,14 +55040,14 @@ { "type": "reflection", "declaration": { - "id": 16721, + "id": 16720, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16722, + "id": 16721, "name": "path", "variant": "declaration", "kind": 1024, @@ -50072,7 +55058,7 @@ } }, { - "id": 16723, + "id": 16722, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -50090,8 +55076,8 @@ { "title": "Properties", "children": [ - 16722, - 16723 + 16721, + 16722 ] } ] @@ -50105,7 +55091,7 @@ } }, { - "id": 16724, + "id": 16723, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -50119,7 +55105,7 @@ } }, { - "id": 16725, + "id": 16724, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -50130,14 +55116,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 16705, + "target": 16704, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 16726, + "id": 16725, "name": "extends", "variant": "declaration", "kind": 1024, @@ -50149,14 +55135,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 16727, + "id": 16726, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16728, + "id": 16727, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -50167,14 +55153,14 @@ } }, { - "id": 16729, + "id": 16728, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16705, + "target": 16704, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -50184,8 +55170,8 @@ { "title": "Properties", "children": [ - 16728, - 16729 + 16727, + 16728 ] } ] @@ -50194,7 +55180,7 @@ } }, { - "id": 16730, + "id": 16729, "name": "args", "variant": "declaration", "kind": 1024, @@ -50234,26 +55220,26 @@ { "title": "Properties", "children": [ + 16717, 16718, 16719, - 16720, + 16723, 16724, 16725, - 16726, - 16730 + 16729 ] } ] }, { - "id": 16731, + "id": 16730, "name": "JoinerArgument", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16732, + "id": 16731, "name": "name", "variant": "declaration", "kind": 1024, @@ -50264,7 +55250,7 @@ } }, { - "id": 16733, + "id": 16732, "name": "value", "variant": "declaration", "kind": 1024, @@ -50281,21 +55267,21 @@ { "title": "Properties", "children": [ - 16732, - 16733 + 16731, + 16732 ] } ] }, { - "id": 16734, + "id": 16733, "name": "JoinerDirective", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16735, + "id": 16734, "name": "name", "variant": "declaration", "kind": 1024, @@ -50306,7 +55292,7 @@ } }, { - "id": 16736, + "id": 16735, "name": "value", "variant": "declaration", "kind": 1024, @@ -50323,21 +55309,21 @@ { "title": "Properties", "children": [ - 16735, - 16736 + 16734, + 16735 ] } ] }, { - "id": 16737, + "id": 16736, "name": "RemoteJoinerQuery", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16738, + "id": 16737, "name": "service", "variant": "declaration", "kind": 1024, @@ -50350,7 +55336,7 @@ } }, { - "id": 16739, + "id": 16738, "name": "alias", "variant": "declaration", "kind": 1024, @@ -50363,7 +55349,7 @@ } }, { - "id": 16740, + "id": 16739, "name": "expands", "variant": "declaration", "kind": 1024, @@ -50375,14 +55361,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 16741, + "id": 16740, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16742, + "id": 16741, "name": "property", "variant": "declaration", "kind": 1024, @@ -50393,7 +55379,7 @@ } }, { - "id": 16743, + "id": 16742, "name": "fields", "variant": "declaration", "kind": 1024, @@ -50407,7 +55393,7 @@ } }, { - "id": 16744, + "id": 16743, "name": "args", "variant": "declaration", "kind": 1024, @@ -50418,14 +55404,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 16731, + "target": 16730, "name": "JoinerArgument", "package": "@medusajs/types" } } }, { - "id": 16745, + "id": 16744, "name": "directives", "variant": "declaration", "kind": 1024, @@ -50435,21 +55421,21 @@ "type": { "type": "reflection", "declaration": { - "id": 16746, + "id": 16745, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 16747, + "id": 16746, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 16748, + "id": 16747, "name": "field", "variant": "param", "kind": 32768, @@ -50464,7 +55450,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16734, + "target": 16733, "name": "JoinerDirective", "package": "@medusajs/types" } @@ -50479,10 +55465,10 @@ { "title": "Properties", "children": [ + 16741, 16742, 16743, - 16744, - 16745 + 16744 ] } ] @@ -50491,7 +55477,7 @@ } }, { - "id": 16749, + "id": 16748, "name": "fields", "variant": "declaration", "kind": 1024, @@ -50505,7 +55491,7 @@ } }, { - "id": 16750, + "id": 16749, "name": "args", "variant": "declaration", "kind": 1024, @@ -50516,14 +55502,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 16731, + "target": 16730, "name": "JoinerArgument", "package": "@medusajs/types" } } }, { - "id": 16751, + "id": 16750, "name": "directives", "variant": "declaration", "kind": 1024, @@ -50533,21 +55519,21 @@ "type": { "type": "reflection", "declaration": { - "id": 16752, + "id": 16751, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 16753, + "id": 16752, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 16754, + "id": 16753, "name": "field", "variant": "param", "kind": 32768, @@ -50562,7 +55548,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16734, + "target": 16733, "name": "JoinerDirective", "package": "@medusajs/types" } @@ -50577,25 +55563,25 @@ { "title": "Properties", "children": [ + 16737, 16738, 16739, - 16740, + 16748, 16749, - 16750, - 16751 + 16750 ] } ] }, { - "id": 16755, + "id": 16754, "name": "RemoteJoinerOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16756, + "id": 16755, "name": "throwIfKeyNotFound", "variant": "declaration", "kind": 1024, @@ -50608,7 +55594,7 @@ } }, { - "id": 16757, + "id": 16756, "name": "throwIfRelationNotFound", "variant": "declaration", "kind": 1024, @@ -50637,28 +55623,28 @@ { "title": "Properties", "children": [ - 16756, - 16757 + 16755, + 16756 ] } ] }, { - "id": 16758, + "id": 16757, "name": "RemoteNestedExpands", "variant": "declaration", "kind": 256, "flags": {}, "indexSignatures": [ { - "id": 16759, + "id": 16758, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 16760, + "id": 16759, "name": "key", "variant": "param", "kind": 32768, @@ -50672,14 +55658,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16761, + "id": 16760, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16762, + "id": 16761, "name": "fields", "variant": "declaration", "kind": 1024, @@ -50695,7 +55681,7 @@ } }, { - "id": 16763, + "id": 16762, "name": "args", "variant": "declaration", "kind": 1024, @@ -50706,14 +55692,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 16731, + "target": 16730, "name": "JoinerArgument", "package": "@medusajs/types" } } }, { - "id": 16764, + "id": 16763, "name": "expands", "variant": "declaration", "kind": 1024, @@ -50722,7 +55708,7 @@ }, "type": { "type": "reference", - "target": 16758, + "target": 16757, "name": "RemoteNestedExpands", "package": "@medusajs/types" } @@ -50732,9 +55718,9 @@ { "title": "Properties", "children": [ + 16761, 16762, - 16763, - 16764 + 16763 ] } ] @@ -50744,7 +55730,7 @@ ] }, { - "id": 16765, + "id": 16764, "name": "InternalJoinerServiceConfig", "variant": "declaration", "kind": 2097152, @@ -50761,7 +55747,7 @@ "typeArguments": [ { "type": "reference", - "target": 16717, + "target": 16716, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -50776,14 +55762,14 @@ { "type": "reflection", "declaration": { - "id": 16766, + "id": 16765, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16767, + "id": 16766, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -50803,7 +55789,7 @@ }, { "type": "reference", - "target": 16705, + "target": 16704, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -50817,7 +55803,7 @@ { "title": "Properties", "children": [ - 16767 + 16766 ] } ] @@ -50827,14 +55813,14 @@ } }, { - "id": 16768, + "id": 16767, "name": "RemoteExpandProperty", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16769, + "id": 16768, "name": "property", "variant": "declaration", "kind": 1024, @@ -50845,7 +55831,7 @@ } }, { - "id": 16770, + "id": 16769, "name": "parent", "variant": "declaration", "kind": 1024, @@ -50856,7 +55842,7 @@ } }, { - "id": 16771, + "id": 16770, "name": "parentConfig", "variant": "declaration", "kind": 1024, @@ -50865,26 +55851,26 @@ }, "type": { "type": "reference", - "target": 16765, + "target": 16764, "name": "InternalJoinerServiceConfig", "package": "@medusajs/types" } }, { - "id": 16772, + "id": 16771, "name": "serviceConfig", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16765, + "target": 16764, "name": "InternalJoinerServiceConfig", "package": "@medusajs/types" } }, { - "id": 16773, + "id": 16772, "name": "fields", "variant": "declaration", "kind": 1024, @@ -50900,7 +55886,7 @@ } }, { - "id": 16774, + "id": 16773, "name": "args", "variant": "declaration", "kind": 1024, @@ -50911,14 +55897,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 16731, + "target": 16730, "name": "JoinerArgument", "package": "@medusajs/types" } } }, { - "id": 16775, + "id": 16774, "name": "expands", "variant": "declaration", "kind": 1024, @@ -50927,7 +55913,7 @@ }, "type": { "type": "reference", - "target": 16758, + "target": 16757, "name": "RemoteNestedExpands", "package": "@medusajs/types" } @@ -50937,40 +55923,40 @@ { "title": "Properties", "children": [ + 16768, 16769, 16770, 16771, 16772, 16773, - 16774, - 16775 + 16774 ] } ] }, { - "id": 16776, + "id": 16775, "name": "ILinkModule", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16777, + "id": 16776, "name": "list", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16778, + "id": 16777, "name": "list", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16779, + "id": 16778, "name": "filters", "variant": "param", "kind": 32768, @@ -50998,7 +55984,7 @@ } }, { - "id": 16780, + "id": 16779, "name": "config", "variant": "param", "kind": 32768, @@ -51007,7 +55993,7 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "intrinsic", @@ -51019,7 +56005,7 @@ } }, { - "id": 16781, + "id": 16780, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -51028,7 +56014,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -51056,21 +56042,21 @@ ] }, { - "id": 16782, + "id": 16781, "name": "listAndCount", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16783, + "id": 16782, "name": "listAndCount", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16784, + "id": 16783, "name": "filters", "variant": "param", "kind": 32768, @@ -51098,7 +56084,7 @@ } }, { - "id": 16785, + "id": 16784, "name": "config", "variant": "param", "kind": 32768, @@ -51107,7 +56093,7 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "intrinsic", @@ -51119,7 +56105,7 @@ } }, { - "id": 16786, + "id": 16785, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -51128,7 +56114,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -51165,21 +56151,21 @@ ] }, { - "id": 16787, + "id": 16786, "name": "create", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16788, + "id": 16787, "name": "create", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16789, + "id": 16788, "name": "primaryKeyOrBulkData", "variant": "param", "kind": 32768, @@ -51252,7 +56238,7 @@ } }, { - "id": 16790, + "id": 16789, "name": "foreignKeyData", "variant": "param", "kind": 32768, @@ -51265,7 +56251,7 @@ } }, { - "id": 16791, + "id": 16790, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -51274,7 +56260,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -51302,21 +56288,21 @@ ] }, { - "id": 16792, + "id": 16791, "name": "dismiss", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16793, + "id": 16792, "name": "dismiss", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16794, + "id": 16793, "name": "primaryKeyOrBulkData", "variant": "param", "kind": 32768, @@ -51367,7 +56353,7 @@ } }, { - "id": 16795, + "id": 16794, "name": "foreignKeyData", "variant": "param", "kind": 32768, @@ -51380,7 +56366,7 @@ } }, { - "id": 16796, + "id": 16795, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -51389,7 +56375,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -51417,21 +56403,21 @@ ] }, { - "id": 16797, + "id": 16796, "name": "delete", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16798, + "id": 16797, "name": "delete", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16799, + "id": 16798, "name": "data", "variant": "param", "kind": 32768, @@ -51442,7 +56428,7 @@ } }, { - "id": 16800, + "id": 16799, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -51451,7 +56437,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -51476,21 +56462,21 @@ ] }, { - "id": 16801, + "id": 16800, "name": "softDelete", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16802, + "id": 16801, "name": "softDelete", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16803, + "id": 16802, "name": "data", "variant": "param", "kind": 32768, @@ -51501,7 +56487,7 @@ } }, { - "id": 16804, + "id": 16803, "name": "config", "variant": "param", "kind": 32768, @@ -51510,13 +56496,13 @@ }, "type": { "type": "reference", - "target": 14348, + "target": 14232, "name": "SoftDeleteReturn", "package": "@medusajs/types" } }, { - "id": 16805, + "id": 16804, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -51525,7 +56511,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -51577,21 +56563,21 @@ ] }, { - "id": 16806, + "id": 16805, "name": "restore", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16807, + "id": 16806, "name": "restore", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16808, + "id": 16807, "name": "data", "variant": "param", "kind": 32768, @@ -51602,7 +56588,7 @@ } }, { - "id": 16809, + "id": 16808, "name": "config", "variant": "param", "kind": 32768, @@ -51611,13 +56597,13 @@ }, "type": { "type": "reference", - "target": 14351, + "target": 14235, "name": "RestoreReturn", "package": "@medusajs/types" } }, { - "id": 16810, + "id": 16809, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -51626,7 +56612,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -51682,41 +56668,41 @@ { "title": "Methods", "children": [ - 16777, - 16782, - 16787, - 16792, - 16797, - 16801, - 16806 + 16776, + 16781, + 16786, + 16791, + 16796, + 16800, + 16805 ] } ], "extendedTypes": [ { "type": "reference", - "target": 15956, + "target": 15930, "name": "IModuleService", "package": "@medusajs/types" } ] }, { - "id": 15733, + "id": 15706, "name": "LoggerTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 15734, + "id": 15707, "name": "Logger", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15735, + "id": 15708, "name": "panic", "variant": "declaration", "kind": 1024, @@ -51724,21 +56710,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15736, + "id": 15709, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15737, + "id": 15710, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15738, + "id": 15711, "name": "data", "variant": "param", "kind": 32768, @@ -51759,7 +56745,7 @@ } }, { - "id": 15739, + "id": 15712, "name": "shouldLog", "variant": "declaration", "kind": 1024, @@ -51767,21 +56753,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15740, + "id": 15713, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15741, + "id": 15714, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15742, + "id": 15715, "name": "level", "variant": "param", "kind": 32768, @@ -51802,7 +56788,7 @@ } }, { - "id": 15743, + "id": 15716, "name": "setLogLevel", "variant": "declaration", "kind": 1024, @@ -51810,21 +56796,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15744, + "id": 15717, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15745, + "id": 15718, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15746, + "id": 15719, "name": "level", "variant": "param", "kind": 32768, @@ -51845,7 +56831,7 @@ } }, { - "id": 15747, + "id": 15720, "name": "unsetLogLevel", "variant": "declaration", "kind": 1024, @@ -51853,14 +56839,14 @@ "type": { "type": "reflection", "declaration": { - "id": 15748, + "id": 15721, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15749, + "id": 15722, "name": "__type", "variant": "signature", "kind": 4096, @@ -51875,7 +56861,7 @@ } }, { - "id": 15750, + "id": 15723, "name": "activity", "variant": "declaration", "kind": 1024, @@ -51883,21 +56869,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15751, + "id": 15724, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15752, + "id": 15725, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15753, + "id": 15726, "name": "message", "variant": "param", "kind": 32768, @@ -51908,7 +56894,7 @@ } }, { - "id": 15754, + "id": 15727, "name": "config", "variant": "param", "kind": 32768, @@ -51931,7 +56917,7 @@ } }, { - "id": 15755, + "id": 15728, "name": "progress", "variant": "declaration", "kind": 1024, @@ -51939,21 +56925,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15756, + "id": 15729, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15757, + "id": 15730, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15758, + "id": 15731, "name": "activityId", "variant": "param", "kind": 32768, @@ -51964,7 +56950,7 @@ } }, { - "id": 15759, + "id": 15732, "name": "message", "variant": "param", "kind": 32768, @@ -51985,7 +56971,7 @@ } }, { - "id": 15760, + "id": 15733, "name": "error", "variant": "declaration", "kind": 1024, @@ -51993,21 +56979,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15761, + "id": 15734, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15762, + "id": 15735, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15763, + "id": 15736, "name": "messageOrError", "variant": "param", "kind": 32768, @@ -52018,7 +57004,7 @@ } }, { - "id": 15764, + "id": 15737, "name": "error", "variant": "param", "kind": 32768, @@ -52041,7 +57027,7 @@ } }, { - "id": 15765, + "id": 15738, "name": "failure", "variant": "declaration", "kind": 1024, @@ -52049,21 +57035,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15766, + "id": 15739, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15767, + "id": 15740, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15768, + "id": 15741, "name": "activityId", "variant": "param", "kind": 32768, @@ -52074,7 +57060,7 @@ } }, { - "id": 15769, + "id": 15742, "name": "message", "variant": "param", "kind": 32768, @@ -52095,7 +57081,7 @@ } }, { - "id": 15770, + "id": 15743, "name": "success", "variant": "declaration", "kind": 1024, @@ -52103,21 +57089,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15771, + "id": 15744, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15772, + "id": 15745, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15773, + "id": 15746, "name": "activityId", "variant": "param", "kind": 32768, @@ -52128,7 +57114,7 @@ } }, { - "id": 15774, + "id": 15747, "name": "message", "variant": "param", "kind": 32768, @@ -52149,7 +57135,7 @@ } }, { - "id": 15775, + "id": 15748, "name": "debug", "variant": "declaration", "kind": 1024, @@ -52157,21 +57143,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15776, + "id": 15749, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15777, + "id": 15750, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15778, + "id": 15751, "name": "message", "variant": "param", "kind": 32768, @@ -52192,7 +57178,7 @@ } }, { - "id": 15779, + "id": 15752, "name": "info", "variant": "declaration", "kind": 1024, @@ -52200,21 +57186,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15780, + "id": 15753, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15781, + "id": 15754, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15782, + "id": 15755, "name": "message", "variant": "param", "kind": 32768, @@ -52235,7 +57221,7 @@ } }, { - "id": 15783, + "id": 15756, "name": "warn", "variant": "declaration", "kind": 1024, @@ -52243,21 +57229,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15784, + "id": 15757, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15785, + "id": 15758, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15786, + "id": 15759, "name": "message", "variant": "param", "kind": 32768, @@ -52278,7 +57264,7 @@ } }, { - "id": 15787, + "id": 15760, "name": "log", "variant": "declaration", "kind": 1024, @@ -52286,21 +57272,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15788, + "id": 15761, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15789, + "id": 15762, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15790, + "id": 15763, "name": "args", "variant": "param", "kind": 32768, @@ -52330,19 +57316,19 @@ { "title": "Properties", "children": [ - 15735, - 15739, + 15708, + 15712, + 15716, + 15720, + 15723, + 15728, + 15733, + 15738, 15743, - 15747, - 15750, - 15755, - 15760, - 15765, - 15770, - 15775, - 15779, - 15783, - 15787 + 15748, + 15752, + 15756, + 15760 ] } ] @@ -52352,27 +57338,27 @@ { "title": "Interfaces", "children": [ - 15734 + 15707 ] } ] }, { - "id": 15791, + "id": 15764, "name": "ModulesSdkTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 15792, + "id": 15765, "name": "Constructor", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 15798, + "id": 15771, "name": "T", "variant": "typeParam", "kind": 131072, @@ -52382,21 +57368,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15793, + "id": 15766, "name": "__type", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 15794, + "id": 15767, "name": "__type", "variant": "signature", "kind": 16384, "flags": {}, "parameters": [ { - "id": 15797, + "id": 15770, "name": "args", "variant": "param", "kind": 32768, @@ -52417,7 +57403,7 @@ "types": [ { "type": "reference", - "target": 15798, + "target": 15771, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -52425,21 +57411,21 @@ { "type": "reflection", "declaration": { - "id": 15795, + "id": 15768, "name": "__type", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 15796, + "id": 15769, "name": "__type", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 15798, + "target": 15771, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -52456,7 +57442,7 @@ } }, { - "id": 15799, + "id": 15772, "name": "LogLevel", "variant": "declaration", "kind": 2097152, @@ -52496,7 +57482,7 @@ } }, { - "id": 15800, + "id": 15773, "name": "LoggerOptions", "variant": "declaration", "kind": 2097152, @@ -52516,7 +57502,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15799, + "target": 15772, "name": "LogLevel", "package": "@medusajs/types" } @@ -52525,7 +57511,7 @@ } }, { - "id": 15801, + "id": 15774, "name": "CustomModuleDefinition", "variant": "declaration", "kind": 2097152, @@ -52533,14 +57519,14 @@ "type": { "type": "reflection", "declaration": { - "id": 15802, + "id": 15775, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15803, + "id": 15776, "name": "key", "variant": "declaration", "kind": 1024, @@ -52553,7 +57539,7 @@ } }, { - "id": 15804, + "id": 15777, "name": "registrationName", "variant": "declaration", "kind": 1024, @@ -52566,7 +57552,7 @@ } }, { - "id": 15805, + "id": 15778, "name": "label", "variant": "declaration", "kind": 1024, @@ -52579,7 +57565,7 @@ } }, { - "id": 15806, + "id": 15779, "name": "isQueryable", "variant": "declaration", "kind": 1024, @@ -52592,7 +57578,7 @@ } }, { - "id": 15807, + "id": 15780, "name": "dependencies", "variant": "declaration", "kind": 1024, @@ -52612,11 +57598,11 @@ { "title": "Properties", "children": [ - 15803, - 15804, - 15805, - 15806, - 15807 + 15776, + 15777, + 15778, + 15779, + 15780 ] } ] @@ -52624,7 +57610,7 @@ } }, { - "id": 15808, + "id": 15781, "name": "InternalModuleDeclaration", "variant": "declaration", "kind": 2097152, @@ -52632,14 +57618,14 @@ "type": { "type": "reflection", "declaration": { - "id": 15809, + "id": 15782, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15810, + "id": 15783, "name": "scope", "variant": "declaration", "kind": 1024, @@ -52650,7 +57636,7 @@ } }, { - "id": 15811, + "id": 15784, "name": "resources", "variant": "declaration", "kind": 1024, @@ -52670,7 +57656,7 @@ } }, { - "id": 15812, + "id": 15785, "name": "dependencies", "variant": "declaration", "kind": 1024, @@ -52686,7 +57672,7 @@ } }, { - "id": 15813, + "id": 15786, "name": "definition", "variant": "declaration", "kind": 1024, @@ -52695,13 +57681,13 @@ }, "type": { "type": "reference", - "target": 15801, + "target": 15774, "name": "CustomModuleDefinition", "package": "@medusajs/types" } }, { - "id": 15814, + "id": 15787, "name": "resolve", "variant": "declaration", "kind": 1024, @@ -52717,7 +57703,7 @@ }, { "type": "reference", - "target": 15914, + "target": 15887, "name": "ModuleExports", "package": "@medusajs/types" } @@ -52725,7 +57711,7 @@ } }, { - "id": 15815, + "id": 15788, "name": "options", "variant": "declaration", "kind": 1024, @@ -52753,7 +57739,7 @@ } }, { - "id": 15816, + "id": 15789, "name": "alias", "variant": "declaration", "kind": 1024, @@ -52774,7 +57760,7 @@ } }, { - "id": 15817, + "id": 15790, "name": "main", "variant": "declaration", "kind": 1024, @@ -52795,7 +57781,7 @@ } }, { - "id": 15818, + "id": 15791, "name": "worker_mode", "variant": "declaration", "kind": 1024, @@ -52825,15 +57811,15 @@ { "title": "Properties", "children": [ - 15810, - 15811, - 15812, - 15813, - 15814, - 15815, - 15816, - 15817, - 15818 + 15783, + 15784, + 15785, + 15786, + 15787, + 15788, + 15789, + 15790, + 15791 ] } ] @@ -52841,7 +57827,7 @@ } }, { - "id": 15819, + "id": 15792, "name": "ExternalModuleDeclaration", "variant": "declaration", "kind": 2097152, @@ -52849,14 +57835,14 @@ "type": { "type": "reflection", "declaration": { - "id": 15820, + "id": 15793, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15821, + "id": 15794, "name": "scope", "variant": "declaration", "kind": 1024, @@ -52867,7 +57853,7 @@ } }, { - "id": 15822, + "id": 15795, "name": "definition", "variant": "declaration", "kind": 1024, @@ -52876,13 +57862,13 @@ }, "type": { "type": "reference", - "target": 15801, + "target": 15774, "name": "CustomModuleDefinition", "package": "@medusajs/types" } }, { - "id": 15823, + "id": 15796, "name": "server", "variant": "declaration", "kind": 1024, @@ -52892,14 +57878,14 @@ "type": { "type": "reflection", "declaration": { - "id": 15824, + "id": 15797, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15825, + "id": 15798, "name": "type", "variant": "declaration", "kind": 1024, @@ -52910,7 +57896,7 @@ } }, { - "id": 15826, + "id": 15799, "name": "url", "variant": "declaration", "kind": 1024, @@ -52921,7 +57907,7 @@ } }, { - "id": 15827, + "id": 15800, "name": "keepAlive", "variant": "declaration", "kind": 1024, @@ -52936,9 +57922,9 @@ { "title": "Properties", "children": [ - 15825, - 15826, - 15827 + 15798, + 15799, + 15800 ] } ] @@ -52946,7 +57932,7 @@ } }, { - "id": 15828, + "id": 15801, "name": "options", "variant": "declaration", "kind": 1024, @@ -52974,7 +57960,7 @@ } }, { - "id": 15829, + "id": 15802, "name": "alias", "variant": "declaration", "kind": 1024, @@ -52995,7 +57981,7 @@ } }, { - "id": 15830, + "id": 15803, "name": "main", "variant": "declaration", "kind": 1024, @@ -53020,12 +58006,12 @@ { "title": "Properties", "children": [ - 15821, - 15822, - 15823, - 15828, - 15829, - 15830 + 15794, + 15795, + 15796, + 15801, + 15802, + 15803 ] } ] @@ -53033,7 +58019,7 @@ } }, { - "id": 15831, + "id": 15804, "name": "ModuleResolution", "variant": "declaration", "kind": 2097152, @@ -53041,14 +58027,14 @@ "type": { "type": "reflection", "declaration": { - "id": 15832, + "id": 15805, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15833, + "id": 15806, "name": "resolutionPath", "variant": "declaration", "kind": 1024, @@ -53068,20 +58054,20 @@ } }, { - "id": 15834, + "id": 15807, "name": "definition", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15839, + "target": 15812, "name": "ModuleDefinition", "package": "@medusajs/types" } }, { - "id": 15835, + "id": 15808, "name": "options", "variant": "declaration", "kind": 1024, @@ -53109,7 +58095,7 @@ } }, { - "id": 15836, + "id": 15809, "name": "dependencies", "variant": "declaration", "kind": 1024, @@ -53125,7 +58111,7 @@ } }, { - "id": 15837, + "id": 15810, "name": "moduleDeclaration", "variant": "declaration", "kind": 1024, @@ -53137,13 +58123,13 @@ "types": [ { "type": "reference", - "target": 15808, + "target": 15781, "name": "InternalModuleDeclaration", "package": "@medusajs/types" }, { "type": "reference", - "target": 15819, + "target": 15792, "name": "ExternalModuleDeclaration", "package": "@medusajs/types" } @@ -53151,7 +58137,7 @@ } }, { - "id": 15838, + "id": 15811, "name": "moduleExports", "variant": "declaration", "kind": 1024, @@ -53160,7 +58146,7 @@ }, "type": { "type": "reference", - "target": 15914, + "target": 15887, "name": "ModuleExports", "package": "@medusajs/types" } @@ -53170,12 +58156,12 @@ { "title": "Properties", "children": [ - 15833, - 15834, - 15835, - 15836, - 15837, - 15838 + 15806, + 15807, + 15808, + 15809, + 15810, + 15811 ] } ] @@ -53183,7 +58169,7 @@ } }, { - "id": 15839, + "id": 15812, "name": "ModuleDefinition", "variant": "declaration", "kind": 2097152, @@ -53191,14 +58177,14 @@ "type": { "type": "reflection", "declaration": { - "id": 15840, + "id": 15813, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15841, + "id": 15814, "name": "key", "variant": "declaration", "kind": 1024, @@ -53209,7 +58195,7 @@ } }, { - "id": 15842, + "id": 15815, "name": "registrationName", "variant": "declaration", "kind": 1024, @@ -53220,7 +58206,7 @@ } }, { - "id": 15843, + "id": 15816, "name": "defaultPackage", "variant": "declaration", "kind": 1024, @@ -53240,7 +58226,7 @@ } }, { - "id": 15844, + "id": 15817, "name": "label", "variant": "declaration", "kind": 1024, @@ -53251,7 +58237,7 @@ } }, { - "id": 15845, + "id": 15818, "name": "isRequired", "variant": "declaration", "kind": 1024, @@ -53264,7 +58250,7 @@ } }, { - "id": 15846, + "id": 15819, "name": "isQueryable", "variant": "declaration", "kind": 1024, @@ -53277,7 +58263,7 @@ } }, { - "id": 15847, + "id": 15820, "name": "dependencies", "variant": "declaration", "kind": 1024, @@ -53293,7 +58279,7 @@ } }, { - "id": 15848, + "id": 15821, "name": "defaultModuleDeclaration", "variant": "declaration", "kind": 1024, @@ -53303,13 +58289,13 @@ "types": [ { "type": "reference", - "target": 15808, + "target": 15781, "name": "InternalModuleDeclaration", "package": "@medusajs/types" }, { "type": "reference", - "target": 15819, + "target": 15792, "name": "ExternalModuleDeclaration", "package": "@medusajs/types" } @@ -53321,14 +58307,14 @@ { "title": "Properties", "children": [ - 15841, - 15842, - 15843, - 15844, - 15845, - 15846, - 15847, - 15848 + 15814, + 15815, + 15816, + 15817, + 15818, + 15819, + 15820, + 15821 ] } ] @@ -53336,7 +58322,7 @@ } }, { - "id": 15849, + "id": 15822, "name": "LinkModuleDefinition", "variant": "declaration", "kind": 2097152, @@ -53344,14 +58330,14 @@ "type": { "type": "reflection", "declaration": { - "id": 15850, + "id": 15823, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15851, + "id": 15824, "name": "key", "variant": "declaration", "kind": 1024, @@ -53362,7 +58348,7 @@ } }, { - "id": 15852, + "id": 15825, "name": "registrationName", "variant": "declaration", "kind": 1024, @@ -53373,7 +58359,7 @@ } }, { - "id": 15853, + "id": 15826, "name": "label", "variant": "declaration", "kind": 1024, @@ -53384,7 +58370,7 @@ } }, { - "id": 15854, + "id": 15827, "name": "dependencies", "variant": "declaration", "kind": 1024, @@ -53400,14 +58386,14 @@ } }, { - "id": 15855, + "id": 15828, "name": "defaultModuleDeclaration", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15808, + "target": 15781, "name": "InternalModuleDeclaration", "package": "@medusajs/types" } @@ -53417,11 +58403,11 @@ { "title": "Properties", "children": [ - 15851, - 15852, - 15853, - 15854, - 15855 + 15824, + 15825, + 15826, + 15827, + 15828 ] } ] @@ -53429,7 +58415,7 @@ } }, { - "id": 15856, + "id": 15829, "name": "ModuleConfig", "variant": "declaration", "kind": 2097152, @@ -53439,21 +58425,21 @@ "types": [ { "type": "reference", - "target": 17065, + "target": 17095, "name": "ModuleDeclaration", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 15857, + "id": 15830, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15858, + "id": 15831, "name": "module", "variant": "declaration", "kind": 1024, @@ -53464,7 +58450,7 @@ } }, { - "id": 15859, + "id": 15832, "name": "path", "variant": "declaration", "kind": 1024, @@ -53475,14 +58461,14 @@ } }, { - "id": 15860, + "id": 15833, "name": "definition", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15839, + "target": 15812, "name": "ModuleDefinition", "package": "@medusajs/types" } @@ -53492,9 +58478,9 @@ { "title": "Properties", "children": [ - 15858, - 15859, - 15860 + 15831, + 15832, + 15833 ] } ] @@ -53504,7 +58490,7 @@ } }, { - "id": 15861, + "id": 15834, "name": "LoadedModule", "variant": "declaration", "kind": 2097152, @@ -53519,34 +58505,34 @@ { "type": "reflection", "declaration": { - "id": 15862, + "id": 15835, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15863, + "id": 15836, "name": "__joinerConfig", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15887, + "target": 15860, "name": "ModuleJoinerConfig", "package": "@medusajs/types" } }, { - "id": 15864, + "id": 15837, "name": "__definition", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15839, + "target": 15812, "name": "ModuleDefinition", "package": "@medusajs/types" } @@ -53556,8 +58542,8 @@ { "title": "Properties", "children": [ - 15863, - 15864 + 15836, + 15837 ] } ] @@ -53567,14 +58553,14 @@ } }, { - "id": 15865, + "id": 15838, "name": "LoaderOptions", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 15871, + "id": 15844, "name": "TOptions", "variant": "typeParam", "kind": 131072, @@ -53603,27 +58589,27 @@ "type": { "type": "reflection", "declaration": { - "id": 15866, + "id": 15839, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15867, + "id": 15840, "name": "container", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 14136, + "target": 14017, "name": "MedusaContainer", "package": "@medusajs/types" } }, { - "id": 15868, + "id": 15841, "name": "options", "variant": "declaration", "kind": 1024, @@ -53632,14 +58618,14 @@ }, "type": { "type": "reference", - "target": 15871, + "target": 15844, "name": "TOptions", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 15869, + "id": 15842, "name": "logger", "variant": "declaration", "kind": 1024, @@ -53648,13 +58634,13 @@ }, "type": { "type": "reference", - "target": 15734, + "target": 15707, "name": "Logger", "package": "@medusajs/types" } }, { - "id": 15870, + "id": 15843, "name": "dataLoaderOnly", "variant": "declaration", "kind": 1024, @@ -53671,10 +58657,10 @@ { "title": "Properties", "children": [ - 15867, - 15868, - 15869, - 15870 + 15840, + 15841, + 15842, + 15843 ] } ] @@ -53682,7 +58668,7 @@ } }, { - "id": 15872, + "id": 15845, "name": "ModuleLoaderFunction", "variant": "declaration", "kind": 2097152, @@ -53690,28 +58676,28 @@ "type": { "type": "reflection", "declaration": { - "id": 15873, + "id": 15846, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15874, + "id": 15847, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15875, + "id": 15848, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 15865, + "target": 15838, "typeArguments": [ { "type": "intrinsic", @@ -53723,7 +58709,7 @@ } }, { - "id": 15876, + "id": 15849, "name": "moduleDeclaration", "variant": "param", "kind": 32768, @@ -53732,7 +58718,7 @@ }, "type": { "type": "reference", - "target": 15808, + "target": 15781, "name": "InternalModuleDeclaration", "package": "@medusajs/types" } @@ -53759,7 +58745,7 @@ } }, { - "id": 15877, + "id": 15850, "name": "ModulesResponse", "variant": "declaration", "kind": 2097152, @@ -53769,14 +58755,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 15878, + "id": 15851, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15879, + "id": 15852, "name": "module", "variant": "declaration", "kind": 1024, @@ -53787,7 +58773,7 @@ } }, { - "id": 15880, + "id": 15853, "name": "resolution", "variant": "declaration", "kind": 1024, @@ -53811,8 +58797,8 @@ { "title": "Properties", "children": [ - 15879, - 15880 + 15852, + 15853 ] } ] @@ -53821,7 +58807,7 @@ } }, { - "id": 15881, + "id": 15854, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -53840,14 +58826,14 @@ { "type": "reflection", "declaration": { - "id": 15882, + "id": 15855, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15883, + "id": 15856, "name": "type", "variant": "declaration", "kind": 1024, @@ -53943,7 +58929,7 @@ } }, { - "id": 15884, + "id": 15857, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -53956,7 +58942,7 @@ } }, { - "id": 15885, + "id": 15858, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -53969,7 +58955,7 @@ } }, { - "id": 15886, + "id": 15859, "name": "options", "variant": "declaration", "kind": 1024, @@ -54009,10 +58995,10 @@ { "title": "Properties", "children": [ - 15883, - 15884, - 15885, - 15886 + 15856, + 15857, + 15858, + 15859 ] } ] @@ -54024,7 +59010,7 @@ } }, { - "id": 15887, + "id": 15860, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -54041,7 +59027,7 @@ "typeArguments": [ { "type": "reference", - "target": 16717, + "target": 16716, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -54073,14 +59059,14 @@ { "type": "reflection", "declaration": { - "id": 15888, + "id": 15861, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15889, + "id": 15862, "name": "schema", "variant": "declaration", "kind": 1024, @@ -54101,7 +59087,7 @@ } }, { - "id": 15890, + "id": 15863, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -54112,14 +59098,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15911, + "target": 15884, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 15891, + "id": 15864, "name": "extends", "variant": "declaration", "kind": 1024, @@ -54131,14 +59117,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 15892, + "id": 15865, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15893, + "id": 15866, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -54149,7 +59135,7 @@ } }, { - "id": 15894, + "id": 15867, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -54177,14 +59163,14 @@ { "type": "reflection", "declaration": { - "id": 15895, + "id": 15868, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15896, + "id": 15869, "name": "path", "variant": "declaration", "kind": 1024, @@ -54195,7 +59181,7 @@ } }, { - "id": 15897, + "id": 15870, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -54211,7 +59197,7 @@ } }, { - "id": 15898, + "id": 15871, "name": "isList", "variant": "declaration", "kind": 1024, @@ -54228,9 +59214,9 @@ { "title": "Properties", "children": [ - 15896, - 15897, - 15898 + 15869, + 15870, + 15871 ] } ] @@ -54244,14 +59230,14 @@ } }, { - "id": 15899, + "id": 15872, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15911, + "target": 15884, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -54261,9 +59247,9 @@ { "title": "Properties", "children": [ - 15893, - 15894, - 15899 + 15866, + 15867, + 15872 ] } ] @@ -54272,7 +59258,7 @@ } }, { - "id": 15900, + "id": 15873, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -54285,7 +59271,7 @@ } }, { - "id": 15901, + "id": 15874, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -54301,7 +59287,7 @@ } }, { - "id": 15902, + "id": 15875, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -54322,7 +59308,7 @@ } }, { - "id": 15903, + "id": 15876, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -54358,7 +59344,7 @@ } }, { - "id": 15904, + "id": 15877, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -54379,7 +59365,7 @@ } }, { - "id": 15905, + "id": 15878, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -54403,7 +59389,7 @@ } }, { - "id": 15906, + "id": 15879, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -54413,14 +59399,14 @@ "type": { "type": "reflection", "declaration": { - "id": 15907, + "id": 15880, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15908, + "id": 15881, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -54441,7 +59427,7 @@ } }, { - "id": 15909, + "id": 15882, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -54462,7 +59448,7 @@ } }, { - "id": 15910, + "id": 15883, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -54471,7 +59457,7 @@ }, "type": { "type": "reference", - "target": 15881, + "target": 15854, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -54481,9 +59467,9 @@ { "title": "Properties", "children": [ - 15908, - 15909, - 15910 + 15881, + 15882, + 15883 ] } ] @@ -54495,16 +59481,16 @@ { "title": "Properties", "children": [ - 15889, - 15890, - 15891, - 15900, - 15901, - 15902, - 15903, - 15904, - 15905, - 15906 + 15862, + 15863, + 15864, + 15873, + 15874, + 15875, + 15876, + 15877, + 15878, + 15879 ] } ] @@ -54514,7 +59500,7 @@ } }, { - "id": 15911, + "id": 15884, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -54524,21 +59510,21 @@ "types": [ { "type": "reference", - "target": 16705, + "target": 16704, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 15912, + "id": 15885, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15913, + "id": 15886, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -54563,7 +59549,7 @@ { "title": "Properties", "children": [ - 15913 + 15886 ] } ] @@ -54573,41 +59559,57 @@ } }, { - "id": 15914, + "id": 15887, "name": "ModuleExports", "variant": "declaration", "kind": 2097152, "flags": {}, + "typeParameters": [ + { + "id": 15899, + "name": "T", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "default": { + "type": "reference", + "target": 15765, + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Constructor", + "package": "@medusajs/types" + } + } + ], "type": { "type": "reflection", "declaration": { - "id": 15915, + "id": 15888, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15916, + "id": 15889, "name": "service", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 15792, - "typeArguments": [ - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Constructor", - "package": "@medusajs/types" + "target": 15899, + "name": "T", + "package": "@medusajs/types", + "refersToTypeParameter": true } }, { - "id": 15917, + "id": 15890, "name": "loaders", "variant": "declaration", "kind": 1024, @@ -54618,14 +59620,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 15872, + "target": 15845, "name": "ModuleLoaderFunction", "package": "@medusajs/types" } } }, { - "id": 15918, + "id": 15891, "name": "runMigrations", "variant": "declaration", "kind": 2048, @@ -54634,21 +59636,21 @@ }, "signatures": [ { - "id": 15919, + "id": 15892, "name": "runMigrations", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15920, + "id": 15893, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 15865, + "target": 15838, "typeArguments": [ { "type": "intrinsic", @@ -54660,7 +59662,7 @@ } }, { - "id": 15921, + "id": 15894, "name": "moduleDeclaration", "variant": "param", "kind": 32768, @@ -54669,7 +59671,7 @@ }, "type": { "type": "reference", - "target": 15808, + "target": 15781, "name": "InternalModuleDeclaration", "package": "@medusajs/types" } @@ -54694,7 +59696,7 @@ ] }, { - "id": 15922, + "id": 15895, "name": "revertMigration", "variant": "declaration", "kind": 2048, @@ -54703,21 +59705,21 @@ }, "signatures": [ { - "id": 15923, + "id": 15896, "name": "revertMigration", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15924, + "id": 15897, "name": "options", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 15865, + "target": 15838, "typeArguments": [ { "type": "intrinsic", @@ -54729,7 +59731,7 @@ } }, { - "id": 15925, + "id": 15898, "name": "moduleDeclaration", "variant": "param", "kind": 32768, @@ -54738,7 +59740,7 @@ }, "type": { "type": "reference", - "target": 15808, + "target": 15781, "name": "InternalModuleDeclaration", "package": "@medusajs/types" } @@ -54767,15 +59769,15 @@ { "title": "Properties", "children": [ - 15916, - 15917 + 15889, + 15890 ] }, { "title": "Methods", "children": [ - 15918, - 15922 + 15891, + 15895 ] } ] @@ -54783,14 +59785,14 @@ } }, { - "id": 15926, + "id": 15900, "name": "ModuleServiceInitializeOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15927, + "id": 15901, "name": "database", "variant": "declaration", "kind": 1024, @@ -54798,14 +59800,14 @@ "type": { "type": "reflection", "declaration": { - "id": 15928, + "id": 15902, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15929, + "id": 15903, "name": "connection", "variant": "declaration", "kind": 1024, @@ -54826,7 +59828,7 @@ } }, { - "id": 15930, + "id": 15904, "name": "clientUrl", "variant": "declaration", "kind": 1024, @@ -54839,7 +59841,7 @@ } }, { - "id": 15931, + "id": 15905, "name": "schema", "variant": "declaration", "kind": 1024, @@ -54852,7 +59854,7 @@ } }, { - "id": 15932, + "id": 15906, "name": "host", "variant": "declaration", "kind": 1024, @@ -54865,7 +59867,7 @@ } }, { - "id": 15933, + "id": 15907, "name": "port", "variant": "declaration", "kind": 1024, @@ -54878,7 +59880,7 @@ } }, { - "id": 15934, + "id": 15908, "name": "user", "variant": "declaration", "kind": 1024, @@ -54891,7 +59893,7 @@ } }, { - "id": 15935, + "id": 15909, "name": "password", "variant": "declaration", "kind": 1024, @@ -54904,7 +59906,7 @@ } }, { - "id": 15936, + "id": 15910, "name": "database", "variant": "declaration", "kind": 1024, @@ -54917,7 +59919,7 @@ } }, { - "id": 15937, + "id": 15911, "name": "driverOptions", "variant": "declaration", "kind": 1024, @@ -54949,14 +59951,14 @@ { "type": "reflection", "declaration": { - "id": 15938, + "id": 15912, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15939, + "id": 15913, "name": "connection", "variant": "declaration", "kind": 1024, @@ -54988,7 +59990,7 @@ { "title": "Properties", "children": [ - 15939 + 15913 ] } ] @@ -54998,7 +60000,7 @@ } }, { - "id": 15940, + "id": 15914, "name": "debug", "variant": "declaration", "kind": 1024, @@ -55011,7 +60013,7 @@ } }, { - "id": 15941, + "id": 15915, "name": "pool", "variant": "declaration", "kind": 1024, @@ -55043,17 +60045,17 @@ { "title": "Properties", "children": [ - 15929, - 15930, - 15931, - 15932, - 15933, - 15934, - 15935, - 15936, - 15937, - 15940, - 15941 + 15903, + 15904, + 15905, + 15906, + 15907, + 15908, + 15909, + 15910, + 15911, + 15914, + 15915 ] } ] @@ -55065,13 +60067,13 @@ { "title": "Properties", "children": [ - 15927 + 15901 ] } ] }, { - "id": 15942, + "id": 15916, "name": "ModuleServiceInitializeCustomDataLayerOptions", "variant": "declaration", "kind": 2097152, @@ -55079,14 +60081,14 @@ "type": { "type": "reflection", "declaration": { - "id": 15943, + "id": 15917, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 15944, + "id": 15918, "name": "manager", "variant": "declaration", "kind": 1024, @@ -55099,7 +60101,7 @@ } }, { - "id": 15945, + "id": 15919, "name": "repositories", "variant": "declaration", "kind": 1024, @@ -55109,21 +60111,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15946, + "id": 15920, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 15947, + "id": 15921, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 15948, + "id": 15922, "name": "key", "variant": "param", "kind": 32768, @@ -55136,11 +60138,11 @@ ], "type": { "type": "reference", - "target": 15792, + "target": 15765, "typeArguments": [ { "type": "reference", - "target": 14228, + "target": 14112, "name": "RepositoryService", "package": "@medusajs/types" } @@ -55158,8 +60160,8 @@ { "title": "Properties", "children": [ - 15944, - 15945 + 15918, + 15919 ] } ] @@ -55167,7 +60169,7 @@ } }, { - "id": 15949, + "id": 15923, "name": "ModuleBootstrapDeclaration", "variant": "declaration", "kind": 2097152, @@ -55177,13 +60179,13 @@ "types": [ { "type": "reference", - "target": 15808, + "target": 15781, "name": "InternalModuleDeclaration", "package": "@medusajs/types" }, { "type": "reference", - "target": 15819, + "target": 15792, "name": "ExternalModuleDeclaration", "package": "@medusajs/types" } @@ -55191,7 +60193,7 @@ } }, { - "id": 15950, + "id": 15924, "name": "RemoteQueryFunction", "variant": "declaration", "kind": 2097152, @@ -55199,21 +60201,21 @@ "type": { "type": "reflection", "declaration": { - "id": 15951, + "id": 15925, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 15952, + "id": 15926, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15953, + "id": 15927, "name": "query", "variant": "param", "kind": 32768, @@ -55227,7 +60229,7 @@ }, { "type": "reference", - "target": 16737, + "target": 16736, "name": "RemoteJoinerQuery", "package": "@medusajs/types" }, @@ -55239,7 +60241,7 @@ } }, { - "id": 15954, + "id": 15928, "name": "variables", "variant": "param", "kind": 32768, @@ -55267,7 +60269,7 @@ } }, { - "id": 15955, + "id": 15929, "name": "options", "variant": "param", "kind": 32768, @@ -55276,7 +60278,7 @@ }, "type": { "type": "reference", - "target": 16755, + "target": 16754, "name": "RemoteJoinerOptions", "package": "@medusajs/types" } @@ -55312,7 +60314,7 @@ } }, { - "id": 15956, + "id": 15930, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -55320,58 +60322,58 @@ "extendedBy": [ { "type": "reference", - "target": 14468, + "target": 14345, "name": "IFileModuleService" }, { "type": "reference", - "target": 15524, + "target": 15497, "name": "IInventoryService" }, { "type": "reference", - "target": 16131, + "target": 16105, "name": "INotificationModuleService" }, { "type": "reference", - "target": 16286, + "target": 16260, "name": "IStockLocationService" }, { "type": "reference", - "target": 16510, + "target": 16484, "name": "IWorkflowEngineService" }, { "type": "reference", - "target": 16776, + "target": 16775, "name": "ILinkModule" } ] }, { - "id": 15970, + "id": 15944, "name": "IMedusaInternalService", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 15971, + "id": 15945, "name": "__container__", "variant": "declaration", "kind": 262144, "flags": {}, "getSignature": { - "id": 15972, + "id": 15946, "name": "__container__", "variant": "signature", "kind": 524288, "flags": {}, "type": { "type": "reference", - "target": 16074, + "target": 16048, "name": "TContainer", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TContainer", @@ -55380,21 +60382,21 @@ } }, { - "id": 15973, + "id": 15947, "name": "retrieve", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15974, + "id": 15948, "name": "retrieve", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15975, + "id": 15949, "name": "idOrObject", "variant": "param", "kind": 32768, @@ -55405,7 +60407,7 @@ } }, { - "id": 15976, + "id": 15950, "name": "config", "variant": "param", "kind": 32768, @@ -55414,7 +60416,7 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "intrinsic", @@ -55426,7 +60428,7 @@ } }, { - "id": 15977, + "id": 15951, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -55435,7 +60437,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -55450,11 +60452,11 @@ "typeArguments": [ { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -55470,14 +60472,14 @@ } }, { - "id": 15978, + "id": 15952, "name": "retrieve", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15979, + "id": 15953, "name": "idOrObject", "variant": "param", "kind": 32768, @@ -55488,7 +60490,7 @@ } }, { - "id": 15980, + "id": 15954, "name": "config", "variant": "param", "kind": 32768, @@ -55497,7 +60499,7 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "intrinsic", @@ -55509,7 +60511,7 @@ } }, { - "id": 15981, + "id": 15955, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -55518,7 +60520,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -55533,11 +60535,11 @@ "typeArguments": [ { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -55555,21 +60557,21 @@ ] }, { - "id": 15982, + "id": 15956, "name": "list", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15983, + "id": 15957, "name": "list", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15984, + "id": 15958, "name": "filters", "variant": "param", "kind": 32768, @@ -55582,7 +60584,7 @@ { "type": "reflection", "declaration": { - "id": 15985, + "id": 15959, "name": "__type", "variant": "declaration", "kind": 65536, @@ -55591,12 +60593,12 @@ }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 15986, + "id": 15960, "name": "__type", "variant": "declaration", "kind": 65536, @@ -55611,7 +60613,7 @@ } }, { - "id": 15987, + "id": 15961, "name": "config", "variant": "param", "kind": 32768, @@ -55620,7 +60622,7 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "intrinsic", @@ -55632,7 +60634,7 @@ } }, { - "id": 15988, + "id": 15962, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -55641,7 +60643,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -55658,11 +60660,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -55681,21 +60683,21 @@ ] }, { - "id": 15989, + "id": 15963, "name": "listAndCount", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15990, + "id": 15964, "name": "listAndCount", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15991, + "id": 15965, "name": "filters", "variant": "param", "kind": 32768, @@ -55708,7 +60710,7 @@ { "type": "reflection", "declaration": { - "id": 15992, + "id": 15966, "name": "__type", "variant": "declaration", "kind": 65536, @@ -55717,12 +60719,12 @@ }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 15993, + "id": 15967, "name": "__type", "variant": "declaration", "kind": 65536, @@ -55737,7 +60739,7 @@ } }, { - "id": 15994, + "id": 15968, "name": "config", "variant": "param", "kind": 32768, @@ -55746,7 +60748,7 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "intrinsic", @@ -55758,7 +60760,7 @@ } }, { - "id": 15995, + "id": 15969, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -55767,7 +60769,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -55787,11 +60789,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -55816,21 +60818,21 @@ ] }, { - "id": 15996, + "id": 15970, "name": "create", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 15997, + "id": 15971, "name": "create", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 15998, + "id": 15972, "name": "data", "variant": "param", "kind": 32768, @@ -55844,7 +60846,7 @@ } }, { - "id": 15999, + "id": 15973, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -55853,7 +60855,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -55870,11 +60872,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -55891,14 +60893,14 @@ } }, { - "id": 16000, + "id": 15974, "name": "create", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16001, + "id": 15975, "name": "data", "variant": "param", "kind": 32768, @@ -55909,7 +60911,7 @@ } }, { - "id": 16002, + "id": 15976, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -55918,7 +60920,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -55933,11 +60935,11 @@ "typeArguments": [ { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -55955,21 +60957,21 @@ ] }, { - "id": 16003, + "id": 15977, "name": "update", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16004, + "id": 15978, "name": "update", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16005, + "id": 15979, "name": "data", "variant": "param", "kind": 32768, @@ -55983,7 +60985,7 @@ } }, { - "id": 16006, + "id": 15980, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -55992,7 +60994,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -56009,11 +61011,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -56030,14 +61032,14 @@ } }, { - "id": 16007, + "id": 15981, "name": "update", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16008, + "id": 15982, "name": "data", "variant": "param", "kind": 32768, @@ -56048,7 +61050,7 @@ } }, { - "id": 16009, + "id": 15983, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -56057,7 +61059,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -56072,11 +61074,11 @@ "typeArguments": [ { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -56092,14 +61094,14 @@ } }, { - "id": 16010, + "id": 15984, "name": "update", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16011, + "id": 15985, "name": "selectorAndData", "variant": "param", "kind": 32768, @@ -56107,14 +61109,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16012, + "id": 15986, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16013, + "id": 15987, "name": "selector", "variant": "declaration", "kind": 1024, @@ -56125,7 +61127,7 @@ { "type": "reflection", "declaration": { - "id": 16014, + "id": 15988, "name": "__type", "variant": "declaration", "kind": 65536, @@ -56134,12 +61136,12 @@ }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 16015, + "id": 15989, "name": "__type", "variant": "declaration", "kind": 65536, @@ -56154,7 +61156,7 @@ } }, { - "id": 16016, + "id": 15990, "name": "data", "variant": "declaration", "kind": 1024, @@ -56169,8 +61171,8 @@ { "title": "Properties", "children": [ - 16013, - 16016 + 15987, + 15990 ] } ] @@ -56178,7 +61180,7 @@ } }, { - "id": 16017, + "id": 15991, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -56187,7 +61189,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -56204,11 +61206,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -56225,14 +61227,14 @@ } }, { - "id": 16018, + "id": 15992, "name": "update", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16019, + "id": 15993, "name": "selectorAndData", "variant": "param", "kind": 32768, @@ -56242,14 +61244,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 16020, + "id": 15994, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16021, + "id": 15995, "name": "selector", "variant": "declaration", "kind": 1024, @@ -56260,7 +61262,7 @@ { "type": "reflection", "declaration": { - "id": 16022, + "id": 15996, "name": "__type", "variant": "declaration", "kind": 65536, @@ -56269,12 +61271,12 @@ }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 16023, + "id": 15997, "name": "__type", "variant": "declaration", "kind": 65536, @@ -56289,7 +61291,7 @@ } }, { - "id": 16024, + "id": 15998, "name": "data", "variant": "declaration", "kind": 1024, @@ -56304,8 +61306,8 @@ { "title": "Properties", "children": [ - 16021, - 16024 + 15995, + 15998 ] } ] @@ -56314,7 +61316,7 @@ } }, { - "id": 16025, + "id": 15999, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -56323,7 +61325,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -56340,11 +61342,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -56363,21 +61365,21 @@ ] }, { - "id": 16026, + "id": 16000, "name": "delete", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16027, + "id": 16001, "name": "delete", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16028, + "id": 16002, "name": "idOrSelector", "variant": "param", "kind": 32768, @@ -56388,7 +61390,7 @@ } }, { - "id": 16029, + "id": 16003, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -56397,7 +61399,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -56420,14 +61422,14 @@ } }, { - "id": 16030, + "id": 16004, "name": "delete", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16031, + "id": 16005, "name": "idOrSelector", "variant": "param", "kind": 32768, @@ -56441,7 +61443,7 @@ } }, { - "id": 16032, + "id": 16006, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -56450,7 +61452,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -56473,14 +61475,14 @@ } }, { - "id": 16033, + "id": 16007, "name": "delete", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16034, + "id": 16008, "name": "idOrSelector", "variant": "param", "kind": 32768, @@ -56491,7 +61493,7 @@ } }, { - "id": 16035, + "id": 16009, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -56500,7 +61502,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -56523,14 +61525,14 @@ } }, { - "id": 16036, + "id": 16010, "name": "delete", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16037, + "id": 16011, "name": "idOrSelector", "variant": "param", "kind": 32768, @@ -56544,7 +61546,7 @@ } }, { - "id": 16038, + "id": 16012, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -56553,7 +61555,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -56576,14 +61578,14 @@ } }, { - "id": 16039, + "id": 16013, "name": "delete", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16040, + "id": 16014, "name": "idOrSelector", "variant": "param", "kind": 32768, @@ -56591,14 +61593,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16041, + "id": 16015, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16042, + "id": 16016, "name": "selector", "variant": "declaration", "kind": 1024, @@ -56609,7 +61611,7 @@ { "type": "reflection", "declaration": { - "id": 16043, + "id": 16017, "name": "__type", "variant": "declaration", "kind": 65536, @@ -56618,12 +61620,12 @@ }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reflection", "declaration": { - "id": 16044, + "id": 16018, "name": "__type", "variant": "declaration", "kind": 65536, @@ -56642,7 +61644,7 @@ { "title": "Properties", "children": [ - 16042 + 16016 ] } ] @@ -56650,7 +61652,7 @@ } }, { - "id": 16045, + "id": 16019, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -56659,7 +61661,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -56684,21 +61686,21 @@ ] }, { - "id": 16046, + "id": 16020, "name": "softDelete", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16047, + "id": 16021, "name": "softDelete", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16048, + "id": 16022, "name": "idsOrFilter", "variant": "param", "kind": 32768, @@ -56720,7 +61722,7 @@ { "type": "reflection", "declaration": { - "id": 16049, + "id": 16023, "name": "__type", "variant": "declaration", "kind": 65536, @@ -56732,7 +61734,7 @@ "elementType": { "type": "reflection", "declaration": { - "id": 16050, + "id": 16024, "name": "__type", "variant": "declaration", "kind": 65536, @@ -56744,7 +61746,7 @@ } }, { - "id": 16051, + "id": 16025, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -56753,7 +61755,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -56773,11 +61775,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -56820,21 +61822,21 @@ ] }, { - "id": 16052, + "id": 16026, "name": "restore", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16053, + "id": 16027, "name": "restore", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16054, + "id": 16028, "name": "idsOrFilter", "variant": "param", "kind": 32768, @@ -56852,7 +61854,7 @@ { "type": "reflection", "declaration": { - "id": 16055, + "id": 16029, "name": "__type", "variant": "declaration", "kind": 65536, @@ -56863,7 +61865,7 @@ } }, { - "id": 16056, + "id": 16030, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -56872,7 +61874,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -56892,11 +61894,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -56939,21 +61941,21 @@ ] }, { - "id": 16057, + "id": 16031, "name": "upsert", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16058, + "id": 16032, "name": "upsert", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16059, + "id": 16033, "name": "data", "variant": "param", "kind": 32768, @@ -56967,7 +61969,7 @@ } }, { - "id": 16060, + "id": 16034, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -56976,7 +61978,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -56993,11 +61995,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -57014,14 +62016,14 @@ } }, { - "id": 16061, + "id": 16035, "name": "upsert", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16062, + "id": 16036, "name": "data", "variant": "param", "kind": 32768, @@ -57032,7 +62034,7 @@ } }, { - "id": 16063, + "id": 16037, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -57041,7 +62043,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -57056,11 +62058,11 @@ "typeArguments": [ { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -57078,21 +62080,21 @@ ] }, { - "id": 16064, + "id": 16038, "name": "upsertWithReplace", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16065, + "id": 16039, "name": "upsertWithReplace", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16066, + "id": 16040, "name": "data", "variant": "param", "kind": 32768, @@ -57106,7 +62108,7 @@ } }, { - "id": 16067, + "id": 16041, "name": "config", "variant": "param", "kind": 32768, @@ -57115,15 +62117,15 @@ }, "type": { "type": "reference", - "target": 14220, + "target": 14104, "typeArguments": [ { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -57139,7 +62141,7 @@ } }, { - "id": 16068, + "id": 16042, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -57148,7 +62150,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -57164,14 +62166,14 @@ { "type": "reflection", "declaration": { - "id": 16069, + "id": 16043, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16070, + "id": 16044, "name": "entities", "variant": "declaration", "kind": 1024, @@ -57180,11 +62182,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 16667, + "target": 16666, "typeArguments": [ { "type": "reference", - "target": 16072, + "target": 16046, "name": "TEntity", "package": "@medusajs/types", "qualifiedName": "IMedusaInternalService.TEntity", @@ -57197,14 +62199,14 @@ } }, { - "id": 16071, + "id": 16045, "name": "performedActions", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 14223, + "target": 14107, "name": "PerformedActions", "package": "@medusajs/types" } @@ -57214,8 +62216,8 @@ { "title": "Properties", "children": [ - 16070, - 16071 + 16044, + 16045 ] } ] @@ -57233,28 +62235,28 @@ { "title": "Accessors", "children": [ - 15971 + 15945 ] }, { "title": "Methods", "children": [ - 15973, - 15982, - 15989, - 15996, - 16003, + 15947, + 15956, + 15963, + 15970, + 15977, + 16000, + 16020, 16026, - 16046, - 16052, - 16057, - 16064 + 16031, + 16038 ] } ], "typeParameters": [ { - "id": 16072, + "id": 16046, "name": "TEntity", "variant": "typeParam", "kind": 131072, @@ -57262,7 +62264,7 @@ "type": { "type": "reflection", "declaration": { - "id": 16073, + "id": 16047, "name": "__type", "variant": "declaration", "kind": 65536, @@ -57271,7 +62273,7 @@ } }, { - "id": 16074, + "id": 16048, "name": "TContainer", "variant": "typeParam", "kind": 131072, @@ -57288,7 +62290,7 @@ ] }, { - "id": 16075, + "id": 16049, "name": "ModuleProviderExports", "variant": "declaration", "kind": 2097152, @@ -57296,14 +62298,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16076, + "id": 16050, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16077, + "id": 16051, "name": "services", "variant": "declaration", "kind": 1024, @@ -57312,7 +62314,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15792, + "target": 15765, "typeArguments": [ { "type": "intrinsic", @@ -57329,7 +62331,7 @@ { "title": "Properties", "children": [ - 16077 + 16051 ] } ] @@ -57337,7 +62339,7 @@ } }, { - "id": 16078, + "id": 16052, "name": "ModuleProvider", "variant": "declaration", "kind": 2097152, @@ -57345,14 +62347,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16079, + "id": 16053, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16080, + "id": 16054, "name": "resolve", "variant": "declaration", "kind": 1024, @@ -57366,7 +62368,7 @@ }, { "type": "reference", - "target": 16075, + "target": 16049, "name": "ModuleProviderExports", "package": "@medusajs/types" } @@ -57374,24 +62376,24 @@ } }, { - "id": 16081, - "name": "provider_name", + "id": 16055, + "name": "id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 16082, + "id": 16056, "name": "options", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "reference", "target": { @@ -57417,9 +62419,9 @@ { "title": "Properties", "children": [ - 16080, - 16081, - 16082 + 16054, + 16055, + 16056 ] } ] @@ -57431,43 +62433,43 @@ { "title": "Interfaces", "children": [ - 15926, - 15956, - 15970 + 15900, + 15930, + 15944 ] }, { "title": "Type Aliases", "children": [ + 15765, + 15772, + 15773, + 15774, + 15781, 15792, - 15799, - 15800, - 15801, - 15808, - 15819, - 15831, - 15839, - 15849, - 15856, - 15861, - 15865, - 15872, - 15877, - 15881, + 15804, + 15812, + 15822, + 15829, + 15834, + 15838, + 15845, + 15850, + 15854, + 15860, + 15884, 15887, - 15911, - 15914, - 15942, - 15949, - 15950, - 16075, - 16078 + 15916, + 15923, + 15924, + 16049, + 16052 ] } ] }, { - "id": 17065, + "id": 17095, "name": "ModuleDeclaration", "variant": "declaration", "kind": 2097152, @@ -57477,13 +62479,13 @@ "types": [ { "type": "reference", - "target": 15819, + "target": 15792, "name": "ExternalModuleDeclaration", "package": "@medusajs/types" }, { "type": "reference", - "target": 15808, + "target": 15781, "name": "InternalModuleDeclaration", "package": "@medusajs/types" } @@ -57491,14 +62493,14 @@ } }, { - "id": 16083, + "id": 16057, "name": "NotificationTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 16084, + "id": 16058, "name": "NotificationDTO", "variant": "declaration", "kind": 256, @@ -57513,7 +62515,7 @@ }, "children": [ { - "id": 16085, + "id": 16059, "name": "id", "variant": "declaration", "kind": 1024, @@ -57532,7 +62534,7 @@ } }, { - "id": 16086, + "id": 16060, "name": "to", "variant": "declaration", "kind": 1024, @@ -57551,7 +62553,7 @@ } }, { - "id": 16087, + "id": 16061, "name": "channel", "variant": "declaration", "kind": 1024, @@ -57570,7 +62572,7 @@ } }, { - "id": 16088, + "id": 16062, "name": "template", "variant": "declaration", "kind": 1024, @@ -57589,7 +62591,7 @@ } }, { - "id": 16089, + "id": 16063, "name": "data", "variant": "declaration", "kind": 1024, @@ -57632,7 +62634,7 @@ } }, { - "id": 16090, + "id": 16064, "name": "trigger_type", "variant": "declaration", "kind": 1024, @@ -57662,7 +62664,7 @@ } }, { - "id": 16091, + "id": 16065, "name": "resource_id", "variant": "declaration", "kind": 1024, @@ -57692,7 +62694,7 @@ } }, { - "id": 16092, + "id": 16066, "name": "resource_type", "variant": "declaration", "kind": 1024, @@ -57722,7 +62724,7 @@ } }, { - "id": 16093, + "id": 16067, "name": "receiver_id", "variant": "declaration", "kind": 1024, @@ -57752,7 +62754,7 @@ } }, { - "id": 16094, + "id": 16068, "name": "original_notification_id", "variant": "declaration", "kind": 1024, @@ -57782,7 +62784,7 @@ } }, { - "id": 16095, + "id": 16069, "name": "external_id", "variant": "declaration", "kind": 1024, @@ -57812,7 +62814,7 @@ } }, { - "id": 16096, + "id": 16070, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -57831,7 +62833,7 @@ } }, { - "id": 16097, + "id": 16071, "name": "provider", "variant": "declaration", "kind": 1024, @@ -57846,13 +62848,13 @@ }, "type": { "type": "reference", - "target": 16099, + "target": 16073, "name": "NotificationProviderDTO", "package": "@medusajs/types" } }, { - "id": 16098, + "id": 16072, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -57880,26 +62882,26 @@ { "title": "Properties", "children": [ - 16085, - 16086, - 16087, - 16088, - 16089, - 16090, - 16091, - 16092, - 16093, - 16094, - 16095, - 16096, - 16097, - 16098 + 16059, + 16060, + 16061, + 16062, + 16063, + 16064, + 16065, + 16066, + 16067, + 16068, + 16069, + 16070, + 16071, + 16072 ] } ] }, { - "id": 16099, + "id": 16073, "name": "NotificationProviderDTO", "variant": "declaration", "kind": 256, @@ -57914,7 +62916,7 @@ }, "children": [ { - "id": 16100, + "id": 16074, "name": "id", "variant": "declaration", "kind": 1024, @@ -57933,7 +62935,7 @@ } }, { - "id": 16101, + "id": 16075, "name": "handle", "variant": "declaration", "kind": 1024, @@ -57952,7 +62954,7 @@ } }, { - "id": 16102, + "id": 16076, "name": "name", "variant": "declaration", "kind": 1024, @@ -57971,7 +62973,7 @@ } }, { - "id": 16103, + "id": 16077, "name": "channels", "variant": "declaration", "kind": 1024, @@ -57997,16 +62999,16 @@ { "title": "Properties", "children": [ - 16100, - 16101, - 16102, - 16103 + 16074, + 16075, + 16076, + 16077 ] } ] }, { - "id": 16104, + "id": 16078, "name": "FilterableNotificationProps", "variant": "declaration", "kind": 256, @@ -58021,7 +63023,7 @@ }, "children": [ { - "id": 16114, + "id": 16088, "name": "$and", "variant": "declaration", "kind": 1024, @@ -58044,17 +63046,17 @@ "types": [ { "type": "reference", - "target": 16104, + "target": 16078, "name": "FilterableNotificationProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 16104, + "target": 16078, "name": "FilterableNotificationProps", "package": "@medusajs/types" } @@ -58067,12 +63069,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14197, + "target": 14081, "name": "BaseFilterable.$and" } }, { - "id": 16115, + "id": 16089, "name": "$or", "variant": "declaration", "kind": 1024, @@ -58095,17 +63097,17 @@ "types": [ { "type": "reference", - "target": 16104, + "target": 16078, "name": "FilterableNotificationProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 16104, + "target": 16078, "name": "FilterableNotificationProps", "package": "@medusajs/types" } @@ -58118,12 +63120,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14198, + "target": 14082, "name": "BaseFilterable.$or" } }, { - "id": 16105, + "id": 16079, "name": "q", "variant": "declaration", "kind": 1024, @@ -58144,7 +63146,7 @@ } }, { - "id": 16106, + "id": 16080, "name": "to", "variant": "declaration", "kind": 1024, @@ -58175,7 +63177,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "union", @@ -58201,7 +63203,7 @@ } }, { - "id": 16107, + "id": 16081, "name": "channel", "variant": "declaration", "kind": 1024, @@ -58232,7 +63234,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "union", @@ -58258,7 +63260,7 @@ } }, { - "id": 16108, + "id": 16082, "name": "template", "variant": "declaration", "kind": 1024, @@ -58289,7 +63291,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "union", @@ -58315,7 +63317,7 @@ } }, { - "id": 16109, + "id": 16083, "name": "trigger_type", "variant": "declaration", "kind": 1024, @@ -58346,7 +63348,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "union", @@ -58372,7 +63374,7 @@ } }, { - "id": 16110, + "id": 16084, "name": "resource_id", "variant": "declaration", "kind": 1024, @@ -58403,7 +63405,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "union", @@ -58429,7 +63431,7 @@ } }, { - "id": 16111, + "id": 16085, "name": "resource_type", "variant": "declaration", "kind": 1024, @@ -58460,7 +63462,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "union", @@ -58486,7 +63488,7 @@ } }, { - "id": 16112, + "id": 16086, "name": "receiver_id", "variant": "declaration", "kind": 1024, @@ -58517,7 +63519,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "union", @@ -58543,7 +63545,7 @@ } }, { - "id": 16113, + "id": 16087, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -58560,7 +63562,7 @@ }, "type": { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -58576,28 +63578,28 @@ { "title": "Properties", "children": [ - 16114, - 16115, - 16105, - 16106, - 16107, - 16108, - 16109, - 16110, - 16111, - 16112, - 16113 + 16088, + 16089, + 16079, + 16080, + 16081, + 16082, + 16083, + 16084, + 16085, + 16086, + 16087 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 16104, + "target": 16078, "name": "FilterableNotificationProps", "package": "@medusajs/types" } @@ -58608,7 +63610,7 @@ ] }, { - "id": 16120, + "id": 16094, "name": "CreateNotificationDTO", "variant": "declaration", "kind": 256, @@ -58623,7 +63625,7 @@ }, "children": [ { - "id": 16121, + "id": 16095, "name": "to", "variant": "declaration", "kind": 1024, @@ -58642,7 +63644,7 @@ } }, { - "id": 16122, + "id": 16096, "name": "channel", "variant": "declaration", "kind": 1024, @@ -58661,7 +63663,7 @@ } }, { - "id": 16123, + "id": 16097, "name": "template", "variant": "declaration", "kind": 1024, @@ -58680,7 +63682,7 @@ } }, { - "id": 16124, + "id": 16098, "name": "data", "variant": "declaration", "kind": 1024, @@ -58725,7 +63727,7 @@ } }, { - "id": 16125, + "id": 16099, "name": "trigger_type", "variant": "declaration", "kind": 1024, @@ -58755,7 +63757,7 @@ } }, { - "id": 16126, + "id": 16100, "name": "resource_id", "variant": "declaration", "kind": 1024, @@ -58785,7 +63787,7 @@ } }, { - "id": 16127, + "id": 16101, "name": "resource_type", "variant": "declaration", "kind": 1024, @@ -58815,7 +63817,7 @@ } }, { - "id": 16128, + "id": 16102, "name": "receiver_id", "variant": "declaration", "kind": 1024, @@ -58845,7 +63847,7 @@ } }, { - "id": 16129, + "id": 16103, "name": "original_notification_id", "variant": "declaration", "kind": 1024, @@ -58875,7 +63877,7 @@ } }, { - "id": 16130, + "id": 16104, "name": "idempotency_key", "variant": "declaration", "kind": 1024, @@ -58909,22 +63911,22 @@ { "title": "Properties", "children": [ - 16121, - 16122, - 16123, - 16124, - 16125, - 16126, - 16127, - 16128, - 16129, - 16130 + 16095, + 16096, + 16097, + 16098, + 16099, + 16100, + 16101, + 16102, + 16103, + 16104 ] } ] }, { - "id": 16167, + "id": 16141, "name": "ProviderSendNotificationDTO", "variant": "declaration", "kind": 256, @@ -58939,7 +63941,7 @@ }, "children": [ { - "id": 16168, + "id": 16142, "name": "to", "variant": "declaration", "kind": 1024, @@ -58958,7 +63960,7 @@ } }, { - "id": 16169, + "id": 16143, "name": "channel", "variant": "declaration", "kind": 1024, @@ -58977,7 +63979,7 @@ } }, { - "id": 16170, + "id": 16144, "name": "template", "variant": "declaration", "kind": 1024, @@ -58996,7 +63998,7 @@ } }, { - "id": 16171, + "id": 16145, "name": "data", "variant": "declaration", "kind": 1024, @@ -59045,16 +64047,16 @@ { "title": "Properties", "children": [ - 16168, - 16169, - 16170, - 16171 + 16142, + 16143, + 16144, + 16145 ] } ] }, { - "id": 16172, + "id": 16146, "name": "ProviderSendNotificationResultsDTO", "variant": "declaration", "kind": 256, @@ -59069,7 +64071,7 @@ }, "children": [ { - "id": 16173, + "id": 16147, "name": "id", "variant": "declaration", "kind": 1024, @@ -59094,27 +64096,27 @@ { "title": "Properties", "children": [ - 16173 + 16147 ] } ] }, { - "id": 16174, + "id": 16148, "name": "INotificationProvider", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16175, + "id": 16149, "name": "send", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16176, + "id": 16150, "name": "send", "variant": "signature", "kind": 4096, @@ -59140,7 +64142,7 @@ }, "parameters": [ { - "id": 16177, + "id": 16151, "name": "notification", "variant": "param", "kind": 32768, @@ -59155,7 +64157,7 @@ }, "type": { "type": "reference", - "target": 16167, + "target": 16141, "name": "ProviderSendNotificationDTO", "package": "@medusajs/types" } @@ -59170,7 +64172,7 @@ "typeArguments": [ { "type": "reference", - "target": 16172, + "target": 16146, "name": "ProviderSendNotificationResultsDTO", "package": "@medusajs/types" } @@ -59186,27 +64188,27 @@ { "title": "Methods", "children": [ - 16175 + 16149 ] } ] }, { - "id": 16116, + "id": 16090, "name": "LocalNotificationServiceOptions", "variant": "declaration", "kind": 256, "flags": {} }, { - "id": 16117, + "id": 16091, "name": "SendgridNotificationServiceOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16118, + "id": 16092, "name": "api_key", "variant": "declaration", "kind": 1024, @@ -59217,7 +64219,7 @@ } }, { - "id": 16119, + "id": 16093, "name": "from", "variant": "declaration", "kind": 1024, @@ -59232,14 +64234,14 @@ { "title": "Properties", "children": [ - 16118, - 16119 + 16092, + 16093 ] } ] }, { - "id": 16131, + "id": 16105, "name": "INotificationModuleService", "variant": "declaration", "kind": 256, @@ -59254,14 +64256,14 @@ }, "children": [ { - "id": 16132, + "id": 16106, "name": "createNotifications", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16133, + "id": 16107, "name": "createNotifications", "variant": "signature", "kind": 4096, @@ -59296,7 +64298,7 @@ }, "parameters": [ { - "id": 16134, + "id": 16108, "name": "data", "variant": "param", "kind": 32768, @@ -59313,14 +64315,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 16120, + "target": 16094, "name": "CreateNotificationDTO", "package": "@medusajs/types" } } }, { - "id": 16135, + "id": 16109, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -59337,7 +64339,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -59354,7 +64356,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16084, + "target": 16058, "name": "NotificationDTO", "package": "@medusajs/types" } @@ -59365,7 +64367,7 @@ } }, { - "id": 16136, + "id": 16110, "name": "createNotifications", "variant": "signature", "kind": 4096, @@ -59400,7 +64402,7 @@ }, "parameters": [ { - "id": 16137, + "id": 16111, "name": "data", "variant": "param", "kind": 32768, @@ -59415,13 +64417,13 @@ }, "type": { "type": "reference", - "target": 16120, + "target": 16094, "name": "CreateNotificationDTO", "package": "@medusajs/types" } }, { - "id": 16138, + "id": 16112, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -59438,7 +64440,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -59453,7 +64455,7 @@ "typeArguments": [ { "type": "reference", - "target": 16084, + "target": 16058, "name": "NotificationDTO", "package": "@medusajs/types" } @@ -59465,14 +64467,14 @@ ] }, { - "id": 16139, + "id": 16113, "name": "retrieveNotification", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16140, + "id": 16114, "name": "retrieveNotification", "variant": "signature", "kind": 4096, @@ -59519,7 +64521,7 @@ }, "parameters": [ { - "id": 16141, + "id": 16115, "name": "notificationId", "variant": "param", "kind": 32768, @@ -59538,7 +64540,7 @@ } }, { - "id": 16142, + "id": 16116, "name": "config", "variant": "param", "kind": 32768, @@ -59571,11 +64573,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 16084, + "target": 16058, "name": "NotificationDTO", "package": "@medusajs/types" } @@ -59585,7 +64587,7 @@ } }, { - "id": 16143, + "id": 16117, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -59602,7 +64604,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -59617,7 +64619,7 @@ "typeArguments": [ { "type": "reference", - "target": 16084, + "target": 16058, "name": "NotificationDTO", "package": "@medusajs/types" } @@ -59629,14 +64631,14 @@ ] }, { - "id": 16144, + "id": 16118, "name": "listNotifications", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16145, + "id": 16119, "name": "listNotifications", "variant": "signature", "kind": 4096, @@ -59723,7 +64725,7 @@ }, "parameters": [ { - "id": 16146, + "id": 16120, "name": "filters", "variant": "param", "kind": 32768, @@ -59740,13 +64742,13 @@ }, "type": { "type": "reference", - "target": 16104, + "target": 16078, "name": "FilterableNotificationProps", "package": "@medusajs/types" } }, { - "id": 16147, + "id": 16121, "name": "config", "variant": "param", "kind": 32768, @@ -59779,11 +64781,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 16084, + "target": 16058, "name": "NotificationDTO", "package": "@medusajs/types" } @@ -59793,7 +64795,7 @@ } }, { - "id": 16148, + "id": 16122, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -59810,7 +64812,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -59827,7 +64829,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16084, + "target": 16058, "name": "NotificationDTO", "package": "@medusajs/types" } @@ -59840,14 +64842,14 @@ ] }, { - "id": 16149, + "id": 16123, "name": "listAndCountNotifications", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16150, + "id": 16124, "name": "listAndCountNotifications", "variant": "signature", "kind": 4096, @@ -59934,7 +64936,7 @@ }, "parameters": [ { - "id": 16151, + "id": 16125, "name": "filters", "variant": "param", "kind": 32768, @@ -59951,13 +64953,13 @@ }, "type": { "type": "reference", - "target": 16104, + "target": 16078, "name": "FilterableNotificationProps", "package": "@medusajs/types" } }, { - "id": 16152, + "id": 16126, "name": "config", "variant": "param", "kind": 32768, @@ -59990,11 +64992,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 16084, + "target": 16058, "name": "NotificationDTO", "package": "@medusajs/types" } @@ -60004,7 +65006,7 @@ } }, { - "id": 16153, + "id": 16127, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -60021,7 +65023,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -60041,7 +65043,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16084, + "target": 16058, "name": "NotificationDTO", "package": "@medusajs/types" } @@ -60064,17 +65066,17 @@ { "title": "Methods", "children": [ - 16132, - 16139, - 16144, - 16149 + 16106, + 16113, + 16118, + 16123 ] } ], "extendedTypes": [ { "type": "reference", - "target": 15956, + "target": 15930, "name": "IModuleService", "package": "@medusajs/types" } @@ -60085,29 +65087,29 @@ { "title": "Interfaces", "children": [ - 16084, - 16099, - 16104, - 16120, - 16167, - 16172, - 16174, - 16116, - 16117, - 16131 + 16058, + 16073, + 16078, + 16094, + 16141, + 16146, + 16148, + 16090, + 16091, + 16105 ] } ] }, { - "id": 16824, + "id": 16823, "name": "ProductCategoryTransformOptions", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16825, + "id": 16824, "name": "includeDescendantsTree", "variant": "declaration", "kind": 1024, @@ -60120,7 +65122,7 @@ } }, { - "id": 16826, + "id": 16825, "name": "includeAncestorsTree", "variant": "declaration", "kind": 1024, @@ -60137,29 +65139,29 @@ { "title": "Properties", "children": [ - 16825, - 16826 + 16824, + 16825 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14002, + "target": 13888, "name": "RepositoryTransformOptions", "package": "@medusajs/types" } ] }, { - "id": 16178, + "id": 16152, "name": "SearchTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 16179, + "id": 16153, "name": "IndexSettings", "variant": "declaration", "kind": 2097152, @@ -60167,14 +65169,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16180, + "id": 16154, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16181, + "id": 16155, "name": "indexSettings", "variant": "declaration", "kind": 1024, @@ -60216,7 +65218,7 @@ } }, { - "id": 16182, + "id": 16156, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -60237,7 +65239,7 @@ } }, { - "id": 16183, + "id": 16157, "name": "transformer", "variant": "declaration", "kind": 1024, @@ -60255,21 +65257,21 @@ "type": { "type": "reflection", "declaration": { - "id": 16184, + "id": 16158, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 16185, + "id": 16159, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16186, + "id": 16160, "name": "document", "variant": "param", "kind": 32768, @@ -60294,9 +65296,9 @@ { "title": "Properties", "children": [ - 16181, - 16182, - 16183 + 16155, + 16156, + 16157 ] } ] @@ -60304,14 +65306,14 @@ } }, { - "id": 16187, + "id": 16161, "name": "ISearchService", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16188, + "id": 16162, "name": "options", "variant": "declaration", "kind": 1024, @@ -60337,14 +65339,14 @@ } }, { - "id": 16189, + "id": 16163, "name": "createIndex", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16190, + "id": 16164, "name": "createIndex", "variant": "signature", "kind": 4096, @@ -60370,7 +65372,7 @@ }, "parameters": [ { - "id": 16191, + "id": 16165, "name": "indexName", "variant": "param", "kind": 32768, @@ -60389,7 +65391,7 @@ } }, { - "id": 16192, + "id": 16166, "name": "options", "variant": "param", "kind": 32768, @@ -60416,14 +65418,14 @@ ] }, { - "id": 16193, + "id": 16167, "name": "getIndex", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16194, + "id": 16168, "name": "getIndex", "variant": "signature", "kind": 4096, @@ -60449,7 +65451,7 @@ }, "parameters": [ { - "id": 16195, + "id": 16169, "name": "indexName", "variant": "param", "kind": 32768, @@ -60476,14 +65478,14 @@ ] }, { - "id": 16196, + "id": 16170, "name": "addDocuments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16197, + "id": 16171, "name": "addDocuments", "variant": "signature", "kind": 4096, @@ -60509,7 +65511,7 @@ }, "parameters": [ { - "id": 16198, + "id": 16172, "name": "indexName", "variant": "param", "kind": 32768, @@ -60528,7 +65530,7 @@ } }, { - "id": 16199, + "id": 16173, "name": "documents", "variant": "param", "kind": 32768, @@ -60547,7 +65549,7 @@ } }, { - "id": 16200, + "id": 16174, "name": "type", "variant": "param", "kind": 32768, @@ -60574,14 +65576,14 @@ ] }, { - "id": 16201, + "id": 16175, "name": "replaceDocuments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16202, + "id": 16176, "name": "replaceDocuments", "variant": "signature", "kind": 4096, @@ -60607,7 +65609,7 @@ }, "parameters": [ { - "id": 16203, + "id": 16177, "name": "indexName", "variant": "param", "kind": 32768, @@ -60626,7 +65628,7 @@ } }, { - "id": 16204, + "id": 16178, "name": "documents", "variant": "param", "kind": 32768, @@ -60645,7 +65647,7 @@ } }, { - "id": 16205, + "id": 16179, "name": "type", "variant": "param", "kind": 32768, @@ -60672,14 +65674,14 @@ ] }, { - "id": 16206, + "id": 16180, "name": "deleteDocument", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16207, + "id": 16181, "name": "deleteDocument", "variant": "signature", "kind": 4096, @@ -60705,7 +65707,7 @@ }, "parameters": [ { - "id": 16208, + "id": 16182, "name": "indexName", "variant": "param", "kind": 32768, @@ -60724,7 +65726,7 @@ } }, { - "id": 16209, + "id": 16183, "name": "document_id", "variant": "param", "kind": 32768, @@ -60760,14 +65762,14 @@ ] }, { - "id": 16210, + "id": 16184, "name": "deleteAllDocuments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16211, + "id": 16185, "name": "deleteAllDocuments", "variant": "signature", "kind": 4096, @@ -60793,7 +65795,7 @@ }, "parameters": [ { - "id": 16212, + "id": 16186, "name": "indexName", "variant": "param", "kind": 32768, @@ -60820,14 +65822,14 @@ ] }, { - "id": 16213, + "id": 16187, "name": "search", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16214, + "id": 16188, "name": "search", "variant": "signature", "kind": 4096, @@ -60853,7 +65855,7 @@ }, "parameters": [ { - "id": 16215, + "id": 16189, "name": "indexName", "variant": "param", "kind": 32768, @@ -60872,7 +65874,7 @@ } }, { - "id": 16216, + "id": 16190, "name": "query", "variant": "param", "kind": 32768, @@ -60900,7 +65902,7 @@ } }, { - "id": 16217, + "id": 16191, "name": "options", "variant": "param", "kind": 32768, @@ -60927,14 +65929,14 @@ ] }, { - "id": 16218, + "id": 16192, "name": "updateSettings", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16219, + "id": 16193, "name": "updateSettings", "variant": "signature", "kind": 4096, @@ -60960,7 +65962,7 @@ }, "parameters": [ { - "id": 16220, + "id": 16194, "name": "indexName", "variant": "param", "kind": 32768, @@ -60979,7 +65981,7 @@ } }, { - "id": 16221, + "id": 16195, "name": "settings", "variant": "param", "kind": 32768, @@ -61010,20 +66012,20 @@ { "title": "Properties", "children": [ - 16188 + 16162 ] }, { "title": "Methods", "children": [ - 16189, - 16193, - 16196, - 16201, - 16206, - 16210, - 16213, - 16218 + 16163, + 16167, + 16170, + 16175, + 16180, + 16184, + 16187, + 16192 ] } ] @@ -61033,19 +66035,19 @@ { "title": "Interfaces", "children": [ - 16187 + 16161 ] }, { "title": "Type Aliases", "children": [ - 16179 + 16153 ] } ] }, { - "id": 16827, + "id": 16826, "name": "SharedContext", "variant": "declaration", "kind": 256, @@ -61074,7 +66076,7 @@ }, "children": [ { - "id": 16828, + "id": 16827, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -61095,7 +66097,7 @@ } }, { - "id": 16829, + "id": 16828, "name": "manager", "variant": "declaration", "kind": 1024, @@ -61120,21 +66122,21 @@ { "title": "Properties", "children": [ - 16828, - 16829 + 16827, + 16828 ] } ] }, { - "id": 16830, + "id": 16829, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16831, + "id": 16830, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -61150,7 +66152,7 @@ } }, { - "id": 16832, + "id": 16831, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -61160,21 +66162,21 @@ "type": { "type": "reflection", "declaration": { - "id": 16833, + "id": 16832, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 16834, + "id": 16833, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 16835, + "id": 16834, "name": "key", "variant": "param", "kind": 32768, @@ -61215,35 +66217,35 @@ { "title": "Properties", "children": [ - 16831, - 16832 + 16830, + 16831 ] } ] }, { - "id": 16836, + "id": 16835, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16837, + "id": 16836, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16838, + "id": 16837, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16839, + "id": 16838, "name": "msg", "variant": "param", "kind": 32768, @@ -61253,7 +66255,7 @@ "types": [ { "type": "reference", - "target": 14385, + "target": 14262, "name": "Message", "package": "@medusajs/types" }, @@ -61261,7 +66263,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14385, + "target": 14262, "name": "Message", "package": "@medusajs/types" } @@ -61278,21 +66280,21 @@ ] }, { - "id": 16840, + "id": 16839, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16841, + "id": 16840, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16842, + "id": 16841, "name": "format", "variant": "param", "kind": 32768, @@ -61301,7 +66303,7 @@ }, "type": { "type": "reference", - "target": 16830, + "target": 16829, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -61322,7 +66324,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 14385, + "target": 14262, "name": "Message", "package": "@medusajs/types" } @@ -61335,14 +66337,14 @@ ] }, { - "id": 16843, + "id": 16842, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16844, + "id": 16843, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -61355,21 +66357,21 @@ ] }, { - "id": 16845, + "id": 16844, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16846, + "id": 16845, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 16847, + "id": 16846, "name": "T", "variant": "typeParam", "kind": 131072, @@ -61378,7 +66380,7 @@ ], "parameters": [ { - "id": 16848, + "id": 16847, "name": "messageData", "variant": "param", "kind": 32768, @@ -61388,11 +66390,11 @@ "types": [ { "type": "reference", - "target": 14389, + "target": 14266, "typeArguments": [ { "type": "reference", - "target": 16847, + "target": 16846, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -61405,11 +66407,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 14389, + "target": 14266, "typeArguments": [ { "type": "reference", - "target": 16847, + "target": 16846, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -61423,7 +66425,7 @@ } }, { - "id": 16849, + "id": 16848, "name": "options", "variant": "param", "kind": 32768, @@ -61463,16 +66465,16 @@ { "title": "Methods", "children": [ - 16837, - 16840, - 16843, - 16845 + 16836, + 16839, + 16842, + 16844 ] } ] }, { - "id": 16850, + "id": 16849, "name": "Context", "variant": "declaration", "kind": 256, @@ -61487,7 +66489,7 @@ }, "children": [ { - "id": 16851, + "id": 16850, "name": "__type", "variant": "declaration", "kind": 1024, @@ -61500,7 +66502,7 @@ } }, { - "id": 16852, + "id": 16851, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -61533,14 +66535,14 @@ }, "type": { "type": "reference", - "target": 16861, + "target": 16860, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 16853, + "id": 16852, "name": "manager", "variant": "declaration", "kind": 1024, @@ -61573,14 +66575,14 @@ }, "type": { "type": "reference", - "target": 16861, + "target": 16860, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 16854, + "id": 16853, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -61633,7 +66635,7 @@ } }, { - "id": 16855, + "id": 16854, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -61654,7 +66656,7 @@ } }, { - "id": 16856, + "id": 16855, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -61675,7 +66677,7 @@ } }, { - "id": 16857, + "id": 16856, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -61696,7 +66698,7 @@ } }, { - "id": 16858, + "id": 16857, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -61713,13 +66715,13 @@ }, "type": { "type": "reference", - "target": 16836, + "target": 16835, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 16859, + "id": 16858, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -61740,7 +66742,7 @@ } }, { - "id": 16860, + "id": 16859, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -61765,6 +66767,7 @@ { "title": "Properties", "children": [ + 16850, 16851, 16852, 16853, @@ -61773,14 +66776,13 @@ 16856, 16857, 16858, - 16859, - 16860 + 16859 ] } ], "typeParameters": [ { - "id": 16861, + "id": 16860, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -61793,14 +66795,14 @@ ] }, { - "id": 16222, + "id": 16196, "name": "StockLocationTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 16223, + "id": 16197, "name": "StockLocationAddressDTO", "variant": "declaration", "kind": 2097152, @@ -61819,14 +66821,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16224, + "id": 16198, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16225, + "id": 16199, "name": "id", "variant": "declaration", "kind": 1024, @@ -61847,7 +66849,7 @@ } }, { - "id": 16226, + "id": 16200, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -61866,7 +66868,7 @@ } }, { - "id": 16227, + "id": 16201, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -61896,7 +66898,7 @@ } }, { - "id": 16228, + "id": 16202, "name": "company", "variant": "declaration", "kind": 1024, @@ -61926,7 +66928,7 @@ } }, { - "id": 16229, + "id": 16203, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -61945,7 +66947,7 @@ } }, { - "id": 16230, + "id": 16204, "name": "city", "variant": "declaration", "kind": 1024, @@ -61975,7 +66977,7 @@ } }, { - "id": 16231, + "id": 16205, "name": "phone", "variant": "declaration", "kind": 1024, @@ -62005,7 +67007,7 @@ } }, { - "id": 16232, + "id": 16206, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -62035,7 +67037,7 @@ } }, { - "id": 16233, + "id": 16207, "name": "province", "variant": "declaration", "kind": 1024, @@ -62065,7 +67067,7 @@ } }, { - "id": 16234, + "id": 16208, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -62082,13 +67084,13 @@ }, "type": { "type": "reference", - "target": 14027, + "target": 13913, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 16235, + "id": 16209, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -62121,7 +67123,7 @@ } }, { - "id": 16236, + "id": 16210, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -62154,7 +67156,7 @@ } }, { - "id": 16237, + "id": 16211, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -62195,19 +67197,19 @@ { "title": "Properties", "children": [ - 16225, - 16226, - 16227, - 16228, - 16229, - 16230, - 16231, - 16232, - 16233, - 16234, - 16235, - 16236, - 16237 + 16199, + 16200, + 16201, + 16202, + 16203, + 16204, + 16205, + 16206, + 16207, + 16208, + 16209, + 16210, + 16211 ] } ] @@ -62215,7 +67217,7 @@ } }, { - "id": 16238, + "id": 16212, "name": "StockLocationDTO", "variant": "declaration", "kind": 2097152, @@ -62234,14 +67236,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16239, + "id": 16213, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16240, + "id": 16214, "name": "id", "variant": "declaration", "kind": 1024, @@ -62260,7 +67262,7 @@ } }, { - "id": 16241, + "id": 16215, "name": "name", "variant": "declaration", "kind": 1024, @@ -62279,7 +67281,7 @@ } }, { - "id": 16242, + "id": 16216, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -62322,7 +67324,7 @@ } }, { - "id": 16243, + "id": 16217, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -62341,7 +67343,7 @@ } }, { - "id": 16244, + "id": 16218, "name": "address", "variant": "declaration", "kind": 1024, @@ -62358,13 +67360,13 @@ }, "type": { "type": "reference", - "target": 16223, + "target": 16197, "name": "StockLocationAddressDTO", "package": "@medusajs/types" } }, { - "id": 16245, + "id": 16219, "name": "fulfillment_sets", "variant": "declaration", "kind": 1024, @@ -62391,7 +67393,7 @@ } }, { - "id": 16246, + "id": 16220, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -62424,7 +67426,7 @@ } }, { - "id": 16247, + "id": 16221, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -62457,7 +67459,7 @@ } }, { - "id": 16248, + "id": 16222, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -62498,15 +67500,15 @@ { "title": "Properties", "children": [ - 16240, - 16241, - 16242, - 16243, - 16244, - 16245, - 16246, - 16247, - 16248 + 16214, + 16215, + 16216, + 16217, + 16218, + 16219, + 16220, + 16221, + 16222 ] } ] @@ -62514,7 +67516,7 @@ } }, { - "id": 16249, + "id": 16223, "name": "StockLocationExpandedDTO", "variant": "declaration", "kind": 2097152, @@ -62530,21 +67532,21 @@ "types": [ { "type": "reference", - "target": 16238, + "target": 16212, "name": "StockLocationDTO", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 16250, + "id": 16224, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16251, + "id": 16225, "name": "sales_channels", "variant": "declaration", "kind": 1024, @@ -62572,7 +67574,7 @@ { "title": "Properties", "children": [ - 16251 + 16225 ] } ] @@ -62582,7 +67584,7 @@ } }, { - "id": 16252, + "id": 16226, "name": "FilterableStockLocationProps", "variant": "declaration", "kind": 256, @@ -62597,7 +67599,7 @@ }, "children": [ { - "id": 16256, + "id": 16230, "name": "$and", "variant": "declaration", "kind": 1024, @@ -62620,17 +67622,17 @@ "types": [ { "type": "reference", - "target": 16252, + "target": 16226, "name": "FilterableStockLocationProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 16252, + "target": 16226, "name": "FilterableStockLocationProps", "package": "@medusajs/types" } @@ -62643,12 +67645,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14197, + "target": 14081, "name": "BaseFilterable.$and" } }, { - "id": 16257, + "id": 16231, "name": "$or", "variant": "declaration", "kind": 1024, @@ -62671,17 +67673,17 @@ "types": [ { "type": "reference", - "target": 16252, + "target": 16226, "name": "FilterableStockLocationProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 16252, + "target": 16226, "name": "FilterableStockLocationProps", "package": "@medusajs/types" } @@ -62694,12 +67696,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14198, + "target": 14082, "name": "BaseFilterable.$or" } }, { - "id": 16253, + "id": 16227, "name": "q", "variant": "declaration", "kind": 1024, @@ -62720,7 +67722,7 @@ } }, { - "id": 16254, + "id": 16228, "name": "id", "variant": "declaration", "kind": 1024, @@ -62753,7 +67755,7 @@ } }, { - "id": 16255, + "id": 16229, "name": "name", "variant": "declaration", "kind": 1024, @@ -62784,7 +67786,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -62802,22 +67804,22 @@ { "title": "Properties", "children": [ - 16256, - 16257, - 16253, - 16254, - 16255 + 16230, + 16231, + 16227, + 16228, + 16229 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 16252, + "target": 16226, "name": "FilterableStockLocationProps", "package": "@medusajs/types" } @@ -62828,7 +67830,7 @@ ] }, { - "id": 16258, + "id": 16232, "name": "StockLocationAddressInput", "variant": "declaration", "kind": 2097152, @@ -62847,14 +67849,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16259, + "id": 16233, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16260, + "id": 16234, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -62873,7 +67875,7 @@ } }, { - "id": 16261, + "id": 16235, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -62903,7 +67905,7 @@ } }, { - "id": 16262, + "id": 16236, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -62922,7 +67924,7 @@ } }, { - "id": 16263, + "id": 16237, "name": "city", "variant": "declaration", "kind": 1024, @@ -62952,7 +67954,7 @@ } }, { - "id": 16264, + "id": 16238, "name": "phone", "variant": "declaration", "kind": 1024, @@ -62982,7 +67984,7 @@ } }, { - "id": 16265, + "id": 16239, "name": "province", "variant": "declaration", "kind": 1024, @@ -63012,7 +68014,7 @@ } }, { - "id": 16266, + "id": 16240, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -63042,7 +68044,7 @@ } }, { - "id": 16267, + "id": 16241, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -63059,7 +68061,7 @@ }, "type": { "type": "reference", - "target": 14027, + "target": 13913, "name": "MetadataType", "package": "@medusajs/types" } @@ -63069,14 +68071,14 @@ { "title": "Properties", "children": [ - 16260, - 16261, - 16262, - 16263, - 16264, - 16265, - 16266, - 16267 + 16234, + 16235, + 16236, + 16237, + 16238, + 16239, + 16240, + 16241 ] } ] @@ -63084,7 +68086,7 @@ } }, { - "id": 16268, + "id": 16242, "name": "CreateStockLocationInput", "variant": "declaration", "kind": 2097152, @@ -63103,14 +68105,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16269, + "id": 16243, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16270, + "id": 16244, "name": "name", "variant": "declaration", "kind": 1024, @@ -63129,7 +68131,7 @@ } }, { - "id": 16271, + "id": 16245, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -63159,7 +68161,7 @@ } }, { - "id": 16272, + "id": 16246, "name": "address", "variant": "declaration", "kind": 1024, @@ -63183,7 +68185,7 @@ }, { "type": "reference", - "target": 16258, + "target": 16232, "name": "StockLocationAddressInput", "package": "@medusajs/types" } @@ -63191,7 +68193,7 @@ } }, { - "id": 16273, + "id": 16247, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -63208,7 +68210,7 @@ }, "type": { "type": "reference", - "target": 14027, + "target": 13913, "name": "MetadataType", "package": "@medusajs/types" } @@ -63218,10 +68220,10 @@ { "title": "Properties", "children": [ - 16270, - 16271, - 16272, - 16273 + 16244, + 16245, + 16246, + 16247 ] } ] @@ -63229,7 +68231,7 @@ } }, { - "id": 16274, + "id": 16248, "name": "UpdateStockLocationInput", "variant": "declaration", "kind": 2097152, @@ -63248,14 +68250,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16275, + "id": 16249, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16276, + "id": 16250, "name": "name", "variant": "declaration", "kind": 1024, @@ -63276,7 +68278,7 @@ } }, { - "id": 16277, + "id": 16251, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -63306,7 +68308,7 @@ } }, { - "id": 16278, + "id": 16252, "name": "address", "variant": "declaration", "kind": 1024, @@ -63323,13 +68325,13 @@ }, "type": { "type": "reference", - "target": 16258, + "target": 16232, "name": "StockLocationAddressInput", "package": "@medusajs/types" } }, { - "id": 16279, + "id": 16253, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -63346,7 +68348,7 @@ }, "type": { "type": "reference", - "target": 14027, + "target": 13913, "name": "MetadataType", "package": "@medusajs/types" } @@ -63356,10 +68358,10 @@ { "title": "Properties", "children": [ - 16276, - 16277, - 16278, - 16279 + 16250, + 16251, + 16252, + 16253 ] } ] @@ -63367,7 +68369,7 @@ } }, { - "id": 16280, + "id": 16254, "name": "UpsertStockLocationInput", "variant": "declaration", "kind": 256, @@ -63398,7 +68400,7 @@ }, "children": [ { - "id": 16281, + "id": 16255, "name": "name", "variant": "declaration", "kind": 1024, @@ -63419,7 +68421,7 @@ } }, { - "id": 16282, + "id": 16256, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -63449,7 +68451,7 @@ } }, { - "id": 16283, + "id": 16257, "name": "address", "variant": "declaration", "kind": 1024, @@ -63466,13 +68468,13 @@ }, "type": { "type": "reference", - "target": 16258, + "target": 16232, "name": "StockLocationAddressInput", "package": "@medusajs/types" } }, { - "id": 16284, + "id": 16258, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -63489,13 +68491,13 @@ }, "type": { "type": "reference", - "target": 14027, + "target": 13913, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 16285, + "id": 16259, "name": "id", "variant": "declaration", "kind": 1024, @@ -63520,17 +68522,17 @@ { "title": "Properties", "children": [ - 16281, - 16282, - 16283, - 16284, - 16285 + 16255, + 16256, + 16257, + 16258, + 16259 ] } ] }, { - "id": 16286, + "id": 16260, "name": "IStockLocationService", "variant": "declaration", "kind": 256, @@ -63545,14 +68547,14 @@ }, "children": [ { - "id": 16287, + "id": 16261, "name": "listStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16288, + "id": 16262, "name": "listStockLocations", "variant": "signature", "kind": 4096, @@ -63639,7 +68641,7 @@ }, "parameters": [ { - "id": 16289, + "id": 16263, "name": "selector", "variant": "param", "kind": 32768, @@ -63654,13 +68656,13 @@ }, "type": { "type": "reference", - "target": 16252, + "target": 16226, "name": "FilterableStockLocationProps", "package": "@medusajs/types" } }, { - "id": 16290, + "id": 16264, "name": "config", "variant": "param", "kind": 32768, @@ -63693,11 +68695,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 16238, + "target": 16212, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -63707,7 +68709,7 @@ } }, { - "id": 16291, + "id": 16265, "name": "context", "variant": "param", "kind": 32768, @@ -63724,7 +68726,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -63741,7 +68743,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16238, + "target": 16212, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -63754,14 +68756,14 @@ ] }, { - "id": 16292, + "id": 16266, "name": "listAndCountStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16293, + "id": 16267, "name": "listAndCountStockLocations", "variant": "signature", "kind": 4096, @@ -63848,7 +68850,7 @@ }, "parameters": [ { - "id": 16294, + "id": 16268, "name": "selector", "variant": "param", "kind": 32768, @@ -63863,13 +68865,13 @@ }, "type": { "type": "reference", - "target": 16252, + "target": 16226, "name": "FilterableStockLocationProps", "package": "@medusajs/types" } }, { - "id": 16295, + "id": 16269, "name": "config", "variant": "param", "kind": 32768, @@ -63902,11 +68904,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 16238, + "target": 16212, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -63916,7 +68918,7 @@ } }, { - "id": 16296, + "id": 16270, "name": "context", "variant": "param", "kind": 32768, @@ -63933,7 +68935,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -63953,7 +68955,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16238, + "target": 16212, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -63972,14 +68974,14 @@ ] }, { - "id": 16297, + "id": 16271, "name": "retrieveStockLocation", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16298, + "id": 16272, "name": "retrieveStockLocation", "variant": "signature", "kind": 4096, @@ -64014,7 +69016,7 @@ }, "parameters": [ { - "id": 16299, + "id": 16273, "name": "id", "variant": "param", "kind": 32768, @@ -64033,7 +69035,7 @@ } }, { - "id": 16300, + "id": 16274, "name": "config", "variant": "param", "kind": 32768, @@ -64066,11 +69068,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 16238, + "target": 16212, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -64080,7 +69082,7 @@ } }, { - "id": 16301, + "id": 16275, "name": "context", "variant": "param", "kind": 32768, @@ -64097,7 +69099,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -64112,7 +69114,7 @@ "typeArguments": [ { "type": "reference", - "target": 16238, + "target": 16212, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -64124,14 +69126,14 @@ ] }, { - "id": 16302, + "id": 16276, "name": "createStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16303, + "id": 16277, "name": "createStockLocations", "variant": "signature", "kind": 4096, @@ -64166,7 +69168,7 @@ }, "parameters": [ { - "id": 16304, + "id": 16278, "name": "input", "variant": "param", "kind": 32768, @@ -64181,13 +69183,13 @@ }, "type": { "type": "reference", - "target": 16268, + "target": 16242, "name": "CreateStockLocationInput", "package": "@medusajs/types" } }, { - "id": 16305, + "id": 16279, "name": "context", "variant": "param", "kind": 32768, @@ -64204,7 +69206,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -64219,7 +69221,7 @@ "typeArguments": [ { "type": "reference", - "target": 16238, + "target": 16212, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -64229,7 +69231,7 @@ } }, { - "id": 16306, + "id": 16280, "name": "createStockLocations", "variant": "signature", "kind": 4096, @@ -64264,7 +69266,7 @@ }, "parameters": [ { - "id": 16307, + "id": 16281, "name": "input", "variant": "param", "kind": 32768, @@ -64281,14 +69283,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 16268, + "target": 16242, "name": "CreateStockLocationInput", "package": "@medusajs/types" } } }, { - "id": 16308, + "id": 16282, "name": "context", "variant": "param", "kind": 32768, @@ -64305,7 +69307,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -64322,7 +69324,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16238, + "target": 16212, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -64335,14 +69337,14 @@ ] }, { - "id": 16309, + "id": 16283, "name": "upsertStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16310, + "id": 16284, "name": "upsertStockLocations", "variant": "signature", "kind": 4096, @@ -64377,7 +69379,7 @@ }, "parameters": [ { - "id": 16311, + "id": 16285, "name": "data", "variant": "param", "kind": 32768, @@ -64394,14 +69396,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 16280, + "target": 16254, "name": "UpsertStockLocationInput", "package": "@medusajs/types" } } }, { - "id": 16312, + "id": 16286, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -64418,7 +69420,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -64435,7 +69437,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16238, + "target": 16212, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -64446,7 +69448,7 @@ } }, { - "id": 16313, + "id": 16287, "name": "upsertStockLocations", "variant": "signature", "kind": 4096, @@ -64481,7 +69483,7 @@ }, "parameters": [ { - "id": 16314, + "id": 16288, "name": "data", "variant": "param", "kind": 32768, @@ -64496,13 +69498,13 @@ }, "type": { "type": "reference", - "target": 16280, + "target": 16254, "name": "UpsertStockLocationInput", "package": "@medusajs/types" } }, { - "id": 16315, + "id": 16289, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -64519,7 +69521,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -64534,7 +69536,7 @@ "typeArguments": [ { "type": "reference", - "target": 16238, + "target": 16212, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -64546,14 +69548,14 @@ ] }, { - "id": 16316, + "id": 16290, "name": "updateStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16317, + "id": 16291, "name": "updateStockLocations", "variant": "signature", "kind": 4096, @@ -64588,7 +69590,7 @@ }, "parameters": [ { - "id": 16318, + "id": 16292, "name": "id", "variant": "param", "kind": 32768, @@ -64599,7 +69601,7 @@ } }, { - "id": 16319, + "id": 16293, "name": "input", "variant": "param", "kind": 32768, @@ -64614,13 +69616,13 @@ }, "type": { "type": "reference", - "target": 16274, + "target": 16248, "name": "UpdateStockLocationInput", "package": "@medusajs/types" } }, { - "id": 16320, + "id": 16294, "name": "context", "variant": "param", "kind": 32768, @@ -64637,7 +69639,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -64652,7 +69654,7 @@ "typeArguments": [ { "type": "reference", - "target": 16238, + "target": 16212, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -64662,7 +69664,7 @@ } }, { - "id": 16321, + "id": 16295, "name": "updateStockLocations", "variant": "signature", "kind": 4096, @@ -64697,7 +69699,7 @@ }, "parameters": [ { - "id": 16322, + "id": 16296, "name": "selector", "variant": "param", "kind": 32768, @@ -64712,13 +69714,13 @@ }, "type": { "type": "reference", - "target": 16252, + "target": 16226, "name": "FilterableStockLocationProps", "package": "@medusajs/types" } }, { - "id": 16323, + "id": 16297, "name": "input", "variant": "param", "kind": 32768, @@ -64733,13 +69735,13 @@ }, "type": { "type": "reference", - "target": 16274, + "target": 16248, "name": "UpdateStockLocationInput", "package": "@medusajs/types" } }, { - "id": 16324, + "id": 16298, "name": "context", "variant": "param", "kind": 32768, @@ -64756,7 +69758,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -64773,7 +69775,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16238, + "target": 16212, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -64786,14 +69788,14 @@ ] }, { - "id": 16325, + "id": 16299, "name": "deleteStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16326, + "id": 16300, "name": "deleteStockLocations", "variant": "signature", "kind": 4096, @@ -64828,7 +69830,7 @@ }, "parameters": [ { - "id": 16327, + "id": 16301, "name": "id", "variant": "param", "kind": 32768, @@ -64859,7 +69861,7 @@ } }, { - "id": 16328, + "id": 16302, "name": "context", "variant": "param", "kind": 32768, @@ -64876,7 +69878,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -64901,14 +69903,14 @@ ] }, { - "id": 16329, + "id": 16303, "name": "softDeleteStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16330, + "id": 16304, "name": "softDeleteStockLocations", "variant": "signature", "kind": 4096, @@ -64959,7 +69961,7 @@ }, "typeParameters": [ { - "id": 16331, + "id": 16305, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -64976,7 +69978,7 @@ ], "parameters": [ { - "id": 16332, + "id": 16306, "name": "stockLocationIds", "variant": "param", "kind": 32768, @@ -64998,7 +70000,7 @@ } }, { - "id": 16333, + "id": 16307, "name": "config", "variant": "param", "kind": 32768, @@ -65015,11 +70017,11 @@ }, "type": { "type": "reference", - "target": 14348, + "target": 14232, "typeArguments": [ { "type": "reference", - "target": 16331, + "target": 16305, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -65030,7 +70032,7 @@ } }, { - "id": 16334, + "id": 16308, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -65047,7 +70049,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -65099,14 +70101,14 @@ ] }, { - "id": 16335, + "id": 16309, "name": "restoreStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16336, + "id": 16310, "name": "restoreStockLocations", "variant": "signature", "kind": 4096, @@ -65157,7 +70159,7 @@ }, "typeParameters": [ { - "id": 16337, + "id": 16311, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -65174,7 +70176,7 @@ ], "parameters": [ { - "id": 16338, + "id": 16312, "name": "stockLocationIds", "variant": "param", "kind": 32768, @@ -65196,7 +70198,7 @@ } }, { - "id": 16339, + "id": 16313, "name": "config", "variant": "param", "kind": 32768, @@ -65229,11 +70231,11 @@ }, "type": { "type": "reference", - "target": 14351, + "target": 14235, "typeArguments": [ { "type": "reference", - "target": 16337, + "target": 16311, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -65244,7 +70246,7 @@ } }, { - "id": 16340, + "id": 16314, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -65261,7 +70263,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -65317,22 +70319,22 @@ { "title": "Methods", "children": [ - 16287, - 16292, - 16297, - 16302, - 16309, - 16316, - 16325, - 16329, - 16335 + 16261, + 16266, + 16271, + 16276, + 16283, + 16290, + 16299, + 16303, + 16309 ] } ], "extendedTypes": [ { "type": "reference", - "target": 15956, + "target": 15930, "name": "IModuleService", "package": "@medusajs/types" } @@ -65343,26 +70345,26 @@ { "title": "Interfaces", "children": [ - 16252, - 16280, - 16286 + 16226, + 16254, + 16260 ] }, { "title": "Type Aliases", "children": [ + 16197, + 16212, 16223, - 16238, - 16249, - 16258, - 16268, - 16274 + 16232, + 16242, + 16248 ] } ] }, { - "id": 16885, + "id": 16884, "name": "BigNumberRawValue", "variant": "declaration", "kind": 2097152, @@ -65370,14 +70372,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16886, + "id": 16885, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16887, + "id": 16886, "name": "value", "variant": "declaration", "kind": 1024, @@ -65401,20 +70403,20 @@ { "title": "Properties", "children": [ - 16887 + 16886 ] } ], "indexSignatures": [ { - "id": 16888, + "id": 16887, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 16889, + "id": 16888, "name": "key", "variant": "param", "kind": 32768, @@ -65435,7 +70437,7 @@ } }, { - "id": 16890, + "id": 16889, "name": "BigNumberInput", "variant": "declaration", "kind": 2097152, @@ -65445,7 +70447,7 @@ "types": [ { "type": "reference", - "target": 16885, + "target": 16884, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -65471,7 +70473,7 @@ } }, { - "id": 16891, + "id": 16890, "name": "BigNumberValue", "variant": "declaration", "kind": 2097152, @@ -65501,7 +70503,7 @@ } }, { - "id": 16862, + "id": 16861, "name": "CartLikeWithTotals", "variant": "declaration", "kind": 2097152, @@ -65509,281 +70511,281 @@ "type": { "type": "reflection", "declaration": { - "id": 16863, + "id": 16862, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16864, + "id": 16863, "name": "original_item_subtotal", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16865, + "id": 16864, "name": "original_item_tax_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16866, + "id": 16865, "name": "item_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16867, + "id": 16866, "name": "item_subtotal", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16868, + "id": 16867, "name": "item_tax_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16869, + "id": 16868, "name": "original_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16870, + "id": 16869, "name": "original_subtotal", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16871, + "id": 16870, "name": "original_tax_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16872, + "id": 16871, "name": "total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16873, + "id": 16872, "name": "subtotal", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16874, + "id": 16873, "name": "tax_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16875, + "id": 16874, "name": "discount_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16876, + "id": 16875, "name": "discount_tax_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16877, + "id": 16876, "name": "gift_card_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16878, + "id": 16877, "name": "gift_card_tax_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16879, + "id": 16878, "name": "shipping_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16880, + "id": 16879, "name": "shipping_subtotal", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16881, + "id": 16880, "name": "shipping_tax_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16882, + "id": 16881, "name": "original_shipping_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16883, + "id": 16882, "name": "original_shipping_subtotal", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 16884, + "id": 16883, "name": "original_shipping_tax_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 16891, + "target": 16890, "name": "BigNumberValue", "package": "@medusajs/types" } @@ -65793,6 +70795,7 @@ { "title": "Properties", "children": [ + 16863, 16864, 16865, 16866, @@ -65812,8 +70815,7 @@ 16880, 16881, 16882, - 16883, - 16884 + 16883 ] } ] @@ -65821,35 +70823,35 @@ } }, { - "id": 16354, + "id": 16328, "name": "TransactionBaseTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 16355, + "id": 16329, "name": "ITransactionBaseService", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16356, + "id": 16330, "name": "withTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16357, + "id": 16331, "name": "withTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16358, + "id": 16332, "name": "transactionManager", "variant": "param", "kind": 32768, @@ -65879,14 +70881,14 @@ { "title": "Methods", "children": [ - 16356 + 16330 ] } ], "extendedBy": [ { "type": "reference", - "target": 14399, + "target": 14276, "name": "IEventBusService" } ] @@ -65896,34 +70898,34 @@ { "title": "Interfaces", "children": [ - 16355 + 16329 ] } ] }, { - "id": 16359, + "id": 16333, "name": "WorkflowTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 16360, + "id": 16334, "name": "CommonWorkflow", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 16361, + "id": 16335, "name": "WorkflowInputConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16362, + "id": 16336, "name": "listConfig", "variant": "declaration", "kind": 1024, @@ -65933,14 +70935,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16363, + "id": 16337, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16364, + "id": 16338, "name": "select", "variant": "declaration", "kind": 1024, @@ -65956,7 +70958,7 @@ } }, { - "id": 16365, + "id": 16339, "name": "relations", "variant": "declaration", "kind": 1024, @@ -65976,8 +70978,8 @@ { "title": "Properties", "children": [ - 16364, - 16365 + 16338, + 16339 ] } ] @@ -65985,7 +70987,7 @@ } }, { - "id": 16366, + "id": 16340, "name": "retrieveConfig", "variant": "declaration", "kind": 1024, @@ -65995,14 +70997,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16367, + "id": 16341, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16368, + "id": 16342, "name": "select", "variant": "declaration", "kind": 1024, @@ -66018,7 +71020,7 @@ } }, { - "id": 16369, + "id": 16343, "name": "relations", "variant": "declaration", "kind": 1024, @@ -66038,8 +71040,8 @@ { "title": "Properties", "children": [ - 16368, - 16369 + 16342, + 16343 ] } ] @@ -66051,8 +71053,8 @@ { "title": "Properties", "children": [ - 16362, - 16366 + 16336, + 16340 ] } ] @@ -66062,27 +71064,27 @@ { "title": "Interfaces", "children": [ - 16361 + 16335 ] } ] }, { - "id": 16370, + "id": 16344, "name": "InventoryWorkflow", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 16371, + "id": 16345, "name": "CreateInventoryItemInputDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16372, + "id": 16346, "name": "sku", "variant": "declaration", "kind": 1024, @@ -66095,7 +71097,7 @@ } }, { - "id": 16373, + "id": 16347, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -66108,7 +71110,7 @@ } }, { - "id": 16374, + "id": 16348, "name": "weight", "variant": "declaration", "kind": 1024, @@ -66121,7 +71123,7 @@ } }, { - "id": 16375, + "id": 16349, "name": "length", "variant": "declaration", "kind": 1024, @@ -66134,7 +71136,7 @@ } }, { - "id": 16376, + "id": 16350, "name": "height", "variant": "declaration", "kind": 1024, @@ -66147,7 +71149,7 @@ } }, { - "id": 16377, + "id": 16351, "name": "width", "variant": "declaration", "kind": 1024, @@ -66160,7 +71162,7 @@ } }, { - "id": 16378, + "id": 16352, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -66173,7 +71175,7 @@ } }, { - "id": 16379, + "id": 16353, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -66186,7 +71188,7 @@ } }, { - "id": 16380, + "id": 16354, "name": "material", "variant": "declaration", "kind": 1024, @@ -66199,7 +71201,7 @@ } }, { - "id": 16381, + "id": 16355, "name": "title", "variant": "declaration", "kind": 1024, @@ -66212,7 +71214,7 @@ } }, { - "id": 16382, + "id": 16356, "name": "description", "variant": "declaration", "kind": 1024, @@ -66225,7 +71227,7 @@ } }, { - "id": 16383, + "id": 16357, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -66238,7 +71240,7 @@ } }, { - "id": 16384, + "id": 16358, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -66270,32 +71272,32 @@ { "title": "Properties", "children": [ - 16372, - 16373, - 16374, - 16375, - 16376, - 16377, - 16378, - 16379, - 16380, - 16381, - 16382, - 16383, - 16384 + 16346, + 16347, + 16348, + 16349, + 16350, + 16351, + 16352, + 16353, + 16354, + 16355, + 16356, + 16357, + 16358 ] } ] }, { - "id": 16385, + "id": 16359, "name": "CreateInventoryItemsWorkflowInputDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16386, + "id": 16360, "name": "inventoryItems", "variant": "declaration", "kind": 1024, @@ -66304,7 +71306,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16371, + "target": 16345, "name": "CreateInventoryItemInputDTO", "package": "@medusajs/types" } @@ -66315,7 +71317,7 @@ { "title": "Properties", "children": [ - 16386 + 16360 ] } ] @@ -66325,28 +71327,28 @@ { "title": "Interfaces", "children": [ - 16371, - 16385 + 16345, + 16359 ] } ] }, { - "id": 16387, + "id": 16361, "name": "InviteWorkflow", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 16392, + "id": 16366, "name": "AcceptInviteWorkflowInputDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16393, + "id": 16367, "name": "invite_token", "variant": "declaration", "kind": 1024, @@ -66357,7 +71359,7 @@ } }, { - "id": 16394, + "id": 16368, "name": "auth_identity_id", "variant": "declaration", "kind": 1024, @@ -66368,7 +71370,7 @@ } }, { - "id": 16395, + "id": 16369, "name": "user", "variant": "declaration", "kind": 1024, @@ -66376,14 +71378,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16396, + "id": 16370, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16397, + "id": 16371, "name": "email", "variant": "declaration", "kind": 1024, @@ -66396,7 +71398,7 @@ } }, { - "id": 16398, + "id": 16372, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -66418,7 +71420,7 @@ } }, { - "id": 16399, + "id": 16373, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -66440,7 +71442,7 @@ } }, { - "id": 16400, + "id": 16374, "name": "avatar_url", "variant": "declaration", "kind": 1024, @@ -66462,7 +71464,7 @@ } }, { - "id": 16401, + "id": 16375, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -66503,11 +71505,11 @@ { "title": "Properties", "children": [ - 16397, - 16398, - 16399, - 16400, - 16401 + 16371, + 16372, + 16373, + 16374, + 16375 ] } ] @@ -66519,22 +71521,22 @@ { "title": "Properties", "children": [ - 16393, - 16394, - 16395 + 16367, + 16368, + 16369 ] } ] }, { - "id": 16388, + "id": 16362, "name": "CreateInvitesWorkflowInputDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16389, + "id": 16363, "name": "invites", "variant": "declaration", "kind": 1024, @@ -66557,20 +71559,20 @@ { "title": "Properties", "children": [ - 16389 + 16363 ] } ] }, { - "id": 16390, + "id": 16364, "name": "DeleteInvitesWorkflowInput", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16391, + "id": 16365, "name": "ids", "variant": "declaration", "kind": 1024, @@ -66588,20 +71590,20 @@ { "title": "Properties", "children": [ - 16391 + 16365 ] } ] }, { - "id": 16402, + "id": 16376, "name": "ResendInvitesWorkflowInputDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16403, + "id": 16377, "name": "invite_ids", "variant": "declaration", "kind": 1024, @@ -66619,7 +71621,7 @@ { "title": "Properties", "children": [ - 16403 + 16377 ] } ] @@ -66629,30 +71631,30 @@ { "title": "Interfaces", "children": [ - 16392, - 16388, - 16390, - 16402 + 16366, + 16362, + 16364, + 16376 ] } ] }, { - "id": 16404, + "id": 16378, "name": "PriceListWorkflow", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 16405, + "id": 16379, "name": "CreatePriceListDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16406, + "id": 16380, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -66665,7 +71667,7 @@ } }, { - "id": 16407, + "id": 16381, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -66678,7 +71680,7 @@ } }, { - "id": 16408, + "id": 16382, "name": "status", "variant": "declaration", "kind": 1024, @@ -66696,7 +71698,7 @@ } }, { - "id": 16409, + "id": 16383, "name": "rules", "variant": "declaration", "kind": 1024, @@ -66717,7 +71719,7 @@ } }, { - "id": 16410, + "id": 16384, "name": "prices", "variant": "declaration", "kind": 1024, @@ -66729,14 +71731,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 16411, + "id": 16385, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16412, + "id": 16386, "name": "amount", "variant": "declaration", "kind": 1024, @@ -66747,7 +71749,7 @@ } }, { - "id": 16413, + "id": 16387, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -66758,7 +71760,7 @@ } }, { - "id": 16414, + "id": 16388, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -66771,7 +71773,7 @@ } }, { - "id": 16415, + "id": 16389, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -66784,7 +71786,7 @@ } }, { - "id": 16416, + "id": 16390, "name": "min_quantity", "variant": "declaration", "kind": 1024, @@ -66801,11 +71803,11 @@ { "title": "Properties", "children": [ - 16412, - 16413, - 16414, - 16415, - 16416 + 16386, + 16387, + 16388, + 16389, + 16390 ] } ] @@ -66814,7 +71816,7 @@ } }, { - "id": 16417, + "id": 16391, "name": "customer_groups", "variant": "declaration", "kind": 1024, @@ -66826,14 +71828,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 16418, + "id": 16392, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16419, + "id": 16393, "name": "id", "variant": "declaration", "kind": 1024, @@ -66848,7 +71850,7 @@ { "title": "Properties", "children": [ - 16419 + 16393 ] } ] @@ -66861,25 +71863,25 @@ { "title": "Properties", "children": [ - 16406, - 16407, - 16408, - 16409, - 16410, - 16417 + 16380, + 16381, + 16382, + 16383, + 16384, + 16391 ] } ] }, { - "id": 16420, + "id": 16394, "name": "CreatePriceListRuleDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16421, + "id": 16395, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -66890,7 +71892,7 @@ } }, { - "id": 16422, + "id": 16396, "name": "value", "variant": "declaration", "kind": 1024, @@ -66908,21 +71910,21 @@ { "title": "Properties", "children": [ - 16421, - 16422 + 16395, + 16396 ] } ] }, { - "id": 16423, + "id": 16397, "name": "CreatePriceListPriceDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16424, + "id": 16398, "name": "amount", "variant": "declaration", "kind": 1024, @@ -66933,7 +71935,7 @@ } }, { - "id": 16425, + "id": 16399, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -66944,7 +71946,7 @@ } }, { - "id": 16426, + "id": 16400, "name": "price_set_id", "variant": "declaration", "kind": 1024, @@ -66964,7 +71966,7 @@ } }, { - "id": 16427, + "id": 16401, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -66977,7 +71979,7 @@ } }, { - "id": 16428, + "id": 16402, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -66990,7 +71992,7 @@ } }, { - "id": 16429, + "id": 16403, "name": "min_quantity", "variant": "declaration", "kind": 1024, @@ -67007,25 +72009,25 @@ { "title": "Properties", "children": [ - 16424, - 16425, - 16426, - 16427, - 16428, - 16429 + 16398, + 16399, + 16400, + 16401, + 16402, + 16403 ] } ] }, { - "id": 16430, + "id": 16404, "name": "CreatePriceListWorkflowInputDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16431, + "id": 16405, "name": "price_lists", "variant": "declaration", "kind": 1024, @@ -67034,7 +72036,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16441, + "target": 16415, "name": "CreatePriceListWorkflowDTO", "package": "@medusajs/types" } @@ -67045,20 +72047,20 @@ { "title": "Properties", "children": [ - 16431 + 16405 ] } ] }, { - "id": 16432, + "id": 16406, "name": "RemovePriceListProductsWorkflowInputDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16433, + "id": 16407, "name": "product_ids", "variant": "declaration", "kind": 1024, @@ -67072,7 +72074,7 @@ } }, { - "id": 16434, + "id": 16408, "name": "price_list_id", "variant": "declaration", "kind": 1024, @@ -67087,21 +72089,21 @@ { "title": "Properties", "children": [ - 16433, - 16434 + 16407, + 16408 ] } ] }, { - "id": 16435, + "id": 16409, "name": "RemovePriceListVariantsWorkflowInputDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16436, + "id": 16410, "name": "variant_ids", "variant": "declaration", "kind": 1024, @@ -67115,7 +72117,7 @@ } }, { - "id": 16437, + "id": 16411, "name": "price_list_id", "variant": "declaration", "kind": 1024, @@ -67130,21 +72132,21 @@ { "title": "Properties", "children": [ - 16436, - 16437 + 16410, + 16411 ] } ] }, { - "id": 16438, + "id": 16412, "name": "RemovePriceListPricesWorkflowInputDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16439, + "id": 16413, "name": "money_amount_ids", "variant": "declaration", "kind": 1024, @@ -67158,7 +72160,7 @@ } }, { - "id": 16440, + "id": 16414, "name": "price_list_id", "variant": "declaration", "kind": 1024, @@ -67173,21 +72175,21 @@ { "title": "Properties", "children": [ - 16439, - 16440 + 16413, + 16414 ] } ] }, { - "id": 16441, + "id": 16415, "name": "CreatePriceListWorkflowDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16442, + "id": 16416, "name": "title", "variant": "declaration", "kind": 1024, @@ -67200,7 +72202,7 @@ } }, { - "id": 16443, + "id": 16417, "name": "name", "variant": "declaration", "kind": 1024, @@ -67211,7 +72213,7 @@ } }, { - "id": 16444, + "id": 16418, "name": "description", "variant": "declaration", "kind": 1024, @@ -67222,7 +72224,7 @@ } }, { - "id": 16445, + "id": 16419, "name": "type", "variant": "declaration", "kind": 1024, @@ -67235,7 +72237,7 @@ } }, { - "id": 16446, + "id": 16420, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -67253,7 +72255,7 @@ } }, { - "id": 16447, + "id": 16421, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -67271,7 +72273,7 @@ } }, { - "id": 16448, + "id": 16422, "name": "status", "variant": "declaration", "kind": 1024, @@ -67289,7 +72291,7 @@ } }, { - "id": 16449, + "id": 16423, "name": "rules_count", "variant": "declaration", "kind": 1024, @@ -67302,7 +72304,7 @@ } }, { - "id": 16450, + "id": 16424, "name": "prices", "variant": "declaration", "kind": 1024, @@ -67311,14 +72313,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 17066, + "target": 17096, "name": "InputPrice", "package": "@medusajs/types" } } }, { - "id": 16451, + "id": 16425, "name": "rules", "variant": "declaration", "kind": 1024, @@ -67340,29 +72342,29 @@ { "title": "Properties", "children": [ - 16442, - 16443, - 16444, - 16445, - 16446, - 16447, - 16448, - 16449, - 16450, - 16451 + 16416, + 16417, + 16418, + 16419, + 16420, + 16421, + 16422, + 16423, + 16424, + 16425 ] } ] }, { - "id": 16452, + "id": 16426, "name": "RemovePriceListWorkflowInputDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16453, + "id": 16427, "name": "price_lists", "variant": "declaration", "kind": 1024, @@ -67380,7 +72382,7 @@ { "title": "Properties", "children": [ - 16453 + 16427 ] } ] @@ -67390,35 +72392,35 @@ { "title": "Interfaces", "children": [ - 16405, - 16420, - 16423, - 16430, - 16432, - 16435, - 16438, - 16441, - 16452 + 16379, + 16394, + 16397, + 16404, + 16406, + 16409, + 16412, + 16415, + 16426 ] } ] }, { - "id": 16454, + "id": 16428, "name": "ProductCategoryWorkflow", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 16455, + "id": 16429, "name": "CreateProductCategoriesWorkflowInput", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16456, + "id": 16430, "name": "product_categories", "variant": "declaration", "kind": 1024, @@ -67441,20 +72443,20 @@ { "title": "Properties", "children": [ - 16456 + 16430 ] } ] }, { - "id": 16457, + "id": 16431, "name": "UpdateProductCategoriesWorkflowInput", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16458, + "id": 16432, "name": "selector", "variant": "declaration", "kind": 1024, @@ -67470,7 +72472,7 @@ } }, { - "id": 16459, + "id": 16433, "name": "update", "variant": "declaration", "kind": 1024, @@ -67490,21 +72492,21 @@ { "title": "Properties", "children": [ - 16458, - 16459 + 16432, + 16433 ] } ] }, { - "id": 16460, + "id": 16434, "name": "BatchUpdateProductsOnCategoryWorkflowInput", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16461, + "id": 16435, "name": "id", "variant": "declaration", "kind": 1024, @@ -67522,7 +72524,7 @@ } }, { - "id": 16462, + "id": 16436, "name": "add", "variant": "declaration", "kind": 1024, @@ -67544,7 +72546,7 @@ } }, { - "id": 16463, + "id": 16437, "name": "remove", "variant": "declaration", "kind": 1024, @@ -67570,16 +72572,16 @@ { "title": "Properties", "children": [ - 16461, - 16462, - 16463 + 16435, + 16436, + 16437 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14037, + "target": 13923, "name": "LinkWorkflowInput", "package": "@medusajs/types" } @@ -67590,29 +72592,29 @@ { "title": "Interfaces", "children": [ - 16455, - 16457, - 16460 + 16429, + 16431, + 16434 ] } ] }, { - "id": 16464, + "id": 16438, "name": "ReservationWorkflow", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 16465, + "id": 16439, "name": "CreateReservationsWorkflowInput", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16466, + "id": 16440, "name": "reservations", "variant": "declaration", "kind": 1024, @@ -67621,7 +72623,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15510, + "target": 15483, "name": "CreateReservationItemInput", "package": "@medusajs/types" } @@ -67632,13 +72634,13 @@ { "title": "Properties", "children": [ - 16466 + 16440 ] } ] }, { - "id": 16467, + "id": 16441, "name": "CreateReservationsWorkflowOutput", "variant": "declaration", "kind": 2097152, @@ -67647,21 +72649,21 @@ "type": "array", "elementType": { "type": "reference", - "target": 15430, + "target": 15403, "name": "ReservationItemDTO", "package": "@medusajs/types" } } }, { - "id": 16468, + "id": 16442, "name": "UpdateReservationsWorkflowInput", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16469, + "id": 16443, "name": "updates", "variant": "declaration", "kind": 1024, @@ -67670,7 +72672,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15503, + "target": 15476, "name": "UpdateReservationItemInput", "package": "@medusajs/types" } @@ -67681,13 +72683,13 @@ { "title": "Properties", "children": [ - 16469 + 16443 ] } ] }, { - "id": 16470, + "id": 16444, "name": "UpdateReservationsWorkflowOutput", "variant": "declaration", "kind": 2097152, @@ -67696,7 +72698,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 15430, + "target": 15403, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -67707,15 +72709,15 @@ { "title": "Interfaces", "children": [ - 16465, - 16468 + 16439, + 16442 ] }, { "title": "Type Aliases", "children": [ - 16467, - 16470 + 16441, + 16444 ] } ] @@ -67725,25 +72727,25 @@ { "title": "Namespaces", "children": [ - 16360, - 16370, - 16387, - 16404, - 16454, - 16464 + 16334, + 16344, + 16361, + 16378, + 16428, + 16438 ] } ] }, { - "id": 17066, + "id": 17096, "name": "InputPrice", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 17067, + "id": 17097, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -67756,7 +72758,7 @@ } }, { - "id": 17068, + "id": 17098, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -67767,7 +72769,7 @@ } }, { - "id": 17069, + "id": 17099, "name": "amount", "variant": "declaration", "kind": 1024, @@ -67778,7 +72780,7 @@ } }, { - "id": 17070, + "id": 17100, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -67789,7 +72791,7 @@ } }, { - "id": 17071, + "id": 17101, "name": "min_quantity", "variant": "declaration", "kind": 1024, @@ -67802,7 +72804,7 @@ } }, { - "id": 17072, + "id": 17102, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -67819,32 +72821,32 @@ { "title": "Properties", "children": [ - 17067, - 17068, - 17069, - 17070, - 17071, - 17072 + 17097, + 17098, + 17099, + 17100, + 17101, + 17102 ] } ] }, { - "id": 16471, + "id": 16445, "name": "WorkflowsSdkTypes", "variant": "declaration", "kind": 4, "flags": {}, "children": [ { - "id": 16472, + "id": 16446, "name": "WorkflowExecutionDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16473, + "id": 16447, "name": "id", "variant": "declaration", "kind": 1024, @@ -67855,7 +72857,7 @@ } }, { - "id": 16474, + "id": 16448, "name": "workflow_id", "variant": "declaration", "kind": 1024, @@ -67866,7 +72868,7 @@ } }, { - "id": 16475, + "id": 16449, "name": "transaction_id", "variant": "declaration", "kind": 1024, @@ -67877,7 +72879,7 @@ } }, { - "id": 16476, + "id": 16450, "name": "execution", "variant": "declaration", "kind": 1024, @@ -67888,7 +72890,7 @@ } }, { - "id": 16477, + "id": 16451, "name": "context", "variant": "declaration", "kind": 1024, @@ -67899,7 +72901,7 @@ } }, { - "id": 16478, + "id": 16452, "name": "state", "variant": "declaration", "kind": 1024, @@ -67910,7 +72912,7 @@ } }, { - "id": 16479, + "id": 16453, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -67926,7 +72928,7 @@ } }, { - "id": 16480, + "id": 16454, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -67942,7 +72944,7 @@ } }, { - "id": 16481, + "id": 16455, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -67962,21 +72964,21 @@ { "title": "Properties", "children": [ - 16473, - 16474, - 16475, - 16476, - 16477, - 16478, - 16479, - 16480, - 16481 + 16447, + 16448, + 16449, + 16450, + 16451, + 16452, + 16453, + 16454, + 16455 ] } ] }, { - "id": 16482, + "id": 16456, "name": "FilterableWorkflowExecutionProps", "variant": "declaration", "kind": 256, @@ -67991,7 +72993,7 @@ }, "children": [ { - "id": 16487, + "id": 16461, "name": "$and", "variant": "declaration", "kind": 1024, @@ -68014,17 +73016,17 @@ "types": [ { "type": "reference", - "target": 16482, + "target": 16456, "name": "FilterableWorkflowExecutionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 16482, + "target": 16456, "name": "FilterableWorkflowExecutionProps", "package": "@medusajs/types" } @@ -68037,12 +73039,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14197, + "target": 14081, "name": "BaseFilterable.$and" } }, { - "id": 16488, + "id": 16462, "name": "$or", "variant": "declaration", "kind": 1024, @@ -68065,17 +73067,17 @@ "types": [ { "type": "reference", - "target": 16482, + "target": 16456, "name": "FilterableWorkflowExecutionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 16482, + "target": 16456, "name": "FilterableWorkflowExecutionProps", "package": "@medusajs/types" } @@ -68088,12 +73090,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 14198, + "target": 14082, "name": "BaseFilterable.$or" } }, { - "id": 16483, + "id": 16457, "name": "id", "variant": "declaration", "kind": 1024, @@ -68116,7 +73118,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -68130,7 +73132,7 @@ } }, { - "id": 16484, + "id": 16458, "name": "workflow_id", "variant": "declaration", "kind": 1024, @@ -68153,7 +73155,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -68167,7 +73169,7 @@ } }, { - "id": 16485, + "id": 16459, "name": "transaction_id", "variant": "declaration", "kind": 1024, @@ -68190,7 +73192,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -68204,7 +73206,7 @@ } }, { - "id": 16486, + "id": 16460, "name": "state", "variant": "declaration", "kind": 1024, @@ -68227,7 +73229,7 @@ }, { "type": "reference", - "target": 14174, + "target": 14058, "typeArguments": [ { "type": "intrinsic", @@ -68245,23 +73247,23 @@ { "title": "Properties", "children": [ - 16487, - 16488, - 16483, - 16484, - 16485, - 16486 + 16461, + 16462, + 16457, + 16458, + 16459, + 16460 ] } ], "extendedTypes": [ { "type": "reference", - "target": 14196, + "target": 14080, "typeArguments": [ { "type": "reference", - "target": 16482, + "target": 16456, "name": "FilterableWorkflowExecutionProps", "package": "@medusajs/types" } @@ -68272,14 +73274,14 @@ ] }, { - "id": 16489, + "id": 16463, "name": "UpsertWorkflowExecutionDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16490, + "id": 16464, "name": "workflow_id", "variant": "declaration", "kind": 1024, @@ -68290,7 +73292,7 @@ } }, { - "id": 16491, + "id": 16465, "name": "transaction_id", "variant": "declaration", "kind": 1024, @@ -68301,7 +73303,7 @@ } }, { - "id": 16492, + "id": 16466, "name": "execution", "variant": "declaration", "kind": 1024, @@ -68327,7 +73329,7 @@ } }, { - "id": 16493, + "id": 16467, "name": "context", "variant": "declaration", "kind": 1024, @@ -68353,7 +73355,7 @@ } }, { - "id": 16494, + "id": 16468, "name": "state", "variant": "declaration", "kind": 1024, @@ -68368,24 +73370,24 @@ { "title": "Properties", "children": [ - 16490, - 16491, - 16492, - 16493, - 16494 + 16464, + 16465, + 16466, + 16467, + 16468 ] } ] }, { - "id": 16495, + "id": 16469, "name": "WorkflowOrchestratorRunDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16498, + "id": 16472, "name": "input", "variant": "declaration", "kind": 1024, @@ -68395,7 +73397,7 @@ }, "type": { "type": "reference", - "target": 16503, + "target": 16477, "name": "T", "package": "@medusajs/types", "qualifiedName": "WorkflowOrchestratorRunDTO.T", @@ -68408,7 +73410,7 @@ } }, { - "id": 16499, + "id": 16473, "name": "context", "variant": "declaration", "kind": 1024, @@ -68418,7 +73420,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" }, @@ -68429,7 +73431,7 @@ } }, { - "id": 16500, + "id": 16474, "name": "resultFrom", "variant": "declaration", "kind": 1024, @@ -68469,7 +73471,7 @@ } }, { - "id": 16501, + "id": 16475, "name": "throwOnError", "variant": "declaration", "kind": 1024, @@ -68488,7 +73490,7 @@ } }, { - "id": 16502, + "id": 16476, "name": "events", "variant": "declaration", "kind": 1024, @@ -68527,7 +73529,7 @@ } }, { - "id": 16496, + "id": 16470, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -68540,7 +73542,7 @@ } }, { - "id": 16497, + "id": 16471, "name": "container", "variant": "declaration", "kind": 1024, @@ -68549,7 +73551,7 @@ }, "type": { "type": "reference", - "target": 14157, + "target": 14038, "name": "ContainerLike", "package": "@medusajs/types" } @@ -68559,19 +73561,19 @@ { "title": "Properties", "children": [ - 16498, - 16499, - 16500, - 16501, - 16502, - 16496, - 16497 + 16472, + 16473, + 16474, + 16475, + 16476, + 16470, + 16471 ] } ], "typeParameters": [ { - "id": 16503, + "id": 16477, "name": "T", "variant": "typeParam", "kind": 131072, @@ -68585,11 +73587,11 @@ "extendedTypes": [ { "type": "reference", - "target": 17073, + "target": 17103, "typeArguments": [ { "type": "reference", - "target": 16503, + "target": 16477, "name": "T", "package": "@medusajs/types", "qualifiedName": "WorkflowOrchestratorRunDTO.T", @@ -68602,7 +73604,7 @@ ] }, { - "id": 16504, + "id": 16478, "name": "IdempotencyKeyParts", "variant": "declaration", "kind": 2097152, @@ -68610,14 +73612,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16505, + "id": 16479, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16506, + "id": 16480, "name": "workflowId", "variant": "declaration", "kind": 1024, @@ -68628,7 +73630,7 @@ } }, { - "id": 16507, + "id": 16481, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -68639,7 +73641,7 @@ } }, { - "id": 16508, + "id": 16482, "name": "stepId", "variant": "declaration", "kind": 1024, @@ -68650,7 +73652,7 @@ } }, { - "id": 16509, + "id": 16483, "name": "action", "variant": "declaration", "kind": 1024, @@ -68674,10 +73676,10 @@ { "title": "Properties", "children": [ - 16506, - 16507, - 16508, - 16509 + 16480, + 16481, + 16482, + 16483 ] } ] @@ -68685,28 +73687,28 @@ } }, { - "id": 16510, + "id": 16484, "name": "IWorkflowEngineService", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16511, + "id": 16485, "name": "retrieveWorkflowExecution", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16512, + "id": 16486, "name": "retrieveWorkflowExecution", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16513, + "id": 16487, "name": "idOrObject", "variant": "param", "kind": 32768, @@ -68721,14 +73723,14 @@ { "type": "reflection", "declaration": { - "id": 16514, + "id": 16488, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16515, + "id": 16489, "name": "workflow_id", "variant": "declaration", "kind": 1024, @@ -68739,7 +73741,7 @@ } }, { - "id": 16516, + "id": 16490, "name": "transaction_id", "variant": "declaration", "kind": 1024, @@ -68754,8 +73756,8 @@ { "title": "Properties", "children": [ - 16515, - 16516 + 16489, + 16490 ] } ] @@ -68765,7 +73767,7 @@ } }, { - "id": 16517, + "id": 16491, "name": "config", "variant": "param", "kind": 32768, @@ -68774,11 +73776,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 16472, + "target": 16446, "name": "WorkflowExecutionDTO", "package": "@medusajs/types" } @@ -68788,7 +73790,7 @@ } }, { - "id": 16518, + "id": 16492, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -68797,7 +73799,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -68812,7 +73814,7 @@ "typeArguments": [ { "type": "reference", - "target": 16472, + "target": 16446, "name": "WorkflowExecutionDTO", "package": "@medusajs/types" } @@ -68824,21 +73826,21 @@ ] }, { - "id": 16519, + "id": 16493, "name": "listWorkflowExecutions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16520, + "id": 16494, "name": "listWorkflowExecutions", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16521, + "id": 16495, "name": "filters", "variant": "param", "kind": 32768, @@ -68847,13 +73849,13 @@ }, "type": { "type": "reference", - "target": 16482, + "target": 16456, "name": "FilterableWorkflowExecutionProps", "package": "@medusajs/types" } }, { - "id": 16522, + "id": 16496, "name": "config", "variant": "param", "kind": 32768, @@ -68862,11 +73864,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 16472, + "target": 16446, "name": "WorkflowExecutionDTO", "package": "@medusajs/types" } @@ -68876,7 +73878,7 @@ } }, { - "id": 16523, + "id": 16497, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -68885,7 +73887,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -68902,7 +73904,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16472, + "target": 16446, "name": "WorkflowExecutionDTO", "package": "@medusajs/types" } @@ -68915,21 +73917,21 @@ ] }, { - "id": 16524, + "id": 16498, "name": "listAndCountWorkflowExecutions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16525, + "id": 16499, "name": "listAndCountWorkflowExecutions", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16526, + "id": 16500, "name": "filters", "variant": "param", "kind": 32768, @@ -68938,13 +73940,13 @@ }, "type": { "type": "reference", - "target": 16482, + "target": 16456, "name": "FilterableWorkflowExecutionProps", "package": "@medusajs/types" } }, { - "id": 16527, + "id": 16501, "name": "config", "variant": "param", "kind": 32768, @@ -68953,11 +73955,11 @@ }, "type": { "type": "reference", - "target": 13947, + "target": 13833, "typeArguments": [ { "type": "reference", - "target": 16472, + "target": 16446, "name": "WorkflowExecutionDTO", "package": "@medusajs/types" } @@ -68967,7 +73969,7 @@ } }, { - "id": 16528, + "id": 16502, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -68976,7 +73978,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -68996,7 +73998,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16472, + "target": 16446, "name": "WorkflowExecutionDTO", "package": "@medusajs/types" } @@ -69015,21 +74017,21 @@ ] }, { - "id": 16529, + "id": 16503, "name": "run", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16530, + "id": 16504, "name": "run", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16531, + "id": 16505, "name": "workflowId", "variant": "param", "kind": 32768, @@ -69040,7 +74042,7 @@ } }, { - "id": 16532, + "id": 16506, "name": "options", "variant": "param", "kind": 32768, @@ -69049,7 +74051,7 @@ }, "type": { "type": "reference", - "target": 16495, + "target": 16469, "typeArguments": [ { "type": "intrinsic", @@ -69061,7 +74063,7 @@ } }, { - "id": 16533, + "id": 16507, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -69070,7 +74072,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -69086,14 +74088,14 @@ { "type": "reflection", "declaration": { - "id": 16534, + "id": 16508, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16535, + "id": 16509, "name": "errors", "variant": "declaration", "kind": 1024, @@ -69112,7 +74114,7 @@ } }, { - "id": 16536, + "id": 16510, "name": "transaction", "variant": "declaration", "kind": 1024, @@ -69123,7 +74125,7 @@ } }, { - "id": 16537, + "id": 16511, "name": "result", "variant": "declaration", "kind": 1024, @@ -69134,7 +74136,7 @@ } }, { - "id": 16538, + "id": 16512, "name": "acknowledgement", "variant": "declaration", "kind": 1024, @@ -69149,10 +74151,10 @@ { "title": "Properties", "children": [ - 16535, - 16536, - 16537, - 16538 + 16509, + 16510, + 16511, + 16512 ] } ] @@ -69166,21 +74168,21 @@ ] }, { - "id": 16539, + "id": 16513, "name": "getRunningTransaction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16540, + "id": 16514, "name": "getRunningTransaction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16541, + "id": 16515, "name": "workflowId", "variant": "param", "kind": 32768, @@ -69191,7 +74193,7 @@ } }, { - "id": 16542, + "id": 16516, "name": "transactionId", "variant": "param", "kind": 32768, @@ -69202,7 +74204,7 @@ } }, { - "id": 16543, + "id": 16517, "name": "options", "variant": "param", "kind": 32768, @@ -69230,7 +74232,7 @@ } }, { - "id": 16544, + "id": 16518, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -69239,7 +74241,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -69264,21 +74266,21 @@ ] }, { - "id": 16545, + "id": 16519, "name": "setStepSuccess", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16546, + "id": 16520, "name": "setStepSuccess", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16547, + "id": 16521, "name": "__namedParameters", "variant": "param", "kind": 32768, @@ -69286,14 +74288,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16548, + "id": 16522, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16549, + "id": 16523, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -69307,7 +74309,7 @@ }, { "type": "reference", - "target": 16504, + "target": 16478, "name": "IdempotencyKeyParts", "package": "@medusajs/types" } @@ -69315,7 +74317,7 @@ } }, { - "id": 16550, + "id": 16524, "name": "stepResponse", "variant": "declaration", "kind": 1024, @@ -69326,7 +74328,7 @@ } }, { - "id": 16551, + "id": 16525, "name": "options", "variant": "declaration", "kind": 1024, @@ -69358,9 +74360,9 @@ { "title": "Properties", "children": [ - 16549, - 16550, - 16551 + 16523, + 16524, + 16525 ] } ] @@ -69368,7 +74370,7 @@ } }, { - "id": 16552, + "id": 16526, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -69377,7 +74379,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -69391,21 +74393,21 @@ ] }, { - "id": 16553, + "id": 16527, "name": "setStepFailure", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16554, + "id": 16528, "name": "setStepFailure", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16555, + "id": 16529, "name": "__namedParameters", "variant": "param", "kind": 32768, @@ -69413,14 +74415,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16556, + "id": 16530, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16557, + "id": 16531, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -69434,7 +74436,7 @@ }, { "type": "reference", - "target": 16504, + "target": 16478, "name": "IdempotencyKeyParts", "package": "@medusajs/types" } @@ -69442,7 +74444,7 @@ } }, { - "id": 16558, + "id": 16532, "name": "stepResponse", "variant": "declaration", "kind": 1024, @@ -69453,7 +74455,7 @@ } }, { - "id": 16559, + "id": 16533, "name": "options", "variant": "declaration", "kind": 1024, @@ -69485,9 +74487,9 @@ { "title": "Properties", "children": [ - 16557, - 16558, - 16559 + 16531, + 16532, + 16533 ] } ] @@ -69495,7 +74497,7 @@ } }, { - "id": 16560, + "id": 16534, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -69504,7 +74506,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -69518,21 +74520,21 @@ ] }, { - "id": 16561, + "id": 16535, "name": "subscribe", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16562, + "id": 16536, "name": "subscribe", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16563, + "id": 16537, "name": "args", "variant": "param", "kind": 32768, @@ -69540,14 +74542,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16564, + "id": 16538, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16565, + "id": 16539, "name": "workflowId", "variant": "declaration", "kind": 1024, @@ -69558,7 +74560,7 @@ } }, { - "id": 16566, + "id": 16540, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -69571,7 +74573,7 @@ } }, { - "id": 16567, + "id": 16541, "name": "subscriber", "variant": "declaration", "kind": 1024, @@ -69587,7 +74589,7 @@ } }, { - "id": 16568, + "id": 16542, "name": "subscriberId", "variant": "declaration", "kind": 1024, @@ -69604,10 +74606,10 @@ { "title": "Properties", "children": [ - 16565, - 16566, - 16567, - 16568 + 16539, + 16540, + 16541, + 16542 ] } ] @@ -69615,7 +74617,7 @@ } }, { - "id": 16569, + "id": 16543, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -69624,7 +74626,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -69649,21 +74651,21 @@ ] }, { - "id": 16570, + "id": 16544, "name": "unsubscribe", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 16571, + "id": 16545, "name": "unsubscribe", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 16572, + "id": 16546, "name": "args", "variant": "param", "kind": 32768, @@ -69671,14 +74673,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16573, + "id": 16547, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16574, + "id": 16548, "name": "workflowId", "variant": "declaration", "kind": 1024, @@ -69689,7 +74691,7 @@ } }, { - "id": 16575, + "id": 16549, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -69702,7 +74704,7 @@ } }, { - "id": 16576, + "id": 16550, "name": "subscriberOrId", "variant": "declaration", "kind": 1024, @@ -69731,9 +74733,9 @@ { "title": "Properties", "children": [ - 16574, - 16575, - 16576 + 16548, + 16549, + 16550 ] } ] @@ -69741,7 +74743,7 @@ } }, { - "id": 16577, + "id": 16551, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -69750,7 +74752,7 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } @@ -69768,22 +74770,22 @@ { "title": "Methods", "children": [ - 16511, + 16485, + 16493, + 16498, + 16503, + 16513, 16519, - 16524, - 16529, - 16539, - 16545, - 16553, - 16561, - 16570 + 16527, + 16535, + 16544 ] } ], "extendedTypes": [ { "type": "reference", - "target": 15956, + "target": 15930, "name": "IModuleService", "package": "@medusajs/types" } @@ -69794,30 +74796,30 @@ { "title": "Interfaces", "children": [ - 16472, - 16482, - 16489, - 16495, - 16510 + 16446, + 16456, + 16463, + 16469, + 16484 ] }, { "title": "Type Aliases", "children": [ - 16504 + 16478 ] } ] }, { - "id": 17073, + "id": 17103, "name": "FlowRunOptions", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 17080, + "id": 17110, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -69831,14 +74833,14 @@ "type": { "type": "reflection", "declaration": { - "id": 17074, + "id": 17104, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17075, + "id": 17105, "name": "input", "variant": "declaration", "kind": 1024, @@ -69847,14 +74849,14 @@ }, "type": { "type": "reference", - "target": 17080, + "target": 17110, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 17076, + "id": 17106, "name": "context", "variant": "declaration", "kind": 1024, @@ -69863,13 +74865,13 @@ }, "type": { "type": "reference", - "target": 16850, + "target": 16849, "name": "Context", "package": "@medusajs/types" } }, { - "id": 17077, + "id": 17107, "name": "resultFrom", "variant": "declaration", "kind": 1024, @@ -69903,7 +74905,7 @@ } }, { - "id": 17078, + "id": 17108, "name": "throwOnError", "variant": "declaration", "kind": 1024, @@ -69916,7 +74918,7 @@ } }, { - "id": 17079, + "id": 17109, "name": "events", "variant": "declaration", "kind": 1024, @@ -69953,11 +74955,11 @@ { "title": "Properties", "children": [ - 17075, - 17076, - 17077, - 17078, - 17079 + 17105, + 17106, + 17107, + 17108, + 17109 ] } ] @@ -69966,13 +74968,13 @@ "extendedBy": [ { "type": "reference", - "target": 16495, + "target": 16469, "name": "WorkflowOrchestratorRunDTO" } ] }, { - "id": 16898, + "id": 16897, "name": "CreateProductVariantWorkflowInputDTO", "variant": "declaration", "kind": 2097152, @@ -69993,14 +74995,14 @@ { "type": "reflection", "declaration": { - "id": 16899, + "id": 16898, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16900, + "id": 16899, "name": "prices", "variant": "declaration", "kind": 1024, @@ -70026,7 +75028,7 @@ { "title": "Properties", "children": [ - 16900 + 16899 ] } ] @@ -70036,7 +75038,7 @@ } }, { - "id": 16901, + "id": 16900, "name": "UpdateProductVariantWorkflowInputDTO", "variant": "declaration", "kind": 2097152, @@ -70057,14 +75059,14 @@ { "type": "reflection", "declaration": { - "id": 16902, + "id": 16901, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16903, + "id": 16902, "name": "prices", "variant": "declaration", "kind": 1024, @@ -70090,7 +75092,7 @@ { "title": "Properties", "children": [ - 16903 + 16902 ] } ] @@ -70100,7 +75102,7 @@ } }, { - "id": 16904, + "id": 16903, "name": "CreateProductWorkflowInputDTO", "variant": "declaration", "kind": 2097152, @@ -70136,14 +75138,14 @@ { "type": "reflection", "declaration": { - "id": 16905, + "id": 16904, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16906, + "id": 16905, "name": "sales_channels", "variant": "declaration", "kind": 1024, @@ -70155,14 +75157,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 16907, + "id": 16906, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16908, + "id": 16907, "name": "id", "variant": "declaration", "kind": 1024, @@ -70177,7 +75179,7 @@ { "title": "Properties", "children": [ - 16908 + 16907 ] } ] @@ -70186,7 +75188,7 @@ } }, { - "id": 16909, + "id": 16908, "name": "variants", "variant": "declaration", "kind": 1024, @@ -70197,7 +75199,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 16898, + "target": 16897, "name": "CreateProductVariantWorkflowInputDTO", "package": "@medusajs/types" } @@ -70208,8 +75210,8 @@ { "title": "Properties", "children": [ - 16906, - 16909 + 16905, + 16908 ] } ] @@ -70219,7 +75221,7 @@ } }, { - "id": 16910, + "id": 16909, "name": "UpdateProductWorkflowInputDTO", "variant": "declaration", "kind": 2097152, @@ -70240,14 +75242,14 @@ { "type": "reflection", "declaration": { - "id": 16911, + "id": 16910, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16912, + "id": 16911, "name": "sales_channels", "variant": "declaration", "kind": 1024, @@ -70259,14 +75261,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 16913, + "id": 16912, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16914, + "id": 16913, "name": "id", "variant": "declaration", "kind": 1024, @@ -70281,7 +75283,7 @@ { "title": "Properties", "children": [ - 16914 + 16913 ] } ] @@ -70294,7 +75296,7 @@ { "title": "Properties", "children": [ - 16912 + 16911 ] } ] @@ -70304,14 +75306,14 @@ } }, { - "id": 16892, + "id": 16891, "name": "CreateLocationFulfillmentSetWorkflowInputDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 16893, + "id": 16892, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -70322,7 +75324,7 @@ } }, { - "id": 16894, + "id": 16893, "name": "fulfillment_set_data", "variant": "declaration", "kind": 1024, @@ -70330,14 +75332,14 @@ "type": { "type": "reflection", "declaration": { - "id": 16895, + "id": 16894, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 16896, + "id": 16895, "name": "name", "variant": "declaration", "kind": 1024, @@ -70348,7 +75350,7 @@ } }, { - "id": 16897, + "id": 16896, "name": "type", "variant": "declaration", "kind": 1024, @@ -70363,8 +75365,8 @@ { "title": "Properties", "children": [ - 16896, - 16897 + 16895, + 16896 ] } ] @@ -70376,8 +75378,8 @@ { "title": "Properties", "children": [ - 16893, - 16894 + 16892, + 16893 ] } ] @@ -70387,10546 +75389,11031 @@ { "title": "Namespaces", "children": [ - 13914, - 13915, - 13929, - 14167, - 16591, - 14356, - 14439, - 14458, - 14547, - 15382, - 15733, - 15791, - 16083, - 16178, - 16222, - 16354, - 16359, - 16471 + 13797, + 13798, + 13812, + 14051, + 16565, + 14240, + 14316, + 14335, + 14424, + 15355, + 15706, + 15764, + 16057, + 16152, + 16196, + 16328, + 16333, + 16445 ] }, { "title": "Interfaces", "children": [ - 13911, - 16915, - 16938, - 16688, - 16691, - 16696, - 16699, - 16701, - 16963, - 16972, - 16982, - 17137, - 17087, - 17091, - 17096, - 17102, - 17141, - 17109, - 17114, - 17120, - 17127, + 13794, + 16914, + 16946, + 16687, + 16690, + 16695, + 16698, + 16700, + 16971, 16993, - 17008, - 17028, - 17032, - 17039, - 17053, + 16980, + 16995, + 17190, + 17136, + 17140, + 17145, + 17151, + 17194, + 17158, + 17163, + 17169, + 17176, + 17006, + 17021, + 17041, + 17045, + 17052, 17062, - 16714, - 16717, - 16731, - 16734, - 16737, - 16755, - 16758, - 16768, - 16776, - 16824, - 16827, - 16830, - 16836, - 16850, - 17066, - 16892 + 17069, + 17083, + 17092, + 16713, + 16716, + 16730, + 16733, + 16736, + 16754, + 16757, + 16767, + 16775, + 16823, + 16826, + 16829, + 16835, + 16849, + 17096, + 16891 ] }, { "title": "Type Aliases", "children": [ - 13896, - 16934, - 16935, - 16929, + 13779, + 16921, + 17185, + 17184, + 17114, + 17119, + 17121, + 17126, + 17116, + 17123, + 17128, + 16928, + 17111, + 16926, 16923, - 16925, - 17081, - 17156, - 17146, - 17135, - 17085, - 16922, - 16927, - 16985, - 16991, - 16992, - 16705, - 16765, - 17065, - 16885, + 16942, + 16943, + 16937, + 16931, + 16933, + 17130, + 17209, + 17199, + 17188, + 17134, + 16930, + 16935, + 16998, + 17004, + 17005, + 16704, + 16764, + 17095, + 16884, + 16889, 16890, - 16891, - 16862, - 17073, - 16898, - 16901, - 16904, - 16910 + 16861, + 17103, + 16897, + 16900, + 16903, + 16909 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "13895": { + "13778": { "sourceFileName": "../../../../packages/core/types/src/index.ts", "qualifiedName": "" }, - "13896": { + "13779": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "AddressDTO" }, - "13897": { + "13780": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type" }, - "13898": { + "13781": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.id" }, - "13899": { + "13782": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.address_1" }, - "13900": { + "13783": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.address_2" }, - "13901": { + "13784": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.company" }, - "13902": { + "13785": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.country_code" }, - "13903": { + "13786": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.city" }, - "13904": { + "13787": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.phone" }, - "13905": { + "13788": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.postal_code" }, - "13906": { + "13789": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.province" }, - "13907": { + "13790": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.metadata" }, - "13908": { + "13791": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.created_at" }, - "13909": { + "13792": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.updated_at" }, - "13910": { + "13793": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.deleted_at" }, - "13911": { + "13794": { "sourceFileName": "../../../../packages/core/types/src/admin/extensions.ts", "qualifiedName": "DetailWidgetProps" }, - "13912": { + "13795": { "sourceFileName": "../../../../packages/core/types/src/admin/extensions.ts", "qualifiedName": "DetailWidgetProps.data" }, - "13913": { + "13796": { "sourceFileName": "../../../../packages/core/types/src/admin/extensions.ts", "qualifiedName": "DetailWidgetProps.TData" }, - "13914": { + "13797": { "sourceFileName": "../../../../packages/core/types/src/admin/index.ts", "qualifiedName": "" }, - "13915": { + "13798": { "sourceFileName": "../../../../packages/core/types/src/cache/index.ts", "qualifiedName": "" }, - "13916": { + "13799": { "sourceFileName": "../../../../packages/core/types/src/cache/service.ts", "qualifiedName": "ICacheService" }, - "13917": { + "13800": { "sourceFileName": "../../../../packages/core/types/src/cache/service.ts", "qualifiedName": "ICacheService.get" }, - "13918": { + "13801": { "sourceFileName": "../../../../packages/core/types/src/cache/service.ts", "qualifiedName": "ICacheService.get" }, - "13919": { + "13802": { "sourceFileName": "../../../../packages/core/types/src/cache/service.ts", "qualifiedName": "T" }, - "13920": { + "13803": { "sourceFileName": "../../../../packages/core/types/src/cache/service.ts", "qualifiedName": "key" }, - "13921": { + "13804": { "sourceFileName": "../../../../packages/core/types/src/cache/service.ts", "qualifiedName": "ICacheService.set" }, - "13922": { + "13805": { "sourceFileName": "../../../../packages/core/types/src/cache/service.ts", "qualifiedName": "ICacheService.set" }, - "13923": { + "13806": { "sourceFileName": "../../../../packages/core/types/src/cache/service.ts", "qualifiedName": "key" }, - "13924": { + "13807": { "sourceFileName": "../../../../packages/core/types/src/cache/service.ts", "qualifiedName": "data" }, - "13925": { + "13808": { "sourceFileName": "../../../../packages/core/types/src/cache/service.ts", "qualifiedName": "ttl" }, - "13926": { + "13809": { "sourceFileName": "../../../../packages/core/types/src/cache/service.ts", "qualifiedName": "ICacheService.invalidate" }, - "13927": { + "13810": { "sourceFileName": "../../../../packages/core/types/src/cache/service.ts", "qualifiedName": "ICacheService.invalidate" }, - "13928": { + "13811": { "sourceFileName": "../../../../packages/core/types/src/cache/service.ts", "qualifiedName": "key" }, - "13929": { + "13812": { "sourceFileName": "../../../../packages/core/types/src/common/index.ts", "qualifiedName": "" }, - "13930": { + "13813": { + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "Prettify" + }, + "13814": { + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "__type" + }, + "13815": { + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "T" + }, + "13816": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "WithRequiredProperty" }, - "13931": { + "13817": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "T" }, - "13932": { + "13818": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "K" }, - "13936": { + "13822": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "BaseEntity" }, - "13937": { + "13823": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "BaseEntity.id" }, - "13938": { + "13824": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "BaseEntity.created_at" }, - "13939": { + "13825": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "BaseEntity.updated_at" }, - "13940": { + "13826": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "SoftDeletableEntity" }, - "13941": { + "13827": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "SoftDeletableEntity.deleted_at" }, - "13942": { + "13828": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "BaseEntity.id" }, - "13943": { + "13829": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "BaseEntity.created_at" }, - "13944": { + "13830": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "BaseEntity.updated_at" }, - "13947": { + "13833": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "13948": { + "13834": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "13949": { + "13835": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "13950": { + "13836": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "13951": { + "13837": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "13952": { + "13838": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "13953": { + "13839": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "13954": { + "13840": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "13956": { + "13842": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "13957": { + "13843": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "13958": { + "13844": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "13959": { + "13845": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "13995": { + "13881": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "RequestQueryFields" }, - "13996": { + "13882": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.expand" }, - "13997": { + "13883": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.fields" }, - "13998": { + "13884": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.offset" }, - "13999": { + "13885": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.limit" }, - "14000": { + "13886": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.order" }, - "14001": { + "13887": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "EmptyQueryParams" }, - "14002": { + "13888": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "RepositoryTransformOptions" }, - "14003": { + "13889": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "DateComparisonOperator" }, - "14004": { + "13890": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "DateComparisonOperator.lt" }, - "14005": { + "13891": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "DateComparisonOperator.gt" }, - "14006": { + "13892": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "DateComparisonOperator.gte" }, - "14007": { + "13893": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "DateComparisonOperator.lte" }, - "14008": { + "13894": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator" }, - "14009": { + "13895": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.lt" }, - "14010": { + "13896": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.gt" }, - "14011": { + "13897": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.gte" }, - "14012": { + "13898": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.lte" }, - "14013": { + "13899": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.contains" }, - "14014": { + "13900": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.starts_with" }, - "14015": { + "13901": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.ends_with" }, - "14016": { + "13902": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "NumericalComparisonOperator" }, - "14017": { + "13903": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "NumericalComparisonOperator.lt" }, - "14018": { + "13904": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "NumericalComparisonOperator.gt" }, - "14019": { + "13905": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "NumericalComparisonOperator.gte" }, - "14020": { + "13906": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "NumericalComparisonOperator.lte" }, - "14023": { + "13909": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "SnakeCase" }, - "14024": { + "13910": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "S" }, - "14025": { + "13911": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "KebabCase" }, - "14026": { + "13912": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "S" }, - "14027": { + "13913": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "MetadataType" }, - "14028": { + "13914": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "RawRounding" }, - "14029": { + "13915": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "14030": { + "13916": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.value" }, - "14031": { + "13917": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.precision" }, - "14032": { + "13918": { "sourceFileName": "../../../../packages/core/types/src/common/rule.ts", "qualifiedName": "RuleOperatorType" }, - "14033": { + "13919": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "LinkMethodRequest" }, - "14034": { + "13920": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type" }, - "14035": { + "13921": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.add" }, - "14036": { + "13922": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.remove" }, - "14037": { + "13923": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "LinkWorkflowInput" }, - "14038": { + "13924": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type" }, - "14039": { + "13925": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.id" }, - "14040": { + "13926": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.add" }, - "14041": { + "13927": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.remove" }, - "14042": { + "13928": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "BatchMethodRequest" }, - "14043": { + "13929": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type" }, - "14044": { + "13930": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.create" }, - "14045": { + "13931": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.update" }, - "14046": { + "13932": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.delete" }, - "14047": { + "13933": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "TCreate" }, - "14048": { + "13934": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "TUpdate" }, - "14049": { + "13935": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "TDelete" }, - "14050": { + "13936": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "BatchMethodResponse" }, - "14051": { + "13937": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type" }, - "14052": { + "13938": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.created" }, - "14053": { + "13939": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.updated" }, - "14054": { + "13940": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.deleted" }, - "14055": { + "13941": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type" }, - "14056": { + "13942": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.ids" }, - "14057": { + "13943": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.object" }, - "14058": { + "13944": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.deleted" }, - "14059": { + "13945": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "T" }, - "14060": { + "13946": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "BatchWorkflowInput" }, - "14061": { + "13947": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "TCreate" }, - "14062": { + "13948": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "TUpdate" }, - "14063": { + "13949": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "TDelete" }, - "14064": { + "13950": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "BatchWorkflowOutput" }, - "14065": { + "13951": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "T" }, - "14066": { + "13952": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "AdminOptions" }, - "14067": { + "13953": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.disable" }, - "14068": { + "13954": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.path" }, - "14069": { + "13955": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.outDir" }, - "14070": { + "13956": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.backendUrl" }, - "14071": { + "13957": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.vite" }, - "14072": { + "13958": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type" }, - "14073": { + "13959": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type" }, - "14074": { + "13960": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "config" }, - "14075": { + "13961": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "HttpCompressionOptions" }, - "14076": { + "13962": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.enabled" }, - "14077": { + "13963": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.level" }, - "14078": { + "13964": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.memLevel" }, - "14079": { + "13965": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.threshold" }, - "14080": { + "13966": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "ProjectConfigOptions" }, - "14081": { + "13967": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.databaseName" }, - "14082": { + "13968": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.databaseUrl" }, - "14083": { + "13969": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.databaseSchema" }, - "14084": { + "13970": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.databaseLogging" }, - "14086": { - "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.databaseExtra" - }, - "14087": { - "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type" - }, - "14088": { - "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.ssl" - }, - "14089": { - "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type" - }, - "14090": { - "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.rejectUnauthorized" - }, - "14091": { + "13972": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.databaseDriverOptions" }, - "14092": { + "13973": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type" }, - "14093": { + "13974": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.connection" }, - "14094": { + "13975": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type" }, - "14095": { + "13976": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.ssl" }, - "14096": { + "13977": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type" }, - "14097": { + "13978": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.rejectUnauthorized" }, - "14098": { + "13979": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.redisUrl" }, - "14099": { + "13980": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.redisPrefix" }, - "14100": { + "13981": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.redisOptions" }, - "14101": { + "13982": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.sessionOptions" }, - "14103": { + "13984": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.jobsBatchSize" }, - "14104": { + "13985": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.workerMode" }, - "14105": { + "13986": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.http" }, - "14106": { + "13987": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type" }, - "14107": { + "13988": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.jwtSecret" }, - "14108": { + "13989": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.jwtExpiresIn" }, - "14109": { + "13990": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.cookieSecret" }, - "14110": { + "13991": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.authCors" }, - "14111": { + "13992": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.compression" }, - "14112": { + "13993": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.storeCors" }, - "14113": { + "13994": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.adminCors" }, - "14114": { + "13995": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.authMethodsPerActor" }, - "14115": { + "13996": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "ConfigModule" }, - "14116": { + "13997": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.projectConfig" }, - "14117": { + "13998": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.admin" }, - "14122": { + "14003": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.modules" }, - "14123": { + "14004": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.featureFlags" }, - "14124": { + "14005": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "PluginDetails" }, - "14125": { + "14006": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type" }, - "14126": { + "14007": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.resolve" }, - "14127": { + "14008": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.name" }, - "14128": { + "14009": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.id" }, - "14129": { + "14010": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.options" }, - "14130": { + "14011": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.version" }, - "14131": { + "14012": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-cli.ts", "qualifiedName": "ExecArgs" }, - "14132": { + "14013": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-cli.ts", "qualifiedName": "__type" }, - "14133": { + "14014": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-cli.ts", "qualifiedName": "__type.container" }, - "14134": { + "14015": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-cli.ts", "qualifiedName": "__type.args" }, - "14135": { + "14016": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "ModuleImplementations" }, - "14136": { + "14017": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "MedusaContainer" }, - "14137": { + "14018": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "__type" }, - "14138": { + "14019": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "__type.resolve" }, - "14139": { + "14020": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "__type.resolve" }, - "14140": { + "14021": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "K" }, - "14141": { + "14022": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "key" }, - "14142": { + "14023": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "resolveOptions" }, - "14143": { + "14024": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "__type.resolve" }, - "14144": { + "14025": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "T" }, - "14145": { + "14026": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "key" }, - "14146": { + "14027": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "resolveOptions" }, - "14156": { + "14037": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "Cradle" }, - "14157": { + "14038": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "ContainerLike" }, - "14158": { + "14039": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "__type" }, - "14159": { + "14040": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "__type.resolve" }, - "14160": { + "14041": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "__type.resolve" }, - "14161": { + "14042": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "T" }, - "14162": { + "14043": { "sourceFileName": "../../../../packages/core/types/src/common/medusa-container.ts", "qualifiedName": "key" }, - "14163": { + "14044": { "sourceFileName": "../../../../packages/core/types/src/common/with-calculated.ts", "qualifiedName": "WithCalculatedPrice" }, - "14164": { + "14045": { "sourceFileName": "../../../../packages/core/types/src/common/with-calculated.ts", "qualifiedName": "WithCalculatedPrice.calculated_price" }, - "14165": { + "14046": { "sourceFileName": "../../../../packages/core/types/src/common/with-calculated.ts", "qualifiedName": "__type" }, - "14166": { + "14047": { "sourceFileName": "../../../../packages/core/types/src/common/with-calculated.ts", "qualifiedName": "__type.calculated_amount" }, - "14167": { + "14048": { + "sourceFileName": "../../../../packages/core/types/src/common/with-calculated.ts", + "qualifiedName": "__type.is_calculated_price_tax_inclusive" + }, + "14049": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "CamelCase" + }, + "14050": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "14051": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "" }, - "14168": { + "14052": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterQuery" }, - "14169": { + "14053": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "14170": { + "14054": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "14172": { + "14056": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "14173": { + "14057": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Prev" }, - "14174": { + "14058": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "OperatorMap" }, - "14175": { + "14059": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "14176": { + "14060": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$and" }, - "14177": { + "14061": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$or" }, - "14178": { + "14062": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$eq" }, - "14179": { + "14063": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ne" }, - "14180": { + "14064": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$in" }, - "14181": { + "14065": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$nin" }, - "14182": { + "14066": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$not" }, - "14183": { + "14067": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gt" }, - "14184": { + "14068": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gte" }, - "14185": { + "14069": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lt" }, - "14186": { + "14070": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lte" }, - "14187": { + "14071": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$like" }, - "14188": { + "14072": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$re" }, - "14189": { + "14073": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ilike" }, - "14190": { + "14074": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$fulltext" }, - "14191": { + "14075": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$overlap" }, - "14192": { + "14076": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contains" }, - "14193": { + "14077": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contained" }, - "14194": { + "14078": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$exists" }, - "14195": { + "14079": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "14196": { + "14080": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "14197": { + "14081": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "14198": { + "14082": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "14199": { + "14083": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "14200": { + "14084": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "OptionsQuery" }, - "14201": { + "14085": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "OptionsQuery.populate" }, - "14202": { + "14086": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "OptionsQuery.orderBy" }, - "14203": { + "14087": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "OptionsQuery.limit" }, - "14204": { + "14088": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "OptionsQuery.offset" }, - "14205": { + "14089": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "OptionsQuery.fields" }, - "14206": { + "14090": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "OptionsQuery.groupBy" }, - "14207": { + "14091": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "OptionsQuery.filters" }, - "14208": { + "14092": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "OptionsQuery.T" }, - "14209": { + "14093": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "OptionsQuery.P" }, - "14210": { + "14094": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "FindOptions" }, - "14211": { + "14095": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "__type.where" }, - "14212": { + "14096": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "14213": { + "14097": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "14215": { + "14099": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "14216": { + "14100": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "14218": { + "14102": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "__type.options" }, - "14219": { + "14103": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "T" }, - "14220": { + "14104": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "UpsertWithReplaceConfig" }, - "14221": { + "14105": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "__type.relations" }, - "14222": { + "14106": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "T" }, - "14223": { + "14107": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "PerformedActions" }, - "14224": { + "14108": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type" }, - "14225": { + "14109": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.created" }, - "14226": { + "14110": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.updated" }, - "14227": { + "14111": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.deleted" }, - "14228": { + "14112": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService" }, - "14229": { + "14113": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.find" }, - "14230": { + "14114": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.find" }, - "14231": { + "14115": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "options" }, - "14232": { + "14116": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14233": { + "14117": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.findAndCount" }, - "14234": { + "14118": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.findAndCount" }, - "14235": { + "14119": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "options" }, - "14236": { + "14120": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14237": { + "14121": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.create" }, - "14238": { + "14122": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.create" }, - "14239": { + "14123": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "data" }, - "14240": { + "14124": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14241": { + "14125": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.update" }, - "14242": { + "14126": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.update" }, - "14243": { + "14127": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "data" }, - "14244": { + "14128": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type" }, - "14245": { + "14129": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.entity" }, - "14246": { + "14130": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.update" }, - "14247": { + "14131": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14248": { + "14132": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.delete" }, - "14249": { + "14133": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.delete" }, - "14250": { + "14134": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "idsOrPKs" }, - "14251": { + "14135": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "14252": { + "14136": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "14254": { + "14138": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "14255": { + "14139": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "14257": { + "14141": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14258": { + "14142": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.softDelete" }, - "14259": { + "14143": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.softDelete" }, - "14260": { + "14144": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "idsOrFilter" }, - "14261": { + "14145": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "14262": { + "14146": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "14263": { + "14147": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14264": { + "14148": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.restore" }, - "14265": { + "14149": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.restore" }, - "14266": { + "14150": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "idsOrFilter" }, - "14267": { + "14151": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "14268": { + "14152": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14269": { + "14153": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.upsert" }, - "14270": { + "14154": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.upsert" }, - "14271": { + "14155": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "data" }, - "14272": { + "14156": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14273": { + "14157": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.upsertWithReplace" }, - "14274": { + "14158": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.upsertWithReplace" }, - "14275": { + "14159": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "data" }, - "14276": { + "14160": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "config" }, - "14277": { + "14161": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14278": { + "14162": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type" }, - "14279": { + "14163": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.entities" }, - "14280": { + "14164": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.performedActions" }, - "14281": { + "14165": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.transaction" }, - "14282": { + "14166": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.transaction" }, - "14283": { + "14167": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TManager" }, - "14284": { + "14168": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "task" }, - "14285": { + "14169": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type" }, - "14286": { + "14170": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type" }, - "14287": { + "14171": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "transactionManager" }, - "14288": { + "14172": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14289": { + "14173": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type" }, - "14290": { + "14174": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.isolationLevel" }, - "14291": { + "14175": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.transaction" }, - "14292": { + "14176": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "14293": { + "14177": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.getFreshManager" }, - "14294": { + "14178": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.getFreshManager" }, - "14295": { + "14179": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TManager" }, - "14296": { + "14180": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.getActiveManager" }, - "14297": { + "14181": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.getActiveManager" }, - "14298": { + "14182": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TManager" }, - "14299": { + "14183": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.serialize" }, - "14300": { + "14184": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.serialize" }, - "14301": { + "14185": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TOutput" }, - "14302": { + "14186": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "data" }, - "14303": { + "14187": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "options" }, - "14304": { + "14188": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RepositoryService.T" }, - "14305": { + "14189": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TreeRepositoryService" }, - "14306": { + "14190": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TreeRepositoryService.find" }, - "14307": { + "14191": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TreeRepositoryService.find" }, - "14308": { + "14192": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "options" }, - "14309": { + "14193": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "transformOptions" }, - "14310": { + "14194": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14311": { + "14195": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TreeRepositoryService.findAndCount" }, - "14312": { + "14196": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TreeRepositoryService.findAndCount" }, - "14313": { + "14197": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "options" }, - "14314": { + "14198": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "transformOptions" }, - "14315": { + "14199": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14316": { + "14200": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TreeRepositoryService.create" }, - "14317": { + "14201": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TreeRepositoryService.create" }, - "14318": { + "14202": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "data" }, - "14319": { + "14203": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14320": { + "14204": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TreeRepositoryService.delete" }, - "14321": { + "14205": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TreeRepositoryService.delete" }, - "14322": { + "14206": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "ids" }, - "14323": { + "14207": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14324": { + "14208": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.transaction" }, - "14325": { + "14209": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.transaction" }, - "14326": { + "14210": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TManager" }, - "14327": { + "14211": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "task" }, - "14328": { + "14212": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type" }, - "14329": { + "14213": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type" }, - "14330": { + "14214": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "transactionManager" }, - "14331": { + "14215": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "14332": { + "14216": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type" }, - "14333": { + "14217": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.isolationLevel" }, - "14334": { + "14218": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.transaction" }, - "14335": { + "14219": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "14336": { + "14220": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.getFreshManager" }, - "14337": { + "14221": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.getFreshManager" }, - "14338": { + "14222": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TManager" }, - "14339": { + "14223": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.getActiveManager" }, - "14340": { + "14224": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.getActiveManager" }, - "14341": { + "14225": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TManager" }, - "14342": { + "14226": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.serialize" }, - "14343": { + "14227": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.serialize" }, - "14344": { + "14228": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TOutput" }, - "14345": { + "14229": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "data" }, - "14346": { + "14230": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "options" }, - "14347": { + "14231": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TreeRepositoryService.T" }, - "14348": { + "14232": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "SoftDeleteReturn" }, - "14349": { + "14233": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "14350": { + "14234": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "14351": { + "14235": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RestoreReturn" }, - "14352": { + "14236": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "14353": { + "14237": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "14354": { + "14238": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "14355": { + "14239": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "14356": { + "14240": { "sourceFileName": "../../../../packages/core/types/src/event-bus/index.ts", "qualifiedName": "" }, - "14357": { + "14241": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Subscriber" }, - "14358": { + "14242": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "14359": { + "14243": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "14360": { + "14244": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "data" }, - "14361": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "eventName" - }, - "14362": { + "14245": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "14363": { + "14246": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "SubscriberContext" }, - "14364": { + "14247": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "14365": { + "14248": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.subscriberId" }, - "14366": { + "14249": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "SubscriberDescriptor" }, - "14367": { + "14250": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "14368": { + "14251": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.id" }, - "14369": { + "14252": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.subscriber" }, - "14370": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "EventHandler" - }, - "14371": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type" - }, - "14372": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type" - }, - "14373": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "data" - }, - "14374": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "eventName" - }, - "14375": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "TData" - }, - "14376": { + "14253": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "14377": { + "14254": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "14378": { + "14255": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" }, - "14379": { + "14256": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "14380": { + "14257": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "14381": { + "14258": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "14382": { + "14259": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "14383": { + "14260": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "14384": { + "14261": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "14385": { + "14262": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "14386": { + "14263": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "14387": { + "14264": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "14388": { + "14265": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "14389": { + "14266": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "14390": { + "14267": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "14391": { + "14268": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "14392": { + "14269": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "14393": { + "14270": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "14394": { + "14271": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "14395": { + "14272": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "14396": { + "14273": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "14397": { + "14274": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "14398": { + "14275": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "14399": { + "14276": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "IEventBusService" }, - "14400": { + "14277": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "IEventBusService.subscribe" }, - "14401": { + "14278": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "IEventBusService.subscribe" }, - "14402": { + "14279": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "eventName" }, - "14403": { + "14280": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "subscriber" }, - "14404": { + "14281": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "context" }, - "14405": { + "14282": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "IEventBusService.unsubscribe" }, - "14406": { + "14283": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "IEventBusService.unsubscribe" }, - "14407": { + "14284": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "eventName" }, - "14408": { + "14285": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "subscriber" }, - "14409": { + "14286": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "context" }, - "14410": { + "14287": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "IEventBusService.emit" }, - "14411": { + "14288": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "IEventBusService.emit" }, - "14412": { + "14289": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "T" }, - "14413": { + "14290": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus.ts", "qualifiedName": "data" }, - "14414": { + "14291": { "sourceFileName": "../../../../packages/core/types/src/transaction-base/transaction-base.ts", "qualifiedName": "ITransactionBaseService.withTransaction" }, - "14415": { + "14292": { "sourceFileName": "../../../../packages/core/types/src/transaction-base/transaction-base.ts", "qualifiedName": "ITransactionBaseService.withTransaction" }, - "14416": { + "14293": { "sourceFileName": "../../../../packages/core/types/src/transaction-base/transaction-base.ts", "qualifiedName": "transactionManager" }, - "14417": { + "14294": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "IEventBusModuleService" }, - "14418": { + "14295": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "IEventBusModuleService.emit" }, - "14419": { + "14296": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "IEventBusModuleService.emit" }, - "14420": { + "14297": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "T" }, - "14421": { + "14298": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "data" }, - "14422": { + "14299": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "options" }, - "14423": { + "14300": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "IEventBusModuleService.subscribe" }, - "14424": { + "14301": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "IEventBusModuleService.subscribe" }, - "14425": { + "14302": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "eventName" }, - "14426": { + "14303": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "subscriber" }, - "14427": { + "14304": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "context" }, - "14428": { + "14305": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "IEventBusModuleService.unsubscribe" }, - "14429": { + "14306": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "IEventBusModuleService.unsubscribe" }, - "14430": { + "14307": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "eventName" }, - "14431": { + "14308": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "subscriber" }, - "14432": { + "14309": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "context" }, - "14433": { + "14310": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "IEventBusModuleService.releaseGroupedEvents" }, - "14434": { + "14311": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "IEventBusModuleService.releaseGroupedEvents" }, - "14435": { + "14312": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "eventGroupId" }, - "14436": { + "14313": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "IEventBusModuleService.clearGroupedEvents" }, - "14437": { + "14314": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "IEventBusModuleService.clearGroupedEvents" }, - "14438": { + "14315": { "sourceFileName": "../../../../packages/core/types/src/event-bus/event-bus-module.ts", "qualifiedName": "eventGroupId" }, - "14439": { + "14316": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/index.ts", "qualifiedName": "" }, - "14440": { + "14317": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "IFlagRouter" }, - "14441": { + "14318": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "IFlagRouter.isFeatureEnabled" }, - "14442": { + "14319": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "__type" }, - "14443": { + "14320": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "__type" }, - "14444": { + "14321": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "key" }, - "14445": { + "14322": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "IFlagRouter.listFlags" }, - "14446": { + "14323": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "__type" }, - "14447": { + "14324": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "__type" }, - "14448": { + "14325": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "FeatureFlagsResponse" }, - "14449": { + "14326": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "__type" }, - "14450": { + "14327": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "__type.key" }, - "14451": { + "14328": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "__type.value" }, - "14452": { + "14329": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "FlagSettings" }, - "14453": { + "14330": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "__type" }, - "14454": { + "14331": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "__type.key" }, - "14455": { + "14332": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "__type.description" }, - "14456": { + "14333": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "__type.env_key" }, - "14457": { + "14334": { "sourceFileName": "../../../../packages/core/types/src/feature-flag/common.ts", "qualifiedName": "__type.default_val" }, - "14458": { + "14335": { "sourceFileName": "../../../../packages/core/types/src/file/index.ts", "qualifiedName": "" }, - "14459": { + "14336": { "sourceFileName": "../../../../packages/core/types/src/file/common.ts", "qualifiedName": "FileDTO" }, - "14460": { + "14337": { "sourceFileName": "../../../../packages/core/types/src/file/common.ts", "qualifiedName": "FileDTO.id" }, - "14461": { + "14338": { "sourceFileName": "../../../../packages/core/types/src/file/common.ts", "qualifiedName": "FileDTO.url" }, - "14462": { + "14339": { "sourceFileName": "../../../../packages/core/types/src/file/common.ts", "qualifiedName": "FilterableFileProps" }, - "14463": { + "14340": { "sourceFileName": "../../../../packages/core/types/src/file/common.ts", "qualifiedName": "FilterableFileProps.id" }, - "14464": { + "14341": { "sourceFileName": "../../../../packages/core/types/src/file/mutations.ts", "qualifiedName": "CreateFileDTO" }, - "14465": { + "14342": { "sourceFileName": "../../../../packages/core/types/src/file/mutations.ts", "qualifiedName": "CreateFileDTO.filename" }, - "14466": { + "14343": { "sourceFileName": "../../../../packages/core/types/src/file/mutations.ts", "qualifiedName": "CreateFileDTO.mimeType" }, - "14467": { + "14344": { "sourceFileName": "../../../../packages/core/types/src/file/mutations.ts", "qualifiedName": "CreateFileDTO.content" }, - "14468": { + "14345": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "IFileModuleService" }, - "14469": { + "14346": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "IFileModuleService.createFiles" }, - "14470": { + "14347": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "IFileModuleService.createFiles" }, - "14471": { + "14348": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "data" }, - "14472": { + "14349": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "sharedContext" }, - "14473": { + "14350": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "IFileModuleService.createFiles" }, - "14474": { + "14351": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "data" }, - "14475": { + "14352": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "sharedContext" }, - "14476": { + "14353": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "IFileModuleService.deleteFiles" }, - "14477": { + "14354": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "IFileModuleService.deleteFiles" }, - "14478": { + "14355": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "ids" }, - "14479": { + "14356": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "sharedContext" }, - "14480": { + "14357": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "IFileModuleService.deleteFiles" }, - "14481": { + "14358": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "id" }, - "14482": { + "14359": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "sharedContext" }, - "14483": { + "14360": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "IFileModuleService.retrieveFile" }, - "14484": { + "14361": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "IFileModuleService.retrieveFile" }, - "14485": { + "14362": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "id" }, - "14486": { + "14363": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "config" }, - "14487": { + "14364": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "sharedContext" }, - "14488": { + "14365": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "IFileModuleService.listFiles" }, - "14489": { + "14366": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "IFileModuleService.listFiles" }, - "14490": { + "14367": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "filters" }, - "14491": { + "14368": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "config" }, - "14492": { + "14369": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "sharedContext" }, - "14493": { + "14370": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "IFileModuleService.listAndCountFiles" }, - "14494": { + "14371": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "IFileModuleService.listAndCountFiles" }, - "14495": { + "14372": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "filters" }, - "14496": { + "14373": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "config" }, - "14497": { + "14374": { "sourceFileName": "../../../../packages/core/types/src/file/service.ts", "qualifiedName": "sharedContext" }, - "14511": { + "14388": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "ProviderFileResultDTO" }, - "14512": { + "14389": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "__type.url" }, - "14513": { + "14390": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "__type.key" }, - "14514": { + "14391": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "ProviderGetFileDTO" }, - "14515": { + "14392": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "__type.fileKey" }, - "14516": { + "14393": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "__type.isPrivate" }, - "14517": { + "14394": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "ProviderDeleteFileDTO" }, - "14518": { + "14395": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "__type.fileKey" }, - "14519": { + "14396": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "ProviderUploadFileDTO" }, - "14520": { + "14397": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "__type.filename" }, - "14521": { + "14398": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "__type.mimeType" }, - "14522": { + "14399": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "__type.content" }, - "14523": { + "14400": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "IFileProvider" }, - "14524": { + "14401": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "IFileProvider.upload" }, - "14525": { + "14402": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "IFileProvider.upload" }, - "14526": { + "14403": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "file" }, - "14527": { + "14404": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "IFileProvider.delete" }, - "14528": { + "14405": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "IFileProvider.delete" }, - "14529": { + "14406": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "fileData" }, - "14530": { + "14407": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "IFileProvider.getPresignedDownloadUrl" }, - "14531": { + "14408": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "IFileProvider.getPresignedDownloadUrl" }, - "14532": { + "14409": { "sourceFileName": "../../../../packages/core/types/src/file/provider.ts", "qualifiedName": "fileData" }, - "14533": { + "14410": { "sourceFileName": "../../../../packages/core/types/src/file/providers/s3.ts", "qualifiedName": "S3FileServiceOptions" }, - "14534": { + "14411": { "sourceFileName": "../../../../packages/core/types/src/file/providers/s3.ts", "qualifiedName": "S3FileServiceOptions.file_url" }, - "14535": { + "14412": { "sourceFileName": "../../../../packages/core/types/src/file/providers/s3.ts", "qualifiedName": "S3FileServiceOptions.access_key_id" }, - "14536": { + "14413": { "sourceFileName": "../../../../packages/core/types/src/file/providers/s3.ts", "qualifiedName": "S3FileServiceOptions.secret_access_key" }, - "14537": { + "14414": { "sourceFileName": "../../../../packages/core/types/src/file/providers/s3.ts", "qualifiedName": "S3FileServiceOptions.region" }, - "14538": { + "14415": { "sourceFileName": "../../../../packages/core/types/src/file/providers/s3.ts", "qualifiedName": "S3FileServiceOptions.bucket" }, - "14539": { + "14416": { "sourceFileName": "../../../../packages/core/types/src/file/providers/s3.ts", "qualifiedName": "S3FileServiceOptions.prefix" }, - "14540": { + "14417": { "sourceFileName": "../../../../packages/core/types/src/file/providers/s3.ts", "qualifiedName": "S3FileServiceOptions.endpoint" }, - "14541": { + "14418": { "sourceFileName": "../../../../packages/core/types/src/file/providers/s3.ts", "qualifiedName": "S3FileServiceOptions.cache_control" }, - "14542": { + "14419": { "sourceFileName": "../../../../packages/core/types/src/file/providers/s3.ts", "qualifiedName": "S3FileServiceOptions.download_file_duration" }, - "14543": { + "14420": { "sourceFileName": "../../../../packages/core/types/src/file/providers/s3.ts", "qualifiedName": "S3FileServiceOptions.additional_client_config" }, - "14544": { + "14421": { "sourceFileName": "../../../../packages/core/types/src/file/providers/local.ts", "qualifiedName": "LocalFileServiceOptions" }, - "14545": { + "14422": { "sourceFileName": "../../../../packages/core/types/src/file/providers/local.ts", "qualifiedName": "LocalFileServiceOptions.upload_dir" }, - "14546": { + "14423": { "sourceFileName": "../../../../packages/core/types/src/file/providers/local.ts", "qualifiedName": "LocalFileServiceOptions.backend_url" }, - "14547": { + "14424": { "sourceFileName": "../../../../packages/core/types/src/http/index.ts", "qualifiedName": "" }, - "14548": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14425": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminCreateCampaign" + }, + "14426": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminCreateCampaign.name" + }, + "14427": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminCreateCampaign.description" + }, + "14428": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminCreateCampaign.currency" + }, + "14429": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminCreateCampaign.campaign_identifier" + }, + "14430": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminCreateCampaign.starts_at" + }, + "14431": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminCreateCampaign.ends_at" + }, + "14432": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminCreateCampaign.budget" + }, + "14433": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "__type" + }, + "14434": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "__type.type" + }, + "14435": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "__type.currency_code" + }, + "14436": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "__type.limit" + }, + "14437": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminUpdateCampaign" + }, + "14438": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminUpdateCampaign.name" + }, + "14439": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminUpdateCampaign.description" + }, + "14440": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminUpdateCampaign.currency" + }, + "14441": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminUpdateCampaign.campaign_identifier" + }, + "14442": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminUpdateCampaign.starts_at" + }, + "14443": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminUpdateCampaign.ends_at" + }, + "14444": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "AdminUpdateCampaign.budget" + }, + "14445": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "__type" + }, + "14446": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "__type.type" + }, + "14447": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "__type.currency_code" + }, + "14448": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/payloads.ts", + "qualifiedName": "__type.limit" + }, + "14449": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "CampaignResponse" }, - "14549": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14450": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "CampaignResponse.id" }, - "14550": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14451": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "CampaignResponse.name" }, - "14551": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14452": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "CampaignResponse.description" }, - "14552": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14453": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "CampaignResponse.currency" }, - "14553": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14454": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "CampaignResponse.campaign_identifier" }, - "14554": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14455": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "CampaignResponse.starts_at" }, - "14555": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14456": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "CampaignResponse.ends_at" }, - "14556": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14457": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "CampaignResponse.budget" }, - "14557": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14458": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "__type" }, - "14558": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14459": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "__type.id" }, - "14559": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14460": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "__type.type" }, - "14560": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14461": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "__type.currency_code" }, - "14561": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14462": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "__type.limit" }, - "14562": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14463": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "__type.used" }, - "14563": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14464": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "AdminCampaignListResponse" }, - "14564": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14465": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "__type" }, - "14565": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14466": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "__type.campaigns" }, - "14566": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14467": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "AdminCampaignResponse" }, - "14567": { - "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/campaign.ts", + "14468": { + "sourceFileName": "../../../../packages/core/types/src/http/campaign/admin/responses.ts", "qualifiedName": "AdminCampaignResponse.campaign" }, - "14568": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/admin.ts", + "14469": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/entities.ts", "qualifiedName": "AdminCollection" }, - "14569": { + "14470": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.id" }, - "14570": { + "14471": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.title" }, - "14571": { + "14472": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.handle" }, - "14572": { + "14473": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.created_at" }, - "14573": { + "14474": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.updated_at" }, - "14574": { + "14475": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.deleted_at" }, - "14575": { + "14476": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.products" }, - "14576": { + "14477": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.metadata" }, - "14577": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/admin.ts", - "qualifiedName": "AdminCollectionFilters" + "14478": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/payloads.ts", + "qualifiedName": "AdminCreateCollection" }, - "14578": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.q" + "14479": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/payloads.ts", + "qualifiedName": "AdminCreateCollection.title" }, - "14579": { + "14480": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/payloads.ts", + "qualifiedName": "AdminCreateCollection.handle" + }, + "14481": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/payloads.ts", + "qualifiedName": "AdminCreateCollection.metadata" + }, + "14482": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/payloads.ts", + "qualifiedName": "AdminUpdateCollection" + }, + "14483": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/payloads.ts", + "qualifiedName": "AdminUpdateCollection.title" + }, + "14484": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/payloads.ts", + "qualifiedName": "AdminUpdateCollection.handle" + }, + "14485": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/payloads.ts", + "qualifiedName": "AdminUpdateCollection.metadata" + }, + "14486": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/payloads.ts", + "qualifiedName": "AdminUpdateCollectionProducts" + }, + "14487": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/payloads.ts", + "qualifiedName": "AdminUpdateCollectionProducts.add" + }, + "14488": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/payloads.ts", + "qualifiedName": "AdminUpdateCollectionProducts.remove" + }, + "14489": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/queries.ts", + "qualifiedName": "AdminCollectionListParams" + }, + "14490": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/queries.ts", + "qualifiedName": "AdminCollectionListParams.deleted_at" + }, + "14491": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.id" + "qualifiedName": "BaseCollectionListParams.q" }, - "14580": { + "14492": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.handle" + "qualifiedName": "BaseCollectionListParams.id" }, - "14581": { + "14493": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.title" + "qualifiedName": "BaseCollectionListParams.handle" }, - "14582": { + "14494": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.created_at" + "qualifiedName": "BaseCollectionListParams.title" }, - "14583": { + "14495": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.updated_at" + "qualifiedName": "BaseCollectionListParams.created_at" }, - "14584": { + "14496": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.deleted_at" + "qualifiedName": "BaseCollectionListParams.updated_at" }, - "14585": { + "14497": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.limit" + }, + "14498": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.offset" + }, + "14499": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.order" + }, + "14500": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "SelectParams.fields" + }, + "14501": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "14586": { + "14502": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "14587": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/admin.ts", - "qualifiedName": "AdminCreateCollection" + "14503": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/queries.ts", + "qualifiedName": "AdminCollectionParams" }, - "14588": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/admin.ts", - "qualifiedName": "AdminCreateCollection.title" + "14504": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "SelectParams.fields" }, - "14589": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/admin.ts", - "qualifiedName": "AdminCreateCollection.handle" + "14505": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/responses.ts", + "qualifiedName": "AdminCollectionResponse" }, - "14590": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/admin.ts", - "qualifiedName": "AdminCreateCollection.metadata" + "14506": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/responses.ts", + "qualifiedName": "AdminCollectionResponse.collection" }, - "14591": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/admin.ts", - "qualifiedName": "AdminUpdateCollection" + "14507": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/responses.ts", + "qualifiedName": "AdminCollectionListResponse" }, - "14592": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/admin.ts", - "qualifiedName": "title" + "14508": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/responses.ts", + "qualifiedName": "__type" }, - "14593": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/admin.ts", - "qualifiedName": "handle" + "14509": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/responses.ts", + "qualifiedName": "__type.collections" }, - "14594": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/admin.ts", - "qualifiedName": "metadata" + "14510": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.limit" }, - "14595": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/admin.ts", - "qualifiedName": "AdminUpdateCollectionProducts" + "14511": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.offset" + }, + "14512": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.count" + }, + "14513": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/responses.ts", + "qualifiedName": "__type.collections" + }, + "14514": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/admin/responses.ts", + "qualifiedName": "AdminCollectionDeleteResponse" + }, + "14515": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.id" + }, + "14516": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.object" }, - "14596": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/admin.ts", - "qualifiedName": "AdminUpdateCollectionProducts.add" + "14517": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.deleted" }, - "14597": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/admin.ts", - "qualifiedName": "AdminUpdateCollectionProducts.remove" + "14518": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.parent" }, - "14598": { + "14519": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "14520": { "sourceFileName": "../../../../packages/core/types/src/http/collection/store.ts", "qualifiedName": "StoreCollection" }, - "14599": { + "14521": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.id" }, - "14600": { + "14522": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.title" }, - "14601": { + "14523": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.handle" }, - "14602": { + "14524": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.created_at" }, - "14603": { + "14525": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.updated_at" }, - "14604": { + "14526": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.deleted_at" }, - "14605": { + "14527": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.products" }, - "14606": { + "14528": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.metadata" }, - "14607": { + "14529": { "sourceFileName": "../../../../packages/core/types/src/http/collection/store.ts", "qualifiedName": "StoreCollectionFilters" }, - "14608": { + "14530": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.q" + "qualifiedName": "BaseCollectionListParams.q" }, - "14609": { + "14531": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.id" + "qualifiedName": "BaseCollectionListParams.id" }, - "14610": { + "14532": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.handle" + "qualifiedName": "BaseCollectionListParams.handle" }, - "14611": { + "14533": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.title" + "qualifiedName": "BaseCollectionListParams.title" }, - "14612": { + "14534": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.created_at" + "qualifiedName": "BaseCollectionListParams.created_at" }, - "14613": { + "14535": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.updated_at" + "qualifiedName": "BaseCollectionListParams.updated_at" }, - "14614": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.deleted_at" + "14536": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.limit" }, - "14615": { + "14537": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.offset" + }, + "14538": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.order" + }, + "14539": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "SelectParams.fields" + }, + "14540": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "14616": { + "14541": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "14617": { + "14542": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams" }, - "14618": { + "14543": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "14619": { + "14544": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams" }, - "14620": { + "14545": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.limit" }, - "14621": { + "14546": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.offset" }, - "14622": { + "14547": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.order" }, - "14623": { + "14548": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "14624": { + "14549": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "DeleteResponse" }, - "14625": { + "14550": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type" }, - "14626": { + "14551": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.id" }, - "14627": { + "14552": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.object" }, - "14628": { + "14553": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.deleted" }, - "14629": { + "14554": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.parent" }, - "14630": { + "14555": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "TObject" }, - "14631": { + "14556": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "TParent" }, - "14632": { + "14557": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type" }, - "14633": { + "14558": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "PaginatedResponse" }, - "14634": { + "14559": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type" }, - "14635": { + "14560": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.limit" }, - "14636": { + "14561": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.offset" }, - "14637": { + "14562": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.count" }, - "14638": { + "14563": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "T" }, - "14639": { + "14564": { "sourceFileName": "../../../../packages/core/types/src/http/file/admin.ts", "qualifiedName": "AdminFile" }, - "14640": { + "14565": { "sourceFileName": "../../../../packages/core/types/src/http/file/common.ts", "qualifiedName": "BaseFile.id" }, - "14641": { + "14566": { "sourceFileName": "../../../../packages/core/types/src/http/file/common.ts", "qualifiedName": "BaseFile.url" }, - "14642": { + "14567": { "sourceFileName": "../../../../packages/core/types/src/http/file/admin.ts", "qualifiedName": "AdminUploadFile" }, - "14643": { + "14568": { "sourceFileName": "../../../../packages/core/types/src/http/file/store.ts", "qualifiedName": "StoreFile" }, - "14644": { + "14569": { "sourceFileName": "../../../../packages/core/types/src/http/file/common.ts", "qualifiedName": "BaseFile.id" }, - "14645": { + "14570": { "sourceFileName": "../../../../packages/core/types/src/http/file/common.ts", "qualifiedName": "BaseFile.url" }, - "14646": { + "14571": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-provider/admin/entities.ts", "qualifiedName": "AdminFulfillmentProvider" }, - "14647": { + "14572": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-provider/admin/entities.ts", "qualifiedName": "AdminFulfillmentProvider.id" }, - "14648": { + "14573": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-provider/admin/entities.ts", "qualifiedName": "AdminFulfillmentProvider.is_enabled" }, - "14649": { + "14574": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-provider/admin/queries.ts", "qualifiedName": "AdminFulfillmentProviderListParams" }, - "14650": { + "14575": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-provider/admin/queries.ts", "qualifiedName": "AdminFulfillmentProviderListParams.id" }, - "14651": { + "14576": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-provider/admin/queries.ts", "qualifiedName": "AdminFulfillmentProviderListParams.q" }, - "14652": { + "14577": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-provider/admin/queries.ts", "qualifiedName": "AdminFulfillmentProviderListParams.is_enabled" }, - "14653": { + "14578": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.limit" }, - "14654": { + "14579": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.offset" }, - "14655": { + "14580": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.order" }, - "14656": { + "14581": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "14657": { + "14582": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-provider/admin/responses.ts", "qualifiedName": "AdminFulfillmentProviderListResponse" }, - "14658": { + "14583": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-provider/admin/responses.ts", "qualifiedName": "__type" }, - "14659": { + "14584": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-provider/admin/responses.ts", "qualifiedName": "__type.fulfillment_providers" }, - "14660": { + "14585": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.limit" }, - "14661": { + "14586": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.offset" }, - "14662": { + "14587": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.count" }, - "14663": { + "14588": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-provider/admin/responses.ts", "qualifiedName": "__type.fulfillment_providers" }, - "14664": { + "14589": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminGeoZone" }, - "14665": { + "14590": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminGeoZone.id" }, - "14666": { + "14591": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminGeoZone.type" }, - "14667": { + "14592": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminGeoZone.country_code" }, - "14668": { + "14593": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminGeoZone.province_code" }, - "14669": { + "14594": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminGeoZone.city" }, - "14670": { + "14595": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminGeoZone.postal_expression" }, - "14671": { + "14596": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminGeoZone.created_at" }, - "14672": { + "14597": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminGeoZone.updated_at" }, - "14673": { + "14598": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminGeoZone.deleted_at" }, - "14674": { + "14599": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminServiceZone" }, - "14675": { + "14600": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminServiceZone.id" }, - "14676": { + "14601": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminServiceZone.name" }, - "14677": { + "14602": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminServiceZone.fulfillment_set_id" }, - "14678": { + "14603": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminServiceZone.geo_zones" }, - "14679": { + "14604": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminServiceZone.shipping_options" }, - "14680": { + "14605": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminServiceZone.created_at" }, - "14681": { + "14606": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminServiceZone.updated_at" }, - "14682": { + "14607": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminServiceZone.deleted_at" }, - "14683": { + "14608": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminFulfillmentSet" }, - "14684": { + "14609": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminFulfillmentSet.id" }, - "14685": { + "14610": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminFulfillmentSet.name" }, - "14686": { + "14611": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminFulfillmentSet.type" }, - "14687": { + "14612": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminFulfillmentSet.service_zones" }, - "14688": { + "14613": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminFulfillmentSet.created_at" }, - "14689": { + "14614": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminFulfillmentSet.updated_at" }, - "14690": { + "14615": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/entities.ts", "qualifiedName": "AdminFulfillmentSet.deleted_at" }, - "14691": { + "14616": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminCreateFulfillmentSetServiceZone" }, - "14692": { + "14617": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminCreateFulfillmentSetServiceZone.name" }, - "14693": { + "14618": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminCreateFulfillmentSetServiceZone.geo_zones" }, - "14694": { + "14619": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZone" }, - "14695": { + "14620": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZone.name" }, - "14696": { + "14621": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZone.geo_zones" }, - "14697": { + "14622": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/responses.ts", "qualifiedName": "AdminServiceZoneResponse" }, - "14698": { + "14623": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/responses.ts", "qualifiedName": "AdminServiceZoneResponse.service_zone" }, - "14699": { + "14624": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/responses.ts", "qualifiedName": "AdminServiceZoneDeleteResponse" }, - "14700": { + "14625": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.id" }, - "14701": { + "14626": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.object" }, - "14702": { + "14627": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.deleted" }, - "14703": { + "14628": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.parent" }, - "14704": { + "14629": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/responses.ts", "qualifiedName": "AdminFulfillmentSetResponse" }, - "14705": { + "14630": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/responses.ts", "qualifiedName": "AdminFulfillmentSetResponse.fulfillment_set" }, - "14706": { + "14631": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/responses.ts", "qualifiedName": "AdminFulfillmentSetDeleteResponse" }, - "14707": { + "14632": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.id" }, - "14708": { + "14633": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.object" }, - "14709": { + "14634": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.deleted" }, - "14710": { + "14635": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.parent" }, - "14711": { + "14636": { "sourceFileName": "", "qualifiedName": "__type" }, - "14712": { + "14637": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem" }, - "14713": { + "14638": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.id" }, - "14714": { + "14639": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.sku" }, - "14715": { + "14640": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.origin_country" }, - "14716": { + "14641": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.hs_code" }, - "14717": { + "14642": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.requires_shipping" }, - "14718": { + "14643": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.mid_code" }, - "14719": { + "14644": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.material" }, - "14720": { + "14645": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.weight" }, - "14721": { + "14646": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.length" }, - "14722": { + "14647": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.height" }, - "14723": { + "14648": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.width" }, - "14724": { + "14649": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.title" }, - "14725": { + "14650": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.description" }, - "14726": { + "14651": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.thumbnail" }, - "14727": { + "14652": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/entities.ts", "qualifiedName": "AdminInventoryItem.metadata" }, - "14728": { + "14653": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem" }, - "14729": { + "14654": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.sku" }, - "14730": { + "14655": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.hs_code" }, - "14731": { + "14656": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.weight" }, - "14732": { + "14657": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.length" }, - "14733": { + "14658": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.height" }, - "14734": { + "14659": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.width" }, - "14735": { + "14660": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.origin_country" }, - "14736": { + "14661": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.mid_code" }, - "14737": { + "14662": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.material" }, - "14738": { + "14663": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.title" }, - "14739": { + "14664": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.description" }, - "14740": { + "14665": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.requires_shipping" }, - "14741": { + "14666": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.thumbnail" }, - "14742": { + "14667": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.metadata" }, - "14743": { + "14668": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminUpdateInventoryItem" }, - "14744": { + "14669": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.sku" }, - "14745": { + "14670": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.hs_code" }, - "14746": { + "14671": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.weight" }, - "14747": { + "14672": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.length" }, - "14748": { + "14673": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.height" }, - "14749": { + "14674": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.width" }, - "14750": { + "14675": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.origin_country" }, - "14751": { + "14676": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.mid_code" }, - "14752": { + "14677": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.material" }, - "14753": { + "14678": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.title" }, - "14754": { + "14679": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.description" }, - "14755": { + "14680": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.requires_shipping" }, - "14756": { + "14681": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.thumbnail" }, - "14757": { + "14682": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryItem.metadata" }, - "14758": { + "14683": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams" }, - "14759": { + "14684": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams.id" }, - "14760": { + "14685": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams.q" }, - "14761": { + "14686": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams.sku" }, - "14762": { + "14687": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams.origin_country" }, - "14763": { + "14688": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams.mid_code" }, - "14764": { + "14689": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams.hs_code" }, - "14765": { + "14690": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams.material" }, - "14766": { + "14691": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams.requires_shipping" }, - "14767": { + "14692": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams.weight" }, - "14768": { + "14693": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams.length" }, - "14769": { + "14694": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams.height" }, - "14770": { + "14695": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams.width" }, - "14771": { + "14696": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/queries.ts", "qualifiedName": "AdminInventoryItemParams.location_levels" }, - "14772": { + "14697": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.limit" }, - "14773": { + "14698": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.offset" }, - "14774": { + "14699": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.order" }, - "14775": { + "14700": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "14776": { + "14701": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/responses.ts", "qualifiedName": "AdminInventoryItemResponse" }, - "14777": { + "14702": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/responses.ts", "qualifiedName": "AdminInventoryItemResponse.inventory_item" }, - "14778": { + "14703": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/responses.ts", "qualifiedName": "AdminInventoryItemListResponse" }, - "14779": { + "14704": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/responses.ts", "qualifiedName": "__type" }, - "14780": { + "14705": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/responses.ts", "qualifiedName": "__type.inventory_items" }, - "14781": { + "14706": { "sourceFileName": "../../../../packages/core/types/src/http/inventory/admin/responses.ts", "qualifiedName": "AdminInventoryItemDeleteResponse" }, - "14782": { + "14707": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/entities.ts", "qualifiedName": "InventoryLevel" }, - "14783": { + "14708": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/entities.ts", "qualifiedName": "InventoryLevel.id" }, - "14784": { + "14709": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/entities.ts", "qualifiedName": "InventoryLevel.inventory_item_id" }, - "14785": { + "14710": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/entities.ts", "qualifiedName": "InventoryLevel.location_id" }, - "14786": { + "14711": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/entities.ts", "qualifiedName": "InventoryLevel.stocked_quantity" }, - "14787": { + "14712": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/entities.ts", "qualifiedName": "InventoryLevel.reserved_quantity" }, - "14788": { + "14713": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/entities.ts", "qualifiedName": "InventoryLevel.available_quantity" }, - "14789": { + "14714": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/entities.ts", "qualifiedName": "InventoryLevel.incoming_quantity" }, - "14790": { + "14715": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/entities.ts", "qualifiedName": "InventoryLevel.metadata" }, - "14791": { + "14716": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/payloads.ts", "qualifiedName": "AdminUpdateInventoryLevel" }, - "14792": { + "14717": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/payloads.ts", "qualifiedName": "AdminUpdateInventoryLevel.stocked_quantity" }, - "14793": { + "14718": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/payloads.ts", "qualifiedName": "AdminUpdateInventoryLevel.incoming_quantity" }, - "14794": { + "14719": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryLevel" }, - "14795": { + "14720": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryLevel.location_id" }, - "14796": { + "14721": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryLevel.stocked_quantity" }, - "14797": { + "14722": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/payloads.ts", "qualifiedName": "AdminCreateInventoryLevel.incoming_quantity" }, - "14798": { + "14723": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/payloads.ts", "qualifiedName": "AdminBatchUpdateInventoryLevelLocation" }, - "14799": { + "14724": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/payloads.ts", "qualifiedName": "AdminBatchUpdateInventoryLevelLocation.delete" }, - "14800": { + "14725": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/payloads.ts", "qualifiedName": "AdminBatchUpdateInventoryLevelLocation.update" }, - "14801": { + "14726": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/payloads.ts", "qualifiedName": "AdminBatchUpdateInventoryLevelLocation.create" }, - "14802": { + "14727": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/queries.ts", "qualifiedName": "AdminInventoryLevelFilters" }, - "14803": { + "14728": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/queries.ts", "qualifiedName": "AdminInventoryLevelFilters.location_id" }, - "14804": { + "14729": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.limit" }, - "14805": { + "14730": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.offset" }, - "14806": { + "14731": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.order" }, - "14807": { + "14732": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "14808": { + "14733": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/responses.ts", "qualifiedName": "AdminInventoryLevelResponse" }, - "14809": { + "14734": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/responses.ts", "qualifiedName": "AdminInventoryLevelResponse.inventory_level" }, - "14810": { + "14735": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/responses.ts", "qualifiedName": "AdminInventoryLevelListResponse" }, - "14811": { + "14736": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/responses.ts", "qualifiedName": "__type" }, - "14812": { + "14737": { "sourceFileName": "../../../../packages/core/types/src/http/inventory-level/admin/responses.ts", "qualifiedName": "__type.inventory_levels" }, - "14813": { + "14738": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "AdminAcceptInvite" }, - "14814": { + "14739": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type" }, - "14815": { + "14740": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type.first_name" }, - "14816": { + "14741": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type.last_name" }, - "14817": { + "14742": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "AdminCreateInvite" }, - "14818": { + "14743": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type" }, - "14819": { + "14744": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type.email" }, - "14820": { + "14745": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type.metadata" }, - "14821": { + "14746": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "AdminInviteResponse" }, - "14822": { + "14747": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type" }, - "14823": { + "14748": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type.id" }, - "14824": { + "14749": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type.email" }, - "14825": { + "14750": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type.accepted" }, - "14826": { + "14751": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type.token" }, - "14827": { + "14752": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type.expires_at" }, - "14828": { + "14753": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type.metadata" }, - "14829": { + "14754": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type.created_at" }, - "14830": { + "14755": { "sourceFileName": "../../../../packages/core/types/src/http/invite/admin.ts", "qualifiedName": "__type.updated_at" }, - "14831": { + "14756": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceListPrice" }, - "14832": { + "14757": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceListPrice.variant_id" }, - "14833": { + "14758": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceListPrice.rules" }, - "14834": { + "14759": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceList" }, - "14835": { + "14760": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceList.id" }, - "14836": { + "14761": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceList.title" }, - "14837": { + "14762": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceList.description" }, - "14838": { + "14763": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceList.rules" }, - "14839": { + "14764": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceList.starts_at" }, - "14840": { + "14765": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceList.ends_at" }, - "14841": { + "14766": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceList.status" }, - "14842": { + "14767": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceList.type" }, - "14843": { + "14768": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceList.prices" }, - "14844": { + "14769": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceList.created_at" }, - "14845": { + "14770": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceList.updated_at" }, - "14846": { + "14771": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/entities.ts", "qualifiedName": "AdminPriceList.deleted_at" }, - "14847": { + "14772": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceListPrice" }, - "14848": { + "14773": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceListPrice.currency_code" }, - "14849": { + "14774": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceListPrice.amount" }, - "14850": { + "14775": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceListPrice.variant_id" }, - "14851": { + "14776": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceListPrice.min_quantity" }, - "14852": { + "14777": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceListPrice.max_quantity" }, - "14853": { + "14778": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceListPrice.rules" }, - "14854": { + "14779": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceList" }, - "14855": { + "14780": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceList.title" }, - "14856": { + "14781": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceList.description" }, - "14857": { + "14782": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceList.starts_at" }, - "14858": { + "14783": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceList.ends_at" }, - "14859": { + "14784": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceList.status" }, - "14860": { + "14785": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceList.type" }, - "14861": { + "14786": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceList.rules" }, - "14862": { + "14787": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminCreatePriceList.prices" }, - "14863": { + "14788": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceListPrice" }, - "14864": { + "14789": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceListPrice.id" }, - "14865": { + "14790": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceListPrice.currency_code" }, - "14866": { + "14791": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceListPrice.amount" }, - "14867": { + "14792": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceListPrice.variant_id" }, - "14868": { + "14793": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceListPrice.min_quantity" }, - "14869": { + "14794": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceListPrice.max_quantity" }, - "14870": { + "14795": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceListPrice.rules" }, - "14871": { + "14796": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceList" }, - "14872": { + "14797": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceList.title" }, - "14873": { + "14798": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceList.description" }, - "14874": { + "14799": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceList.starts_at" }, - "14875": { + "14800": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceList.ends_at" }, - "14876": { + "14801": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceList.status" }, - "14877": { + "14802": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceList.type" }, - "14878": { + "14803": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminUpdatePriceList.rules" }, - "14879": { + "14804": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminBatchPriceListPrice" }, - "14880": { + "14805": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminBatchPriceListPrice.create" }, - "14881": { + "14806": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminBatchPriceListPrice.update" }, - "14882": { + "14807": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminBatchPriceListPrice.delete" }, - "14883": { + "14808": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminLinkPriceListProducts" }, - "14884": { + "14809": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/payloads.ts", "qualifiedName": "AdminLinkPriceListProducts.remove" }, - "14885": { + "14810": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/queries.ts", "qualifiedName": "AdminPriceListListParams" }, - "14886": { + "14811": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/queries.ts", "qualifiedName": "AdminPriceListListParams.q" }, - "14887": { + "14812": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/queries.ts", "qualifiedName": "AdminPriceListListParams.id" }, - "14888": { + "14813": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/queries.ts", "qualifiedName": "AdminPriceListListParams.starts_at" }, - "14889": { + "14814": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/queries.ts", "qualifiedName": "AdminPriceListListParams.ends_at" }, - "14890": { + "14815": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/queries.ts", "qualifiedName": "AdminPriceListListParams.status" }, - "14891": { + "14816": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/queries.ts", "qualifiedName": "AdminPriceListListParams.rules_count" }, - "14892": { + "14817": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.limit" }, - "14893": { + "14818": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.offset" }, - "14894": { + "14819": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.order" }, - "14895": { + "14820": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "14896": { + "14821": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "14897": { + "14822": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "14898": { + "14823": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/queries.ts", "qualifiedName": "AdminPriceListParams" }, - "14899": { + "14824": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "14900": { + "14825": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/responses.ts", "qualifiedName": "AdminPriceListResponse" }, - "14901": { + "14826": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/responses.ts", "qualifiedName": "AdminPriceListResponse.price_list" }, - "14902": { + "14827": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/responses.ts", "qualifiedName": "AdminPriceListListResponse" }, - "14903": { + "14828": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/responses.ts", "qualifiedName": "__type" }, - "14904": { + "14829": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/responses.ts", "qualifiedName": "__type.price_lists" }, - "14905": { + "14830": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.limit" }, - "14906": { + "14831": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.offset" }, - "14907": { + "14832": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.count" }, - "14908": { + "14833": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/responses.ts", "qualifiedName": "__type.price_lists" }, - "14909": { + "14834": { "sourceFileName": "../../../../packages/core/types/src/http/price-list/admin/responses.ts", "qualifiedName": "AdminPriceListDeleteResponse" }, - "14910": { + "14835": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.id" }, - "14911": { + "14836": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.object" }, - "14912": { + "14837": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.deleted" }, - "14913": { + "14838": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.parent" }, - "14914": { + "14839": { "sourceFileName": "", "qualifiedName": "__type" }, - "14915": { + "14840": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/entities.ts", "qualifiedName": "AdminProductCategory" }, - "14916": { + "14841": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/entities.ts", "qualifiedName": "AdminProductCategory.category_children" }, - "14917": { + "14842": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/entities.ts", "qualifiedName": "AdminProductCategory.parent_category" }, - "14918": { + "14843": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/entities.ts", "qualifiedName": "AdminProductCategory.products" }, - "14919": { + "14844": { + "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", + "qualifiedName": "name" + }, + "14845": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "id" }, - "14920": { + "14846": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "created_at" }, - "14921": { + "14847": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "updated_at" }, - "14922": { + "14848": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "deleted_at" }, - "14923": { - "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", - "qualifiedName": "name" - }, - "14924": { + "14849": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "description" }, - "14925": { + "14850": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "handle" }, - "14926": { + "14851": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "parent_category_id" }, - "14927": { + "14852": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "is_active" }, - "14928": { + "14853": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "is_internal" }, - "14929": { + "14854": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "rank" }, - "14930": { + "14855": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminCreateProductCategory" }, - "14931": { + "14856": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminCreateProductCategory.name" }, - "14932": { + "14857": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminCreateProductCategory.description" }, - "14933": { + "14858": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminCreateProductCategory.handle" }, - "14934": { + "14859": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminCreateProductCategory.is_internal" }, - "14935": { + "14860": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminCreateProductCategory.is_active" }, - "14936": { + "14861": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminCreateProductCategory.parent_category_id" }, - "14937": { + "14862": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminCreateProductCategory.rank" }, - "14938": { + "14863": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminCreateProductCategory.metadata" }, - "14939": { + "14864": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminUpdateProductCategory" }, - "14940": { + "14865": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminUpdateProductCategory.name" }, - "14941": { + "14866": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminUpdateProductCategory.description" }, - "14942": { + "14867": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminUpdateProductCategory.handle" }, - "14943": { + "14868": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminUpdateProductCategory.is_internal" }, - "14944": { + "14869": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminUpdateProductCategory.is_active" }, - "14945": { + "14870": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminUpdateProductCategory.parent_category_id" }, - "14946": { + "14871": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminUpdateProductCategory.rank" }, - "14947": { + "14872": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminUpdateProductCategory.metadata" }, - "14948": { + "14873": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminUpdateProductCategoryProducts" }, - "14949": { + "14874": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminUpdateProductCategoryProducts.add" }, - "14950": { + "14875": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/payloads.ts", "qualifiedName": "AdminUpdateProductCategoryProducts.remove" }, - "14951": { + "14876": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/queries.ts", "qualifiedName": "AdminProductCategoryListParams" }, - "14952": { + "14877": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/queries.ts", "qualifiedName": "AdminProductCategoryListParams.is_internal" }, - "14953": { + "14878": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/queries.ts", "qualifiedName": "AdminProductCategoryListParams.is_active" }, - "14954": { + "14879": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.q" }, - "14955": { + "14880": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.id" }, - "14956": { + "14881": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.name" }, - "14957": { + "14882": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.description" }, - "14958": { + "14883": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.parent_category_id" }, - "14959": { + "14884": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.handle" }, - "14960": { + "14885": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.include_descendants_tree" }, - "14961": { + "14886": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.include_ancestors_tree" }, - "14962": { + "14887": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.created_at" }, - "14963": { + "14888": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.updated_at" }, - "14964": { + "14889": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.deleted_at" }, - "14965": { + "14890": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.limit" }, - "14966": { + "14891": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.offset" }, - "14967": { + "14892": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.order" }, - "14968": { + "14893": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "14969": { + "14894": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "14970": { + "14895": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "14971": { + "14896": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/queries.ts", "qualifiedName": "AdminProductCategoryParams" }, - "14972": { + "14897": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryParams.include_ancestors_tree" }, - "14973": { + "14898": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryParams.include_descendants_tree" }, - "14974": { + "14899": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "14975": { + "14900": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/responses.ts", "qualifiedName": "AdminProductCategoryResponse" }, - "14976": { + "14901": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/responses.ts", "qualifiedName": "AdminProductCategoryResponse.product_category" }, - "14977": { + "14902": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/responses.ts", "qualifiedName": "AdminProductCategoryListResponse" }, - "14978": { + "14903": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/responses.ts", "qualifiedName": "__type" }, - "14979": { + "14904": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/responses.ts", "qualifiedName": "__type.product_categories" }, - "14980": { + "14905": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.limit" }, - "14981": { + "14906": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.offset" }, - "14982": { + "14907": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.count" }, - "14983": { + "14908": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/responses.ts", "qualifiedName": "__type.product_categories" }, - "14984": { + "14909": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/admin/responses.ts", "qualifiedName": "AdminProductCategoryDeleteResponse" }, - "14985": { + "14910": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.id" }, - "14986": { + "14911": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.object" }, - "14987": { + "14912": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.deleted" }, - "14988": { + "14913": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.parent" }, - "14989": { + "14914": { "sourceFileName": "", "qualifiedName": "__type" }, - "14990": { + "14915": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/entities.ts", + "qualifiedName": "AdminProductTag" + }, + "14916": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTag.id" + }, + "14917": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTag.value" + }, + "14918": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTag.created_at" + }, + "14919": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTag.updated_at" + }, + "14920": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTag.deleted_at" + }, + "14921": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTag.metadata" + }, + "14922": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/payloads.ts", + "qualifiedName": "AdminCreateProductTag" + }, + "14923": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/payloads.ts", + "qualifiedName": "AdminCreateProductTag.value" + }, + "14924": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/payloads.ts", + "qualifiedName": "AdminCreateProductTag.metadata" + }, + "14925": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/payloads.ts", + "qualifiedName": "AdminUpdateProductTag" + }, + "14926": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/payloads.ts", + "qualifiedName": "AdminUpdateProductTag.value" + }, + "14927": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/payloads.ts", + "qualifiedName": "AdminUpdateProductTag.metadata" + }, + "14928": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/queries.ts", + "qualifiedName": "AdminProductTagListParams" + }, + "14929": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/queries.ts", + "qualifiedName": "AdminProductTagListParams.deleted_at" + }, + "14930": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTagListParams.q" + }, + "14931": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTagListParams.id" + }, + "14932": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTagListParams.value" + }, + "14933": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTagListParams.created_at" + }, + "14934": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTagListParams.updated_at" + }, + "14935": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.limit" + }, + "14936": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.offset" + }, + "14937": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.order" + }, + "14938": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "SelectParams.fields" + }, + "14939": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" + }, + "14940": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" + }, + "14941": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/queries.ts", + "qualifiedName": "AdminProductTagParams" + }, + "14942": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "SelectParams.fields" + }, + "14943": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/responses.ts", + "qualifiedName": "AdminProductTagResponse" + }, + "14944": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/responses.ts", + "qualifiedName": "AdminProductTagResponse.product_tag" + }, + "14945": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/responses.ts", + "qualifiedName": "AdminProductTagListResponse" + }, + "14946": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/responses.ts", + "qualifiedName": "__type" + }, + "14947": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/responses.ts", + "qualifiedName": "__type.product_tags" + }, + "14948": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.limit" + }, + "14949": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.offset" + }, + "14950": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.count" + }, + "14951": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/responses.ts", + "qualifiedName": "__type.product_tags" + }, + "14952": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/admin/responses.ts", + "qualifiedName": "AdminProductTagDeleteResponse" + }, + "14953": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.id" + }, + "14954": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.object" + }, + "14955": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.deleted" + }, + "14956": { + "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", + "qualifiedName": "__type.parent" + }, + "14957": { + "sourceFileName": "", + "qualifiedName": "__type" + }, + "14958": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/entities.ts", "qualifiedName": "AdminProductType" }, - "14991": { + "14959": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/common.ts", "qualifiedName": "BaseProductType.id" }, - "14992": { + "14960": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/common.ts", "qualifiedName": "BaseProductType.value" }, - "14993": { + "14961": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/common.ts", "qualifiedName": "BaseProductType.created_at" }, - "14994": { + "14962": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/common.ts", "qualifiedName": "BaseProductType.updated_at" }, - "14995": { + "14963": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/common.ts", "qualifiedName": "BaseProductType.deleted_at" }, - "14996": { + "14964": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/common.ts", "qualifiedName": "BaseProductType.metadata" }, - "14997": { + "14965": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/payloads.ts", "qualifiedName": "AdminCreateProductType" }, - "14998": { + "14966": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/payloads.ts", "qualifiedName": "AdminCreateProductType.value" }, - "14999": { + "14967": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/payloads.ts", "qualifiedName": "AdminCreateProductType.metadata" }, - "15000": { + "14968": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/payloads.ts", "qualifiedName": "AdminUpdateProductType" }, - "15001": { + "14969": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/payloads.ts", "qualifiedName": "AdminUpdateProductType.value" }, - "15002": { + "14970": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/payloads.ts", "qualifiedName": "AdminUpdateProductType.metadata" }, - "15003": { + "14971": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/queries.ts", "qualifiedName": "AdminProductTypeListParams" }, - "15004": { + "14972": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/queries.ts", "qualifiedName": "AdminProductTypeListParams.q" }, - "15005": { + "14973": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/queries.ts", "qualifiedName": "AdminProductTypeListParams.id" }, - "15006": { + "14974": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/queries.ts", "qualifiedName": "AdminProductTypeListParams.value" }, - "15007": { + "14975": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/queries.ts", "qualifiedName": "AdminProductTypeListParams.created_at" }, - "15008": { + "14976": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/queries.ts", "qualifiedName": "AdminProductTypeListParams.updated_at" }, - "15009": { + "14977": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/queries.ts", "qualifiedName": "AdminProductTypeListParams.deleted_at" }, - "15010": { + "14978": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.limit" }, - "15011": { + "14979": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.offset" }, - "15012": { + "14980": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.order" }, - "15013": { + "14981": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "15014": { + "14982": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "15015": { + "14983": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "15016": { + "14984": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/queries.ts", "qualifiedName": "AdminProductTypeParams" }, - "15017": { + "14985": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "15018": { + "14986": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/responses.ts", "qualifiedName": "AdminProductTypeResponse" }, - "15019": { + "14987": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/responses.ts", "qualifiedName": "AdminProductTypeResponse.product_type" }, - "15020": { + "14988": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/responses.ts", "qualifiedName": "AdminProductTypeListResponse" }, - "15021": { + "14989": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/responses.ts", "qualifiedName": "__type" }, - "15022": { + "14990": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/responses.ts", "qualifiedName": "__type.product_types" }, - "15023": { + "14991": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.limit" }, - "15024": { + "14992": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.offset" }, - "15025": { + "14993": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.count" }, - "15026": { + "14994": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/responses.ts", "qualifiedName": "__type.product_types" }, - "15027": { + "14995": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/admin/responses.ts", "qualifiedName": "AdminProductTypeDeleteResponse" }, - "15028": { + "14996": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.id" }, - "15029": { + "14997": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.object" }, - "15030": { + "14998": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.deleted" }, - "15031": { + "14999": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.parent" }, - "15032": { + "15000": { "sourceFileName": "", "qualifiedName": "__type" }, - "15033": { + "15001": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "AdminReservationResponse" }, - "15034": { + "15002": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "AdminReservationResponse.reservation" }, - "15035": { + "15003": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "AdminReservationListResponse" }, - "15036": { + "15004": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "__type" }, - "15037": { + "15005": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "__type.reservations" }, - "15038": { + "15006": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionType" }, - "15039": { + "15007": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionType.id" }, - "15040": { + "15008": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionType.label" }, - "15041": { + "15009": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionType.description" }, - "15042": { + "15010": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionType.code" }, - "15043": { + "15011": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionType.shipping_option_id" }, - "15044": { + "15012": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionType.created_at" }, - "15045": { + "15013": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionType.updated_at" }, - "15046": { + "15014": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionType.deleted_at" }, - "15047": { + "15015": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionRule" }, - "15048": { + "15016": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionRule.id" }, - "15049": { + "15017": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionRule.attribute" }, - "15050": { + "15018": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionRule.operator" }, - "15051": { + "15019": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionRule.value" }, - "15052": { + "15020": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionRule.shipping_option_id" }, - "15053": { + "15021": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionRule.created_at" }, - "15054": { + "15022": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionRule.updated_at" }, - "15055": { + "15023": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionRule.deleted_at" }, - "15056": { + "15024": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionPriceRule" }, - "15057": { + "15025": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionPriceRule.id" }, - "15058": { + "15026": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionPriceRule.value" }, - "15059": { + "15027": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionPrice" }, - "15060": { + "15028": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionPrice.price_rules" }, - "15061": { + "15029": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOptionPrice.rules_count" }, - "15062": { + "15030": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption" }, - "15063": { + "15031": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.id" }, - "15064": { + "15032": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.name" }, - "15065": { + "15033": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.price_type" }, - "15066": { + "15034": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.service_zone_id" }, - "15067": { + "15035": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.service_zone" }, - "15068": { + "15036": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.provider_id" }, - "15069": { + "15037": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.provider" }, - "15070": { + "15038": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.shipping_option_type_id" }, - "15071": { + "15039": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.type" }, - "15072": { + "15040": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.shipping_profile_id" }, - "15073": { + "15041": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.shipping_profile" }, - "15074": { + "15042": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.rules" }, - "15075": { + "15043": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.prices" }, - "15076": { + "15044": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.data" }, - "15077": { + "15045": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.metadata" }, - "15078": { + "15046": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.created_at" }, - "15079": { + "15047": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.updated_at" }, - "15080": { + "15048": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/entities.ts", "qualifiedName": "AdminShippingOption.deleted_at" }, - "15081": { + "15049": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionRule" }, - "15082": { + "15050": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionRule.operator" }, - "15083": { + "15051": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionRule.attribute" }, - "15084": { + "15052": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionRule.value" }, - "15085": { + "15053": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionType" }, - "15086": { + "15054": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionType.label" }, - "15087": { + "15055": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionType.description" }, - "15088": { + "15056": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionType.code" }, - "15089": { + "15057": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionPriceWithCurrency" }, - "15090": { + "15058": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionPriceWithCurrency.currency_code" }, - "15091": { + "15059": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionPriceWithCurrency.amount" }, - "15092": { + "15060": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionPriceWithRegion" }, - "15093": { + "15061": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionPriceWithRegion.region_id" }, - "15094": { + "15062": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionPriceWithRegion.amount" }, - "15095": { + "15063": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOption" }, - "15096": { + "15064": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOption.name" }, - "15097": { + "15065": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOption.service_zone_id" }, - "15098": { + "15066": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOption.shipping_profile_id" }, - "15099": { + "15067": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOption.data" }, - "15100": { + "15068": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOption.price_type" }, - "15101": { + "15069": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOption.provider_id" }, - "15102": { + "15070": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOption.type" }, - "15103": { + "15071": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOption.prices" }, - "15104": { + "15072": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOption.rules" }, - "15105": { + "15073": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionRule" }, - "15106": { + "15074": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionRule.id" }, - "15107": { + "15075": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionRule.operator" }, - "15108": { + "15076": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionRule.attribute" }, - "15109": { + "15077": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminCreateShippingOptionRule.value" }, - "15110": { + "15078": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionPriceWithCurrency" }, - "15111": { + "15079": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionPriceWithCurrency.id" }, - "15112": { + "15080": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionPriceWithCurrency.currency_code" }, - "15113": { + "15081": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionPriceWithCurrency.amount" }, - "15114": { + "15082": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionPriceWithRegion" }, - "15115": { + "15083": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionPriceWithRegion.id" }, - "15116": { + "15084": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionPriceWithRegion.region_id" }, - "15117": { + "15085": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionPriceWithRegion.amount" }, - "15118": { + "15086": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOption" }, - "15119": { + "15087": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOption.name" }, - "15120": { + "15088": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOption.data" }, - "15121": { + "15089": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOption.price_type" }, - "15122": { + "15090": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOption.provider_id" }, - "15123": { + "15091": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOption.shipping_profile_id" }, - "15124": { + "15092": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOption.type" }, - "15125": { + "15093": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOption.prices" }, - "15126": { + "15094": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOption.rules" }, - "15127": { + "15095": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionRules" }, - "15128": { + "15096": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionRules.create" }, - "15129": { + "15097": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionRules.update" }, - "15130": { + "15098": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingOptionRules.delete" }, - "15131": { + "15099": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/queries.ts", "qualifiedName": "AdminShippingOptionListParams" }, - "15132": { + "15100": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/queries.ts", "qualifiedName": "AdminShippingOptionListParams.id" }, - "15133": { + "15101": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/queries.ts", "qualifiedName": "AdminShippingOptionListParams.q" }, - "15134": { + "15102": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/queries.ts", "qualifiedName": "AdminShippingOptionListParams.service_zone_id" }, - "15135": { + "15103": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/queries.ts", "qualifiedName": "AdminShippingOptionListParams.shipping_profile_id" }, - "15136": { + "15104": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/queries.ts", "qualifiedName": "AdminShippingOptionListParams.provider_id" }, - "15137": { + "15105": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/queries.ts", "qualifiedName": "AdminShippingOptionListParams.shipping_option_type_id" }, - "15138": { + "15106": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/queries.ts", "qualifiedName": "AdminShippingOptionListParams.created_at" }, - "15139": { + "15107": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/queries.ts", "qualifiedName": "AdminShippingOptionListParams.updated_at" }, - "15140": { + "15108": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/queries.ts", "qualifiedName": "AdminShippingOptionListParams.deleted_at" }, - "15141": { + "15109": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.limit" }, - "15142": { + "15110": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.offset" }, - "15143": { + "15111": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.order" }, - "15144": { + "15112": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "15145": { + "15113": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "AdminShippingOptionResponse" }, - "15146": { + "15114": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "AdminShippingOptionResponse.shipping_option" }, - "15147": { + "15115": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "AdminShippingOptionListResponse" }, - "15148": { + "15116": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "__type" }, - "15149": { + "15117": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "__type.shipping_options" }, - "15150": { + "15118": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "AdminShippingOptionDeleteResponse" }, - "15151": { + "15119": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.id" }, - "15152": { + "15120": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.object" }, - "15153": { + "15121": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.deleted" }, - "15154": { + "15122": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.parent" }, - "15155": { + "15123": { "sourceFileName": "", "qualifiedName": "__type" }, - "15156": { + "15124": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "AdminUpdateShippingOptionRulesResponse" }, - "15157": { + "15125": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "AdminUpdateShippingOptionRulesResponse.created" }, - "15158": { + "15126": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "AdminUpdateShippingOptionRulesResponse.updated" }, - "15159": { + "15127": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "AdminUpdateShippingOptionRulesResponse.deleted" }, - "15160": { + "15128": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "__type" }, - "15161": { + "15129": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "__type.ids" }, - "15162": { + "15130": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "__type.object" }, - "15163": { + "15131": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-option/admin/responses.ts", "qualifiedName": "__type.deleted" }, - "15164": { + "15132": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/entities.ts", "qualifiedName": "AdminShippingProfile" }, - "15165": { + "15133": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/entities.ts", "qualifiedName": "AdminShippingProfile.id" }, - "15166": { + "15134": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/entities.ts", "qualifiedName": "AdminShippingProfile.name" }, - "15167": { + "15135": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/entities.ts", "qualifiedName": "AdminShippingProfile.type" }, - "15168": { + "15136": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/entities.ts", "qualifiedName": "AdminShippingProfile.metadata" }, - "15169": { + "15137": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/entities.ts", "qualifiedName": "AdminShippingProfile.created_at" }, - "15170": { + "15138": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/entities.ts", "qualifiedName": "AdminShippingProfile.updated_at" }, - "15171": { + "15139": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/entities.ts", "qualifiedName": "AdminShippingProfile.deleted_at" }, - "15172": { + "15140": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/payloads.ts", "qualifiedName": "AdminCreateShippingProfile" }, - "15173": { + "15141": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/payloads.ts", "qualifiedName": "AdminCreateShippingProfile.name" }, - "15174": { + "15142": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/payloads.ts", "qualifiedName": "AdminCreateShippingProfile.type" }, - "15175": { + "15143": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/payloads.ts", "qualifiedName": "AdminCreateShippingProfile.metadata" }, - "15176": { + "15144": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingProfile" }, - "15177": { + "15145": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingProfile.name" }, - "15178": { + "15146": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingProfile.type" }, - "15179": { + "15147": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/payloads.ts", "qualifiedName": "AdminUpdateShippingProfile.metadata" }, - "15180": { + "15148": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/queries.ts", "qualifiedName": "AdminShippingProfileListParams" }, - "15181": { + "15149": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/queries.ts", "qualifiedName": "AdminShippingProfileListParams.id" }, - "15182": { + "15150": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/queries.ts", "qualifiedName": "AdminShippingProfileListParams.q" }, - "15183": { + "15151": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/queries.ts", "qualifiedName": "AdminShippingProfileListParams.type" }, - "15184": { + "15152": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/queries.ts", "qualifiedName": "AdminShippingProfileListParams.name" }, - "15185": { + "15153": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/queries.ts", "qualifiedName": "AdminShippingProfileListParams.created_at" }, - "15186": { + "15154": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/queries.ts", "qualifiedName": "AdminShippingProfileListParams.updated_at" }, - "15187": { + "15155": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/queries.ts", "qualifiedName": "AdminShippingProfileListParams.deleted_at" }, - "15188": { + "15156": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/queries.ts", "qualifiedName": "AdminShippingProfileListParams.$and" }, - "15189": { + "15157": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/queries.ts", "qualifiedName": "AdminShippingProfileListParams.$or" }, - "15190": { + "15158": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.limit" }, - "15191": { + "15159": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.offset" }, - "15192": { + "15160": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.order" }, - "15193": { + "15161": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "15194": { + "15162": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/responses.ts", "qualifiedName": "AdminShippingProfileResponse" }, - "15195": { + "15163": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/responses.ts", "qualifiedName": "AdminShippingProfileResponse.shipping_profile" }, - "15196": { + "15164": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/responses.ts", "qualifiedName": "AdminShippingProfileListResponse" }, - "15197": { + "15165": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/responses.ts", "qualifiedName": "__type" }, - "15198": { + "15166": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/responses.ts", "qualifiedName": "__type.shipping_profiles" }, - "15199": { + "15167": { "sourceFileName": "../../../../packages/core/types/src/http/shipping-profile/admin/responses.ts", "qualifiedName": "AdminShippingProfileDeleteResponse" }, - "15200": { + "15168": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.id" }, - "15201": { + "15169": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.object" }, - "15202": { + "15170": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.deleted" }, - "15203": { + "15171": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.parent" }, - "15204": { + "15172": { "sourceFileName": "", "qualifiedName": "__type" }, - "15205": { + "15173": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocationAddress" }, - "15206": { + "15174": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocationAddress.id" }, - "15207": { + "15175": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocationAddress.address_1" }, - "15208": { + "15176": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocationAddress.address_2" }, - "15209": { + "15177": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocationAddress.company" }, - "15210": { + "15178": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocationAddress.country_code" }, - "15211": { + "15179": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocationAddress.city" }, - "15212": { + "15180": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocationAddress.phone" }, - "15213": { + "15181": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocationAddress.postal_code" }, - "15214": { + "15182": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocationAddress.province" }, - "15215": { + "15183": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocation" }, - "15216": { + "15184": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocation.id" }, - "15217": { + "15185": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocation.name" }, - "15218": { + "15186": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocation.address_id" }, - "15219": { + "15187": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocation.address" }, - "15220": { + "15188": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocation.sales_channels" }, - "15221": { + "15189": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/entities.ts", "qualifiedName": "AdminStockLocation.fulfillment_sets" }, - "15222": { + "15190": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminCreateStockLocation" }, - "15223": { + "15191": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminCreateStockLocation.name" }, - "15224": { + "15192": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminCreateStockLocation.address_id" }, - "15225": { + "15193": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminCreateStockLocation.address" }, - "15226": { + "15194": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminCreateStockLocation.metadata" }, - "15227": { + "15195": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpdateStockLocation" }, - "15228": { + "15196": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpdateStockLocation.name" }, - "15229": { + "15197": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpdateStockLocation.address_id" }, - "15230": { + "15198": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpdateStockLocation.address" }, - "15231": { + "15199": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpdateStockLocation.metadata" }, - "15232": { + "15200": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpdateStockLocationSalesChannels" }, - "15233": { + "15201": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpdateStockLocationSalesChannels.add" }, - "15234": { + "15202": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpdateStockLocationSalesChannels.remove" }, - "15235": { + "15203": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminCreateStockLocationFulfillmentSet" }, - "15236": { + "15204": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminCreateStockLocationFulfillmentSet.name" }, - "15237": { + "15205": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminCreateStockLocationFulfillmentSet.type" }, - "15238": { + "15206": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/queries.ts", "qualifiedName": "AdminStockLocationListParams" }, - "15239": { + "15207": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/queries.ts", "qualifiedName": "AdminStockLocationListParams.id" }, - "15240": { + "15208": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/queries.ts", "qualifiedName": "AdminStockLocationListParams.q" }, - "15241": { + "15209": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/queries.ts", "qualifiedName": "AdminStockLocationListParams.name" }, - "15242": { + "15210": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/queries.ts", "qualifiedName": "AdminStockLocationListParams.address_id" }, - "15243": { + "15211": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/queries.ts", "qualifiedName": "AdminStockLocationListParams.sales_channel_id" }, - "15244": { + "15212": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/queries.ts", "qualifiedName": "AdminStockLocationListParams.$and" }, - "15245": { + "15213": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/queries.ts", "qualifiedName": "AdminStockLocationListParams.$or" }, - "15246": { + "15214": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.limit" }, - "15247": { + "15215": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.offset" }, - "15248": { + "15216": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.order" }, - "15249": { + "15217": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "15250": { + "15218": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/responses.ts", "qualifiedName": "AdminStockLocationResponse" }, - "15251": { + "15219": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/responses.ts", "qualifiedName": "AdminStockLocationResponse.stock_location" }, - "15252": { + "15220": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/responses.ts", "qualifiedName": "AdminStockLocationListResponse" }, - "15253": { + "15221": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/responses.ts", "qualifiedName": "__type" }, - "15254": { + "15222": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/responses.ts", "qualifiedName": "__type.stock_locations" }, - "15255": { + "15223": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.limit" }, - "15256": { + "15224": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.offset" }, - "15257": { + "15225": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.count" }, - "15258": { + "15226": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/responses.ts", "qualifiedName": "__type.stock_locations" }, - "15259": { + "15227": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/responses.ts", "qualifiedName": "AdminStockLocationDeleteResponse" }, - "15260": { + "15228": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.id" }, - "15261": { + "15229": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.object" }, - "15262": { + "15230": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.deleted" }, - "15263": { + "15231": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.parent" }, - "15264": { + "15232": { "sourceFileName": "", "qualifiedName": "__type" }, - "15265": { + "15233": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRateRule" }, - "15266": { + "15234": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRateRule.reference" }, - "15267": { + "15235": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRateRule.reference_id" }, - "15268": { + "15236": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate" }, - "15269": { + "15237": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.id" }, - "15270": { + "15238": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.rate" }, - "15271": { + "15239": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.code" }, - "15272": { + "15240": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.name" }, - "15273": { + "15241": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.metadata" }, - "15274": { + "15242": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.tax_region_id" }, - "15275": { + "15243": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.is_combinable" }, - "15276": { + "15244": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.is_default" }, - "15277": { + "15245": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.created_at" }, - "15278": { + "15246": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.updated_at" }, - "15279": { + "15247": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.deleted_at" }, - "15280": { + "15248": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.created_by" }, - "15281": { + "15249": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.tax_region" }, - "15282": { + "15250": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/entities.ts", "qualifiedName": "AdminTaxRate.rules" }, - "15283": { + "15251": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRate" }, - "15284": { + "15252": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRate.name" }, - "15285": { + "15253": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRate.tax_region_id" }, - "15286": { + "15254": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRate.rate" }, - "15287": { + "15255": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRate.code" }, - "15288": { + "15256": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRate.rules" }, - "15289": { + "15257": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRate.is_default" }, - "15290": { + "15258": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRate.is_combinable" }, - "15291": { + "15259": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRate.metadata" }, - "15292": { + "15260": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminUpdateTaxRate" }, - "15293": { + "15261": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminUpdateTaxRate.name" }, - "15294": { + "15262": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminUpdateTaxRate.rate" }, - "15295": { + "15263": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminUpdateTaxRate.code" }, - "15296": { + "15264": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminUpdateTaxRate.rules" }, - "15297": { + "15265": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminUpdateTaxRate.is_default" }, - "15298": { + "15266": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminUpdateTaxRate.is_combinable" }, - "15299": { + "15267": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminUpdateTaxRate.metadata" }, - "15300": { + "15268": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/queries.ts", "qualifiedName": "AdminTaxRateListParams" }, - "15301": { + "15269": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/queries.ts", "qualifiedName": "AdminTaxRateListParams.id" }, - "15302": { + "15270": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/queries.ts", "qualifiedName": "AdminTaxRateListParams.q" }, - "15303": { + "15271": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/queries.ts", "qualifiedName": "AdminTaxRateListParams.tax_region_id" }, - "15304": { + "15272": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/queries.ts", "qualifiedName": "AdminTaxRateListParams.is_default" }, - "15305": { + "15273": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/queries.ts", "qualifiedName": "AdminTaxRateListParams.service_zone_id" }, - "15306": { + "15274": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/queries.ts", "qualifiedName": "AdminTaxRateListParams.shipping_profile_id" }, - "15307": { + "15275": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/queries.ts", "qualifiedName": "AdminTaxRateListParams.provider_id" }, - "15308": { + "15276": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/queries.ts", "qualifiedName": "AdminTaxRateListParams.shipping_option_type_id" }, - "15309": { + "15277": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/queries.ts", "qualifiedName": "AdminTaxRateListParams.created_at" }, - "15310": { + "15278": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/queries.ts", "qualifiedName": "AdminTaxRateListParams.updated_at" }, - "15311": { + "15279": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/queries.ts", "qualifiedName": "AdminTaxRateListParams.deleted_at" }, - "15312": { + "15280": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.limit" }, - "15313": { + "15281": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.offset" }, - "15314": { + "15282": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.order" }, - "15315": { + "15283": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "15316": { + "15284": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/responses.ts", "qualifiedName": "AdminTaxRateResponse" }, - "15317": { + "15285": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/responses.ts", "qualifiedName": "AdminTaxRateResponse.tax_rate" }, - "15318": { + "15286": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/responses.ts", "qualifiedName": "AdminTaxRateListResponse" }, - "15319": { + "15287": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/responses.ts", "qualifiedName": "__type" }, - "15320": { + "15288": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/responses.ts", "qualifiedName": "__type.tax_rates" }, - "15321": { + "15289": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/responses.ts", "qualifiedName": "AdminTaxRateDeleteResponse" }, - "15322": { + "15290": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.id" }, - "15323": { + "15291": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.object" }, - "15324": { + "15292": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.deleted" }, - "15325": { + "15293": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.parent" }, - "15326": { + "15294": { "sourceFileName": "", "qualifiedName": "__type" }, - "15327": { + "15295": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion" }, - "15328": { + "15296": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.id" }, - "15329": { + "15297": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.rate" }, - "15330": { + "15298": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.code" }, - "15331": { + "15299": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.country_code" }, - "15332": { + "15300": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.province_code" }, - "15333": { + "15301": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.name" }, - "15334": { + "15302": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.metadata" }, - "15335": { + "15303": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.tax_region_id" }, - "15336": { + "15304": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.is_combinable" }, - "15337": { + "15305": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.is_default" }, - "15338": { + "15306": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.parent_id" }, - "15339": { + "15307": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.created_at" }, - "15340": { + "15308": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.updated_at" }, - "15341": { + "15309": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.deleted_at" }, - "15342": { + "15310": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.created_by" }, - "15343": { + "15311": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.tax_rates" }, - "15344": { + "15312": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", "qualifiedName": "AdminTaxRegion.parent" }, - "15345": { + "15313": { + "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/entities.ts", + "qualifiedName": "AdminTaxRegion.children" + }, + "15314": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRegion" }, - "15346": { + "15315": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRegion.country_code" }, - "15347": { + "15316": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRegion.province_code" }, - "15348": { + "15317": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRegion.parent_id" }, - "15349": { + "15318": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRegion.default_tax_rate" }, - "15350": { + "15319": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/payloads.ts", "qualifiedName": "__type" }, - "15351": { + "15320": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/payloads.ts", "qualifiedName": "__type.rate" }, - "15352": { + "15321": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/payloads.ts", "qualifiedName": "__type.code" }, - "15353": { + "15322": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/payloads.ts", "qualifiedName": "__type.name" }, - "15354": { + "15323": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/payloads.ts", "qualifiedName": "__type.is_combinable" }, - "15355": { + "15324": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/payloads.ts", "qualifiedName": "__type.metadata" }, - "15356": { + "15325": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRegion.metadata" }, - "15357": { + "15326": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/queries.ts", "qualifiedName": "AdminTaxRegionListParams" }, - "15358": { + "15327": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/queries.ts", "qualifiedName": "AdminTaxRegionListParams.id" }, - "15359": { + "15328": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/queries.ts", "qualifiedName": "AdminTaxRegionListParams.q" }, - "15360": { + "15329": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/queries.ts", "qualifiedName": "AdminTaxRegionListParams.parent_id" }, - "15361": { + "15330": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/queries.ts", "qualifiedName": "AdminTaxRegionListParams.country_code" }, - "15362": { + "15331": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/queries.ts", "qualifiedName": "AdminTaxRegionListParams.province_code" }, - "15363": { + "15332": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/queries.ts", "qualifiedName": "AdminTaxRegionListParams.created_at" }, - "15364": { + "15333": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/queries.ts", "qualifiedName": "AdminTaxRegionListParams.updated_at" }, - "15365": { + "15334": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/queries.ts", "qualifiedName": "AdminTaxRegionListParams.deleted_at" }, - "15366": { + "15335": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/queries.ts", "qualifiedName": "AdminTaxRegionListParams.created_by" }, - "15367": { + "15336": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.limit" }, - "15368": { + "15337": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.offset" }, - "15369": { + "15338": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.order" }, - "15370": { + "15339": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "15371": { + "15340": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" + }, + "15341": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" + }, + "15342": { + "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/queries.ts", + "qualifiedName": "AdminTaxRegionParams" + }, + "15343": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "SelectParams.fields" + }, + "15344": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/responses.ts", "qualifiedName": "AdminTaxRegionResponse" }, - "15372": { + "15345": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/responses.ts", "qualifiedName": "AdminTaxRegionResponse.tax_region" }, - "15373": { + "15346": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/responses.ts", "qualifiedName": "AdminTaxRegionListResponse" }, - "15374": { + "15347": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/responses.ts", "qualifiedName": "__type" }, - "15375": { + "15348": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/responses.ts", "qualifiedName": "__type.tax_regions" }, - "15376": { + "15349": { "sourceFileName": "../../../../packages/core/types/src/http/tax-region/admin/responses.ts", "qualifiedName": "AdminTaxRegionDeleteResponse" }, - "15377": { + "15350": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.id" }, - "15378": { + "15351": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.object" }, - "15379": { + "15352": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.deleted" }, - "15380": { + "15353": { "sourceFileName": "../../../../packages/core/types/src/http/common/response.ts", "qualifiedName": "__type.parent" }, - "15381": { + "15354": { "sourceFileName": "", "qualifiedName": "__type" }, - "15382": { + "15355": { "sourceFileName": "../../../../packages/core/types/src/inventory/index.ts", "qualifiedName": "" }, - "15383": { + "15356": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO" }, - "15384": { + "15357": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.id" }, - "15385": { + "15358": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.sku" }, - "15386": { + "15359": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.origin_country" }, - "15387": { + "15360": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.hs_code" }, - "15388": { + "15361": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.requires_shipping" }, - "15389": { + "15362": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.mid_code" }, - "15390": { + "15363": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.material" }, - "15391": { + "15364": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.weight" }, - "15392": { + "15365": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.length" }, - "15393": { + "15366": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.height" }, - "15394": { + "15367": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.width" }, - "15395": { + "15368": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.title" }, - "15396": { + "15369": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.description" }, - "15397": { + "15370": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.thumbnail" }, - "15398": { + "15371": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.metadata" }, - "15399": { + "15372": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.created_at" }, - "15400": { + "15373": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.updated_at" }, - "15401": { + "15374": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.deleted_at" }, - "15402": { + "15375": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps" }, - "15403": { + "15376": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.q" }, - "15404": { + "15377": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.id" }, - "15405": { + "15378": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.location_id" }, - "15406": { + "15379": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.sku" }, - "15407": { + "15380": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.origin_country" }, - "15408": { + "15381": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.hs_code" }, - "15409": { + "15382": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.requires_shipping" }, - "15410": { + "15383": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO" }, - "15411": { + "15384": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.id" }, - "15412": { + "15385": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.inventory_item_id" }, - "15413": { + "15386": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.location_id" }, - "15414": { + "15387": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.stocked_quantity" }, - "15415": { + "15388": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.reserved_quantity" }, - "15416": { + "15389": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.incoming_quantity" }, - "15417": { + "15390": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.available_quantity" }, - "15418": { + "15391": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.metadata" }, - "15419": { + "15392": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.created_at" }, - "15420": { + "15393": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.updated_at" }, - "15421": { + "15394": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.deleted_at" }, - "15422": { + "15395": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "FilterableInventoryLevelProps" }, - "15423": { + "15396": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "FilterableInventoryLevelProps.inventory_item_id" }, - "15424": { + "15397": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "FilterableInventoryLevelProps.location_id" }, - "15425": { + "15398": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "FilterableInventoryLevelProps.stocked_quantity" }, - "15426": { + "15399": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "FilterableInventoryLevelProps.reserved_quantity" }, - "15427": { + "15400": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "FilterableInventoryLevelProps.incoming_quantity" }, - "15428": { + "15401": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "15429": { + "15402": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "15430": { + "15403": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO" }, - "15431": { + "15404": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.id" }, - "15432": { + "15405": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.location_id" }, - "15433": { + "15406": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.inventory_item_id" }, - "15434": { + "15407": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.quantity" }, - "15435": { + "15408": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.line_item_id" }, - "15436": { + "15409": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.description" }, - "15437": { + "15410": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.allow_backorder" }, - "15438": { + "15411": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.created_by" }, - "15439": { + "15412": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.metadata" }, - "15440": { + "15413": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.created_at" }, - "15441": { + "15414": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.updated_at" }, - "15442": { + "15415": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.deleted_at" }, - "15443": { + "15416": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps" }, - "15444": { + "15417": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.id" }, - "15446": { + "15419": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.line_item_id" }, - "15447": { + "15420": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.inventory_item_id" }, - "15448": { + "15421": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.location_id" }, - "15449": { + "15422": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.description" }, - "15450": { + "15423": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.created_by" }, - "15451": { + "15424": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.quantity" }, - "15452": { + "15425": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "UpdateInventoryItemInput" }, - "15453": { + "15426": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "UpdateInventoryItemInput.id" }, - "15454": { + "15427": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "sku" }, - "15455": { + "15428": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "origin_country" }, - "15456": { + "15429": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "mid_code" }, - "15457": { + "15430": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "material" }, - "15458": { + "15431": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "weight" }, - "15459": { + "15432": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "length" }, - "15460": { + "15433": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "height" }, - "15461": { + "15434": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "width" }, - "15462": { + "15435": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "title" }, - "15463": { + "15436": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "description" }, - "15464": { + "15437": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "thumbnail" }, - "15465": { + "15438": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "metadata" }, - "15466": { + "15439": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "hs_code" }, - "15467": { + "15440": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "requires_shipping" }, - "15468": { + "15441": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput" }, - "15469": { + "15442": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.sku" }, - "15470": { + "15443": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.origin_country" }, - "15471": { + "15444": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.mid_code" }, - "15472": { + "15445": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.material" }, - "15473": { + "15446": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.weight" }, - "15474": { + "15447": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.length" }, - "15475": { + "15448": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.height" }, - "15476": { + "15449": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.width" }, - "15477": { + "15450": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.title" }, - "15478": { + "15451": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.description" }, - "15479": { + "15452": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.thumbnail" }, - "15480": { + "15453": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.metadata" }, - "15481": { + "15454": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.hs_code" }, - "15482": { + "15455": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.requires_shipping" }, - "15483": { + "15456": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "CreateInventoryLevelInput" }, - "15484": { + "15457": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "CreateInventoryLevelInput.inventory_item_id" }, - "15485": { + "15458": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "CreateInventoryLevelInput.location_id" }, - "15486": { + "15459": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "CreateInventoryLevelInput.stocked_quantity" }, - "15487": { + "15460": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "CreateInventoryLevelInput.incoming_quantity" }, - "15488": { + "15461": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "UpdateInventoryLevelInput" }, - "15489": { + "15462": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "UpdateInventoryLevelInput.id" }, - "15490": { + "15463": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "UpdateInventoryLevelInput.stocked_quantity" }, - "15491": { + "15464": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "UpdateInventoryLevelInput.incoming_quantity" }, - "15492": { + "15465": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "BulkUpdateInventoryLevelInput" }, - "15493": { + "15466": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "__type.inventory_item_id" }, - "15494": { + "15467": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "__type.location_id" }, - "15495": { + "15468": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "UpdateInventoryLevelInput.id" }, - "15496": { + "15469": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "UpdateInventoryLevelInput.stocked_quantity" }, - "15497": { + "15470": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "UpdateInventoryLevelInput.incoming_quantity" }, - "15498": { + "15471": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "BulkAdjustInventoryLevelInput" }, - "15499": { + "15472": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "__type" }, - "15500": { + "15473": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "__type.inventory_item_id" }, - "15501": { + "15474": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "__type.location_id" }, - "15502": { + "15475": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "__type.adjustment" }, - "15503": { + "15476": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput" }, - "15504": { + "15477": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput.id" }, - "15505": { + "15478": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput.quantity" }, - "15506": { + "15479": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput.location_id" }, - "15507": { + "15480": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput.description" }, - "15508": { + "15481": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput.allow_backorder" }, - "15509": { + "15482": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput.metadata" }, - "15510": { + "15483": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput" }, - "15511": { + "15484": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.line_item_id" }, - "15512": { + "15485": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.inventory_item_id" }, - "15513": { + "15486": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.location_id" }, - "15514": { + "15487": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.quantity" }, - "15515": { + "15488": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.allow_backorder" }, - "15516": { + "15489": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.description" }, - "15517": { + "15490": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.created_by" }, - "15518": { + "15491": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.external_id" }, - "15519": { + "15492": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.metadata" }, - "15520": { + "15493": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "ReserveQuantityContext" }, - "15521": { + "15494": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "ReserveQuantityContext.locationId" }, - "15522": { + "15495": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "ReserveQuantityContext.lineItemId" }, - "15523": { + "15496": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "ReserveQuantityContext.salesChannelId" }, - "15524": { + "15497": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService" }, - "15525": { + "15498": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listInventoryItems" }, - "15526": { + "15499": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listInventoryItems" }, - "15527": { + "15500": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "selector" }, - "15528": { + "15501": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15529": { + "15502": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15530": { + "15503": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listAndCountInventoryItems" }, - "15531": { + "15504": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listAndCountInventoryItems" }, - "15532": { + "15505": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "selector" }, - "15533": { + "15506": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15534": { + "15507": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15535": { + "15508": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listReservationItems" }, - "15536": { + "15509": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listReservationItems" }, - "15537": { + "15510": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "selector" }, - "15538": { + "15511": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15539": { + "15512": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15540": { + "15513": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listAndCountReservationItems" }, - "15541": { + "15514": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listAndCountReservationItems" }, - "15542": { + "15515": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "selector" }, - "15543": { + "15516": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15544": { + "15517": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15545": { + "15518": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listInventoryLevels" }, - "15546": { + "15519": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listInventoryLevels" }, - "15547": { + "15520": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "selector" }, - "15548": { + "15521": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15549": { + "15522": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15550": { + "15523": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listAndCountInventoryLevels" }, - "15551": { + "15524": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listAndCountInventoryLevels" }, - "15552": { + "15525": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "selector" }, - "15553": { + "15526": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15554": { + "15527": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15555": { + "15528": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveInventoryItem" }, - "15556": { + "15529": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveInventoryItem" }, - "15557": { + "15530": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "15558": { + "15531": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15559": { + "15532": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15560": { + "15533": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveInventoryLevelByItemAndLocation" }, - "15561": { + "15534": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveInventoryLevelByItemAndLocation" }, - "15562": { + "15535": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "15563": { + "15536": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationId" }, - "15564": { + "15537": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15565": { + "15538": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveInventoryLevel" }, - "15566": { + "15539": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveInventoryLevel" }, - "15567": { + "15540": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryLevelId" }, - "15568": { + "15541": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15569": { + "15542": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15570": { + "15543": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveReservationItem" }, - "15571": { + "15544": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveReservationItem" }, - "15572": { + "15545": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "reservationId" }, - "15573": { + "15546": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15574": { + "15547": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15575": { + "15548": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createReservationItems" }, - "15576": { + "15549": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createReservationItems" }, - "15577": { + "15550": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "15578": { + "15551": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15579": { + "15552": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createReservationItems" }, - "15580": { + "15553": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "15581": { + "15554": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15582": { + "15555": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createInventoryItems" }, - "15583": { + "15556": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createInventoryItems" }, - "15584": { + "15557": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "15585": { + "15558": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15586": { + "15559": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createInventoryItems" }, - "15587": { + "15560": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "15588": { + "15561": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15589": { + "15562": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createInventoryLevels" }, - "15590": { + "15563": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createInventoryLevels" }, - "15591": { + "15564": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "data" }, - "15592": { + "15565": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15593": { + "15566": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createInventoryLevels" }, - "15594": { + "15567": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "data" }, - "15595": { + "15568": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15596": { + "15569": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateInventoryLevels" }, - "15597": { + "15570": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateInventoryLevels" }, - "15598": { + "15571": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "updates" }, - "15599": { + "15572": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15600": { + "15573": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateInventoryLevels" }, - "15601": { + "15574": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "updates" }, - "15602": { + "15575": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15603": { + "15576": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateInventoryItems" }, - "15604": { + "15577": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateInventoryItems" }, - "15605": { + "15578": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "15606": { + "15579": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15607": { + "15580": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateInventoryItems" }, - "15608": { + "15581": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "15609": { + "15582": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15610": { + "15583": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateReservationItems" }, - "15611": { + "15584": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateReservationItems" }, - "15612": { + "15585": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "15613": { + "15586": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15614": { + "15587": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateReservationItems" }, - "15615": { + "15588": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "15616": { + "15589": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15617": { + "15590": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteReservationItemsByLineItem" }, - "15618": { + "15591": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteReservationItemsByLineItem" }, - "15619": { + "15592": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "lineItemId" }, - "15620": { + "15593": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15621": { + "15594": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreReservationItemsByLineItem" }, - "15622": { + "15595": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreReservationItemsByLineItem" }, - "15623": { + "15596": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "lineItemId" }, - "15624": { + "15597": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15625": { + "15598": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteReservationItems" }, - "15626": { + "15599": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteReservationItems" }, - "15627": { + "15600": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "reservationItemId" }, - "15628": { + "15601": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15629": { + "15602": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.softDeleteReservationItems" }, - "15630": { + "15603": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.softDeleteReservationItems" }, - "15631": { + "15604": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "15632": { + "15605": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "ReservationItemIds" }, - "15633": { + "15606": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15634": { + "15607": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "sharedContext" }, - "15635": { + "15608": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreReservationItems" }, - "15636": { + "15609": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreReservationItems" }, - "15637": { + "15610": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "15638": { + "15611": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "ReservationItemIds" }, - "15639": { + "15612": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15640": { + "15613": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "sharedContext" }, - "15641": { + "15614": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryItems" }, - "15642": { + "15615": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryItems" }, - "15643": { + "15616": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "15644": { + "15617": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15645": { + "15618": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.softDeleteInventoryItems" }, - "15646": { + "15619": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.softDeleteInventoryItems" }, - "15647": { + "15620": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "15648": { + "15621": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemIds" }, - "15649": { + "15622": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15650": { + "15623": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "sharedContext" }, - "15651": { + "15624": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreInventoryItems" }, - "15652": { + "15625": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreInventoryItems" }, - "15653": { + "15626": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "15654": { + "15627": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemIds" }, - "15655": { + "15628": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15656": { + "15629": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "sharedContext" }, - "15657": { + "15630": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryItemLevelByLocationId" }, - "15658": { + "15631": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryItemLevelByLocationId" }, - "15659": { + "15632": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationId" }, - "15660": { + "15633": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15661": { + "15634": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteReservationItemByLocationId" }, - "15662": { + "15635": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteReservationItemByLocationId" }, - "15663": { + "15636": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationId" }, - "15664": { + "15637": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15665": { + "15638": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryLevel" }, - "15666": { + "15639": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryLevel" }, - "15667": { + "15640": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "15668": { + "15641": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationId" }, - "15669": { + "15642": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15670": { + "15643": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryLevels" }, - "15671": { + "15644": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryLevels" }, - "15672": { + "15645": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryLevelIds" }, - "15673": { + "15646": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15674": { + "15647": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.softDeleteInventoryLevels" }, - "15675": { + "15648": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.softDeleteInventoryLevels" }, - "15676": { + "15649": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "15677": { + "15650": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryLevelIds" }, - "15678": { + "15651": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15679": { + "15652": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "sharedContext" }, - "15680": { + "15653": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreInventoryLevels" }, - "15681": { + "15654": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreInventoryLevels" }, - "15682": { + "15655": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "15683": { + "15656": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryLevelIds" }, - "15684": { + "15657": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "15685": { + "15658": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "sharedContext" }, - "15686": { + "15659": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.adjustInventory" }, - "15687": { + "15660": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.adjustInventory" }, - "15688": { + "15661": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "data" }, - "15689": { + "15662": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "__type" }, - "15690": { + "15663": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "__type.inventoryItemId" }, - "15691": { + "15664": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "__type.locationId" }, - "15692": { + "15665": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "__type.adjustment" }, - "15693": { + "15666": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15694": { + "15667": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.adjustInventory" }, - "15695": { + "15668": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "15696": { + "15669": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationId" }, - "15697": { + "15670": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "adjustment" }, - "15698": { + "15671": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15699": { + "15672": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.confirmInventory" }, - "15700": { + "15673": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.confirmInventory" }, - "15701": { + "15674": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "15702": { + "15675": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationIds" }, - "15703": { + "15676": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "quantity" }, - "15704": { + "15677": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15705": { + "15678": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveAvailableQuantity" }, - "15706": { + "15679": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveAvailableQuantity" }, - "15707": { + "15680": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "15708": { + "15681": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationIds" }, - "15709": { + "15682": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15710": { + "15683": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveStockedQuantity" }, - "15711": { + "15684": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveStockedQuantity" }, - "15712": { + "15685": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "15713": { + "15686": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationIds" }, - "15714": { + "15687": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15715": { + "15688": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveReservedQuantity" }, - "15716": { + "15689": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveReservedQuantity" }, - "15717": { + "15690": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "15718": { + "15691": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationIds" }, - "15719": { + "15692": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "15733": { + "15706": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "" }, - "15734": { + "15707": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger" }, - "15735": { + "15708": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger.panic" }, - "15736": { + "15709": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15737": { + "15710": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15738": { + "15711": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "data" }, - "15739": { + "15712": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger.shouldLog" }, - "15740": { + "15713": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15741": { + "15714": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15742": { + "15715": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "level" }, - "15743": { + "15716": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger.setLogLevel" }, - "15744": { + "15717": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15745": { + "15718": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15746": { + "15719": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "level" }, - "15747": { + "15720": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger.unsetLogLevel" }, - "15748": { + "15721": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15749": { + "15722": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15750": { + "15723": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger.activity" }, - "15751": { + "15724": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15752": { + "15725": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15753": { + "15726": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "message" }, - "15754": { + "15727": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "config" }, - "15755": { + "15728": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger.progress" }, - "15756": { + "15729": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15757": { + "15730": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15758": { + "15731": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "activityId" }, - "15759": { + "15732": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "message" }, - "15760": { + "15733": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger.error" }, - "15761": { + "15734": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15762": { + "15735": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15763": { + "15736": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "messageOrError" }, - "15764": { + "15737": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "error" }, - "15765": { + "15738": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger.failure" }, - "15766": { + "15739": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15767": { + "15740": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15768": { + "15741": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "activityId" }, - "15769": { + "15742": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "message" }, - "15770": { + "15743": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger.success" }, - "15771": { + "15744": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15772": { + "15745": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15773": { + "15746": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "activityId" }, - "15774": { + "15747": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "message" }, - "15775": { + "15748": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger.debug" }, - "15776": { + "15749": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15777": { + "15750": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15778": { + "15751": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "message" }, - "15779": { + "15752": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger.info" }, - "15780": { + "15753": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15781": { + "15754": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15782": { + "15755": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "message" }, - "15783": { + "15756": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger.warn" }, - "15784": { + "15757": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15785": { + "15758": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15786": { + "15759": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "message" }, - "15787": { + "15760": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "Logger.log" }, - "15788": { + "15761": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15789": { + "15762": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "__type" }, - "15790": { + "15763": { "sourceFileName": "../../../../packages/core/types/src/logger/index.ts", "qualifiedName": "args" }, - "15791": { + "15764": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "" }, - "15792": { + "15765": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "Constructor" }, - "15793": { + "15766": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15794": { + "15767": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15795": { + "15768": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15796": { + "15769": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15797": { + "15770": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "args" }, - "15798": { + "15771": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "T" }, - "15799": { + "15772": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LogLevel" }, - "15800": { + "15773": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LoggerOptions" }, - "15801": { + "15774": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "CustomModuleDefinition" }, - "15802": { + "15775": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15803": { + "15776": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.key" }, - "15804": { + "15777": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.registrationName" }, - "15805": { + "15778": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.label" }, - "15806": { + "15779": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isQueryable" }, - "15807": { + "15780": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.dependencies" }, - "15808": { + "15781": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "InternalModuleDeclaration" }, - "15809": { + "15782": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15810": { + "15783": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.scope" }, - "15811": { + "15784": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.resources" }, - "15812": { + "15785": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.dependencies" }, - "15813": { + "15786": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.definition" }, - "15814": { + "15787": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.resolve" }, - "15815": { + "15788": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "15816": { + "15789": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.alias" }, - "15817": { + "15790": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.main" }, - "15818": { + "15791": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.worker_mode" }, - "15819": { + "15792": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ExternalModuleDeclaration" }, - "15820": { + "15793": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15821": { + "15794": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.scope" }, - "15822": { + "15795": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.definition" }, - "15823": { + "15796": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.server" }, - "15824": { + "15797": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15825": { + "15798": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "15826": { + "15799": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.url" }, - "15827": { + "15800": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.keepAlive" }, - "15828": { + "15801": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "15829": { + "15802": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.alias" }, - "15830": { + "15803": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.main" }, - "15831": { + "15804": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleResolution" }, - "15832": { + "15805": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15833": { + "15806": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.resolutionPath" }, - "15834": { + "15807": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.definition" }, - "15835": { + "15808": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "15836": { + "15809": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.dependencies" }, - "15837": { + "15810": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.moduleDeclaration" }, - "15838": { + "15811": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.moduleExports" }, - "15839": { + "15812": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleDefinition" }, - "15840": { + "15813": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15841": { + "15814": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.key" }, - "15842": { + "15815": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.registrationName" }, - "15843": { + "15816": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultPackage" }, - "15844": { + "15817": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.label" }, - "15845": { + "15818": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isRequired" }, - "15846": { + "15819": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isQueryable" }, - "15847": { + "15820": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.dependencies" }, - "15848": { + "15821": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultModuleDeclaration" }, - "15849": { + "15822": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModuleDefinition" }, - "15850": { + "15823": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15851": { + "15824": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.key" }, - "15852": { + "15825": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.registrationName" }, - "15853": { + "15826": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.label" }, - "15854": { + "15827": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.dependencies" }, - "15855": { + "15828": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultModuleDeclaration" }, - "15856": { + "15829": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleConfig" }, - "15857": { + "15830": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15858": { + "15831": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.module" }, - "15859": { + "15832": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "15860": { + "15833": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.definition" }, - "15861": { + "15834": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LoadedModule" }, - "15862": { + "15835": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15863": { + "15836": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.__joinerConfig" }, - "15864": { + "15837": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.__definition" }, - "15865": { + "15838": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LoaderOptions" }, - "15866": { + "15839": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15867": { + "15840": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.container" }, - "15868": { + "15841": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "15869": { + "15842": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.logger" }, - "15870": { + "15843": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.dataLoaderOnly" }, - "15871": { + "15844": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "TOptions" }, - "15872": { + "15845": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleLoaderFunction" }, - "15873": { + "15846": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15874": { + "15847": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15875": { + "15848": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "options" }, - "15876": { + "15849": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "moduleDeclaration" }, - "15877": { + "15850": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModulesResponse" }, - "15878": { + "15851": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15879": { + "15852": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.module" }, - "15880": { + "15853": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.resolution" }, - "15881": { + "15854": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "15882": { + "15855": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15883": { + "15856": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "15884": { + "15857": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "15885": { + "15858": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "15886": { + "15859": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "15887": { + "15860": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "15888": { + "15861": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15889": { + "15862": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "15890": { + "15863": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "15891": { + "15864": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "15892": { + "15865": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15893": { + "15866": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "15894": { + "15867": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "15895": { + "15868": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15896": { + "15869": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "15897": { + "15870": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "15898": { + "15871": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "15899": { + "15872": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "15900": { + "15873": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "15901": { + "15874": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "15902": { + "15875": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "15903": { + "15876": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "15904": { + "15877": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "15905": { + "15878": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "15906": { + "15879": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "15907": { + "15880": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15908": { + "15881": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "15909": { + "15882": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "15910": { + "15883": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "15911": { + "15884": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "15912": { + "15885": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15913": { + "15886": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "15914": { + "15887": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleExports" }, - "15915": { + "15888": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15916": { + "15889": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.service" }, - "15917": { + "15890": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.loaders" }, - "15918": { + "15891": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.runMigrations" }, - "15919": { + "15892": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.runMigrations" }, - "15920": { + "15893": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "options" }, - "15921": { + "15894": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "moduleDeclaration" }, - "15922": { + "15895": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.revertMigration" }, - "15923": { + "15896": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.revertMigration" }, - "15924": { + "15897": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "options" }, - "15925": { + "15898": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "moduleDeclaration" }, - "15926": { + "15899": { + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "T" + }, + "15900": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleServiceInitializeOptions" }, - "15927": { + "15901": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleServiceInitializeOptions.database" }, - "15928": { + "15902": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15929": { + "15903": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.connection" }, - "15930": { + "15904": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.clientUrl" }, - "15931": { + "15905": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "15932": { + "15906": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.host" }, - "15933": { + "15907": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.port" }, - "15934": { + "15908": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.user" }, - "15935": { + "15909": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.password" }, - "15936": { + "15910": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.database" }, - "15937": { + "15911": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.driverOptions" }, - "15938": { + "15912": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15939": { + "15913": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.connection" }, - "15940": { + "15914": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.debug" }, - "15941": { + "15915": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.pool" }, - "15942": { + "15916": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleServiceInitializeCustomDataLayerOptions" }, - "15943": { + "15917": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15944": { + "15918": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.manager" }, - "15945": { + "15919": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.repositories" }, - "15946": { + "15920": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15947": { + "15921": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.__index" }, - "15949": { + "15923": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleBootstrapDeclaration" }, - "15950": { + "15924": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "RemoteQueryFunction" }, - "15951": { + "15925": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15952": { + "15926": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "15953": { + "15927": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "query" }, - "15954": { + "15928": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "variables" }, - "15955": { + "15929": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "options" }, - "15956": { + "15930": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "15970": { + "15944": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService" }, - "15971": { + "15945": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.__container__" }, - "15972": { + "15946": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.__container__" }, - "15973": { + "15947": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.retrieve" }, - "15974": { + "15948": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.retrieve" }, - "15975": { + "15949": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "idOrObject" }, - "15976": { + "15950": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "config" }, - "15977": { + "15951": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "15978": { + "15952": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.retrieve" }, - "15979": { + "15953": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "idOrObject" }, - "15980": { + "15954": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "config" }, - "15981": { + "15955": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "15982": { + "15956": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.list" }, - "15983": { + "15957": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.list" }, - "15984": { + "15958": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "filters" }, - "15985": { + "15959": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "15986": { + "15960": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "15987": { + "15961": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "config" }, - "15988": { + "15962": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "15989": { + "15963": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.listAndCount" }, - "15990": { + "15964": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.listAndCount" }, - "15991": { + "15965": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "filters" }, - "15992": { + "15966": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "15993": { + "15967": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "15994": { + "15968": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "config" }, - "15995": { + "15969": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "15996": { + "15970": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.create" }, - "15997": { + "15971": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.create" }, - "15998": { + "15972": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "data" }, - "15999": { + "15973": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16000": { + "15974": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.create" }, - "16001": { + "15975": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "data" }, - "16002": { + "15976": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16003": { + "15977": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.update" }, - "16004": { + "15978": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.update" }, - "16005": { + "15979": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "data" }, - "16006": { + "15980": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16007": { + "15981": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.update" }, - "16008": { + "15982": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "data" }, - "16009": { + "15983": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16010": { + "15984": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.update" }, - "16011": { + "15985": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "selectorAndData" }, - "16012": { + "15986": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "__type" }, - "16013": { + "15987": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "__type.selector" }, - "16014": { + "15988": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "16015": { + "15989": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "16016": { + "15990": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "__type.data" }, - "16017": { + "15991": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16018": { + "15992": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.update" }, - "16019": { + "15993": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "selectorAndData" }, - "16020": { + "15994": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "__type" }, - "16021": { + "15995": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "__type.selector" }, - "16022": { + "15996": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "16023": { + "15997": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "16024": { + "15998": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "__type.data" }, - "16025": { + "15999": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16026": { + "16000": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.delete" }, - "16027": { + "16001": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.delete" }, - "16028": { + "16002": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "idOrSelector" }, - "16029": { + "16003": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16030": { + "16004": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.delete" }, - "16031": { + "16005": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "idOrSelector" }, - "16032": { + "16006": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16033": { + "16007": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.delete" }, - "16034": { + "16008": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "idOrSelector" }, - "16035": { + "16009": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16036": { + "16010": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.delete" }, - "16037": { + "16011": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "idOrSelector" }, - "16038": { + "16012": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16039": { + "16013": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.delete" }, - "16040": { + "16014": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "idOrSelector" }, - "16041": { + "16015": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "__type" }, - "16042": { + "16016": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "__type.selector" }, - "16043": { + "16017": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "16044": { + "16018": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "16045": { + "16019": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16046": { + "16020": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.softDelete" }, - "16047": { + "16021": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.softDelete" }, - "16048": { + "16022": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "idsOrFilter" }, - "16049": { + "16023": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "16050": { + "16024": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "16051": { + "16025": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16052": { + "16026": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.restore" }, - "16053": { + "16027": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.restore" }, - "16054": { + "16028": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "idsOrFilter" }, - "16055": { + "16029": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "16056": { + "16030": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16057": { + "16031": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.upsert" }, - "16058": { + "16032": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.upsert" }, - "16059": { + "16033": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "data" }, - "16060": { + "16034": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16061": { + "16035": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.upsert" }, - "16062": { + "16036": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "data" }, - "16063": { + "16037": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16064": { + "16038": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.upsertWithReplace" }, - "16065": { + "16039": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.upsertWithReplace" }, - "16066": { + "16040": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "data" }, - "16067": { + "16041": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "config" }, - "16068": { + "16042": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "sharedContext" }, - "16069": { + "16043": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "__type" }, - "16070": { + "16044": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "__type.entities" }, - "16071": { + "16045": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "__type.performedActions" }, - "16072": { + "16046": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.TEntity" }, - "16073": { + "16047": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "__type" }, - "16074": { + "16048": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/medusa-internal-service.ts", "qualifiedName": "IMedusaInternalService.TContainer" }, - "16075": { + "16049": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/module-provider.ts", "qualifiedName": "ModuleProviderExports" }, - "16076": { + "16050": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/module-provider.ts", "qualifiedName": "__type" }, - "16077": { + "16051": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/module-provider.ts", "qualifiedName": "__type.services" }, - "16078": { + "16052": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/module-provider.ts", "qualifiedName": "ModuleProvider" }, - "16079": { + "16053": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/module-provider.ts", "qualifiedName": "__type" }, - "16080": { + "16054": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/module-provider.ts", "qualifiedName": "__type.resolve" }, - "16081": { + "16055": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/module-provider.ts", - "qualifiedName": "__type.provider_name" + "qualifiedName": "__type.id" }, - "16082": { + "16056": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/module-provider.ts", "qualifiedName": "__type.options" }, - "16083": { + "16057": { "sourceFileName": "../../../../packages/core/types/src/notification/index.ts", "qualifiedName": "" }, - "16084": { + "16058": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO" }, - "16085": { + "16059": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.id" }, - "16086": { + "16060": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.to" }, - "16087": { + "16061": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.channel" }, - "16088": { + "16062": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.template" }, - "16089": { + "16063": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.data" }, - "16090": { + "16064": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.trigger_type" }, - "16091": { + "16065": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.resource_id" }, - "16092": { + "16066": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.resource_type" }, - "16093": { + "16067": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.receiver_id" }, - "16094": { + "16068": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.original_notification_id" }, - "16095": { + "16069": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.external_id" }, - "16096": { + "16070": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.provider_id" }, - "16097": { + "16071": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.provider" }, - "16098": { + "16072": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationDTO.created_at" }, - "16099": { + "16073": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationProviderDTO" }, - "16100": { + "16074": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationProviderDTO.id" }, - "16101": { + "16075": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationProviderDTO.handle" }, - "16102": { + "16076": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationProviderDTO.name" }, - "16103": { + "16077": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "NotificationProviderDTO.channels" }, - "16104": { + "16078": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "FilterableNotificationProps" }, - "16105": { + "16079": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "FilterableNotificationProps.q" }, - "16106": { + "16080": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "FilterableNotificationProps.to" }, - "16107": { + "16081": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "FilterableNotificationProps.channel" }, - "16108": { + "16082": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "FilterableNotificationProps.template" }, - "16109": { + "16083": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "FilterableNotificationProps.trigger_type" }, - "16110": { + "16084": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "FilterableNotificationProps.resource_id" }, - "16111": { + "16085": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "FilterableNotificationProps.resource_type" }, - "16112": { + "16086": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "FilterableNotificationProps.receiver_id" }, - "16113": { + "16087": { "sourceFileName": "../../../../packages/core/types/src/notification/common.ts", "qualifiedName": "FilterableNotificationProps.created_at" }, - "16114": { + "16088": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "16115": { + "16089": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "16116": { + "16090": { "sourceFileName": "../../../../packages/core/types/src/notification/providers/logger.ts", "qualifiedName": "LocalNotificationServiceOptions" }, - "16117": { + "16091": { "sourceFileName": "../../../../packages/core/types/src/notification/providers/sendgrid.ts", "qualifiedName": "SendgridNotificationServiceOptions" }, - "16118": { + "16092": { "sourceFileName": "../../../../packages/core/types/src/notification/providers/sendgrid.ts", "qualifiedName": "SendgridNotificationServiceOptions.api_key" }, - "16119": { + "16093": { "sourceFileName": "../../../../packages/core/types/src/notification/providers/sendgrid.ts", "qualifiedName": "SendgridNotificationServiceOptions.from" }, - "16120": { + "16094": { "sourceFileName": "../../../../packages/core/types/src/notification/mutations.ts", "qualifiedName": "CreateNotificationDTO" }, - "16121": { + "16095": { "sourceFileName": "../../../../packages/core/types/src/notification/mutations.ts", "qualifiedName": "CreateNotificationDTO.to" }, - "16122": { + "16096": { "sourceFileName": "../../../../packages/core/types/src/notification/mutations.ts", "qualifiedName": "CreateNotificationDTO.channel" }, - "16123": { + "16097": { "sourceFileName": "../../../../packages/core/types/src/notification/mutations.ts", "qualifiedName": "CreateNotificationDTO.template" }, - "16124": { + "16098": { "sourceFileName": "../../../../packages/core/types/src/notification/mutations.ts", "qualifiedName": "CreateNotificationDTO.data" }, - "16125": { + "16099": { "sourceFileName": "../../../../packages/core/types/src/notification/mutations.ts", "qualifiedName": "CreateNotificationDTO.trigger_type" }, - "16126": { + "16100": { "sourceFileName": "../../../../packages/core/types/src/notification/mutations.ts", "qualifiedName": "CreateNotificationDTO.resource_id" }, - "16127": { + "16101": { "sourceFileName": "../../../../packages/core/types/src/notification/mutations.ts", "qualifiedName": "CreateNotificationDTO.resource_type" }, - "16128": { + "16102": { "sourceFileName": "../../../../packages/core/types/src/notification/mutations.ts", "qualifiedName": "CreateNotificationDTO.receiver_id" }, - "16129": { + "16103": { "sourceFileName": "../../../../packages/core/types/src/notification/mutations.ts", "qualifiedName": "CreateNotificationDTO.original_notification_id" }, - "16130": { + "16104": { "sourceFileName": "../../../../packages/core/types/src/notification/mutations.ts", "qualifiedName": "CreateNotificationDTO.idempotency_key" }, - "16131": { + "16105": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "INotificationModuleService" }, - "16132": { + "16106": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "INotificationModuleService.createNotifications" }, - "16133": { + "16107": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "INotificationModuleService.createNotifications" }, - "16134": { + "16108": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "data" }, - "16135": { + "16109": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "sharedContext" }, - "16136": { + "16110": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "INotificationModuleService.createNotifications" }, - "16137": { + "16111": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "data" }, - "16138": { + "16112": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "sharedContext" }, - "16139": { + "16113": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "INotificationModuleService.retrieveNotification" }, - "16140": { + "16114": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "INotificationModuleService.retrieveNotification" }, - "16141": { + "16115": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "notificationId" }, - "16142": { + "16116": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "config" }, - "16143": { + "16117": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "sharedContext" }, - "16144": { + "16118": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "INotificationModuleService.listNotifications" }, - "16145": { + "16119": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "INotificationModuleService.listNotifications" }, - "16146": { + "16120": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "filters" }, - "16147": { + "16121": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "config" }, - "16148": { + "16122": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "sharedContext" }, - "16149": { + "16123": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "INotificationModuleService.listAndCountNotifications" }, - "16150": { + "16124": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "INotificationModuleService.listAndCountNotifications" }, - "16151": { + "16125": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "filters" }, - "16152": { + "16126": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "config" }, - "16153": { + "16127": { "sourceFileName": "../../../../packages/core/types/src/notification/service.ts", "qualifiedName": "sharedContext" }, - "16167": { + "16141": { "sourceFileName": "../../../../packages/core/types/src/notification/provider.ts", "qualifiedName": "ProviderSendNotificationDTO" }, - "16168": { + "16142": { "sourceFileName": "../../../../packages/core/types/src/notification/provider.ts", "qualifiedName": "__type.to" }, - "16169": { + "16143": { "sourceFileName": "../../../../packages/core/types/src/notification/provider.ts", "qualifiedName": "__type.channel" }, - "16170": { + "16144": { "sourceFileName": "../../../../packages/core/types/src/notification/provider.ts", "qualifiedName": "__type.template" }, - "16171": { + "16145": { "sourceFileName": "../../../../packages/core/types/src/notification/provider.ts", "qualifiedName": "__type.data" }, - "16172": { + "16146": { "sourceFileName": "../../../../packages/core/types/src/notification/provider.ts", "qualifiedName": "ProviderSendNotificationResultsDTO" }, - "16173": { + "16147": { "sourceFileName": "../../../../packages/core/types/src/notification/provider.ts", "qualifiedName": "__type.id" }, - "16174": { + "16148": { "sourceFileName": "../../../../packages/core/types/src/notification/provider.ts", "qualifiedName": "INotificationProvider" }, - "16175": { + "16149": { "sourceFileName": "../../../../packages/core/types/src/notification/provider.ts", "qualifiedName": "INotificationProvider.send" }, - "16176": { + "16150": { "sourceFileName": "../../../../packages/core/types/src/notification/provider.ts", "qualifiedName": "INotificationProvider.send" }, - "16177": { + "16151": { "sourceFileName": "../../../../packages/core/types/src/notification/provider.ts", "qualifiedName": "notification" }, - "16178": { + "16152": { "sourceFileName": "../../../../packages/core/types/src/search/index.ts", "qualifiedName": "" }, - "16179": { + "16153": { "sourceFileName": "../../../../packages/core/types/src/search/index.ts", "qualifiedName": "IndexSettings" }, - "16180": { + "16154": { "sourceFileName": "../../../../packages/core/types/src/search/index.ts", "qualifiedName": "__type" }, - "16181": { + "16155": { "sourceFileName": "../../../../packages/core/types/src/search/index.ts", "qualifiedName": "__type.indexSettings" }, - "16182": { + "16156": { "sourceFileName": "../../../../packages/core/types/src/search/index.ts", "qualifiedName": "__type.primaryKey" }, - "16183": { + "16157": { "sourceFileName": "../../../../packages/core/types/src/search/index.ts", "qualifiedName": "__type.transformer" }, - "16184": { + "16158": { "sourceFileName": "../../../../packages/core/types/src/search/index.ts", "qualifiedName": "__type" }, - "16185": { + "16159": { "sourceFileName": "../../../../packages/core/types/src/search/index.ts", "qualifiedName": "__type" }, - "16186": { + "16160": { "sourceFileName": "../../../../packages/core/types/src/search/index.ts", "qualifiedName": "document" }, - "16187": { + "16161": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService" }, - "16188": { + "16162": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.options" }, - "16189": { + "16163": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.createIndex" }, - "16190": { + "16164": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.createIndex" }, - "16191": { + "16165": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "indexName" }, - "16192": { + "16166": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "options" }, - "16193": { + "16167": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.getIndex" }, - "16194": { + "16168": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.getIndex" }, - "16195": { + "16169": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "indexName" }, - "16196": { + "16170": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.addDocuments" }, - "16197": { + "16171": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.addDocuments" }, - "16198": { + "16172": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "indexName" }, - "16199": { + "16173": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "documents" }, - "16200": { + "16174": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "type" }, - "16201": { + "16175": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.replaceDocuments" }, - "16202": { + "16176": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.replaceDocuments" }, - "16203": { + "16177": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "indexName" }, - "16204": { + "16178": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "documents" }, - "16205": { + "16179": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "type" }, - "16206": { + "16180": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.deleteDocument" }, - "16207": { + "16181": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.deleteDocument" }, - "16208": { + "16182": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "indexName" }, - "16209": { + "16183": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "document_id" }, - "16210": { + "16184": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.deleteAllDocuments" }, - "16211": { + "16185": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.deleteAllDocuments" }, - "16212": { + "16186": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "indexName" }, - "16213": { + "16187": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.search" }, - "16214": { + "16188": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.search" }, - "16215": { + "16189": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "indexName" }, - "16216": { + "16190": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "query" }, - "16217": { + "16191": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "options" }, - "16218": { + "16192": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.updateSettings" }, - "16219": { + "16193": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "ISearchService.updateSettings" }, - "16220": { + "16194": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "indexName" }, - "16221": { + "16195": { "sourceFileName": "../../../../packages/core/types/src/search/interface.ts", "qualifiedName": "settings" }, - "16222": { + "16196": { "sourceFileName": "../../../../packages/core/types/src/stock-location/index.ts", "qualifiedName": "" }, - "16223": { + "16197": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "StockLocationAddressDTO" }, - "16224": { + "16198": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type" }, - "16225": { + "16199": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.id" }, - "16226": { + "16200": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_1" }, - "16227": { + "16201": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_2" }, - "16228": { + "16202": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.company" }, - "16229": { + "16203": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.country_code" }, - "16230": { + "16204": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.city" }, - "16231": { + "16205": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.phone" }, - "16232": { + "16206": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.postal_code" }, - "16233": { + "16207": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.province" }, - "16234": { + "16208": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.metadata" }, - "16235": { + "16209": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.created_at" }, - "16236": { + "16210": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.updated_at" }, - "16237": { + "16211": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.deleted_at" }, - "16238": { + "16212": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "StockLocationDTO" }, - "16239": { + "16213": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type" }, - "16240": { + "16214": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.id" }, - "16241": { + "16215": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.name" }, - "16242": { + "16216": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.metadata" }, - "16243": { + "16217": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_id" }, - "16244": { + "16218": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address" }, - "16245": { + "16219": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.fulfillment_sets" }, - "16246": { + "16220": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.created_at" }, - "16247": { + "16221": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.updated_at" }, - "16248": { + "16222": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.deleted_at" }, - "16249": { + "16223": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "StockLocationExpandedDTO" }, - "16250": { + "16224": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type" }, - "16251": { + "16225": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.sales_channels" }, - "16252": { + "16226": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "FilterableStockLocationProps" }, - "16253": { + "16227": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "FilterableStockLocationProps.q" }, - "16254": { + "16228": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "FilterableStockLocationProps.id" }, - "16255": { + "16229": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "FilterableStockLocationProps.name" }, - "16256": { + "16230": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "16257": { + "16231": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "16258": { + "16232": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "StockLocationAddressInput" }, - "16259": { + "16233": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type" }, - "16260": { + "16234": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_1" }, - "16261": { + "16235": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_2" }, - "16262": { + "16236": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.country_code" }, - "16263": { + "16237": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.city" }, - "16264": { + "16238": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.phone" }, - "16265": { + "16239": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.province" }, - "16266": { + "16240": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.postal_code" }, - "16267": { + "16241": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.metadata" }, - "16268": { + "16242": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "CreateStockLocationInput" }, - "16269": { + "16243": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type" }, - "16270": { + "16244": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.name" }, - "16271": { + "16245": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_id" }, - "16272": { + "16246": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address" }, - "16273": { + "16247": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.metadata" }, - "16274": { + "16248": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "UpdateStockLocationInput" }, - "16275": { + "16249": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type" }, - "16276": { + "16250": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.name" }, - "16277": { + "16251": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_id" }, - "16278": { + "16252": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address" }, - "16279": { + "16253": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.metadata" }, - "16280": { + "16254": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "UpsertStockLocationInput" }, - "16281": { + "16255": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "name" }, - "16282": { + "16256": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "address_id" }, - "16283": { + "16257": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "address" }, - "16284": { + "16258": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "metadata" }, - "16285": { + "16259": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.id" }, - "16286": { + "16260": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService" }, - "16287": { + "16261": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.listStockLocations" }, - "16288": { + "16262": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.listStockLocations" }, - "16289": { + "16263": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "selector" }, - "16290": { + "16264": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "config" }, - "16291": { + "16265": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "16292": { + "16266": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.listAndCountStockLocations" }, - "16293": { + "16267": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.listAndCountStockLocations" }, - "16294": { + "16268": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "selector" }, - "16295": { + "16269": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "config" }, - "16296": { + "16270": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "16297": { + "16271": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.retrieveStockLocation" }, - "16298": { + "16272": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.retrieveStockLocation" }, - "16299": { + "16273": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "id" }, - "16300": { + "16274": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "config" }, - "16301": { + "16275": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "16302": { + "16276": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.createStockLocations" }, - "16303": { + "16277": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.createStockLocations" }, - "16304": { + "16278": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "input" }, - "16305": { + "16279": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "16306": { + "16280": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.createStockLocations" }, - "16307": { + "16281": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "input" }, - "16308": { + "16282": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "16309": { + "16283": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.upsertStockLocations" }, - "16310": { + "16284": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.upsertStockLocations" }, - "16311": { + "16285": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "data" }, - "16312": { + "16286": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "sharedContext" }, - "16313": { + "16287": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.upsertStockLocations" }, - "16314": { + "16288": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "data" }, - "16315": { + "16289": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "sharedContext" }, - "16316": { + "16290": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.updateStockLocations" }, - "16317": { + "16291": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.updateStockLocations" }, - "16318": { + "16292": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "id" }, - "16319": { + "16293": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "input" }, - "16320": { + "16294": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "16321": { + "16295": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.updateStockLocations" }, - "16322": { + "16296": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "selector" }, - "16323": { + "16297": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "input" }, - "16324": { + "16298": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "16325": { + "16299": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.deleteStockLocations" }, - "16326": { + "16300": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.deleteStockLocations" }, - "16327": { + "16301": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "id" }, - "16328": { + "16302": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "16329": { + "16303": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.softDeleteStockLocations" }, - "16330": { + "16304": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.softDeleteStockLocations" }, - "16331": { + "16305": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "16332": { + "16306": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "stockLocationIds" }, - "16333": { + "16307": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "config" }, - "16334": { + "16308": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "sharedContext" }, - "16335": { + "16309": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.restoreStockLocations" }, - "16336": { + "16310": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.restoreStockLocations" }, - "16337": { + "16311": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "16338": { + "16312": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "stockLocationIds" }, - "16339": { + "16313": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "config" }, - "16340": { + "16314": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "sharedContext" }, - "16354": { + "16328": { "sourceFileName": "../../../../packages/core/types/src/transaction-base/index.ts", "qualifiedName": "" }, - "16355": { + "16329": { "sourceFileName": "../../../../packages/core/types/src/transaction-base/transaction-base.ts", "qualifiedName": "ITransactionBaseService" }, - "16356": { + "16330": { "sourceFileName": "../../../../packages/core/types/src/transaction-base/transaction-base.ts", "qualifiedName": "ITransactionBaseService.withTransaction" }, - "16357": { + "16331": { "sourceFileName": "../../../../packages/core/types/src/transaction-base/transaction-base.ts", "qualifiedName": "ITransactionBaseService.withTransaction" }, - "16358": { + "16332": { "sourceFileName": "../../../../packages/core/types/src/transaction-base/transaction-base.ts", "qualifiedName": "transactionManager" }, - "16359": { + "16333": { "sourceFileName": "../../../../packages/core/types/src/workflow/index.ts", "qualifiedName": "" }, - "16360": { + "16334": { "sourceFileName": "../../../../packages/core/types/src/workflow/common.ts", "qualifiedName": "" }, - "16361": { + "16335": { "sourceFileName": "../../../../packages/core/types/src/workflow/common.ts", "qualifiedName": "WorkflowInputConfig" }, - "16362": { + "16336": { "sourceFileName": "../../../../packages/core/types/src/workflow/common.ts", "qualifiedName": "WorkflowInputConfig.listConfig" }, - "16363": { + "16337": { "sourceFileName": "../../../../packages/core/types/src/workflow/common.ts", "qualifiedName": "__type" }, - "16364": { + "16338": { "sourceFileName": "../../../../packages/core/types/src/workflow/common.ts", "qualifiedName": "__type.select" }, - "16365": { + "16339": { "sourceFileName": "../../../../packages/core/types/src/workflow/common.ts", "qualifiedName": "__type.relations" }, - "16366": { + "16340": { "sourceFileName": "../../../../packages/core/types/src/workflow/common.ts", "qualifiedName": "WorkflowInputConfig.retrieveConfig" }, - "16367": { + "16341": { "sourceFileName": "../../../../packages/core/types/src/workflow/common.ts", "qualifiedName": "__type" }, - "16368": { + "16342": { "sourceFileName": "../../../../packages/core/types/src/workflow/common.ts", "qualifiedName": "__type.select" }, - "16369": { + "16343": { "sourceFileName": "../../../../packages/core/types/src/workflow/common.ts", "qualifiedName": "__type.relations" }, - "16370": { + "16344": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/index.ts", "qualifiedName": "" }, - "16371": { + "16345": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO" }, - "16372": { + "16346": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO.sku" }, - "16373": { + "16347": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO.hs_code" }, - "16374": { + "16348": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO.weight" }, - "16375": { + "16349": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO.length" }, - "16376": { + "16350": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO.height" }, - "16377": { + "16351": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO.width" }, - "16378": { + "16352": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO.origin_country" }, - "16379": { + "16353": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO.mid_code" }, - "16380": { + "16354": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO.material" }, - "16381": { + "16355": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO.title" }, - "16382": { + "16356": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO.description" }, - "16383": { + "16357": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO.thumbnail" }, - "16384": { + "16358": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemInputDTO.metadata" }, - "16385": { + "16359": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemsWorkflowInputDTO" }, - "16386": { + "16360": { "sourceFileName": "../../../../packages/core/types/src/workflow/inventory/create-inventory-items.ts", "qualifiedName": "CreateInventoryItemsWorkflowInputDTO.inventoryItems" }, - "16387": { + "16361": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/index.ts", "qualifiedName": "" }, - "16388": { + "16362": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/create-invite.ts", "qualifiedName": "CreateInvitesWorkflowInputDTO" }, - "16389": { + "16363": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/create-invite.ts", "qualifiedName": "CreateInvitesWorkflowInputDTO.invites" }, - "16390": { + "16364": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/delete-invite.ts", "qualifiedName": "DeleteInvitesWorkflowInput" }, - "16391": { + "16365": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/delete-invite.ts", "qualifiedName": "DeleteInvitesWorkflowInput.ids" }, - "16392": { + "16366": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/accept-invite.ts", "qualifiedName": "AcceptInviteWorkflowInputDTO" }, - "16393": { + "16367": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/accept-invite.ts", "qualifiedName": "AcceptInviteWorkflowInputDTO.invite_token" }, - "16394": { + "16368": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/accept-invite.ts", "qualifiedName": "AcceptInviteWorkflowInputDTO.auth_identity_id" }, - "16395": { + "16369": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/accept-invite.ts", "qualifiedName": "AcceptInviteWorkflowInputDTO.user" }, - "16396": { + "16370": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/accept-invite.ts", "qualifiedName": "__type" }, - "16397": { + "16371": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/accept-invite.ts", "qualifiedName": "__type.email" }, - "16398": { + "16372": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/accept-invite.ts", "qualifiedName": "__type.first_name" }, - "16399": { + "16373": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/accept-invite.ts", "qualifiedName": "__type.last_name" }, - "16400": { + "16374": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/accept-invite.ts", "qualifiedName": "__type.avatar_url" }, - "16401": { + "16375": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/accept-invite.ts", "qualifiedName": "__type.metadata" }, - "16402": { + "16376": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/resend-invite.ts", "qualifiedName": "ResendInvitesWorkflowInputDTO" }, - "16403": { + "16377": { "sourceFileName": "../../../../packages/core/types/src/workflow/invite/resend-invite.ts", "qualifiedName": "ResendInvitesWorkflowInputDTO.invite_ids" }, - "16404": { + "16378": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/index.ts", "qualifiedName": "" }, - "16405": { + "16379": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListDTO" }, - "16406": { + "16380": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListDTO.starts_at" }, - "16407": { + "16381": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListDTO.ends_at" }, - "16408": { + "16382": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListDTO.status" }, - "16409": { + "16383": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListDTO.rules" }, - "16410": { + "16384": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListDTO.prices" }, - "16411": { + "16385": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "__type" }, - "16412": { + "16386": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "__type.amount" }, - "16413": { + "16387": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "__type.currency_code" }, - "16414": { + "16388": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "__type.region_id" }, - "16415": { + "16389": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "__type.max_quantity" }, - "16416": { + "16390": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "__type.min_quantity" }, - "16417": { + "16391": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListDTO.customer_groups" }, - "16418": { + "16392": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "__type" }, - "16419": { + "16393": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "__type.id" }, - "16420": { + "16394": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListRuleDTO" }, - "16421": { + "16395": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListRuleDTO.attribute" }, - "16422": { + "16396": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListRuleDTO.value" }, - "16423": { + "16397": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListPriceDTO" }, - "16424": { + "16398": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListPriceDTO.amount" }, - "16425": { + "16399": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListPriceDTO.currency_code" }, - "16426": { + "16400": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListPriceDTO.price_set_id" }, - "16427": { + "16401": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListPriceDTO.region_id" }, - "16428": { + "16402": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListPriceDTO.max_quantity" }, - "16429": { + "16403": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListPriceDTO.min_quantity" }, - "16430": { + "16404": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListWorkflowInputDTO" }, - "16431": { + "16405": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListWorkflowInputDTO.price_lists" }, - "16432": { + "16406": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "RemovePriceListProductsWorkflowInputDTO" }, - "16433": { + "16407": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "RemovePriceListProductsWorkflowInputDTO.product_ids" }, - "16434": { + "16408": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "RemovePriceListProductsWorkflowInputDTO.price_list_id" }, - "16435": { + "16409": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "RemovePriceListVariantsWorkflowInputDTO" }, - "16436": { + "16410": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "RemovePriceListVariantsWorkflowInputDTO.variant_ids" }, - "16437": { + "16411": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "RemovePriceListVariantsWorkflowInputDTO.price_list_id" }, - "16438": { + "16412": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "RemovePriceListPricesWorkflowInputDTO" }, - "16439": { + "16413": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "RemovePriceListPricesWorkflowInputDTO.money_amount_ids" }, - "16440": { + "16414": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "RemovePriceListPricesWorkflowInputDTO.price_list_id" }, - "16441": { + "16415": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListWorkflowDTO" }, - "16442": { + "16416": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListWorkflowDTO.title" }, - "16443": { + "16417": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListWorkflowDTO.name" }, - "16444": { + "16418": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListWorkflowDTO.description" }, - "16445": { + "16419": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListWorkflowDTO.type" }, - "16446": { + "16420": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListWorkflowDTO.starts_at" }, - "16447": { + "16421": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListWorkflowDTO.ends_at" }, - "16448": { + "16422": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListWorkflowDTO.status" }, - "16449": { + "16423": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListWorkflowDTO.rules_count" }, - "16450": { + "16424": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListWorkflowDTO.prices" }, - "16451": { + "16425": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "CreatePriceListWorkflowDTO.rules" }, - "16452": { + "16426": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/remove-price-list.ts", "qualifiedName": "RemovePriceListWorkflowInputDTO" }, - "16453": { + "16427": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/remove-price-list.ts", "qualifiedName": "RemovePriceListWorkflowInputDTO.price_lists" }, - "16454": { + "16428": { "sourceFileName": "../../../../packages/core/types/src/workflow/product-category/index.ts", "qualifiedName": "" }, - "16455": { + "16429": { "sourceFileName": "../../../../packages/core/types/src/workflow/product-category/index.ts", "qualifiedName": "CreateProductCategoriesWorkflowInput" }, - "16456": { + "16430": { "sourceFileName": "../../../../packages/core/types/src/workflow/product-category/index.ts", "qualifiedName": "CreateProductCategoriesWorkflowInput.product_categories" }, - "16457": { + "16431": { "sourceFileName": "../../../../packages/core/types/src/workflow/product-category/index.ts", "qualifiedName": "UpdateProductCategoriesWorkflowInput" }, - "16458": { + "16432": { "sourceFileName": "../../../../packages/core/types/src/workflow/product-category/index.ts", "qualifiedName": "UpdateProductCategoriesWorkflowInput.selector" }, - "16459": { + "16433": { "sourceFileName": "../../../../packages/core/types/src/workflow/product-category/index.ts", "qualifiedName": "UpdateProductCategoriesWorkflowInput.update" }, - "16460": { + "16434": { "sourceFileName": "../../../../packages/core/types/src/workflow/product-category/index.ts", "qualifiedName": "BatchUpdateProductsOnCategoryWorkflowInput" }, - "16461": { + "16435": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.id" }, - "16462": { + "16436": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.add" }, - "16463": { + "16437": { "sourceFileName": "../../../../packages/core/types/src/common/batch.ts", "qualifiedName": "__type.remove" }, - "16464": { + "16438": { "sourceFileName": "../../../../packages/core/types/src/workflow/reservation/index.ts", "qualifiedName": "" }, - "16465": { + "16439": { "sourceFileName": "../../../../packages/core/types/src/workflow/reservation/create-reservations.ts", "qualifiedName": "CreateReservationsWorkflowInput" }, - "16466": { + "16440": { "sourceFileName": "../../../../packages/core/types/src/workflow/reservation/create-reservations.ts", "qualifiedName": "CreateReservationsWorkflowInput.reservations" }, - "16467": { + "16441": { "sourceFileName": "../../../../packages/core/types/src/workflow/reservation/create-reservations.ts", "qualifiedName": "CreateReservationsWorkflowOutput" }, - "16468": { + "16442": { "sourceFileName": "../../../../packages/core/types/src/workflow/reservation/update-reservations.ts", "qualifiedName": "UpdateReservationsWorkflowInput" }, - "16469": { + "16443": { "sourceFileName": "../../../../packages/core/types/src/workflow/reservation/update-reservations.ts", "qualifiedName": "UpdateReservationsWorkflowInput.updates" }, - "16470": { + "16444": { "sourceFileName": "../../../../packages/core/types/src/workflow/reservation/update-reservations.ts", "qualifiedName": "UpdateReservationsWorkflowOutput" }, - "16471": { + "16445": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/index.ts", "qualifiedName": "" }, - "16472": { + "16446": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "WorkflowExecutionDTO" }, - "16473": { + "16447": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "WorkflowExecutionDTO.id" }, - "16474": { + "16448": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "WorkflowExecutionDTO.workflow_id" }, - "16475": { + "16449": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "WorkflowExecutionDTO.transaction_id" }, - "16476": { + "16450": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "WorkflowExecutionDTO.execution" }, - "16477": { + "16451": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "WorkflowExecutionDTO.context" }, - "16478": { + "16452": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "WorkflowExecutionDTO.state" }, - "16479": { + "16453": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "WorkflowExecutionDTO.created_at" }, - "16480": { + "16454": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "WorkflowExecutionDTO.updated_at" }, - "16481": { + "16455": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "WorkflowExecutionDTO.deleted_at" }, - "16482": { + "16456": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "FilterableWorkflowExecutionProps" }, - "16483": { + "16457": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "FilterableWorkflowExecutionProps.id" }, - "16484": { + "16458": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "FilterableWorkflowExecutionProps.workflow_id" }, - "16485": { + "16459": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "FilterableWorkflowExecutionProps.transaction_id" }, - "16486": { + "16460": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/common.ts", "qualifiedName": "FilterableWorkflowExecutionProps.state" }, - "16487": { + "16461": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "16488": { + "16462": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "16489": { + "16463": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/mutations.ts", "qualifiedName": "UpsertWorkflowExecutionDTO" }, - "16490": { + "16464": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/mutations.ts", "qualifiedName": "UpsertWorkflowExecutionDTO.workflow_id" }, - "16491": { + "16465": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/mutations.ts", "qualifiedName": "UpsertWorkflowExecutionDTO.transaction_id" }, - "16492": { + "16466": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/mutations.ts", "qualifiedName": "UpsertWorkflowExecutionDTO.execution" }, - "16493": { + "16467": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/mutations.ts", "qualifiedName": "UpsertWorkflowExecutionDTO.context" }, - "16494": { + "16468": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/mutations.ts", "qualifiedName": "UpsertWorkflowExecutionDTO.state" }, - "16495": { + "16469": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "WorkflowOrchestratorRunDTO" }, - "16496": { + "16470": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "WorkflowOrchestratorRunDTO.transactionId" }, - "16497": { + "16471": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "WorkflowOrchestratorRunDTO.container" }, - "16498": { + "16472": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.input" }, - "16499": { + "16473": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.context" }, - "16500": { + "16474": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.resultFrom" }, - "16501": { + "16475": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.throwOnError" }, - "16502": { + "16476": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.events" }, - "16503": { + "16477": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "WorkflowOrchestratorRunDTO.T" }, - "16504": { + "16478": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IdempotencyKeyParts" }, - "16505": { + "16479": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type" }, - "16506": { + "16480": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.workflowId" }, - "16507": { + "16481": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.transactionId" }, - "16508": { + "16482": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.stepId" }, - "16509": { + "16483": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.action" }, - "16510": { + "16484": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService" }, - "16511": { + "16485": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.retrieveWorkflowExecution" }, - "16512": { + "16486": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.retrieveWorkflowExecution" }, - "16513": { + "16487": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "idOrObject" }, - "16514": { + "16488": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type" }, - "16515": { + "16489": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.workflow_id" }, - "16516": { + "16490": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.transaction_id" }, - "16517": { + "16491": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "config" }, - "16518": { + "16492": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "sharedContext" }, - "16519": { + "16493": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.listWorkflowExecutions" }, - "16520": { + "16494": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.listWorkflowExecutions" }, - "16521": { + "16495": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "filters" }, - "16522": { + "16496": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "config" }, - "16523": { + "16497": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "sharedContext" }, - "16524": { + "16498": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.listAndCountWorkflowExecutions" }, - "16525": { + "16499": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.listAndCountWorkflowExecutions" }, - "16526": { + "16500": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "filters" }, - "16527": { + "16501": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "config" }, - "16528": { + "16502": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "sharedContext" }, - "16529": { + "16503": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.run" }, - "16530": { + "16504": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.run" }, - "16531": { + "16505": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "workflowId" }, - "16532": { + "16506": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "options" }, - "16533": { + "16507": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "sharedContext" }, - "16534": { + "16508": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type" }, - "16535": { + "16509": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.errors" }, - "16536": { + "16510": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.transaction" }, - "16537": { + "16511": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.result" }, - "16538": { + "16512": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.acknowledgement" }, - "16539": { + "16513": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.getRunningTransaction" }, - "16540": { + "16514": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.getRunningTransaction" }, - "16541": { + "16515": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "workflowId" }, - "16542": { + "16516": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "transactionId" }, - "16543": { + "16517": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "options" }, - "16544": { + "16518": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "sharedContext" }, - "16545": { + "16519": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.setStepSuccess" }, - "16546": { + "16520": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.setStepSuccess" }, - "16547": { + "16521": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__0" }, - "16548": { + "16522": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type" }, - "16549": { + "16523": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.idempotencyKey" }, - "16550": { + "16524": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.stepResponse" }, - "16551": { + "16525": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.options" }, - "16552": { + "16526": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "sharedContext" }, - "16553": { + "16527": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.setStepFailure" }, - "16554": { + "16528": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.setStepFailure" }, - "16555": { + "16529": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__0" }, - "16556": { + "16530": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type" }, - "16557": { + "16531": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.idempotencyKey" }, - "16558": { + "16532": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.stepResponse" }, - "16559": { + "16533": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.options" }, - "16560": { + "16534": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "sharedContext" }, - "16561": { + "16535": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.subscribe" }, - "16562": { + "16536": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.subscribe" }, - "16563": { + "16537": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "args" }, - "16564": { + "16538": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type" }, - "16565": { + "16539": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.workflowId" }, - "16566": { + "16540": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.transactionId" }, - "16567": { + "16541": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.subscriber" }, - "16568": { + "16542": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.subscriberId" }, - "16569": { + "16543": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "sharedContext" }, - "16570": { + "16544": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.unsubscribe" }, - "16571": { + "16545": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "IWorkflowEngineService.unsubscribe" }, - "16572": { + "16546": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "args" }, - "16573": { + "16547": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type" }, - "16574": { + "16548": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.workflowId" }, - "16575": { + "16549": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.transactionId" }, - "16576": { + "16550": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.subscriberOrId" }, - "16577": { + "16551": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "sharedContext" }, - "16591": { + "16565": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "" }, - "16592": { + "16566": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "IsDmlEntity" }, - "16593": { + "16567": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "DMLSchema" }, - "16594": { + "16568": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "IDmlEntityConfig" + }, + "16569": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type" + }, + "16570": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type.name" + }, + "16571": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type.tableName" + }, + "16572": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "InferDmlEntityNameFromConfig" + }, + "16573": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type" + }, + "16574": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type.name" + }, + "16575": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type" + }, + "16576": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type.tableName" + }, + "16577": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "TConfig" + }, + "16578": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "IDmlEntity" }, - "16595": { + "16579": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "IDmlEntity.name" + }, + "16580": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "IDmlEntity.schema" }, - "16596": { + "16581": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "IDmlEntity.[IsDmlEntity]" }, - "16597": { + "16582": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "IDmlEntity.Schema" }, - "16598": { + "16583": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "IDmlEntity.Config" + }, + "16584": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "KnownDataTypes" }, - "16599": { + "16585": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "RelationshipTypes" }, - "16600": { + "16586": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "PropertyMetadata" }, - "16601": { + "16587": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type" }, - "16602": { + "16588": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.fieldName" }, - "16603": { + "16589": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.defaultValue" }, - "16604": { + "16590": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.nullable" }, - "16605": { + "16591": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.dataType" }, - "16606": { + "16592": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type" }, - "16607": { + "16593": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.name" }, - "16608": { + "16594": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.options" }, - "16609": { + "16595": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.indexes" }, - "16610": { + "16596": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type" }, - "16611": { + "16597": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.name" }, - "16612": { + "16598": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.type" }, - "16613": { + "16599": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.relationships" }, - "16614": { + "16600": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type.primaryKey" + }, + "16601": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "PropertyType" }, - "16615": { + "16602": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type" }, - "16616": { + "16603": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.$dataType" }, - "16617": { + "16604": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.parse" }, - "16618": { + "16605": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.parse" }, - "16619": { + "16606": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "fieldName" }, - "16620": { + "16607": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "T" }, - "16621": { + "16608": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "RelationshipOptions" }, - "16622": { + "16609": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type" }, - "16623": { + "16610": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.mappedBy" }, - "16624": { + "16611": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "RelationshipMetadata" }, - "16625": { + "16612": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type" }, - "16626": { + "16613": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.name" }, - "16627": { + "16614": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.type" }, - "16628": { + "16615": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.entity" }, - "16629": { + "16616": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.nullable" }, - "16630": { + "16617": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.mappedBy" }, - "16631": { + "16618": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.options" }, - "16632": { + "16619": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "RelationshipType" }, - "16633": { + "16620": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type" }, - "16634": { + "16621": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.$dataType" }, + "16622": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type.type" + }, + "16623": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type.parse" + }, + "16624": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type.parse" + }, + "16625": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "relationshipName" + }, + "16626": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "T" + }, + "16627": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "EntityConstructor" + }, + "16628": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "EntityConstructor.Props" + }, + "16629": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "EntityConstructor" + }, + "16630": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "EntityConstructor" + }, + "16631": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "InferForeignKeys" + }, + "16632": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type" + }, + "16633": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type.type" + }, + "16634": { + "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", + "qualifiedName": "__type" + }, "16635": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.type" }, "16636": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "__type.parse" + "qualifiedName": "Schema" }, "16637": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "__type.parse" + "qualifiedName": "InferBelongsToFields" }, "16638": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "relationshipName" + "qualifiedName": "__type" }, "16639": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "T" + "qualifiedName": "__type" }, "16640": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "EntityConstructor" + "qualifiedName": "__type" }, "16641": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "EntityConstructor.Props" + "qualifiedName": "__type" }, "16642": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "EntityConstructor" + "qualifiedName": "Relation" }, "16643": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "EntityConstructor" + "qualifiedName": "InferHasOneFields" }, "16644": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "InferForeignKeys" + "qualifiedName": "Relation" }, "16645": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "__type" + "qualifiedName": "InferHasManyFields" }, "16646": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "__type.type" + "qualifiedName": "__type" }, "16647": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", @@ -80934,527 +86421,527 @@ }, "16648": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "__type.type" + "qualifiedName": "Relation" }, "16649": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "T" + "qualifiedName": "InferManyToManyFields" }, "16650": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "Infer" + "qualifiedName": "Relation" }, "16651": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "__type" + "qualifiedName": "InferSchemaFields" }, "16652": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "__type" + "qualifiedName": "Schema" }, "16653": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "__type" + "qualifiedName": "Infer" }, "16654": { - "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", - "qualifiedName": "__type" - }, - "16655": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "T" }, - "16656": { + "16655": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "ExtractEntityRelations" }, - "16657": { + "16656": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type" }, - "16658": { + "16657": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.type" }, - "16659": { + "16658": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "Schema" }, - "16660": { + "16659": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "OfType" }, - "16661": { + "16660": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "EntityCascades" }, - "16662": { + "16661": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type" }, - "16663": { + "16662": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.delete" }, - "16664": { + "16663": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "Relationships" }, - "16665": { + "16664": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "InferTypeOf" }, - "16666": { + "16665": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "T" }, - "16667": { + "16666": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "InferEntityType" }, - "16668": { + "16667": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "T" }, - "16669": { + "16668": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "InferIndexableProperties" }, - "16670": { + "16669": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type" }, - "16671": { + "16670": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.type" }, - "16672": { + "16671": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "T" }, - "16673": { + "16672": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "EntityIndex" }, - "16674": { + "16673": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type" }, - "16675": { + "16674": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.name" }, - "16676": { + "16675": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.unique" }, - "16677": { + "16676": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.on" }, - "16678": { + "16677": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.where" }, - "16679": { + "16678": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "TSchema" }, - "16680": { + "16679": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "TWhere" }, - "16681": { + "16680": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "SimpleQueryValue" }, - "16682": { + "16681": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "NeQueryValue" }, - "16683": { + "16682": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type" }, - "16684": { + "16683": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "__type.$ne" }, - "16685": { + "16684": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "QueryValue" }, - "16686": { + "16685": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "QueryCondition" }, - "16687": { + "16686": { "sourceFileName": "../../../../packages/core/types/src/dml/index.ts", "qualifiedName": "T" }, - "16688": { + "16687": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "FileServiceUploadResult" }, - "16689": { + "16688": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "__type.url" }, - "16690": { + "16689": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "__type.key" }, - "16691": { + "16690": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "FileServiceGetUploadStreamResult" }, - "16692": { + "16691": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "__type.writeStream" }, - "16693": { + "16692": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "__type.promise" }, - "16694": { + "16693": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "__type.url" }, - "16695": { + "16694": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "__type.fileKey" }, - "16696": { + "16695": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "GetUploadedFileType" }, - "16697": { + "16696": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "__type.fileKey" }, - "16698": { + "16697": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "__type.isPrivate" }, - "16699": { + "16698": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "DeleteFileType" }, - "16700": { + "16699": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "__type.fileKey" }, - "16701": { + "16700": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "UploadStreamDescriptorType" }, - "16702": { + "16701": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "__type.name" }, - "16703": { + "16702": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "__type.ext" }, - "16704": { + "16703": { "sourceFileName": "../../../../packages/core/types/src/file-service/index.ts", "qualifiedName": "__type.isPrivate" }, - "16705": { + "16704": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "16706": { + "16705": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "16707": { + "16706": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "16708": { + "16707": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "16709": { + "16708": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "16710": { + "16709": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "16711": { + "16710": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "16712": { + "16711": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "16713": { + "16712": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "16714": { + "16713": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "16715": { + "16714": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "16716": { + "16715": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "16717": { + "16716": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "16718": { + "16717": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "16719": { + "16718": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "16720": { + "16719": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "16721": { + "16720": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "16722": { + "16721": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "16723": { + "16722": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "16724": { + "16723": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "16725": { + "16724": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "16726": { + "16725": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "16727": { + "16726": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "16728": { + "16727": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "16729": { + "16728": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "16730": { + "16729": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "16731": { + "16730": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerArgument" }, - "16732": { + "16731": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerArgument.name" }, - "16733": { + "16732": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerArgument.value" }, - "16734": { + "16733": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerDirective" }, - "16735": { + "16734": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerDirective.name" }, - "16736": { + "16735": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerDirective.value" }, - "16737": { + "16736": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteJoinerQuery" }, - "16738": { + "16737": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteJoinerQuery.service" }, - "16739": { + "16738": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteJoinerQuery.alias" }, - "16740": { + "16739": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteJoinerQuery.expands" }, - "16741": { + "16740": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "16742": { + "16741": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.property" }, - "16743": { + "16742": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.fields" }, - "16744": { + "16743": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "16745": { + "16744": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.directives" }, - "16746": { + "16745": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "16747": { + "16746": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.__index" }, - "16749": { + "16748": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteJoinerQuery.fields" }, - "16750": { + "16749": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteJoinerQuery.args" }, - "16751": { + "16750": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteJoinerQuery.directives" }, - "16752": { + "16751": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "16753": { + "16752": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.__index" }, - "16755": { + "16754": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteJoinerOptions" }, - "16756": { + "16755": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteJoinerOptions.throwIfKeyNotFound" }, - "16757": { + "16756": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteJoinerOptions.throwIfRelationNotFound" }, - "16758": { + "16757": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteNestedExpands" }, - "16759": { + "16758": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteNestedExpands.__index" }, - "16761": { + "16760": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "16762": { + "16761": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.fields" }, - "16763": { + "16762": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "16764": { + "16763": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.expands" }, - "16765": { + "16764": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "InternalJoinerServiceConfig" }, - "16766": { + "16765": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "16767": { + "16766": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationships" }, - "16768": { + "16767": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteExpandProperty" }, - "16769": { + "16768": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteExpandProperty.property" }, - "16770": { + "16769": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteExpandProperty.parent" }, - "16771": { + "16770": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteExpandProperty.parentConfig" }, - "16772": { + "16771": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteExpandProperty.serviceConfig" }, - "16773": { + "16772": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteExpandProperty.fields" }, - "16774": { + "16773": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteExpandProperty.args" }, - "16775": { + "16774": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "RemoteExpandProperty.expands" }, - "16776": { + "16775": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", "qualifiedName": "ILinkModule" }, + "16776": { + "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", + "qualifiedName": "ILinkModule.list" + }, "16777": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", "qualifiedName": "ILinkModule.list" }, "16778": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "ILinkModule.list" + "qualifiedName": "filters" }, "16779": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "filters" + "qualifiedName": "config" }, "16780": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "config" + "qualifiedName": "sharedContext" }, "16781": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "ILinkModule.listAndCount" }, "16782": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", @@ -81462,19 +86949,19 @@ }, "16783": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "ILinkModule.listAndCount" + "qualifiedName": "filters" }, "16784": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "filters" + "qualifiedName": "config" }, "16785": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "config" + "qualifiedName": "sharedContext" }, "16786": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "ILinkModule.create" }, "16787": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", @@ -81482,19 +86969,19 @@ }, "16788": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "ILinkModule.create" + "qualifiedName": "primaryKeyOrBulkData" }, "16789": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "primaryKeyOrBulkData" + "qualifiedName": "foreignKeyData" }, "16790": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "foreignKeyData" + "qualifiedName": "sharedContext" }, "16791": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "ILinkModule.dismiss" }, "16792": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", @@ -81502,19 +86989,19 @@ }, "16793": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "ILinkModule.dismiss" + "qualifiedName": "primaryKeyOrBulkData" }, "16794": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "primaryKeyOrBulkData" + "qualifiedName": "foreignKeyData" }, "16795": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "foreignKeyData" + "qualifiedName": "sharedContext" }, "16796": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "ILinkModule.delete" }, "16797": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", @@ -81522,15 +87009,15 @@ }, "16798": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "ILinkModule.delete" + "qualifiedName": "data" }, "16799": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "data" + "qualifiedName": "sharedContext" }, "16800": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "ILinkModule.softDelete" }, "16801": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", @@ -81538,99 +87025,99 @@ }, "16802": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "ILinkModule.softDelete" + "qualifiedName": "data" }, "16803": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "data" + "qualifiedName": "config" }, "16804": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "config" + "qualifiedName": "sharedContext" }, "16805": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "ILinkModule.restore" }, "16806": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", "qualifiedName": "ILinkModule.restore" }, "16807": { - "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", - "qualifiedName": "ILinkModule.restore" - }, - "16808": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", "qualifiedName": "data" }, - "16809": { + "16808": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", "qualifiedName": "config" }, - "16810": { + "16809": { "sourceFileName": "../../../../packages/core/types/src/link-modules/index.ts", "qualifiedName": "sharedContext" }, - "16824": { + "16823": { "sourceFileName": "../../../../packages/core/types/src/product-category/repository.ts", "qualifiedName": "ProductCategoryTransformOptions" }, - "16825": { + "16824": { "sourceFileName": "../../../../packages/core/types/src/product-category/repository.ts", "qualifiedName": "ProductCategoryTransformOptions.includeDescendantsTree" }, - "16826": { + "16825": { "sourceFileName": "../../../../packages/core/types/src/product-category/repository.ts", "qualifiedName": "ProductCategoryTransformOptions.includeAncestorsTree" }, - "16827": { + "16826": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "SharedContext" }, - "16828": { + "16827": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "16829": { + "16828": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "16830": { + "16829": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "16831": { + "16830": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "16832": { + "16831": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "16833": { + "16832": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "16834": { + "16833": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "16836": { + "16835": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, + "16836": { + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "IMessageAggregator.save" + }, "16837": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, "16838": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "IMessageAggregator.save" + "qualifiedName": "msg" }, "16839": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "msg" + "qualifiedName": "IMessageAggregator.getMessages" }, "16840": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", @@ -81638,11 +87125,11 @@ }, "16841": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "IMessageAggregator.getMessages" + "qualifiedName": "format" }, "16842": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "format" + "qualifiedName": "IMessageAggregator.clearMessages" }, "16843": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", @@ -81650,1249 +87137,1461 @@ }, "16844": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "IMessageAggregator.clearMessages" + "qualifiedName": "IMessageAggregator.saveRawMessageData" }, "16845": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, "16846": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "IMessageAggregator.saveRawMessageData" - }, - "16847": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "16848": { + "16847": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "16849": { + "16848": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "16850": { + "16849": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "16851": { + "16850": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "16852": { + "16851": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "16853": { + "16852": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "16854": { + "16853": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "16855": { + "16854": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "16856": { + "16855": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "16857": { + "16856": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "16858": { + "16857": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "16859": { + "16858": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "16860": { + "16859": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "16861": { + "16860": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "16862": { + "16861": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "CartLikeWithTotals" }, - "16863": { + "16862": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type" }, - "16864": { + "16863": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.original_item_subtotal" }, - "16865": { + "16864": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.original_item_tax_total" }, - "16866": { + "16865": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.item_total" }, - "16867": { + "16866": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.item_subtotal" }, - "16868": { + "16867": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.item_tax_total" }, - "16869": { + "16868": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.original_total" }, - "16870": { + "16869": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.original_subtotal" }, - "16871": { + "16870": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.original_tax_total" }, - "16872": { + "16871": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.total" }, - "16873": { + "16872": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.subtotal" }, - "16874": { + "16873": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.tax_total" }, - "16875": { + "16874": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.discount_total" }, - "16876": { + "16875": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.discount_tax_total" }, - "16877": { + "16876": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.gift_card_total" }, - "16878": { + "16877": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.gift_card_tax_total" }, - "16879": { + "16878": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.shipping_total" }, - "16880": { + "16879": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.shipping_subtotal" }, - "16881": { + "16880": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.shipping_tax_total" }, - "16882": { + "16881": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.original_shipping_total" }, - "16883": { + "16882": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.original_shipping_subtotal" }, - "16884": { + "16883": { "sourceFileName": "../../../../packages/core/types/src/totals/index.ts", "qualifiedName": "__type.original_shipping_tax_total" }, - "16885": { + "16884": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberRawValue" }, - "16886": { + "16885": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type" }, - "16887": { + "16886": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type.value" }, - "16888": { + "16887": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type.__index" }, - "16890": { + "16889": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberInput" }, - "16891": { + "16890": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberValue" }, - "16892": { + "16891": { "sourceFileName": "../../../../packages/core/types/src/workflows/stock-locations/mutations.ts", "qualifiedName": "CreateLocationFulfillmentSetWorkflowInputDTO" }, - "16893": { + "16892": { "sourceFileName": "../../../../packages/core/types/src/workflows/stock-locations/mutations.ts", "qualifiedName": "CreateLocationFulfillmentSetWorkflowInputDTO.location_id" }, - "16894": { + "16893": { "sourceFileName": "../../../../packages/core/types/src/workflows/stock-locations/mutations.ts", "qualifiedName": "CreateLocationFulfillmentSetWorkflowInputDTO.fulfillment_set_data" }, - "16895": { + "16894": { "sourceFileName": "../../../../packages/core/types/src/workflows/stock-locations/mutations.ts", "qualifiedName": "__type" }, - "16896": { + "16895": { "sourceFileName": "../../../../packages/core/types/src/workflows/stock-locations/mutations.ts", "qualifiedName": "__type.name" }, - "16897": { + "16896": { "sourceFileName": "../../../../packages/core/types/src/workflows/stock-locations/mutations.ts", "qualifiedName": "__type.type" }, - "16898": { + "16897": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "CreateProductVariantWorkflowInputDTO" }, - "16899": { + "16898": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "__type" }, - "16900": { + "16899": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "__type.prices" }, - "16901": { + "16900": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "UpdateProductVariantWorkflowInputDTO" }, - "16902": { + "16901": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "__type" }, - "16903": { + "16902": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "__type.prices" }, - "16904": { + "16903": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "CreateProductWorkflowInputDTO" }, - "16905": { + "16904": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "__type" }, - "16906": { + "16905": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "__type.sales_channels" }, - "16907": { + "16906": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "__type" }, - "16908": { + "16907": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "__type.id" }, - "16909": { + "16908": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "__type.variants" }, - "16910": { + "16909": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "UpdateProductWorkflowInputDTO" }, - "16911": { + "16910": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "__type" }, - "16912": { + "16911": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "__type.sales_channels" }, - "16913": { + "16912": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "__type" }, - "16914": { + "16913": { "sourceFileName": "../../../../packages/core/types/src/workflows/products/mutations.ts", "qualifiedName": "__type.id" }, - "16915": { + "16914": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "SessionOptions" }, - "16916": { + "16915": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.name" }, - "16917": { + "16916": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.resave" }, - "16918": { + "16917": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.rolling" }, - "16919": { + "16918": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.saveUninitialized" }, - "16920": { + "16919": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.secret" }, - "16921": { + "16920": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.ttl" }, + "16921": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "IsStringLiteral" + }, "16922": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "16923": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Join" + }, + "16924": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "16925": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "JoinedString" + }, + "16926": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "CamelCapitalizer" + }, + "16927": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "16928": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "SplitAnyCase" + }, + "16929": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "16930": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "PrevLimit" }, - "16923": { + "16931": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Query" }, - "16924": { + "16932": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "16925": { + "16933": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ExpandScalar" }, - "16926": { + "16934": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "16927": { + "16935": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Order" }, - "16928": { + "16936": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "16929": { + "16937": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Dictionary" }, - "16930": { + "16938": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "16931": { + "16939": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "16933": { + "16941": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "16934": { + "16942": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "EntityClassName" }, - "16935": { + "16943": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "EntityValues" }, - "16936": { + "16944": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type" }, - "16937": { + "16945": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.id" }, - "16938": { + "16946": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService" }, - "16939": { + "16947": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.transaction" }, - "16940": { + "16948": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.transaction" }, - "16941": { + "16949": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TManager" }, - "16942": { + "16950": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "task" }, - "16943": { + "16951": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type" }, - "16944": { + "16952": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type" }, - "16945": { + "16953": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "transactionManager" }, - "16946": { + "16954": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "context" }, - "16947": { + "16955": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type" }, - "16948": { + "16956": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.isolationLevel" }, - "16949": { + "16957": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.transaction" }, - "16950": { + "16958": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "16951": { + "16959": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.getFreshManager" }, - "16952": { + "16960": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.getFreshManager" }, - "16953": { + "16961": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TManager" }, - "16954": { + "16962": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.getActiveManager" }, - "16955": { + "16963": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.getActiveManager" }, - "16956": { + "16964": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TManager" }, - "16957": { + "16965": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.serialize" }, - "16958": { + "16966": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.serialize" }, - "16959": { + "16967": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TOutput" }, - "16960": { + "16968": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "data" }, - "16961": { + "16969": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "options" }, - "16962": { + "16970": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "BaseRepositoryService.T" }, - "16963": { + "16971": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection" }, - "16964": { + "16972": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.id" }, - "16965": { + "16973": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.title" }, - "16966": { + "16974": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.handle" }, - "16967": { + "16975": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.created_at" }, - "16968": { + "16976": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.updated_at" }, - "16969": { + "16977": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.deleted_at" }, - "16970": { + "16978": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.products" }, - "16971": { + "16979": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", "qualifiedName": "BaseCollection.metadata" }, - "16972": { + "16980": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters" + "qualifiedName": "BaseCollectionListParams" }, - "16973": { + "16981": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.q" + "qualifiedName": "BaseCollectionListParams.q" }, - "16974": { + "16982": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.id" + "qualifiedName": "BaseCollectionListParams.id" }, - "16975": { + "16983": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.handle" + "qualifiedName": "BaseCollectionListParams.handle" }, - "16976": { + "16984": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.title" + "qualifiedName": "BaseCollectionListParams.title" }, - "16977": { + "16985": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.created_at" + "qualifiedName": "BaseCollectionListParams.created_at" }, - "16978": { + "16986": { "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.updated_at" + "qualifiedName": "BaseCollectionListParams.updated_at" }, - "16979": { - "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", - "qualifiedName": "BaseCollectionFilters.deleted_at" + "16987": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.limit" }, - "16980": { + "16988": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.offset" + }, + "16989": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.order" + }, + "16990": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "SelectParams.fields" + }, + "16991": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "16981": { + "16992": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "16982": { + "16993": { + "sourceFileName": "../../../../packages/core/types/src/http/collection/common.ts", + "qualifiedName": "BaseCollectionParams" + }, + "16994": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "SelectParams.fields" + }, + "16995": { "sourceFileName": "../../../../packages/core/types/src/http/file/common.ts", "qualifiedName": "BaseFile" }, - "16983": { + "16996": { "sourceFileName": "../../../../packages/core/types/src/http/file/common.ts", "qualifiedName": "BaseFile.id" }, - "16984": { + "16997": { "sourceFileName": "../../../../packages/core/types/src/http/file/common.ts", "qualifiedName": "BaseFile.url" }, - "16985": { + "16998": { "sourceFileName": "../../../../packages/core/types/src/http/file/common.ts", "qualifiedName": "BaseUploadFile" }, - "16986": { + "16999": { "sourceFileName": "../../../../packages/core/types/src/http/file/common.ts", "qualifiedName": "__type" }, - "16987": { + "17000": { "sourceFileName": "../../../../packages/core/types/src/http/file/common.ts", "qualifiedName": "__type.files" }, - "16988": { + "17001": { "sourceFileName": "../../../../packages/core/types/src/http/file/common.ts", "qualifiedName": "__type" }, - "16989": { + "17002": { "sourceFileName": "../../../../packages/core/types/src/http/file/common.ts", "qualifiedName": "__type.name" }, - "16990": { + "17003": { "sourceFileName": "../../../../packages/core/types/src/http/file/common.ts", "qualifiedName": "__type.content" }, - "16991": { + "17004": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneGeoZone" }, - "16992": { + "17005": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneGeoZone" }, - "16993": { + "17006": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory" }, - "16994": { + "17007": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.id" }, - "16995": { + "17008": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.name" }, - "16996": { + "17009": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.description" }, - "16997": { + "17010": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.handle" }, - "16998": { + "17011": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.is_active" }, - "16999": { + "17012": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.is_internal" }, - "17000": { + "17013": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.rank" }, - "17001": { + "17014": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.parent_category_id" }, - "17002": { + "17015": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.parent_category" }, - "17003": { + "17016": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.category_children" }, - "17004": { + "17017": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.products" }, - "17005": { + "17018": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.created_at" }, - "17006": { + "17019": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.updated_at" }, - "17007": { + "17020": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategory.deleted_at" }, - "17008": { + "17021": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams" }, - "17009": { + "17022": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.q" }, - "17010": { + "17023": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.id" }, - "17011": { + "17024": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.name" }, - "17012": { + "17025": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.description" }, - "17013": { + "17026": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.parent_category_id" }, - "17014": { + "17027": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.handle" }, - "17015": { + "17028": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.is_active" }, - "17016": { + "17029": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.is_internal" }, - "17017": { + "17030": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.include_descendants_tree" }, - "17018": { + "17031": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.include_ancestors_tree" }, - "17019": { + "17032": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.created_at" }, - "17020": { + "17033": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.updated_at" }, - "17021": { + "17034": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryListParams.deleted_at" }, - "17022": { + "17035": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.limit" }, - "17023": { + "17036": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.offset" }, - "17024": { + "17037": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "FindParams.order" }, - "17025": { + "17038": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "17026": { + "17039": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "17027": { + "17040": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "17028": { + "17041": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryParams" }, - "17029": { + "17042": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryParams.include_ancestors_tree" }, - "17030": { + "17043": { "sourceFileName": "../../../../packages/core/types/src/http/product-category/common.ts", "qualifiedName": "BaseProductCategoryParams.include_descendants_tree" }, - "17031": { + "17044": { "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", "qualifiedName": "SelectParams.fields" }, - "17032": { + "17045": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTag" + }, + "17046": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTag.id" + }, + "17047": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTag.value" + }, + "17048": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTag.created_at" + }, + "17049": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTag.updated_at" + }, + "17050": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTag.deleted_at" + }, + "17051": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTag.metadata" + }, + "17052": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTagListParams" + }, + "17053": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTagListParams.q" + }, + "17054": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTagListParams.id" + }, + "17055": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTagListParams.value" + }, + "17056": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTagListParams.created_at" + }, + "17057": { + "sourceFileName": "../../../../packages/core/types/src/http/product-tag/common.ts", + "qualifiedName": "BaseProductTagListParams.updated_at" + }, + "17058": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.limit" + }, + "17059": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.offset" + }, + "17060": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "FindParams.order" + }, + "17061": { + "sourceFileName": "../../../../packages/core/types/src/http/common/request.ts", + "qualifiedName": "SelectParams.fields" + }, + "17062": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/common.ts", "qualifiedName": "BaseProductType" }, - "17033": { + "17063": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/common.ts", "qualifiedName": "BaseProductType.id" }, - "17034": { + "17064": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/common.ts", "qualifiedName": "BaseProductType.value" }, - "17035": { + "17065": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/common.ts", "qualifiedName": "BaseProductType.created_at" }, - "17036": { + "17066": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/common.ts", "qualifiedName": "BaseProductType.updated_at" }, - "17037": { + "17067": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/common.ts", "qualifiedName": "BaseProductType.deleted_at" }, - "17038": { + "17068": { "sourceFileName": "../../../../packages/core/types/src/http/product-type/common.ts", "qualifiedName": "BaseProductType.metadata" }, - "17039": { + "17069": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse" }, - "17040": { + "17070": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse.id" }, - "17041": { + "17071": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse.line_item_id" }, - "17042": { + "17072": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse.location_id" }, - "17043": { + "17073": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse.quantity" }, - "17044": { + "17074": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse.external_id" }, - "17045": { + "17075": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse.description" }, - "17046": { + "17076": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse.inventory_item_id" }, - "17047": { + "17077": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse.inventory_item" }, - "17048": { + "17078": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse.metadata" }, - "17049": { + "17079": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse.created_by" }, - "17050": { + "17080": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse.deleted_at" }, - "17051": { + "17081": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse.created_at" }, - "17052": { + "17082": { "sourceFileName": "../../../../packages/core/types/src/http/reservation/admin/reservation.ts", "qualifiedName": "ReservationResponse.updated_at" }, - "17053": { + "17083": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpsertStockLocationAddress" }, - "17054": { + "17084": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpsertStockLocationAddress.address_1" }, - "17055": { + "17085": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpsertStockLocationAddress.address_2" }, - "17056": { + "17086": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpsertStockLocationAddress.company" }, - "17057": { + "17087": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpsertStockLocationAddress.country_code" }, - "17058": { + "17088": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpsertStockLocationAddress.city" }, - "17059": { + "17089": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpsertStockLocationAddress.phone" }, - "17060": { + "17090": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpsertStockLocationAddress.postal_code" }, - "17061": { + "17091": { "sourceFileName": "../../../../packages/core/types/src/http/stock-locations/admin/payloads.ts", "qualifiedName": "AdminUpsertStockLocationAddress.province" }, - "17062": { + "17092": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRateRule" }, - "17063": { + "17093": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRateRule.reference" }, - "17064": { + "17094": { "sourceFileName": "../../../../packages/core/types/src/http/tax-rate/admin/payloads.ts", "qualifiedName": "AdminCreateTaxRateRule.reference_id" }, - "17065": { + "17095": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleDeclaration" }, - "17066": { + "17096": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "InputPrice" }, - "17067": { + "17097": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "InputPrice.region_id" }, - "17068": { + "17098": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "InputPrice.currency_code" }, - "17069": { + "17099": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "InputPrice.amount" }, - "17070": { + "17100": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "InputPrice.variant_id" }, - "17071": { + "17101": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "InputPrice.min_quantity" }, - "17072": { + "17102": { "sourceFileName": "../../../../packages/core/types/src/workflow/price-list/create-price-list.ts", "qualifiedName": "InputPrice.max_quantity" }, - "17073": { + "17103": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "FlowRunOptions" }, - "17074": { + "17104": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type" }, - "17075": { + "17105": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.input" }, - "17076": { + "17106": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.context" }, - "17077": { + "17107": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.resultFrom" }, - "17078": { + "17108": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.throwOnError" }, - "17079": { + "17109": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "__type.events" }, - "17080": { + "17110": { "sourceFileName": "../../../../packages/core/types/src/workflows-sdk/service.ts", "qualifiedName": "TData" }, - "17081": { + "17111": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "PascalCapitalizer" + }, + "17112": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "17113": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Tuple" + }, + "17114": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "IncludesSeparator" + }, + "17115": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "17116": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "SeparatorCaseParser" + }, + "17117": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "17118": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Tuple" + }, + "17119": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "IsOneWord" + }, + "17120": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "17121": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "IsCamelCase" + }, + "17122": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "17123": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "CamelCaseParser" + }, + "17124": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "17125": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Tuple" + }, + "17126": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "IsPascalCase" + }, + "17127": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "17128": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "PascalCaseParser" + }, + "17129": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "17130": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Scalar" }, - "17082": { + "17131": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "17083": { + "17132": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "17084": { + "17133": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "17085": { + "17134": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue" }, - "17086": { + "17135": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "17087": { + "17136": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneCountry" }, - "17088": { + "17137": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneCountry.type" }, - "17089": { + "17138": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.country_code" }, - "17090": { + "17139": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.metadata" }, - "17091": { + "17140": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneProvince" }, - "17092": { + "17141": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneProvince.type" }, - "17093": { + "17142": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneProvince.province_code" }, - "17094": { + "17143": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.country_code" }, - "17095": { + "17144": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.metadata" }, - "17096": { + "17145": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneCity" }, - "17097": { + "17146": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneCity.type" }, - "17098": { + "17147": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneCity.province_code" }, - "17099": { + "17148": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneCity.city" }, - "17100": { + "17149": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.country_code" }, - "17101": { + "17150": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.metadata" }, - "17102": { + "17151": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneZip" }, - "17103": { + "17152": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneZip.type" }, - "17104": { + "17153": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneZip.province_code" }, - "17105": { + "17154": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneZip.city" }, - "17106": { + "17155": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertFulfillmentSetServiceZoneZip.postal_expression" }, - "17107": { + "17156": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.country_code" }, - "17108": { + "17157": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.metadata" }, - "17109": { + "17158": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneCountry" }, - "17110": { + "17159": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneCountry.type" }, - "17111": { + "17160": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateGeoZone.id" }, - "17112": { + "17161": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.country_code" }, - "17113": { + "17162": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.metadata" }, - "17114": { + "17163": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneProvince" }, - "17115": { + "17164": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneProvince.type" }, - "17116": { + "17165": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneProvince.province_code" }, - "17117": { + "17166": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateGeoZone.id" }, - "17118": { + "17167": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.country_code" }, - "17119": { + "17168": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.metadata" }, - "17120": { + "17169": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneCity" }, - "17121": { + "17170": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneCity.type" }, - "17122": { + "17171": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneCity.province_code" }, - "17123": { + "17172": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneCity.city" }, - "17124": { + "17173": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateGeoZone.id" }, - "17125": { + "17174": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.country_code" }, - "17126": { + "17175": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.metadata" }, - "17127": { + "17176": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneZip" }, - "17128": { + "17177": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneZip.type" }, - "17129": { + "17178": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneZip.province_code" }, - "17130": { + "17179": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneZip.city" }, - "17131": { + "17180": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateFulfillmentSetServiceZoneZip.postal_expression" }, - "17132": { + "17181": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateGeoZone.id" }, - "17133": { + "17182": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.country_code" }, - "17134": { + "17183": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.metadata" }, - "17135": { + "17184": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Separator" + }, + "17185": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "WordInCamelCase" + }, + "17186": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Type" + }, + "17187": { + "sourceFileName": "../../../../packages/core/types/src/common/camel-case.ts", + "qualifiedName": "Word" + }, + "17188": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue2" }, - "17136": { + "17189": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "17137": { + "17190": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone" }, - "17138": { + "17191": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.type" }, - "17139": { + "17192": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.country_code" }, - "17140": { + "17193": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.metadata" }, - "17141": { + "17194": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateGeoZone" }, - "17142": { + "17195": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpdateGeoZone.id" }, - "17143": { + "17196": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.type" }, - "17144": { + "17197": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.country_code" }, - "17145": { + "17198": { "sourceFileName": "../../../../packages/core/types/src/http/fulfillment-set/admin/payloads.ts", "qualifiedName": "AdminUpsertGeoZone.metadata" }, - "17146": { + "17199": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Primary" }, - "17147": { + "17200": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "17148": { + "17201": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.[PrimaryKeyType]" }, - "17149": { + "17202": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "17150": { + "17203": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type._id" }, - "17151": { + "17204": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "17152": { + "17205": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.uuid" }, - "17153": { + "17206": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "17154": { + "17207": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.id" }, - "17155": { + "17208": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "17156": { + "17209": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ReadonlyPrimary" }, - "17157": { + "17210": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" } @@ -82926,31 +88625,31 @@ "25": "../../../../packages/core/types/src/dml/index.ts" }, "reflections": { - "1": 13895, - "2": 13914, - "3": 13915, - "4": 13929, - "5": 14167, - "6": 14356, - "7": 14439, - "8": 14458, - "9": 14547, - "10": 15382, - "11": 15733, - "12": 15791, - "13": 16083, - "14": 16178, - "15": 16222, - "16": 16354, - "17": 16359, - "18": 16360, - "19": 16370, - "20": 16387, - "21": 16404, - "22": 16454, - "23": 16464, - "24": 16471, - "25": 16591 + "1": 13778, + "2": 13797, + "3": 13798, + "4": 13812, + "5": 14051, + "6": 14240, + "7": 14316, + "8": 14335, + "9": 14424, + "10": 15355, + "11": 15706, + "12": 15764, + "13": 16057, + "14": 16152, + "15": 16196, + "16": 16328, + "17": 16333, + "18": 16334, + "19": 16344, + "20": 16361, + "21": 16378, + "22": 16428, + "23": 16438, + "24": 16445, + "25": 16565 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/currency-models.json b/www/utils/generated/typedoc-json-output/currency-models.json index 2993fcd1af789..5e880594a4e80 100644 --- a/www/utils/generated/typedoc-json-output/currency-models.json +++ b/www/utils/generated/typedoc-json-output/currency-models.json @@ -1,12 +1,12 @@ { - "id": 2051, + "id": 1856, "name": "currency-models", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 2052, + "id": 1857, "name": "Currency", "variant": "declaration", "kind": 32, @@ -24,14 +24,14 @@ { "type": "reflection", "declaration": { - "id": 2053, + "id": 1858, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2054, + "id": 1859, "name": "code", "variant": "declaration", "kind": 1024, @@ -39,16 +39,27 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/utils/src/dml/properties/text.ts", - "qualifiedName": "TextProperty" + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/primary-key.ts", + "qualifiedName": "PrimaryKeyModifier" }, - "name": "TextProperty", + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/text.ts", + "qualifiedName": "TextProperty" + }, + "name": "TextProperty", + "package": "@medusajs/utils" + } + ], + "name": "PrimaryKeyModifier", "package": "@medusajs/utils" }, "defaultValue": "..." }, { - "id": 2055, + "id": 1860, "name": "symbol", "variant": "declaration", "kind": 1024, @@ -65,7 +76,7 @@ "defaultValue": "..." }, { - "id": 2056, + "id": 1861, "name": "symbol_native", "variant": "declaration", "kind": 1024, @@ -82,7 +93,7 @@ "defaultValue": "..." }, { - "id": 2057, + "id": 1862, "name": "name", "variant": "declaration", "kind": 1024, @@ -99,7 +110,7 @@ "defaultValue": "..." }, { - "id": 2058, + "id": 1863, "name": "decimal_digits", "variant": "declaration", "kind": 1024, @@ -116,7 +127,7 @@ "defaultValue": "..." }, { - "id": 2059, + "id": 1864, "name": "rounding", "variant": "declaration", "kind": 1024, @@ -137,12 +148,12 @@ { "title": "Properties", "children": [ - 2054, - 2055, - 2056, - 2057, - 2058, - 2059 + 1859, + 1860, + 1861, + 1862, + 1863, + 1864 ] } ] @@ -151,14 +162,14 @@ { "type": "reflection", "declaration": { - "id": 2060, + "id": 1865, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2061, + "id": 1866, "name": "code", "variant": "declaration", "kind": 1024, @@ -166,16 +177,27 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/utils/src/dml/properties/text.ts", - "qualifiedName": "TextProperty" + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/primary-key.ts", + "qualifiedName": "PrimaryKeyModifier" }, - "name": "TextProperty", + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/text.ts", + "qualifiedName": "TextProperty" + }, + "name": "TextProperty", + "package": "@medusajs/utils" + } + ], + "name": "PrimaryKeyModifier", "package": "@medusajs/utils" }, "defaultValue": "..." }, { - "id": 2062, + "id": 1867, "name": "symbol", "variant": "declaration", "kind": 1024, @@ -192,7 +214,7 @@ "defaultValue": "..." }, { - "id": 2063, + "id": 1868, "name": "symbol_native", "variant": "declaration", "kind": 1024, @@ -209,7 +231,7 @@ "defaultValue": "..." }, { - "id": 2064, + "id": 1869, "name": "name", "variant": "declaration", "kind": 1024, @@ -226,7 +248,7 @@ "defaultValue": "..." }, { - "id": 2065, + "id": 1870, "name": "decimal_digits", "variant": "declaration", "kind": 1024, @@ -243,7 +265,7 @@ "defaultValue": "..." }, { - "id": 2066, + "id": 1871, "name": "rounding", "variant": "declaration", "kind": 1024, @@ -264,12 +286,12 @@ { "title": "Properties", "children": [ - 2061, - 2062, - 2063, - 2064, - 2065, - 2066 + 1866, + 1867, + 1868, + 1869, + 1870, + 1871 ] } ] @@ -278,14 +300,14 @@ { "type": "reflection", "declaration": { - "id": 2067, + "id": 1872, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2068, + "id": 1873, "name": "raw_rounding", "variant": "declaration", "kind": 1024, @@ -305,7 +327,7 @@ { "title": "Properties", "children": [ - 2068 + 1873 ] } ] @@ -321,6 +343,10 @@ "package": "@medusajs/utils" } ] + }, + { + "type": "literal", + "value": "currency" } ], "name": "DmlEntity", @@ -332,81 +358,81 @@ { "title": "Variables", "children": [ - 2052 + 1857 ] } ], "packageName": "@medusajs/currency", "symbolIdMap": { - "2051": { + "1856": { "sourceFileName": "../../../../packages/modules/currency/src/models/index.ts", "qualifiedName": "" }, - "2052": { + "1857": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "default" }, - "2053": { + "1858": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "__object" }, - "2054": { + "1859": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "__object.code" }, - "2055": { + "1860": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "__object.symbol" }, - "2056": { + "1861": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "__object.symbol_native" }, - "2057": { + "1862": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "__object.name" }, - "2058": { + "1863": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "__object.decimal_digits" }, - "2059": { + "1864": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "__object.rounding" }, - "2060": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "1865": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "2061": { + "1866": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "code" }, - "2062": { + "1867": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "symbol" }, - "2063": { + "1868": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "symbol_native" }, - "2064": { + "1869": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "name" }, - "2065": { + "1870": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "decimal_digits" }, - "2066": { + "1871": { "sourceFileName": "../../../../packages/modules/currency/src/models/currency.ts", "qualifiedName": "rounding" }, - "2067": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "1872": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "2068": { + "1873": { "sourceFileName": "", "qualifiedName": "raw_rounding" } @@ -416,7 +442,7 @@ "1": "../../../../packages/modules/currency/src/models/index.ts" }, "reflections": { - "1": 2051 + "1": 1856 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/currency.json b/www/utils/generated/typedoc-json-output/currency.json index 64436e0ddffbf..8b8224b3cba8b 100644 --- a/www/utils/generated/typedoc-json-output/currency.json +++ b/www/utils/generated/typedoc-json-output/currency.json @@ -1,12 +1,12 @@ { - "id": 1866, + "id": 1671, "name": "currency", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 1910, + "id": 1715, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 1911, + "id": 1716, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 1922, + "target": 1727, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 1912, + "id": 1717, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 1913, + "id": 1718, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 1914, + "id": 1719, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 1915, + "id": 1720, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1916, + "id": 1721, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 1917, + "id": 1722, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 1918, + "id": 1723, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 1919, + "id": 1724, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 1920, + "id": 1725, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 1921, + "id": 1726, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 1911, - 1912, - 1913, - 1914, - 1915, - 1919, - 1920, - 1921 + 1716, + 1717, + 1718, + 1719, + 1720, + 1724, + 1725, + 1726 ] } ], "typeParameters": [ { - "id": 1922, + "id": 1727, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 1923, + "id": 1728, "name": "CurrencyDTO", "variant": "declaration", "kind": 256, @@ -374,7 +374,7 @@ }, "children": [ { - "id": 1924, + "id": 1729, "name": "code", "variant": "declaration", "kind": 1024, @@ -404,7 +404,7 @@ } }, { - "id": 1925, + "id": 1730, "name": "symbol", "variant": "declaration", "kind": 1024, @@ -434,7 +434,7 @@ } }, { - "id": 1926, + "id": 1731, "name": "symbol_native", "variant": "declaration", "kind": 1024, @@ -464,7 +464,7 @@ } }, { - "id": 1927, + "id": 1732, "name": "name", "variant": "declaration", "kind": 1024, @@ -498,16 +498,16 @@ { "title": "Properties", "children": [ - 1924, - 1925, - 1926, - 1927 + 1729, + 1730, + 1731, + 1732 ] } ] }, { - "id": 1940, + "id": 1745, "name": "FilterableCurrencyProps", "variant": "declaration", "kind": 256, @@ -522,7 +522,7 @@ }, "children": [ { - "id": 1941, + "id": 1746, "name": "q", "variant": "declaration", "kind": 1024, @@ -543,7 +543,7 @@ } }, { - "id": 1942, + "id": 1747, "name": "code", "variant": "declaration", "kind": 1024, @@ -567,7 +567,7 @@ } }, { - "id": 1943, + "id": 1748, "name": "$and", "variant": "declaration", "kind": 1024, @@ -590,17 +590,17 @@ "types": [ { "type": "reference", - "target": 1940, + "target": 1745, "name": "FilterableCurrencyProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 1983, + "target": 1788, "typeArguments": [ { "type": "reference", - "target": 1940, + "target": 1745, "name": "FilterableCurrencyProps", "package": "@medusajs/types" } @@ -613,12 +613,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 1984, + "target": 1789, "name": "BaseFilterable.$and" } }, { - "id": 1944, + "id": 1749, "name": "$or", "variant": "declaration", "kind": 1024, @@ -641,17 +641,17 @@ "types": [ { "type": "reference", - "target": 1940, + "target": 1745, "name": "FilterableCurrencyProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 1983, + "target": 1788, "typeArguments": [ { "type": "reference", - "target": 1940, + "target": 1745, "name": "FilterableCurrencyProps", "package": "@medusajs/types" } @@ -664,7 +664,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 1985, + "target": 1790, "name": "BaseFilterable.$or" } } @@ -673,21 +673,21 @@ { "title": "Properties", "children": [ - 1941, - 1942, - 1943, - 1944 + 1746, + 1747, + 1748, + 1749 ] } ], "extendedTypes": [ { "type": "reference", - "target": 1983, + "target": 1788, "typeArguments": [ { "type": "reference", - "target": 1940, + "target": 1745, "name": "FilterableCurrencyProps", "package": "@medusajs/types" } @@ -698,7 +698,7 @@ ] }, { - "id": 1867, + "id": 1672, "name": "ICurrencyModuleService", "variant": "declaration", "kind": 256, @@ -713,14 +713,14 @@ }, "children": [ { - "id": 1868, + "id": 1673, "name": "retrieveCurrency", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 1869, + "id": 1674, "name": "retrieveCurrency", "variant": "signature", "kind": 4096, @@ -755,7 +755,7 @@ }, "parameters": [ { - "id": 1870, + "id": 1675, "name": "code", "variant": "param", "kind": 32768, @@ -774,7 +774,7 @@ } }, { - "id": 1871, + "id": 1676, "name": "config", "variant": "param", "kind": 32768, @@ -807,11 +807,11 @@ }, "type": { "type": "reference", - "target": 1910, + "target": 1715, "typeArguments": [ { "type": "reference", - "target": 1923, + "target": 1728, "name": "CurrencyDTO", "package": "@medusajs/types" } @@ -821,7 +821,7 @@ } }, { - "id": 1872, + "id": 1677, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -838,7 +838,7 @@ }, "type": { "type": "reference", - "target": 1928, + "target": 1733, "name": "Context", "package": "@medusajs/types" } @@ -853,7 +853,7 @@ "typeArguments": [ { "type": "reference", - "target": 1923, + "target": 1728, "name": "CurrencyDTO", "package": "@medusajs/types" } @@ -865,14 +865,14 @@ ] }, { - "id": 1873, + "id": 1678, "name": "listCurrencies", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 1874, + "id": 1679, "name": "listCurrencies", "variant": "signature", "kind": 4096, @@ -951,7 +951,7 @@ }, "parameters": [ { - "id": 1875, + "id": 1680, "name": "filters", "variant": "param", "kind": 32768, @@ -968,13 +968,13 @@ }, "type": { "type": "reference", - "target": 1940, + "target": 1745, "name": "FilterableCurrencyProps", "package": "@medusajs/types" } }, { - "id": 1876, + "id": 1681, "name": "config", "variant": "param", "kind": 32768, @@ -1007,11 +1007,11 @@ }, "type": { "type": "reference", - "target": 1910, + "target": 1715, "typeArguments": [ { "type": "reference", - "target": 1923, + "target": 1728, "name": "CurrencyDTO", "package": "@medusajs/types" } @@ -1021,7 +1021,7 @@ } }, { - "id": 1877, + "id": 1682, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -1038,7 +1038,7 @@ }, "type": { "type": "reference", - "target": 1928, + "target": 1733, "name": "Context", "package": "@medusajs/types" } @@ -1055,7 +1055,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1923, + "target": 1728, "name": "CurrencyDTO", "package": "@medusajs/types" } @@ -1068,14 +1068,14 @@ ] }, { - "id": 1878, + "id": 1683, "name": "listAndCountCurrencies", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 1879, + "id": 1684, "name": "listAndCountCurrencies", "variant": "signature", "kind": 4096, @@ -1154,7 +1154,7 @@ }, "parameters": [ { - "id": 1880, + "id": 1685, "name": "filters", "variant": "param", "kind": 32768, @@ -1171,13 +1171,13 @@ }, "type": { "type": "reference", - "target": 1940, + "target": 1745, "name": "FilterableCurrencyProps", "package": "@medusajs/types" } }, { - "id": 1881, + "id": 1686, "name": "config", "variant": "param", "kind": 32768, @@ -1210,11 +1210,11 @@ }, "type": { "type": "reference", - "target": 1910, + "target": 1715, "typeArguments": [ { "type": "reference", - "target": 1923, + "target": 1728, "name": "CurrencyDTO", "package": "@medusajs/types" } @@ -1224,7 +1224,7 @@ } }, { - "id": 1882, + "id": 1687, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -1241,7 +1241,7 @@ }, "type": { "type": "reference", - "target": 1928, + "target": 1733, "name": "Context", "package": "@medusajs/types" } @@ -1261,7 +1261,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 1923, + "target": 1728, "name": "CurrencyDTO", "package": "@medusajs/types" } @@ -1284,23 +1284,23 @@ { "title": "Methods", "children": [ - 1868, - 1873, - 1878 + 1673, + 1678, + 1683 ] } ], "extendedTypes": [ { "type": "reference", - "target": 1896, + "target": 1701, "name": "IModuleService", "package": "@medusajs/types" } ] }, { - "id": 1983, + "id": 1788, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -1315,7 +1315,7 @@ }, "children": [ { - "id": 1984, + "id": 1789, "name": "$and", "variant": "declaration", "kind": 1024, @@ -1337,11 +1337,11 @@ "types": [ { "type": "reference", - "target": 1983, + "target": 1788, "typeArguments": [ { "type": "reference", - "target": 1986, + "target": 1791, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -1353,7 +1353,7 @@ }, { "type": "reference", - "target": 1986, + "target": 1791, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -1364,7 +1364,7 @@ } }, { - "id": 1985, + "id": 1790, "name": "$or", "variant": "declaration", "kind": 1024, @@ -1386,11 +1386,11 @@ "types": [ { "type": "reference", - "target": 1983, + "target": 1788, "typeArguments": [ { "type": "reference", - "target": 1986, + "target": 1791, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -1402,7 +1402,7 @@ }, { "type": "reference", - "target": 1986, + "target": 1791, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -1417,14 +1417,14 @@ { "title": "Properties", "children": [ - 1984, - 1985 + 1789, + 1790 ] } ], "typeParameters": [ { - "id": 1986, + "id": 1791, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1434,13 +1434,13 @@ "extendedBy": [ { "type": "reference", - "target": 1940, + "target": 1745, "name": "FilterableCurrencyProps" } ] }, { - "id": 2048, + "id": 1853, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -1470,14 +1470,14 @@ { "type": "reflection", "declaration": { - "id": 2049, + "id": 1854, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2050, + "id": 1855, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -1494,7 +1494,7 @@ { "title": "Properties", "children": [ - 2050 + 1855 ] } ] @@ -1504,14 +1504,14 @@ } }, { - "id": 2042, + "id": 1847, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2047, + "id": 1852, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -1525,14 +1525,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2043, + "id": 1848, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2044, + "id": 1849, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -1543,7 +1543,7 @@ } }, { - "id": 2045, + "id": 1850, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1552,20 +1552,20 @@ }, "type": { "type": "reference", - "target": 2048, + "target": 1853, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 2046, + "id": 1851, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 2047, + "target": 1852, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1576,9 +1576,9 @@ { "title": "Properties", "children": [ - 2044, - 2045, - 2046 + 1849, + 1850, + 1851 ] } ] @@ -1586,14 +1586,14 @@ } }, { - "id": 2010, + "id": 1815, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2013, + "id": 1818, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -1609,11 +1609,11 @@ "types": [ { "type": "reference", - "target": 2042, + "target": 1847, "typeArguments": [ { "type": "reference", - "target": 2013, + "target": 1818, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1625,14 +1625,14 @@ { "type": "reflection", "declaration": { - "id": 2011, + "id": 1816, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2012, + "id": 1817, "name": "options", "variant": "declaration", "kind": 1024, @@ -1664,7 +1664,7 @@ { "title": "Properties", "children": [ - 2012 + 1817 ] } ] @@ -1674,14 +1674,14 @@ } }, { - "id": 2020, + "id": 1825, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2029, + "id": 1834, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -1695,14 +1695,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2021, + "id": 1826, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2022, + "id": 1827, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -1713,21 +1713,21 @@ } }, { - "id": 2023, + "id": 1828, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 2029, + "target": 1834, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 2024, + "id": 1829, "name": "source", "variant": "declaration", "kind": 1024, @@ -1738,7 +1738,7 @@ } }, { - "id": 2025, + "id": 1830, "name": "object", "variant": "declaration", "kind": 1024, @@ -1749,7 +1749,7 @@ } }, { - "id": 2026, + "id": 1831, "name": "action", "variant": "declaration", "kind": 1024, @@ -1762,7 +1762,7 @@ } }, { - "id": 2027, + "id": 1832, "name": "context", "variant": "declaration", "kind": 1024, @@ -1778,7 +1778,7 @@ "typeArguments": [ { "type": "reference", - "target": 1928, + "target": 1733, "name": "Context", "package": "@medusajs/types" }, @@ -1792,7 +1792,7 @@ } }, { - "id": 2028, + "id": 1833, "name": "options", "variant": "declaration", "kind": 1024, @@ -1824,13 +1824,13 @@ { "title": "Properties", "children": [ - 2022, - 2023, - 2024, - 2025, - 2026, - 2027, - 2028 + 1827, + 1828, + 1829, + 1830, + 1831, + 1832, + 1833 ] } ] @@ -1838,7 +1838,7 @@ } }, { - "id": 2033, + "id": 1838, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -1846,14 +1846,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2034, + "id": 1839, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2035, + "id": 1840, "name": "alias", "variant": "declaration", "kind": 1024, @@ -1864,7 +1864,7 @@ } }, { - "id": 2036, + "id": 1841, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -1875,7 +1875,7 @@ } }, { - "id": 2037, + "id": 1842, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -1886,7 +1886,7 @@ } }, { - "id": 2038, + "id": 1843, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -1897,7 +1897,7 @@ } }, { - "id": 2039, + "id": 1844, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -1918,7 +1918,7 @@ } }, { - "id": 2040, + "id": 1845, "name": "isList", "variant": "declaration", "kind": 1024, @@ -1939,7 +1939,7 @@ } }, { - "id": 2041, + "id": 1846, "name": "args", "variant": "declaration", "kind": 1024, @@ -1979,13 +1979,13 @@ { "title": "Properties", "children": [ - 2035, - 2036, - 2037, - 2038, - 2039, - 2040, - 2041 + 1840, + 1841, + 1842, + 1843, + 1844, + 1845, + 1846 ] } ] @@ -1993,14 +1993,14 @@ } }, { - "id": 2030, + "id": 1835, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2031, + "id": 1836, "name": "name", "variant": "declaration", "kind": 1024, @@ -2023,7 +2023,7 @@ } }, { - "id": 2032, + "id": 1837, "name": "args", "variant": "declaration", "kind": 1024, @@ -2063,21 +2063,21 @@ { "title": "Properties", "children": [ - 2031, - 2032 + 1836, + 1837 ] } ] }, { - "id": 1987, + "id": 1792, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1988, + "id": 1793, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2088,7 +2088,7 @@ } }, { - "id": 1989, + "id": 1794, "name": "alias", "variant": "declaration", "kind": 1024, @@ -2108,7 +2108,7 @@ "types": [ { "type": "reference", - "target": 2030, + "target": 1835, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -2116,7 +2116,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2030, + "target": 1835, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -2125,7 +2125,7 @@ } }, { - "id": 1990, + "id": 1795, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -2161,14 +2161,14 @@ { "type": "reflection", "declaration": { - "id": 1991, + "id": 1796, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1992, + "id": 1797, "name": "path", "variant": "declaration", "kind": 1024, @@ -2179,7 +2179,7 @@ } }, { - "id": 1993, + "id": 1798, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -2197,8 +2197,8 @@ { "title": "Properties", "children": [ - 1992, - 1993 + 1797, + 1798 ] } ] @@ -2212,7 +2212,7 @@ } }, { - "id": 1994, + "id": 1799, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -2226,7 +2226,7 @@ } }, { - "id": 1995, + "id": 1800, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -2237,14 +2237,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2033, + "target": 1838, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 1996, + "id": 1801, "name": "extends", "variant": "declaration", "kind": 1024, @@ -2256,14 +2256,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1997, + "id": 1802, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1998, + "id": 1803, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2274,14 +2274,14 @@ } }, { - "id": 1999, + "id": 1804, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 2033, + "target": 1838, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -2291,8 +2291,8 @@ { "title": "Properties", "children": [ - 1998, - 1999 + 1803, + 1804 ] } ] @@ -2301,7 +2301,7 @@ } }, { - "id": 2000, + "id": 1805, "name": "args", "variant": "declaration", "kind": 1024, @@ -2341,19 +2341,19 @@ { "title": "Properties", "children": [ - 1988, - 1989, - 1990, - 1994, - 1995, - 1996, - 2000 + 1793, + 1794, + 1795, + 1799, + 1800, + 1801, + 1805 ] } ] }, { - "id": 2004, + "id": 1809, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -2372,14 +2372,14 @@ { "type": "reflection", "declaration": { - "id": 2005, + "id": 1810, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2006, + "id": 1811, "name": "type", "variant": "declaration", "kind": 1024, @@ -2475,7 +2475,7 @@ } }, { - "id": 2007, + "id": 1812, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -2488,7 +2488,7 @@ } }, { - "id": 2008, + "id": 1813, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -2501,7 +2501,7 @@ } }, { - "id": 2009, + "id": 1814, "name": "options", "variant": "declaration", "kind": 1024, @@ -2541,10 +2541,10 @@ { "title": "Properties", "children": [ - 2006, - 2007, - 2008, - 2009 + 1811, + 1812, + 1813, + 1814 ] } ] @@ -2556,7 +2556,7 @@ } }, { - "id": 1945, + "id": 1750, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -2573,7 +2573,7 @@ "typeArguments": [ { "type": "reference", - "target": 1987, + "target": 1792, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -2605,14 +2605,14 @@ { "type": "reflection", "declaration": { - "id": 1946, + "id": 1751, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1947, + "id": 1752, "name": "schema", "variant": "declaration", "kind": 1024, @@ -2633,7 +2633,7 @@ } }, { - "id": 1948, + "id": 1753, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -2644,14 +2644,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2001, + "target": 1806, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 1949, + "id": 1754, "name": "extends", "variant": "declaration", "kind": 1024, @@ -2663,14 +2663,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 1950, + "id": 1755, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1951, + "id": 1756, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2681,7 +2681,7 @@ } }, { - "id": 1952, + "id": 1757, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -2709,14 +2709,14 @@ { "type": "reflection", "declaration": { - "id": 1953, + "id": 1758, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1954, + "id": 1759, "name": "path", "variant": "declaration", "kind": 1024, @@ -2727,7 +2727,7 @@ } }, { - "id": 1955, + "id": 1760, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -2743,7 +2743,7 @@ } }, { - "id": 1956, + "id": 1761, "name": "isList", "variant": "declaration", "kind": 1024, @@ -2760,9 +2760,9 @@ { "title": "Properties", "children": [ - 1954, - 1955, - 1956 + 1759, + 1760, + 1761 ] } ] @@ -2776,14 +2776,14 @@ } }, { - "id": 1957, + "id": 1762, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 2001, + "target": 1806, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -2793,9 +2793,9 @@ { "title": "Properties", "children": [ - 1951, - 1952, - 1957 + 1756, + 1757, + 1762 ] } ] @@ -2804,7 +2804,7 @@ } }, { - "id": 1958, + "id": 1763, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2817,7 +2817,7 @@ } }, { - "id": 1959, + "id": 1764, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -2833,7 +2833,7 @@ } }, { - "id": 1960, + "id": 1765, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -2854,7 +2854,7 @@ } }, { - "id": 1961, + "id": 1766, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -2890,7 +2890,7 @@ } }, { - "id": 1962, + "id": 1767, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -2911,7 +2911,7 @@ } }, { - "id": 1963, + "id": 1768, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -2935,7 +2935,7 @@ } }, { - "id": 1964, + "id": 1769, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -2945,14 +2945,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1965, + "id": 1770, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 1966, + "id": 1771, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -2973,7 +2973,7 @@ } }, { - "id": 1967, + "id": 1772, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -2994,7 +2994,7 @@ } }, { - "id": 1968, + "id": 1773, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -3003,7 +3003,7 @@ }, "type": { "type": "reference", - "target": 2004, + "target": 1809, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -3013,9 +3013,9 @@ { "title": "Properties", "children": [ - 1966, - 1967, - 1968 + 1771, + 1772, + 1773 ] } ] @@ -3027,16 +3027,16 @@ { "title": "Properties", "children": [ - 1947, - 1948, - 1949, - 1958, - 1959, - 1960, - 1961, - 1962, - 1963, - 1964 + 1752, + 1753, + 1754, + 1763, + 1764, + 1765, + 1766, + 1767, + 1768, + 1769 ] } ] @@ -3046,7 +3046,7 @@ } }, { - "id": 2001, + "id": 1806, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -3056,21 +3056,21 @@ "types": [ { "type": "reference", - "target": 2033, + "target": 1838, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 2002, + "id": 1807, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2003, + "id": 1808, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -3095,7 +3095,7 @@ { "title": "Properties", "children": [ - 2003 + 1808 ] } ] @@ -3105,7 +3105,7 @@ } }, { - "id": 1896, + "id": 1701, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -3113,20 +3113,20 @@ "extendedBy": [ { "type": "reference", - "target": 1867, + "target": 1672, "name": "ICurrencyModuleService" } ] }, { - "id": 2014, + "id": 1819, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2015, + "id": 1820, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -3142,7 +3142,7 @@ } }, { - "id": 2016, + "id": 1821, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -3152,21 +3152,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2017, + "id": 1822, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 2018, + "id": 1823, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 2019, + "id": 1824, "name": "key", "variant": "param", "kind": 32768, @@ -3207,35 +3207,35 @@ { "title": "Properties", "children": [ - 2015, - 2016 + 1820, + 1821 ] } ] }, { - "id": 1969, + "id": 1774, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 1970, + "id": 1775, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 1971, + "id": 1776, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1972, + "id": 1777, "name": "msg", "variant": "param", "kind": 32768, @@ -3245,7 +3245,7 @@ "types": [ { "type": "reference", - "target": 2010, + "target": 1815, "name": "Message", "package": "@medusajs/types" }, @@ -3253,7 +3253,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2010, + "target": 1815, "name": "Message", "package": "@medusajs/types" } @@ -3270,21 +3270,21 @@ ] }, { - "id": 1973, + "id": 1778, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 1974, + "id": 1779, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 1975, + "id": 1780, "name": "format", "variant": "param", "kind": 32768, @@ -3293,7 +3293,7 @@ }, "type": { "type": "reference", - "target": 2014, + "target": 1819, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -3314,7 +3314,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2010, + "target": 1815, "name": "Message", "package": "@medusajs/types" } @@ -3327,14 +3327,14 @@ ] }, { - "id": 1976, + "id": 1781, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 1977, + "id": 1782, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -3347,21 +3347,21 @@ ] }, { - "id": 1978, + "id": 1783, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 1979, + "id": 1784, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 1980, + "id": 1785, "name": "T", "variant": "typeParam", "kind": 131072, @@ -3370,7 +3370,7 @@ ], "parameters": [ { - "id": 1981, + "id": 1786, "name": "messageData", "variant": "param", "kind": 32768, @@ -3380,11 +3380,11 @@ "types": [ { "type": "reference", - "target": 2020, + "target": 1825, "typeArguments": [ { "type": "reference", - "target": 1980, + "target": 1785, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3397,11 +3397,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 2020, + "target": 1825, "typeArguments": [ { "type": "reference", - "target": 1980, + "target": 1785, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3415,7 +3415,7 @@ } }, { - "id": 1982, + "id": 1787, "name": "options", "variant": "param", "kind": 32768, @@ -3455,16 +3455,16 @@ { "title": "Methods", "children": [ - 1970, - 1973, - 1976, - 1978 + 1775, + 1778, + 1781, + 1783 ] } ] }, { - "id": 1928, + "id": 1733, "name": "Context", "variant": "declaration", "kind": 256, @@ -3479,7 +3479,7 @@ }, "children": [ { - "id": 1929, + "id": 1734, "name": "__type", "variant": "declaration", "kind": 1024, @@ -3492,7 +3492,7 @@ } }, { - "id": 1930, + "id": 1735, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -3525,14 +3525,14 @@ }, "type": { "type": "reference", - "target": 1939, + "target": 1744, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 1931, + "id": 1736, "name": "manager", "variant": "declaration", "kind": 1024, @@ -3565,14 +3565,14 @@ }, "type": { "type": "reference", - "target": 1939, + "target": 1744, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 1932, + "id": 1737, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -3625,7 +3625,7 @@ } }, { - "id": 1933, + "id": 1738, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -3646,7 +3646,7 @@ } }, { - "id": 1934, + "id": 1739, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -3667,7 +3667,7 @@ } }, { - "id": 1935, + "id": 1740, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -3688,7 +3688,7 @@ } }, { - "id": 1936, + "id": 1741, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -3705,13 +3705,13 @@ }, "type": { "type": "reference", - "target": 1969, + "target": 1774, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 1937, + "id": 1742, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -3732,7 +3732,7 @@ } }, { - "id": 1938, + "id": 1743, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -3757,22 +3757,22 @@ { "title": "Properties", "children": [ - 1929, - 1930, - 1931, - 1932, - 1933, - 1934, - 1935, - 1936, - 1937, - 1938 + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1740, + 1741, + 1742, + 1743 ] } ], "typeParameters": [ { - "id": 1939, + "id": 1744, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -3789,660 +3789,660 @@ { "title": "Interfaces", "children": [ - 1910, - 1923, - 1940, - 1867, - 1983, - 2030, - 1987, - 1896, - 2014, - 1969, - 1928 + 1715, + 1728, + 1745, + 1672, + 1788, + 1835, + 1792, + 1701, + 1819, + 1774, + 1733 ] }, { "title": "Type Aliases", "children": [ - 2048, - 2042, - 2010, - 2020, - 2033, - 2004, - 1945, - 2001 + 1853, + 1847, + 1815, + 1825, + 1838, + 1809, + 1750, + 1806 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "1866": { + "1671": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "" }, - "1867": { + "1672": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "ICurrencyModuleService" }, - "1868": { + "1673": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "ICurrencyModuleService.retrieveCurrency" }, - "1869": { + "1674": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "ICurrencyModuleService.retrieveCurrency" }, - "1870": { + "1675": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "code" }, - "1871": { + "1676": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "config" }, - "1872": { + "1677": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "sharedContext" }, - "1873": { + "1678": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "ICurrencyModuleService.listCurrencies" }, - "1874": { + "1679": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "ICurrencyModuleService.listCurrencies" }, - "1875": { + "1680": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "filters" }, - "1876": { + "1681": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "config" }, - "1877": { + "1682": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "sharedContext" }, - "1878": { + "1683": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "ICurrencyModuleService.listAndCountCurrencies" }, - "1879": { + "1684": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "ICurrencyModuleService.listAndCountCurrencies" }, - "1880": { + "1685": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "filters" }, - "1881": { + "1686": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "config" }, - "1882": { + "1687": { "sourceFileName": "../../../../packages/core/types/src/currency/service.ts", "qualifiedName": "sharedContext" }, - "1896": { + "1701": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "1910": { + "1715": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "1911": { + "1716": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "1912": { + "1717": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "1913": { + "1718": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "1914": { + "1719": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "1915": { + "1720": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "1916": { + "1721": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "1917": { + "1722": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "1919": { + "1724": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "1920": { + "1725": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "1921": { + "1726": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "1922": { + "1727": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "1923": { + "1728": { "sourceFileName": "../../../../packages/core/types/src/currency/common/currency.ts", "qualifiedName": "CurrencyDTO" }, - "1924": { + "1729": { "sourceFileName": "../../../../packages/core/types/src/currency/common/currency.ts", "qualifiedName": "CurrencyDTO.code" }, - "1925": { + "1730": { "sourceFileName": "../../../../packages/core/types/src/currency/common/currency.ts", "qualifiedName": "CurrencyDTO.symbol" }, - "1926": { + "1731": { "sourceFileName": "../../../../packages/core/types/src/currency/common/currency.ts", "qualifiedName": "CurrencyDTO.symbol_native" }, - "1927": { + "1732": { "sourceFileName": "../../../../packages/core/types/src/currency/common/currency.ts", "qualifiedName": "CurrencyDTO.name" }, - "1928": { + "1733": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "1929": { + "1734": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "1930": { + "1735": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "1931": { + "1736": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "1932": { + "1737": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "1933": { + "1738": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "1934": { + "1739": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "1935": { + "1740": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "1936": { + "1741": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "1937": { + "1742": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "1938": { + "1743": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "1939": { + "1744": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "1940": { + "1745": { "sourceFileName": "../../../../packages/core/types/src/currency/common/currency.ts", "qualifiedName": "FilterableCurrencyProps" }, - "1941": { + "1746": { "sourceFileName": "../../../../packages/core/types/src/currency/common/currency.ts", "qualifiedName": "FilterableCurrencyProps.q" }, - "1942": { + "1747": { "sourceFileName": "../../../../packages/core/types/src/currency/common/currency.ts", "qualifiedName": "FilterableCurrencyProps.code" }, - "1943": { + "1748": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "1944": { + "1749": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "1945": { + "1750": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "1946": { + "1751": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "1947": { + "1752": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "1948": { + "1753": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "1949": { + "1754": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "1950": { + "1755": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "1951": { + "1756": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "1952": { + "1757": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "1953": { + "1758": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "1954": { + "1759": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "1955": { + "1760": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "1956": { + "1761": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "1957": { + "1762": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "1958": { + "1763": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "1959": { + "1764": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "1960": { + "1765": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "1961": { + "1766": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "1962": { + "1767": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "1963": { + "1768": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "1964": { + "1769": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "1965": { + "1770": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "1966": { + "1771": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "1967": { + "1772": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "1968": { + "1773": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "1969": { + "1774": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "1970": { + "1775": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "1971": { + "1776": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "1972": { + "1777": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "1973": { + "1778": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "1974": { + "1779": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "1975": { + "1780": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "1976": { + "1781": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "1977": { + "1782": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "1978": { + "1783": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "1979": { + "1784": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "1980": { + "1785": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "1981": { + "1786": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "1982": { + "1787": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "1983": { + "1788": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "1984": { + "1789": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "1985": { + "1790": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "1986": { + "1791": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "1987": { + "1792": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "1988": { + "1793": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "1989": { + "1794": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "1990": { + "1795": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "1991": { + "1796": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "1992": { + "1797": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "1993": { + "1798": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "1994": { + "1799": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "1995": { + "1800": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "1996": { + "1801": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "1997": { + "1802": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "1998": { + "1803": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "1999": { + "1804": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "2000": { + "1805": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "2001": { + "1806": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "2002": { + "1807": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "2003": { + "1808": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "2004": { + "1809": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "2005": { + "1810": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "2006": { + "1811": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "2007": { + "1812": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "2008": { + "1813": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "2009": { + "1814": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "2010": { + "1815": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "2011": { + "1816": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "2012": { + "1817": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "2013": { + "1818": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "2014": { + "1819": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "2015": { + "1820": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "2016": { + "1821": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "2017": { + "1822": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "2018": { + "1823": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "2020": { + "1825": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "2021": { + "1826": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "2022": { + "1827": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "2023": { + "1828": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "2024": { + "1829": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "2025": { + "1830": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "2026": { + "1831": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "2027": { + "1832": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "2028": { + "1833": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "2029": { + "1834": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "2030": { + "1835": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "2031": { + "1836": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "2032": { + "1837": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "2033": { + "1838": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "2034": { + "1839": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "2035": { + "1840": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "2036": { + "1841": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "2037": { + "1842": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "2038": { + "1843": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "2039": { + "1844": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "2040": { + "1845": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "2041": { + "1846": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "2042": { + "1847": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "2043": { + "1848": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "2044": { + "1849": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "2045": { + "1850": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "2046": { + "1851": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "2047": { + "1852": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "2048": { + "1853": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "2049": { + "1854": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "2050": { + "1855": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" } @@ -4452,7 +4452,7 @@ "1": "../../../../packages/core/types/src/currency/service.ts" }, "reflections": { - "1": 1866 + "1": 1671 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/customer-models.json b/www/utils/generated/typedoc-json-output/customer-models.json index 14a63cc805c55..457958d685d56 100644 --- a/www/utils/generated/typedoc-json-output/customer-models.json +++ b/www/utils/generated/typedoc-json-output/customer-models.json @@ -1,5 +1,5 @@ { - "id": 2642, + "id": 2447, "name": "customer-models", "variant": "project", "kind": 1, @@ -18,28 +18,28 @@ }, "children": [ { - "id": 2643, + "id": 2448, "name": "Address", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2644, + "id": 2449, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2645, + "id": 2450, "name": "new Address", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2643, + "target": 2448, "name": "Address", "package": "@medusajs/customer", "qualifiedName": "default" @@ -48,7 +48,7 @@ ] }, { - "id": 2669, + "id": 2474, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -57,14 +57,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 2646, + "id": 2451, "name": "id", "variant": "declaration", "kind": 1024, @@ -75,7 +75,7 @@ } }, { - "id": 2647, + "id": 2452, "name": "address_name", "variant": "declaration", "kind": 1024, @@ -96,7 +96,7 @@ "defaultValue": "null" }, { - "id": 2648, + "id": 2453, "name": "is_default_shipping", "variant": "declaration", "kind": 1024, @@ -108,7 +108,7 @@ "defaultValue": "false" }, { - "id": 2649, + "id": 2454, "name": "is_default_billing", "variant": "declaration", "kind": 1024, @@ -120,7 +120,7 @@ "defaultValue": "false" }, { - "id": 2650, + "id": 2455, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -131,21 +131,21 @@ } }, { - "id": 2651, + "id": 2456, "name": "customer", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 2670, + "target": 2475, "name": "Customer", "package": "@medusajs/customer", "qualifiedName": "default" } }, { - "id": 2652, + "id": 2457, "name": "company", "variant": "declaration", "kind": 1024, @@ -166,7 +166,7 @@ "defaultValue": "null" }, { - "id": 2653, + "id": 2458, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -187,7 +187,7 @@ "defaultValue": "null" }, { - "id": 2654, + "id": 2459, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -208,7 +208,7 @@ "defaultValue": "null" }, { - "id": 2655, + "id": 2460, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -229,7 +229,7 @@ "defaultValue": "null" }, { - "id": 2656, + "id": 2461, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -250,7 +250,7 @@ "defaultValue": "null" }, { - "id": 2657, + "id": 2462, "name": "city", "variant": "declaration", "kind": 1024, @@ -271,7 +271,7 @@ "defaultValue": "null" }, { - "id": 2658, + "id": 2463, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -292,7 +292,7 @@ "defaultValue": "null" }, { - "id": 2659, + "id": 2464, "name": "province", "variant": "declaration", "kind": 1024, @@ -313,7 +313,7 @@ "defaultValue": "null" }, { - "id": 2660, + "id": 2465, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -334,7 +334,7 @@ "defaultValue": "null" }, { - "id": 2661, + "id": 2466, "name": "phone", "variant": "declaration", "kind": 1024, @@ -355,7 +355,7 @@ "defaultValue": "null" }, { - "id": 2662, + "id": 2467, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -391,7 +391,7 @@ "defaultValue": "null" }, { - "id": 2663, + "id": 2468, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -407,7 +407,7 @@ } }, { - "id": 2664, + "id": 2469, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -423,14 +423,14 @@ } }, { - "id": 2665, + "id": 2470, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2666, + "id": 2471, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -443,14 +443,14 @@ ] }, { - "id": 2667, + "id": 2472, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2668, + "id": 2473, "name": "onInit", "variant": "signature", "kind": 4096, @@ -467,66 +467,66 @@ { "title": "Constructors", "children": [ - 2644 + 2449 ] }, { "title": "Properties", "children": [ - 2669, - 2646, - 2647, - 2648, - 2649, - 2650, - 2651, - 2652, - 2653, - 2654, - 2655, - 2656, - 2657, - 2658, - 2659, - 2660, - 2661, - 2662, - 2663, - 2664 + 2474, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2457, + 2458, + 2459, + 2460, + 2461, + 2462, + 2463, + 2464, + 2465, + 2466, + 2467, + 2468, + 2469 ] }, { "title": "Methods", "children": [ - 2665, - 2667 + 2470, + 2472 ] } ] }, { - "id": 2708, + "id": 2513, "name": "CustomerGroupCustomer", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2709, + "id": 2514, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2710, + "id": 2515, "name": "new CustomerGroupCustomer", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2708, + "target": 2513, "name": "CustomerGroupCustomer", "package": "@medusajs/customer", "qualifiedName": "default" @@ -535,7 +535,7 @@ ] }, { - "id": 2724, + "id": 2529, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -551,7 +551,7 @@ } }, { - "id": 2711, + "id": 2516, "name": "id", "variant": "declaration", "kind": 1024, @@ -562,7 +562,7 @@ } }, { - "id": 2712, + "id": 2517, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -573,7 +573,7 @@ } }, { - "id": 2713, + "id": 2518, "name": "customer_group_id", "variant": "declaration", "kind": 1024, @@ -584,35 +584,35 @@ } }, { - "id": 2714, + "id": 2519, "name": "customer", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 2670, + "target": 2475, "name": "Customer", "package": "@medusajs/customer", "qualifiedName": "default" } }, { - "id": 2715, + "id": 2520, "name": "customer_group", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 2692, + "target": 2497, "name": "CustomerGroup", "package": "@medusajs/customer", "qualifiedName": "default" } }, { - "id": 2716, + "id": 2521, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -648,7 +648,7 @@ "defaultValue": "null" }, { - "id": 2717, + "id": 2522, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -664,7 +664,7 @@ } }, { - "id": 2718, + "id": 2523, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -680,7 +680,7 @@ } }, { - "id": 2719, + "id": 2524, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -701,14 +701,14 @@ "defaultValue": "null" }, { - "id": 2720, + "id": 2525, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2721, + "id": 2526, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -721,14 +721,14 @@ ] }, { - "id": 2722, + "id": 2527, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2723, + "id": 2528, "name": "onInit", "variant": "signature", "kind": 4096, @@ -745,56 +745,56 @@ { "title": "Constructors", "children": [ - 2709 + 2514 ] }, { "title": "Properties", "children": [ - 2724, - 2711, - 2712, - 2713, - 2714, - 2715, - 2716, - 2717, - 2718, - 2719 + 2529, + 2516, + 2517, + 2518, + 2519, + 2520, + 2521, + 2522, + 2523, + 2524 ] }, { "title": "Methods", "children": [ - 2720, - 2722 + 2525, + 2527 ] } ] }, { - "id": 2692, + "id": 2497, "name": "CustomerGroup", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2693, + "id": 2498, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2694, + "id": 2499, "name": "new CustomerGroup", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2692, + "target": 2497, "name": "CustomerGroup", "package": "@medusajs/customer", "qualifiedName": "default" @@ -803,7 +803,7 @@ ] }, { - "id": 2707, + "id": 2512, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -812,14 +812,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 2695, + "id": 2500, "name": "id", "variant": "declaration", "kind": 1024, @@ -830,7 +830,7 @@ } }, { - "id": 2696, + "id": 2501, "name": "name", "variant": "declaration", "kind": 1024, @@ -841,7 +841,7 @@ } }, { - "id": 2697, + "id": 2502, "name": "customers", "variant": "declaration", "kind": 1024, @@ -855,7 +855,7 @@ "typeArguments": [ { "type": "reference", - "target": 2670, + "target": 2475, "name": "Customer", "package": "@medusajs/customer", "qualifiedName": "default" @@ -871,7 +871,7 @@ "defaultValue": "..." }, { - "id": 2698, + "id": 2503, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -907,7 +907,7 @@ "defaultValue": "null" }, { - "id": 2699, + "id": 2504, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -928,7 +928,7 @@ "defaultValue": "null" }, { - "id": 2700, + "id": 2505, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -944,7 +944,7 @@ } }, { - "id": 2701, + "id": 2506, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -960,7 +960,7 @@ } }, { - "id": 2702, + "id": 2507, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -986,14 +986,14 @@ "defaultValue": "null" }, { - "id": 2703, + "id": 2508, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2704, + "id": 2509, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1006,14 +1006,14 @@ ] }, { - "id": 2705, + "id": 2510, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2706, + "id": 2511, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1030,55 +1030,55 @@ { "title": "Constructors", "children": [ - 2693 + 2498 ] }, { "title": "Properties", "children": [ - 2707, - 2695, - 2696, - 2697, - 2698, - 2699, - 2700, - 2701, - 2702 + 2512, + 2500, + 2501, + 2502, + 2503, + 2504, + 2505, + 2506, + 2507 ] }, { "title": "Methods", "children": [ - 2703, - 2705 + 2508, + 2510 ] } ] }, { - "id": 2670, + "id": 2475, "name": "Customer", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 2671, + "id": 2476, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 2672, + "id": 2477, "name": "new Customer", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 2670, + "target": 2475, "name": "Customer", "package": "@medusajs/customer", "qualifiedName": "default" @@ -1087,7 +1087,7 @@ ] }, { - "id": 2691, + "id": 2496, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -1105,7 +1105,7 @@ } }, { - "id": 2673, + "id": 2478, "name": "id", "variant": "declaration", "kind": 1024, @@ -1116,7 +1116,7 @@ } }, { - "id": 2674, + "id": 2479, "name": "company_name", "variant": "declaration", "kind": 1024, @@ -1137,7 +1137,7 @@ "defaultValue": "null" }, { - "id": 2675, + "id": 2480, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -1158,7 +1158,7 @@ "defaultValue": "null" }, { - "id": 2676, + "id": 2481, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -1179,7 +1179,7 @@ "defaultValue": "null" }, { - "id": 2677, + "id": 2482, "name": "email", "variant": "declaration", "kind": 1024, @@ -1200,7 +1200,7 @@ "defaultValue": "null" }, { - "id": 2678, + "id": 2483, "name": "phone", "variant": "declaration", "kind": 1024, @@ -1221,7 +1221,7 @@ "defaultValue": "null" }, { - "id": 2679, + "id": 2484, "name": "has_account", "variant": "declaration", "kind": 1024, @@ -1233,7 +1233,7 @@ "defaultValue": "false" }, { - "id": 2680, + "id": 2485, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1269,7 +1269,7 @@ "defaultValue": "null" }, { - "id": 2681, + "id": 2486, "name": "groups", "variant": "declaration", "kind": 1024, @@ -1283,7 +1283,7 @@ "typeArguments": [ { "type": "reference", - "target": 2692, + "target": 2497, "name": "CustomerGroup", "package": "@medusajs/customer", "qualifiedName": "default" @@ -1299,7 +1299,7 @@ "defaultValue": "..." }, { - "id": 2682, + "id": 2487, "name": "addresses", "variant": "declaration", "kind": 1024, @@ -1313,7 +1313,7 @@ "typeArguments": [ { "type": "reference", - "target": 2643, + "target": 2448, "name": "Address", "package": "@medusajs/customer", "qualifiedName": "default" @@ -1329,7 +1329,7 @@ "defaultValue": "..." }, { - "id": 2683, + "id": 2488, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1345,7 +1345,7 @@ } }, { - "id": 2684, + "id": 2489, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1361,7 +1361,7 @@ } }, { - "id": 2685, + "id": 2490, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1387,7 +1387,7 @@ "defaultValue": "null" }, { - "id": 2686, + "id": 2491, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -1408,14 +1408,14 @@ "defaultValue": "null" }, { - "id": 2687, + "id": 2492, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2688, + "id": 2493, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1428,14 +1428,14 @@ ] }, { - "id": 2689, + "id": 2494, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2690, + "id": 2495, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1452,34 +1452,34 @@ { "title": "Constructors", "children": [ - 2671 + 2476 ] }, { "title": "Properties", "children": [ - 2691, - 2673, - 2674, - 2675, - 2676, - 2677, - 2678, - 2679, - 2680, - 2681, - 2682, - 2683, - 2684, - 2685, - 2686 + 2496, + 2478, + 2479, + 2480, + 2481, + 2482, + 2483, + 2484, + 2485, + 2486, + 2487, + 2488, + 2489, + 2490, + 2491 ] }, { "title": "Methods", "children": [ - 2687, - 2689 + 2492, + 2494 ] } ] @@ -1489,312 +1489,312 @@ { "title": "Classes", "children": [ - 2643, - 2708, - 2692, - 2670 + 2448, + 2513, + 2497, + 2475 ] } ], "packageName": "@medusajs/customer", "symbolIdMap": { - "2642": { + "2447": { "sourceFileName": "../../../../packages/modules/customer/src/models/index.ts", "qualifiedName": "" }, - "2643": { + "2448": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default" }, - "2646": { + "2451": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.id" }, - "2647": { + "2452": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.address_name" }, - "2648": { + "2453": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.is_default_shipping" }, - "2649": { + "2454": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.is_default_billing" }, - "2650": { + "2455": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.customer_id" }, - "2651": { + "2456": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.customer" }, - "2652": { + "2457": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.company" }, - "2653": { + "2458": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.first_name" }, - "2654": { + "2459": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.last_name" }, - "2655": { + "2460": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.address_1" }, - "2656": { + "2461": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.address_2" }, - "2657": { + "2462": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.city" }, - "2658": { + "2463": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.country_code" }, - "2659": { + "2464": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.province" }, - "2660": { + "2465": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.postal_code" }, - "2661": { + "2466": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.phone" }, - "2662": { + "2467": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.metadata" }, - "2663": { + "2468": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.created_at" }, - "2664": { + "2469": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.updated_at" }, - "2665": { + "2470": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.onCreate" }, - "2666": { + "2471": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.onCreate" }, - "2667": { + "2472": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.onInit" }, - "2668": { + "2473": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.onInit" }, - "2669": { + "2474": { "sourceFileName": "../../../../packages/modules/customer/src/models/address.ts", "qualifiedName": "default.[OptionalProps]" }, - "2670": { + "2475": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default" }, - "2673": { + "2478": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.id" }, - "2674": { + "2479": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.company_name" }, - "2675": { + "2480": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.first_name" }, - "2676": { + "2481": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.last_name" }, - "2677": { + "2482": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.email" }, - "2678": { + "2483": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.phone" }, - "2679": { + "2484": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.has_account" }, - "2680": { + "2485": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.metadata" }, - "2681": { + "2486": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.groups" }, - "2682": { + "2487": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.addresses" }, - "2683": { + "2488": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.created_at" }, - "2684": { + "2489": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.updated_at" }, - "2685": { + "2490": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.deleted_at" }, - "2686": { + "2491": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.created_by" }, - "2687": { + "2492": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.onCreate" }, - "2688": { + "2493": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.onCreate" }, - "2689": { + "2494": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.onInit" }, - "2690": { + "2495": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.onInit" }, - "2691": { + "2496": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer.ts", "qualifiedName": "default.[OptionalProps]" }, - "2692": { + "2497": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default" }, - "2695": { + "2500": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default.id" }, - "2696": { + "2501": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default.name" }, - "2697": { + "2502": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default.customers" }, - "2698": { + "2503": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default.metadata" }, - "2699": { + "2504": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default.created_by" }, - "2700": { + "2505": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default.created_at" }, - "2701": { + "2506": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default.updated_at" }, - "2702": { + "2507": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default.deleted_at" }, - "2703": { + "2508": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default.onCreate" }, - "2704": { + "2509": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default.onCreate" }, - "2705": { + "2510": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default.onInit" }, - "2706": { + "2511": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default.onInit" }, - "2707": { + "2512": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group.ts", "qualifiedName": "default.[OptionalProps]" }, - "2708": { + "2513": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default" }, - "2711": { + "2516": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.id" }, - "2712": { + "2517": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.customer_id" }, - "2713": { + "2518": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.customer_group_id" }, - "2714": { + "2519": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.customer" }, - "2715": { + "2520": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.customer_group" }, - "2716": { + "2521": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.metadata" }, - "2717": { + "2522": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.created_at" }, - "2718": { + "2523": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.updated_at" }, - "2719": { + "2524": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.created_by" }, - "2720": { + "2525": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.onCreate" }, - "2721": { + "2526": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.onCreate" }, - "2722": { + "2527": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.onInit" }, - "2723": { + "2528": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.onInit" }, - "2724": { + "2529": { "sourceFileName": "../../../../packages/modules/customer/src/models/customer-group-customer.ts", "qualifiedName": "default.[OptionalProps]" } @@ -1804,7 +1804,7 @@ "1": "../../../../packages/modules/customer/src/models/index.ts" }, "reflections": { - "1": 2642 + "1": 2447 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/customer.json b/www/utils/generated/typedoc-json-output/customer.json index 0699746962dee..54077a1d07e30 100644 --- a/www/utils/generated/typedoc-json-output/customer.json +++ b/www/utils/generated/typedoc-json-output/customer.json @@ -1,12 +1,12 @@ { - "id": 2069, + "id": 1874, "name": "customer", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 2275, + "id": 2080, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 2276, + "id": 2081, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 2287, + "target": 2092, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 2277, + "id": 2082, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 2278, + "id": 2083, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 2279, + "id": 2084, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 2280, + "id": 2085, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2281, + "id": 2086, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 2282, + "id": 2087, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 2283, + "id": 2088, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 2284, + "id": 2089, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 2285, + "id": 2090, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 2286, + "id": 2091, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 2276, - 2277, - 2278, - 2279, - 2280, - 2284, - 2285, - 2286 + 2081, + 2082, + 2083, + 2084, + 2085, + 2089, + 2090, + 2091 ] } ], "typeParameters": [ { - "id": 2287, + "id": 2092, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 2520, + "id": 2325, "name": "MetadataType", "variant": "declaration", "kind": 2097152, @@ -394,7 +394,7 @@ } }, { - "id": 2397, + "id": 2202, "name": "CustomerAddressDTO", "variant": "declaration", "kind": 256, @@ -409,7 +409,7 @@ }, "children": [ { - "id": 2398, + "id": 2203, "name": "id", "variant": "declaration", "kind": 1024, @@ -428,7 +428,7 @@ } }, { - "id": 2399, + "id": 2204, "name": "address_name", "variant": "declaration", "kind": 1024, @@ -449,7 +449,7 @@ } }, { - "id": 2400, + "id": 2205, "name": "is_default_shipping", "variant": "declaration", "kind": 1024, @@ -468,7 +468,7 @@ } }, { - "id": 2401, + "id": 2206, "name": "is_default_billing", "variant": "declaration", "kind": 1024, @@ -487,7 +487,7 @@ } }, { - "id": 2402, + "id": 2207, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -506,7 +506,7 @@ } }, { - "id": 2403, + "id": 2208, "name": "company", "variant": "declaration", "kind": 1024, @@ -527,7 +527,7 @@ } }, { - "id": 2404, + "id": 2209, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -548,7 +548,7 @@ } }, { - "id": 2405, + "id": 2210, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -569,7 +569,7 @@ } }, { - "id": 2406, + "id": 2211, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -590,7 +590,7 @@ } }, { - "id": 2407, + "id": 2212, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -611,7 +611,7 @@ } }, { - "id": 2408, + "id": 2213, "name": "city", "variant": "declaration", "kind": 1024, @@ -632,7 +632,7 @@ } }, { - "id": 2409, + "id": 2214, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -653,7 +653,7 @@ } }, { - "id": 2410, + "id": 2215, "name": "province", "variant": "declaration", "kind": 1024, @@ -674,7 +674,7 @@ } }, { - "id": 2411, + "id": 2216, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -695,7 +695,7 @@ } }, { - "id": 2412, + "id": 2217, "name": "phone", "variant": "declaration", "kind": 1024, @@ -716,7 +716,7 @@ } }, { - "id": 2413, + "id": 2218, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -752,7 +752,7 @@ } }, { - "id": 2414, + "id": 2219, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -771,7 +771,7 @@ } }, { - "id": 2415, + "id": 2220, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -794,30 +794,30 @@ { "title": "Properties", "children": [ - 2398, - 2399, - 2400, - 2401, - 2402, - 2403, - 2404, - 2405, - 2406, - 2407, - 2408, - 2409, - 2410, - 2411, - 2412, - 2413, - 2414, - 2415 + 2203, + 2204, + 2205, + 2206, + 2207, + 2208, + 2209, + 2210, + 2211, + 2212, + 2213, + 2214, + 2215, + 2216, + 2217, + 2218, + 2219, + 2220 ] } ] }, { - "id": 2433, + "id": 2238, "name": "FilterableCustomerAddressProps", "variant": "declaration", "kind": 256, @@ -832,7 +832,7 @@ }, "children": [ { - "id": 2434, + "id": 2239, "name": "q", "variant": "declaration", "kind": 1024, @@ -853,7 +853,7 @@ } }, { - "id": 2435, + "id": 2240, "name": "id", "variant": "declaration", "kind": 1024, @@ -886,7 +886,7 @@ } }, { - "id": 2436, + "id": 2241, "name": "address_name", "variant": "declaration", "kind": 1024, @@ -910,7 +910,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -924,7 +924,7 @@ } }, { - "id": 2437, + "id": 2242, "name": "is_default_shipping", "variant": "declaration", "kind": 1024, @@ -948,7 +948,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -962,7 +962,7 @@ } }, { - "id": 2438, + "id": 2243, "name": "is_default_billing", "variant": "declaration", "kind": 1024, @@ -986,7 +986,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1000,7 +1000,7 @@ } }, { - "id": 2439, + "id": 2244, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -1033,7 +1033,7 @@ } }, { - "id": 2440, + "id": 2245, "name": "customer", "variant": "declaration", "kind": 1024, @@ -1064,7 +1064,7 @@ }, { "type": "reference", - "target": 2336, + "target": 2141, "name": "FilterableCustomerProps", "package": "@medusajs/types" } @@ -1072,7 +1072,7 @@ } }, { - "id": 2441, + "id": 2246, "name": "company", "variant": "declaration", "kind": 1024, @@ -1096,7 +1096,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1110,7 +1110,7 @@ } }, { - "id": 2442, + "id": 2247, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -1134,7 +1134,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1148,7 +1148,7 @@ } }, { - "id": 2443, + "id": 2248, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -1172,7 +1172,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1186,7 +1186,7 @@ } }, { - "id": 2444, + "id": 2249, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -1210,7 +1210,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1224,7 +1224,7 @@ } }, { - "id": 2445, + "id": 2250, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -1248,7 +1248,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1262,7 +1262,7 @@ } }, { - "id": 2446, + "id": 2251, "name": "city", "variant": "declaration", "kind": 1024, @@ -1286,7 +1286,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1300,7 +1300,7 @@ } }, { - "id": 2447, + "id": 2252, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -1324,7 +1324,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1338,7 +1338,7 @@ } }, { - "id": 2448, + "id": 2253, "name": "province", "variant": "declaration", "kind": 1024, @@ -1362,7 +1362,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1376,7 +1376,7 @@ } }, { - "id": 2449, + "id": 2254, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -1400,7 +1400,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1414,7 +1414,7 @@ } }, { - "id": 2450, + "id": 2255, "name": "phone", "variant": "declaration", "kind": 1024, @@ -1438,7 +1438,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1452,7 +1452,7 @@ } }, { - "id": 2451, + "id": 2256, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1491,7 +1491,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "reference", @@ -1520,7 +1520,7 @@ } }, { - "id": 2452, + "id": 2257, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1537,7 +1537,7 @@ }, "type": { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1549,7 +1549,7 @@ } }, { - "id": 2453, + "id": 2258, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1566,7 +1566,7 @@ }, "type": { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1578,7 +1578,7 @@ } }, { - "id": 2454, + "id": 2259, "name": "$and", "variant": "declaration", "kind": 1024, @@ -1601,17 +1601,17 @@ "types": [ { "type": "reference", - "target": 2433, + "target": 2238, "name": "FilterableCustomerAddressProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2433, + "target": 2238, "name": "FilterableCustomerAddressProps", "package": "@medusajs/types" } @@ -1624,12 +1624,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2522, + "target": 2327, "name": "BaseFilterable.$and" } }, { - "id": 2455, + "id": 2260, "name": "$or", "variant": "declaration", "kind": 1024, @@ -1652,17 +1652,17 @@ "types": [ { "type": "reference", - "target": 2433, + "target": 2238, "name": "FilterableCustomerAddressProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2433, + "target": 2238, "name": "FilterableCustomerAddressProps", "package": "@medusajs/types" } @@ -1675,7 +1675,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 2523, + "target": 2328, "name": "BaseFilterable.$or" } } @@ -1684,39 +1684,39 @@ { "title": "Properties", "children": [ - 2434, - 2435, - 2436, - 2437, - 2438, - 2439, - 2440, - 2441, - 2442, - 2443, - 2444, - 2445, - 2446, - 2447, - 2448, - 2449, - 2450, - 2451, - 2452, - 2453, - 2454, - 2455 + 2239, + 2240, + 2241, + 2242, + 2243, + 2244, + 2245, + 2246, + 2247, + 2248, + 2249, + 2250, + 2251, + 2252, + 2253, + 2254, + 2255, + 2256, + 2257, + 2258, + 2259, + 2260 ] } ], "extendedTypes": [ { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2433, + "target": 2238, "name": "FilterableCustomerAddressProps", "package": "@medusajs/types" } @@ -1727,7 +1727,7 @@ ] }, { - "id": 2368, + "id": 2173, "name": "FilterableCustomerGroupProps", "variant": "declaration", "kind": 256, @@ -1742,7 +1742,7 @@ }, "children": [ { - "id": 2369, + "id": 2174, "name": "q", "variant": "declaration", "kind": 1024, @@ -1763,7 +1763,7 @@ } }, { - "id": 2370, + "id": 2175, "name": "id", "variant": "declaration", "kind": 1024, @@ -1796,7 +1796,7 @@ } }, { - "id": 2371, + "id": 2176, "name": "name", "variant": "declaration", "kind": 1024, @@ -1820,7 +1820,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1834,7 +1834,7 @@ } }, { - "id": 2372, + "id": 2177, "name": "customers", "variant": "declaration", "kind": 1024, @@ -1865,7 +1865,7 @@ }, { "type": "reference", - "target": 2336, + "target": 2141, "name": "FilterableCustomerProps", "package": "@medusajs/types" } @@ -1873,7 +1873,7 @@ } }, { - "id": 2373, + "id": 2178, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -1918,7 +1918,7 @@ } }, { - "id": 2374, + "id": 2179, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1935,7 +1935,7 @@ }, "type": { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1947,7 +1947,7 @@ } }, { - "id": 2375, + "id": 2180, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1964,7 +1964,7 @@ }, "type": { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -1976,7 +1976,7 @@ } }, { - "id": 2376, + "id": 2181, "name": "$and", "variant": "declaration", "kind": 1024, @@ -1999,17 +1999,17 @@ "types": [ { "type": "reference", - "target": 2368, + "target": 2173, "name": "FilterableCustomerGroupProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2368, + "target": 2173, "name": "FilterableCustomerGroupProps", "package": "@medusajs/types" } @@ -2022,12 +2022,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2522, + "target": 2327, "name": "BaseFilterable.$and" } }, { - "id": 2377, + "id": 2182, "name": "$or", "variant": "declaration", "kind": 1024, @@ -2050,17 +2050,17 @@ "types": [ { "type": "reference", - "target": 2368, + "target": 2173, "name": "FilterableCustomerGroupProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2368, + "target": 2173, "name": "FilterableCustomerGroupProps", "package": "@medusajs/types" } @@ -2073,7 +2073,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 2523, + "target": 2328, "name": "BaseFilterable.$or" } } @@ -2082,26 +2082,26 @@ { "title": "Properties", "children": [ - 2369, - 2370, - 2371, - 2372, - 2373, - 2374, - 2375, - 2376, - 2377 + 2174, + 2175, + 2176, + 2177, + 2178, + 2179, + 2180, + 2181, + 2182 ] } ], "extendedTypes": [ { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2368, + "target": 2173, "name": "FilterableCustomerGroupProps", "package": "@medusajs/types" } @@ -2112,7 +2112,7 @@ ] }, { - "id": 2456, + "id": 2261, "name": "FilterableCustomerGroupCustomerProps", "variant": "declaration", "kind": 256, @@ -2127,7 +2127,7 @@ }, "children": [ { - "id": 2457, + "id": 2262, "name": "id", "variant": "declaration", "kind": 1024, @@ -2160,7 +2160,7 @@ } }, { - "id": 2458, + "id": 2263, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -2193,7 +2193,7 @@ } }, { - "id": 2459, + "id": 2264, "name": "customer_group_id", "variant": "declaration", "kind": 1024, @@ -2226,7 +2226,7 @@ } }, { - "id": 2460, + "id": 2265, "name": "customer", "variant": "declaration", "kind": 1024, @@ -2257,7 +2257,7 @@ }, { "type": "reference", - "target": 2336, + "target": 2141, "name": "FilterableCustomerProps", "package": "@medusajs/types" } @@ -2265,7 +2265,7 @@ } }, { - "id": 2461, + "id": 2266, "name": "group", "variant": "declaration", "kind": 1024, @@ -2296,7 +2296,7 @@ }, { "type": "reference", - "target": 2368, + "target": 2173, "name": "FilterableCustomerGroupProps", "package": "@medusajs/types" } @@ -2304,7 +2304,7 @@ } }, { - "id": 2462, + "id": 2267, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -2349,7 +2349,7 @@ } }, { - "id": 2463, + "id": 2268, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -2366,7 +2366,7 @@ }, "type": { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -2378,7 +2378,7 @@ } }, { - "id": 2464, + "id": 2269, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -2395,7 +2395,7 @@ }, "type": { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -2407,7 +2407,7 @@ } }, { - "id": 2465, + "id": 2270, "name": "$and", "variant": "declaration", "kind": 1024, @@ -2430,17 +2430,17 @@ "types": [ { "type": "reference", - "target": 2456, + "target": 2261, "name": "FilterableCustomerGroupCustomerProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2456, + "target": 2261, "name": "FilterableCustomerGroupCustomerProps", "package": "@medusajs/types" } @@ -2453,12 +2453,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2522, + "target": 2327, "name": "BaseFilterable.$and" } }, { - "id": 2466, + "id": 2271, "name": "$or", "variant": "declaration", "kind": 1024, @@ -2481,17 +2481,17 @@ "types": [ { "type": "reference", - "target": 2456, + "target": 2261, "name": "FilterableCustomerGroupCustomerProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2456, + "target": 2261, "name": "FilterableCustomerGroupCustomerProps", "package": "@medusajs/types" } @@ -2504,7 +2504,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 2523, + "target": 2328, "name": "BaseFilterable.$or" } } @@ -2513,27 +2513,27 @@ { "title": "Properties", "children": [ - 2457, - 2458, - 2459, - 2460, - 2461, - 2462, - 2463, - 2464, - 2465, - 2466 + 2262, + 2263, + 2264, + 2265, + 2266, + 2267, + 2268, + 2269, + 2270, + 2271 ] } ], "extendedTypes": [ { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2456, + "target": 2261, "name": "FilterableCustomerGroupCustomerProps", "package": "@medusajs/types" } @@ -2544,7 +2544,7 @@ ] }, { - "id": 2336, + "id": 2141, "name": "FilterableCustomerProps", "variant": "declaration", "kind": 256, @@ -2559,7 +2559,7 @@ }, "children": [ { - "id": 2337, + "id": 2142, "name": "q", "variant": "declaration", "kind": 1024, @@ -2580,7 +2580,7 @@ } }, { - "id": 2338, + "id": 2143, "name": "id", "variant": "declaration", "kind": 1024, @@ -2613,7 +2613,7 @@ } }, { - "id": 2339, + "id": 2144, "name": "email", "variant": "declaration", "kind": 1024, @@ -2644,7 +2644,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -2658,7 +2658,7 @@ } }, { - "id": 2340, + "id": 2145, "name": "groups", "variant": "declaration", "kind": 1024, @@ -2689,7 +2689,7 @@ }, { "type": "reference", - "target": 2368, + "target": 2173, "name": "FilterableCustomerGroupProps", "package": "@medusajs/types" } @@ -2697,7 +2697,7 @@ } }, { - "id": 2341, + "id": 2146, "name": "default_billing_address_id", "variant": "declaration", "kind": 1024, @@ -2734,7 +2734,7 @@ } }, { - "id": 2342, + "id": 2147, "name": "default_shipping_address_id", "variant": "declaration", "kind": 1024, @@ -2771,7 +2771,7 @@ } }, { - "id": 2343, + "id": 2148, "name": "company_name", "variant": "declaration", "kind": 1024, @@ -2806,7 +2806,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -2820,7 +2820,7 @@ } }, { - "id": 2344, + "id": 2149, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -2855,7 +2855,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -2869,7 +2869,7 @@ } }, { - "id": 2345, + "id": 2150, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -2904,7 +2904,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -2918,7 +2918,7 @@ } }, { - "id": 2346, + "id": 2151, "name": "has_account", "variant": "declaration", "kind": 1024, @@ -2942,7 +2942,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -2956,7 +2956,7 @@ } }, { - "id": 2347, + "id": 2152, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -3001,7 +3001,7 @@ } }, { - "id": 2348, + "id": 2153, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3018,7 +3018,7 @@ }, "type": { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -3030,7 +3030,7 @@ } }, { - "id": 2349, + "id": 2154, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3047,7 +3047,7 @@ }, "type": { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "intrinsic", @@ -3059,7 +3059,7 @@ } }, { - "id": 2350, + "id": 2155, "name": "$and", "variant": "declaration", "kind": 1024, @@ -3082,17 +3082,17 @@ "types": [ { "type": "reference", - "target": 2336, + "target": 2141, "name": "FilterableCustomerProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2336, + "target": 2141, "name": "FilterableCustomerProps", "package": "@medusajs/types" } @@ -3105,12 +3105,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 2522, + "target": 2327, "name": "BaseFilterable.$and" } }, { - "id": 2351, + "id": 2156, "name": "$or", "variant": "declaration", "kind": 1024, @@ -3133,17 +3133,17 @@ "types": [ { "type": "reference", - "target": 2336, + "target": 2141, "name": "FilterableCustomerProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2336, + "target": 2141, "name": "FilterableCustomerProps", "package": "@medusajs/types" } @@ -3156,7 +3156,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 2523, + "target": 2328, "name": "BaseFilterable.$or" } } @@ -3165,32 +3165,32 @@ { "title": "Properties", "children": [ - 2337, - 2338, - 2339, - 2340, - 2341, - 2342, - 2343, - 2344, - 2345, - 2346, - 2347, - 2348, - 2349, - 2350, - 2351 + 2142, + 2143, + 2144, + 2145, + 2146, + 2147, + 2148, + 2149, + 2150, + 2151, + 2152, + 2153, + 2154, + 2155, + 2156 ] } ], "extendedTypes": [ { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2336, + "target": 2141, "name": "FilterableCustomerProps", "package": "@medusajs/types" } @@ -3201,7 +3201,7 @@ ] }, { - "id": 2356, + "id": 2161, "name": "CustomerGroupDTO", "variant": "declaration", "kind": 256, @@ -3216,7 +3216,7 @@ }, "children": [ { - "id": 2357, + "id": 2162, "name": "id", "variant": "declaration", "kind": 1024, @@ -3235,7 +3235,7 @@ } }, { - "id": 2358, + "id": 2163, "name": "name", "variant": "declaration", "kind": 1024, @@ -3254,7 +3254,7 @@ } }, { - "id": 2359, + "id": 2164, "name": "customers", "variant": "declaration", "kind": 1024, @@ -3280,7 +3280,7 @@ "typeArguments": [ { "type": "reference", - "target": 2288, + "target": 2093, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -3291,7 +3291,7 @@ } }, { - "id": 2360, + "id": 2165, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3327,7 +3327,7 @@ } }, { - "id": 2361, + "id": 2166, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -3357,7 +3357,7 @@ } }, { - "id": 2362, + "id": 2167, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3396,7 +3396,7 @@ } }, { - "id": 2363, + "id": 2168, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3431,7 +3431,7 @@ } }, { - "id": 2364, + "id": 2169, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3470,20 +3470,20 @@ { "title": "Properties", "children": [ - 2357, - 2358, - 2359, - 2360, - 2361, - 2362, - 2363, - 2364 + 2162, + 2163, + 2164, + 2165, + 2166, + 2167, + 2168, + 2169 ] } ] }, { - "id": 2467, + "id": 2272, "name": "CustomerGroupCustomerDTO", "variant": "declaration", "kind": 256, @@ -3498,7 +3498,7 @@ }, "children": [ { - "id": 2468, + "id": 2273, "name": "id", "variant": "declaration", "kind": 1024, @@ -3517,7 +3517,7 @@ } }, { - "id": 2469, + "id": 2274, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -3536,7 +3536,7 @@ } }, { - "id": 2470, + "id": 2275, "name": "customer_group_id", "variant": "declaration", "kind": 1024, @@ -3555,7 +3555,7 @@ } }, { - "id": 2471, + "id": 2276, "name": "customer", "variant": "declaration", "kind": 1024, @@ -3579,7 +3579,7 @@ "typeArguments": [ { "type": "reference", - "target": 2288, + "target": 2093, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -3589,7 +3589,7 @@ } }, { - "id": 2472, + "id": 2277, "name": "group", "variant": "declaration", "kind": 1024, @@ -3613,7 +3613,7 @@ "typeArguments": [ { "type": "reference", - "target": 2356, + "target": 2161, "name": "CustomerGroupDTO", "package": "@medusajs/types" } @@ -3623,7 +3623,7 @@ } }, { - "id": 2473, + "id": 2278, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -3653,7 +3653,7 @@ } }, { - "id": 2474, + "id": 2279, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3688,7 +3688,7 @@ } }, { - "id": 2475, + "id": 2280, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3727,20 +3727,20 @@ { "title": "Properties", "children": [ - 2468, - 2469, - 2470, - 2471, - 2472, - 2473, - 2474, - 2475 + 2273, + 2274, + 2275, + 2276, + 2277, + 2278, + 2279, + 2280 ] } ] }, { - "id": 2288, + "id": 2093, "name": "CustomerDTO", "variant": "declaration", "kind": 256, @@ -3755,7 +3755,7 @@ }, "children": [ { - "id": 2289, + "id": 2094, "name": "id", "variant": "declaration", "kind": 1024, @@ -3774,7 +3774,7 @@ } }, { - "id": 2290, + "id": 2095, "name": "email", "variant": "declaration", "kind": 1024, @@ -3793,7 +3793,7 @@ } }, { - "id": 2291, + "id": 2096, "name": "has_account", "variant": "declaration", "kind": 1024, @@ -3812,7 +3812,7 @@ } }, { - "id": 2292, + "id": 2097, "name": "default_billing_address_id", "variant": "declaration", "kind": 1024, @@ -3840,7 +3840,7 @@ } }, { - "id": 2293, + "id": 2098, "name": "default_shipping_address_id", "variant": "declaration", "kind": 1024, @@ -3868,7 +3868,7 @@ } }, { - "id": 2294, + "id": 2099, "name": "company_name", "variant": "declaration", "kind": 1024, @@ -3896,7 +3896,7 @@ } }, { - "id": 2295, + "id": 2100, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -3924,7 +3924,7 @@ } }, { - "id": 2296, + "id": 2101, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -3952,7 +3952,7 @@ } }, { - "id": 2297, + "id": 2102, "name": "addresses", "variant": "declaration", "kind": 1024, @@ -3969,14 +3969,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2397, + "target": 2202, "name": "CustomerAddressDTO", "package": "@medusajs/types" } } }, { - "id": 2298, + "id": 2103, "name": "phone", "variant": "declaration", "kind": 1024, @@ -4004,7 +4004,7 @@ } }, { - "id": 2299, + "id": 2104, "name": "groups", "variant": "declaration", "kind": 1024, @@ -4022,14 +4022,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 2300, + "id": 2105, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2301, + "id": 2106, "name": "id", "variant": "declaration", "kind": 1024, @@ -4048,7 +4048,7 @@ } }, { - "id": 2302, + "id": 2107, "name": "name", "variant": "declaration", "kind": 1024, @@ -4071,8 +4071,8 @@ { "title": "Properties", "children": [ - 2301, - 2302 + 2106, + 2107 ] } ] @@ -4081,7 +4081,7 @@ } }, { - "id": 2303, + "id": 2108, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4115,7 +4115,7 @@ } }, { - "id": 2304, + "id": 2109, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -4143,7 +4143,7 @@ } }, { - "id": 2305, + "id": 2110, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -4180,7 +4180,7 @@ } }, { - "id": 2306, + "id": 2111, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4213,7 +4213,7 @@ } }, { - "id": 2307, + "id": 2112, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4250,28 +4250,28 @@ { "title": "Properties", "children": [ - 2289, - 2290, - 2291, - 2292, - 2293, - 2294, - 2295, - 2296, - 2297, - 2298, - 2299, - 2303, - 2304, - 2305, - 2306, - 2307 + 2094, + 2095, + 2096, + 2097, + 2098, + 2099, + 2100, + 2101, + 2102, + 2103, + 2104, + 2108, + 2109, + 2110, + 2111, + 2112 ] } ] }, { - "id": 2378, + "id": 2183, "name": "GroupCustomerPair", "variant": "declaration", "kind": 256, @@ -4286,7 +4286,7 @@ }, "children": [ { - "id": 2379, + "id": 2184, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -4305,7 +4305,7 @@ } }, { - "id": 2380, + "id": 2185, "name": "customer_group_id", "variant": "declaration", "kind": 1024, @@ -4328,14 +4328,14 @@ { "title": "Properties", "children": [ - 2379, - 2380 + 2184, + 2185 ] } ] }, { - "id": 2381, + "id": 2186, "name": "CreateCustomerAddressDTO", "variant": "declaration", "kind": 256, @@ -4350,7 +4350,7 @@ }, "children": [ { - "id": 2382, + "id": 2187, "name": "address_name", "variant": "declaration", "kind": 1024, @@ -4380,7 +4380,7 @@ } }, { - "id": 2383, + "id": 2188, "name": "is_default_shipping", "variant": "declaration", "kind": 1024, @@ -4401,7 +4401,7 @@ } }, { - "id": 2384, + "id": 2189, "name": "is_default_billing", "variant": "declaration", "kind": 1024, @@ -4422,7 +4422,7 @@ } }, { - "id": 2385, + "id": 2190, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -4441,7 +4441,7 @@ } }, { - "id": 2386, + "id": 2191, "name": "company", "variant": "declaration", "kind": 1024, @@ -4471,7 +4471,7 @@ } }, { - "id": 2387, + "id": 2192, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -4501,7 +4501,7 @@ } }, { - "id": 2388, + "id": 2193, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -4531,7 +4531,7 @@ } }, { - "id": 2389, + "id": 2194, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -4561,7 +4561,7 @@ } }, { - "id": 2390, + "id": 2195, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -4591,7 +4591,7 @@ } }, { - "id": 2391, + "id": 2196, "name": "city", "variant": "declaration", "kind": 1024, @@ -4621,7 +4621,7 @@ } }, { - "id": 2392, + "id": 2197, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -4651,7 +4651,7 @@ } }, { - "id": 2393, + "id": 2198, "name": "province", "variant": "declaration", "kind": 1024, @@ -4681,7 +4681,7 @@ } }, { - "id": 2394, + "id": 2199, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -4711,7 +4711,7 @@ } }, { - "id": 2395, + "id": 2200, "name": "phone", "variant": "declaration", "kind": 1024, @@ -4741,7 +4741,7 @@ } }, { - "id": 2396, + "id": 2201, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4758,7 +4758,7 @@ }, "type": { "type": "reference", - "target": 2520, + "target": 2325, "name": "MetadataType", "package": "@medusajs/types" } @@ -4768,27 +4768,27 @@ { "title": "Properties", "children": [ - 2382, - 2383, - 2384, - 2385, - 2386, - 2387, - 2388, - 2389, - 2390, - 2391, - 2392, - 2393, - 2394, - 2395, - 2396 + 2187, + 2188, + 2189, + 2190, + 2191, + 2192, + 2193, + 2194, + 2195, + 2196, + 2197, + 2198, + 2199, + 2200, + 2201 ] } ] }, { - "id": 2416, + "id": 2221, "name": "UpdateCustomerAddressDTO", "variant": "declaration", "kind": 256, @@ -4803,7 +4803,7 @@ }, "children": [ { - "id": 2417, + "id": 2222, "name": "id", "variant": "declaration", "kind": 1024, @@ -4824,7 +4824,7 @@ } }, { - "id": 2418, + "id": 2223, "name": "address_name", "variant": "declaration", "kind": 1024, @@ -4854,7 +4854,7 @@ } }, { - "id": 2419, + "id": 2224, "name": "is_default_shipping", "variant": "declaration", "kind": 1024, @@ -4875,7 +4875,7 @@ } }, { - "id": 2420, + "id": 2225, "name": "is_default_billing", "variant": "declaration", "kind": 1024, @@ -4896,7 +4896,7 @@ } }, { - "id": 2421, + "id": 2226, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -4926,7 +4926,7 @@ } }, { - "id": 2422, + "id": 2227, "name": "company", "variant": "declaration", "kind": 1024, @@ -4956,7 +4956,7 @@ } }, { - "id": 2423, + "id": 2228, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -4986,7 +4986,7 @@ } }, { - "id": 2424, + "id": 2229, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -5016,7 +5016,7 @@ } }, { - "id": 2425, + "id": 2230, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -5046,7 +5046,7 @@ } }, { - "id": 2426, + "id": 2231, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -5076,7 +5076,7 @@ } }, { - "id": 2427, + "id": 2232, "name": "city", "variant": "declaration", "kind": 1024, @@ -5106,7 +5106,7 @@ } }, { - "id": 2428, + "id": 2233, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -5136,7 +5136,7 @@ } }, { - "id": 2429, + "id": 2234, "name": "province", "variant": "declaration", "kind": 1024, @@ -5166,7 +5166,7 @@ } }, { - "id": 2430, + "id": 2235, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -5196,7 +5196,7 @@ } }, { - "id": 2431, + "id": 2236, "name": "phone", "variant": "declaration", "kind": 1024, @@ -5226,7 +5226,7 @@ } }, { - "id": 2432, + "id": 2237, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5243,7 +5243,7 @@ }, "type": { "type": "reference", - "target": 2520, + "target": 2325, "name": "MetadataType", "package": "@medusajs/types" } @@ -5253,28 +5253,28 @@ { "title": "Properties", "children": [ - 2417, - 2418, - 2419, - 2420, - 2421, - 2422, - 2423, - 2424, - 2425, - 2426, - 2427, - 2428, - 2429, - 2430, - 2431, - 2432 + 2222, + 2223, + 2224, + 2225, + 2226, + 2227, + 2228, + 2229, + 2230, + 2231, + 2232, + 2233, + 2234, + 2235, + 2236, + 2237 ] } ] }, { - "id": 2320, + "id": 2125, "name": "CreateCustomerDTO", "variant": "declaration", "kind": 256, @@ -5289,7 +5289,7 @@ }, "children": [ { - "id": 2321, + "id": 2126, "name": "company_name", "variant": "declaration", "kind": 1024, @@ -5319,7 +5319,7 @@ } }, { - "id": 2322, + "id": 2127, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -5349,7 +5349,7 @@ } }, { - "id": 2323, + "id": 2128, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -5379,7 +5379,7 @@ } }, { - "id": 2324, + "id": 2129, "name": "email", "variant": "declaration", "kind": 1024, @@ -5409,7 +5409,7 @@ } }, { - "id": 2325, + "id": 2130, "name": "phone", "variant": "declaration", "kind": 1024, @@ -5439,7 +5439,7 @@ } }, { - "id": 2326, + "id": 2131, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -5469,7 +5469,7 @@ } }, { - "id": 2327, + "id": 2132, "name": "addresses", "variant": "declaration", "kind": 1024, @@ -5495,7 +5495,7 @@ "typeArguments": [ { "type": "reference", - "target": 2381, + "target": 2186, "name": "CreateCustomerAddressDTO", "package": "@medusajs/types" }, @@ -5510,7 +5510,7 @@ } }, { - "id": 2328, + "id": 2133, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5527,7 +5527,7 @@ }, "type": { "type": "reference", - "target": 2520, + "target": 2325, "name": "MetadataType", "package": "@medusajs/types" } @@ -5537,20 +5537,20 @@ { "title": "Properties", "children": [ - 2321, - 2322, - 2323, - 2324, - 2325, - 2326, - 2327, - 2328 + 2126, + 2127, + 2128, + 2129, + 2130, + 2131, + 2132, + 2133 ] } ] }, { - "id": 2329, + "id": 2134, "name": "CustomerUpdatableFields", "variant": "declaration", "kind": 256, @@ -5565,7 +5565,7 @@ }, "children": [ { - "id": 2330, + "id": 2135, "name": "company_name", "variant": "declaration", "kind": 1024, @@ -5595,7 +5595,7 @@ } }, { - "id": 2331, + "id": 2136, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -5625,7 +5625,7 @@ } }, { - "id": 2332, + "id": 2137, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -5655,7 +5655,7 @@ } }, { - "id": 2333, + "id": 2138, "name": "email", "variant": "declaration", "kind": 1024, @@ -5685,7 +5685,7 @@ } }, { - "id": 2334, + "id": 2139, "name": "phone", "variant": "declaration", "kind": 1024, @@ -5715,7 +5715,7 @@ } }, { - "id": 2335, + "id": 2140, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5732,7 +5732,7 @@ }, "type": { "type": "reference", - "target": 2520, + "target": 2325, "name": "MetadataType", "package": "@medusajs/types" } @@ -5742,18 +5742,18 @@ { "title": "Properties", "children": [ - 2330, - 2331, - 2332, - 2333, - 2334, - 2335 + 2135, + 2136, + 2137, + 2138, + 2139, + 2140 ] } ] }, { - "id": 2365, + "id": 2170, "name": "CustomerGroupUpdatableFields", "variant": "declaration", "kind": 256, @@ -5768,7 +5768,7 @@ }, "children": [ { - "id": 2366, + "id": 2171, "name": "name", "variant": "declaration", "kind": 1024, @@ -5789,7 +5789,7 @@ } }, { - "id": 2367, + "id": 2172, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5806,7 +5806,7 @@ }, "type": { "type": "reference", - "target": 2520, + "target": 2325, "name": "MetadataType", "package": "@medusajs/types" } @@ -5816,14 +5816,14 @@ { "title": "Properties", "children": [ - 2366, - 2367 + 2171, + 2172 ] } ] }, { - "id": 2352, + "id": 2157, "name": "CreateCustomerGroupDTO", "variant": "declaration", "kind": 256, @@ -5838,7 +5838,7 @@ }, "children": [ { - "id": 2353, + "id": 2158, "name": "name", "variant": "declaration", "kind": 1024, @@ -5857,7 +5857,7 @@ } }, { - "id": 2354, + "id": 2159, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5874,13 +5874,13 @@ }, "type": { "type": "reference", - "target": 2520, + "target": 2325, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 2355, + "id": 2160, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -5905,15 +5905,15 @@ { "title": "Properties", "children": [ - 2353, - 2354, - 2355 + 2158, + 2159, + 2160 ] } ] }, { - "id": 2070, + "id": 1875, "name": "ICustomerModuleService", "variant": "declaration", "kind": 256, @@ -5928,14 +5928,14 @@ }, "children": [ { - "id": 2071, + "id": 1876, "name": "retrieveCustomer", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2072, + "id": 1877, "name": "retrieveCustomer", "variant": "signature", "kind": 4096, @@ -5982,7 +5982,7 @@ }, "parameters": [ { - "id": 2073, + "id": 1878, "name": "customerId", "variant": "param", "kind": 32768, @@ -6001,7 +6001,7 @@ } }, { - "id": 2074, + "id": 1879, "name": "config", "variant": "param", "kind": 32768, @@ -6034,11 +6034,11 @@ }, "type": { "type": "reference", - "target": 2275, + "target": 2080, "typeArguments": [ { "type": "reference", - "target": 2288, + "target": 2093, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -6048,7 +6048,7 @@ } }, { - "id": 2075, + "id": 1880, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6065,7 +6065,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -6080,7 +6080,7 @@ "typeArguments": [ { "type": "reference", - "target": 2288, + "target": 2093, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -6092,14 +6092,14 @@ ] }, { - "id": 2076, + "id": 1881, "name": "createCustomers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2077, + "id": 1882, "name": "createCustomers", "variant": "signature", "kind": 4096, @@ -6134,7 +6134,7 @@ }, "parameters": [ { - "id": 2078, + "id": 1883, "name": "data", "variant": "param", "kind": 32768, @@ -6151,14 +6151,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2320, + "target": 2125, "name": "CreateCustomerDTO", "package": "@medusajs/types" } } }, { - "id": 2079, + "id": 1884, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6175,7 +6175,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -6192,7 +6192,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2288, + "target": 2093, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -6203,7 +6203,7 @@ } }, { - "id": 2080, + "id": 1885, "name": "createCustomers", "variant": "signature", "kind": 4096, @@ -6238,7 +6238,7 @@ }, "parameters": [ { - "id": 2081, + "id": 1886, "name": "data", "variant": "param", "kind": 32768, @@ -6253,13 +6253,13 @@ }, "type": { "type": "reference", - "target": 2320, + "target": 2125, "name": "CreateCustomerDTO", "package": "@medusajs/types" } }, { - "id": 2082, + "id": 1887, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6276,7 +6276,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -6291,7 +6291,7 @@ "typeArguments": [ { "type": "reference", - "target": 2288, + "target": 2093, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -6303,14 +6303,14 @@ ] }, { - "id": 2083, + "id": 1888, "name": "updateCustomers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2084, + "id": 1889, "name": "updateCustomers", "variant": "signature", "kind": 4096, @@ -6345,7 +6345,7 @@ }, "parameters": [ { - "id": 2085, + "id": 1890, "name": "customerId", "variant": "param", "kind": 32768, @@ -6364,7 +6364,7 @@ } }, { - "id": 2086, + "id": 1891, "name": "data", "variant": "param", "kind": 32768, @@ -6379,13 +6379,13 @@ }, "type": { "type": "reference", - "target": 2329, + "target": 2134, "name": "CustomerUpdatableFields", "package": "@medusajs/types" } }, { - "id": 2087, + "id": 1892, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6402,7 +6402,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -6417,7 +6417,7 @@ "typeArguments": [ { "type": "reference", - "target": 2288, + "target": 2093, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -6427,7 +6427,7 @@ } }, { - "id": 2088, + "id": 1893, "name": "updateCustomers", "variant": "signature", "kind": 4096, @@ -6462,7 +6462,7 @@ }, "parameters": [ { - "id": 2089, + "id": 1894, "name": "customerIds", "variant": "param", "kind": 32768, @@ -6484,7 +6484,7 @@ } }, { - "id": 2090, + "id": 1895, "name": "data", "variant": "param", "kind": 32768, @@ -6499,13 +6499,13 @@ }, "type": { "type": "reference", - "target": 2329, + "target": 2134, "name": "CustomerUpdatableFields", "package": "@medusajs/types" } }, { - "id": 2091, + "id": 1896, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6522,7 +6522,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -6539,7 +6539,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2288, + "target": 2093, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -6550,7 +6550,7 @@ } }, { - "id": 2092, + "id": 1897, "name": "updateCustomers", "variant": "signature", "kind": 4096, @@ -6585,7 +6585,7 @@ }, "parameters": [ { - "id": 2093, + "id": 1898, "name": "selector", "variant": "param", "kind": 32768, @@ -6600,13 +6600,13 @@ }, "type": { "type": "reference", - "target": 2336, + "target": 2141, "name": "FilterableCustomerProps", "package": "@medusajs/types" } }, { - "id": 2094, + "id": 1899, "name": "data", "variant": "param", "kind": 32768, @@ -6621,13 +6621,13 @@ }, "type": { "type": "reference", - "target": 2329, + "target": 2134, "name": "CustomerUpdatableFields", "package": "@medusajs/types" } }, { - "id": 2095, + "id": 1900, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6644,7 +6644,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -6661,7 +6661,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2288, + "target": 2093, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -6674,14 +6674,14 @@ ] }, { - "id": 2096, + "id": 1901, "name": "deleteCustomers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2097, + "id": 1902, "name": "deleteCustomers", "variant": "signature", "kind": 4096, @@ -6716,7 +6716,7 @@ }, "parameters": [ { - "id": 2098, + "id": 1903, "name": "customerId", "variant": "param", "kind": 32768, @@ -6735,7 +6735,7 @@ } }, { - "id": 2099, + "id": 1904, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6752,7 +6752,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -6775,7 +6775,7 @@ } }, { - "id": 2100, + "id": 1905, "name": "deleteCustomers", "variant": "signature", "kind": 4096, @@ -6810,7 +6810,7 @@ }, "parameters": [ { - "id": 2101, + "id": 1906, "name": "customerIds", "variant": "param", "kind": 32768, @@ -6832,7 +6832,7 @@ } }, { - "id": 2102, + "id": 1907, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6849,7 +6849,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -6872,7 +6872,7 @@ } }, { - "id": 2103, + "id": 1908, "name": "deleteCustomers", "variant": "signature", "kind": 4096, @@ -6907,7 +6907,7 @@ }, "parameters": [ { - "id": 2104, + "id": 1909, "name": "selector", "variant": "param", "kind": 32768, @@ -6922,13 +6922,13 @@ }, "type": { "type": "reference", - "target": 2336, + "target": 2141, "name": "FilterableCustomerProps", "package": "@medusajs/types" } }, { - "id": 2105, + "id": 1910, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6945,7 +6945,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -6970,14 +6970,14 @@ ] }, { - "id": 2106, + "id": 1911, "name": "createCustomerGroups", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2107, + "id": 1912, "name": "createCustomerGroups", "variant": "signature", "kind": 4096, @@ -7012,7 +7012,7 @@ }, "parameters": [ { - "id": 2108, + "id": 1913, "name": "data", "variant": "param", "kind": 32768, @@ -7029,14 +7029,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2352, + "target": 2157, "name": "CreateCustomerGroupDTO", "package": "@medusajs/types" } } }, { - "id": 2109, + "id": 1914, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7053,7 +7053,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -7070,7 +7070,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2356, + "target": 2161, "name": "CustomerGroupDTO", "package": "@medusajs/types" } @@ -7081,7 +7081,7 @@ } }, { - "id": 2110, + "id": 1915, "name": "createCustomerGroups", "variant": "signature", "kind": 4096, @@ -7116,7 +7116,7 @@ }, "parameters": [ { - "id": 2111, + "id": 1916, "name": "data", "variant": "param", "kind": 32768, @@ -7131,13 +7131,13 @@ }, "type": { "type": "reference", - "target": 2352, + "target": 2157, "name": "CreateCustomerGroupDTO", "package": "@medusajs/types" } }, { - "id": 2112, + "id": 1917, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7154,7 +7154,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -7169,7 +7169,7 @@ "typeArguments": [ { "type": "reference", - "target": 2356, + "target": 2161, "name": "CustomerGroupDTO", "package": "@medusajs/types" } @@ -7181,14 +7181,14 @@ ] }, { - "id": 2113, + "id": 1918, "name": "retrieveCustomerGroup", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2114, + "id": 1919, "name": "retrieveCustomerGroup", "variant": "signature", "kind": 4096, @@ -7223,7 +7223,7 @@ }, "parameters": [ { - "id": 2115, + "id": 1920, "name": "groupId", "variant": "param", "kind": 32768, @@ -7242,7 +7242,7 @@ } }, { - "id": 2116, + "id": 1921, "name": "config", "variant": "param", "kind": 32768, @@ -7275,11 +7275,11 @@ }, "type": { "type": "reference", - "target": 2275, + "target": 2080, "typeArguments": [ { "type": "reference", - "target": 2356, + "target": 2161, "name": "CustomerGroupDTO", "package": "@medusajs/types" } @@ -7289,7 +7289,7 @@ } }, { - "id": 2117, + "id": 1922, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7306,7 +7306,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -7321,7 +7321,7 @@ "typeArguments": [ { "type": "reference", - "target": 2356, + "target": 2161, "name": "CustomerGroupDTO", "package": "@medusajs/types" } @@ -7333,14 +7333,14 @@ ] }, { - "id": 2118, + "id": 1923, "name": "updateCustomerGroups", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2119, + "id": 1924, "name": "updateCustomerGroups", "variant": "signature", "kind": 4096, @@ -7375,7 +7375,7 @@ }, "parameters": [ { - "id": 2120, + "id": 1925, "name": "groupId", "variant": "param", "kind": 32768, @@ -7394,7 +7394,7 @@ } }, { - "id": 2121, + "id": 1926, "name": "data", "variant": "param", "kind": 32768, @@ -7409,13 +7409,13 @@ }, "type": { "type": "reference", - "target": 2365, + "target": 2170, "name": "CustomerGroupUpdatableFields", "package": "@medusajs/types" } }, { - "id": 2122, + "id": 1927, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7432,7 +7432,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -7447,7 +7447,7 @@ "typeArguments": [ { "type": "reference", - "target": 2356, + "target": 2161, "name": "CustomerGroupDTO", "package": "@medusajs/types" } @@ -7457,7 +7457,7 @@ } }, { - "id": 2123, + "id": 1928, "name": "updateCustomerGroups", "variant": "signature", "kind": 4096, @@ -7492,7 +7492,7 @@ }, "parameters": [ { - "id": 2124, + "id": 1929, "name": "groupIds", "variant": "param", "kind": 32768, @@ -7514,7 +7514,7 @@ } }, { - "id": 2125, + "id": 1930, "name": "data", "variant": "param", "kind": 32768, @@ -7529,13 +7529,13 @@ }, "type": { "type": "reference", - "target": 2365, + "target": 2170, "name": "CustomerGroupUpdatableFields", "package": "@medusajs/types" } }, { - "id": 2126, + "id": 1931, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7552,7 +7552,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -7569,7 +7569,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2356, + "target": 2161, "name": "CustomerGroupDTO", "package": "@medusajs/types" } @@ -7580,7 +7580,7 @@ } }, { - "id": 2127, + "id": 1932, "name": "updateCustomerGroups", "variant": "signature", "kind": 4096, @@ -7615,7 +7615,7 @@ }, "parameters": [ { - "id": 2128, + "id": 1933, "name": "selector", "variant": "param", "kind": 32768, @@ -7630,13 +7630,13 @@ }, "type": { "type": "reference", - "target": 2368, + "target": 2173, "name": "FilterableCustomerGroupProps", "package": "@medusajs/types" } }, { - "id": 2129, + "id": 1934, "name": "data", "variant": "param", "kind": 32768, @@ -7651,13 +7651,13 @@ }, "type": { "type": "reference", - "target": 2365, + "target": 2170, "name": "CustomerGroupUpdatableFields", "package": "@medusajs/types" } }, { - "id": 2130, + "id": 1935, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7674,7 +7674,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -7691,7 +7691,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2356, + "target": 2161, "name": "CustomerGroupDTO", "package": "@medusajs/types" } @@ -7704,14 +7704,14 @@ ] }, { - "id": 2131, + "id": 1936, "name": "deleteCustomerGroups", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2132, + "id": 1937, "name": "deleteCustomerGroups", "variant": "signature", "kind": 4096, @@ -7746,7 +7746,7 @@ }, "parameters": [ { - "id": 2133, + "id": 1938, "name": "groupId", "variant": "param", "kind": 32768, @@ -7765,7 +7765,7 @@ } }, { - "id": 2134, + "id": 1939, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7782,7 +7782,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -7805,7 +7805,7 @@ } }, { - "id": 2135, + "id": 1940, "name": "deleteCustomerGroups", "variant": "signature", "kind": 4096, @@ -7840,7 +7840,7 @@ }, "parameters": [ { - "id": 2136, + "id": 1941, "name": "groupIds", "variant": "param", "kind": 32768, @@ -7862,7 +7862,7 @@ } }, { - "id": 2137, + "id": 1942, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7879,7 +7879,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -7902,7 +7902,7 @@ } }, { - "id": 2138, + "id": 1943, "name": "deleteCustomerGroups", "variant": "signature", "kind": 4096, @@ -7937,7 +7937,7 @@ }, "parameters": [ { - "id": 2139, + "id": 1944, "name": "selector", "variant": "param", "kind": 32768, @@ -7952,13 +7952,13 @@ }, "type": { "type": "reference", - "target": 2368, + "target": 2173, "name": "FilterableCustomerGroupProps", "package": "@medusajs/types" } }, { - "id": 2140, + "id": 1945, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7975,7 +7975,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -8000,14 +8000,14 @@ ] }, { - "id": 2141, + "id": 1946, "name": "addCustomerToGroup", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2142, + "id": 1947, "name": "addCustomerToGroup", "variant": "signature", "kind": 4096, @@ -8042,7 +8042,7 @@ }, "parameters": [ { - "id": 2143, + "id": 1948, "name": "groupCustomerPair", "variant": "param", "kind": 32768, @@ -8057,13 +8057,13 @@ }, "type": { "type": "reference", - "target": 2378, + "target": 2183, "name": "GroupCustomerPair", "package": "@medusajs/types" } }, { - "id": 2144, + "id": 1949, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -8080,7 +8080,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -8096,14 +8096,14 @@ { "type": "reflection", "declaration": { - "id": 2145, + "id": 1950, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2146, + "id": 1951, "name": "id", "variant": "declaration", "kind": 1024, @@ -8126,7 +8126,7 @@ { "title": "Properties", "children": [ - 2146 + 1951 ] } ] @@ -8138,7 +8138,7 @@ } }, { - "id": 2147, + "id": 1952, "name": "addCustomerToGroup", "variant": "signature", "kind": 4096, @@ -8173,7 +8173,7 @@ }, "parameters": [ { - "id": 2148, + "id": 1953, "name": "groupCustomerPairs", "variant": "param", "kind": 32768, @@ -8190,14 +8190,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2378, + "target": 2183, "name": "GroupCustomerPair", "package": "@medusajs/types" } } }, { - "id": 2149, + "id": 1954, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -8214,7 +8214,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -8232,14 +8232,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 2150, + "id": 1955, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2151, + "id": 1956, "name": "id", "variant": "declaration", "kind": 1024, @@ -8262,7 +8262,7 @@ { "title": "Properties", "children": [ - 2151 + 1956 ] } ] @@ -8277,14 +8277,14 @@ ] }, { - "id": 2152, + "id": 1957, "name": "removeCustomerFromGroup", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2153, + "id": 1958, "name": "removeCustomerFromGroup", "variant": "signature", "kind": 4096, @@ -8319,7 +8319,7 @@ }, "parameters": [ { - "id": 2154, + "id": 1959, "name": "groupCustomerPair", "variant": "param", "kind": 32768, @@ -8334,13 +8334,13 @@ }, "type": { "type": "reference", - "target": 2378, + "target": 2183, "name": "GroupCustomerPair", "package": "@medusajs/types" } }, { - "id": 2155, + "id": 1960, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -8357,7 +8357,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -8380,7 +8380,7 @@ } }, { - "id": 2156, + "id": 1961, "name": "removeCustomerFromGroup", "variant": "signature", "kind": 4096, @@ -8415,7 +8415,7 @@ }, "parameters": [ { - "id": 2157, + "id": 1962, "name": "groupCustomerPairs", "variant": "param", "kind": 32768, @@ -8432,14 +8432,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2378, + "target": 2183, "name": "GroupCustomerPair", "package": "@medusajs/types" } } }, { - "id": 2158, + "id": 1963, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -8456,7 +8456,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -8481,14 +8481,14 @@ ] }, { - "id": 2159, + "id": 1964, "name": "createAddresses", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2160, + "id": 1965, "name": "createAddresses", "variant": "signature", "kind": 4096, @@ -8523,7 +8523,7 @@ }, "parameters": [ { - "id": 2161, + "id": 1966, "name": "addresses", "variant": "param", "kind": 32768, @@ -8540,14 +8540,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2381, + "target": 2186, "name": "CreateCustomerAddressDTO", "package": "@medusajs/types" } } }, { - "id": 2162, + "id": 1967, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -8564,7 +8564,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -8581,7 +8581,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2397, + "target": 2202, "name": "CustomerAddressDTO", "package": "@medusajs/types" } @@ -8592,7 +8592,7 @@ } }, { - "id": 2163, + "id": 1968, "name": "createAddresses", "variant": "signature", "kind": 4096, @@ -8627,7 +8627,7 @@ }, "parameters": [ { - "id": 2164, + "id": 1969, "name": "address", "variant": "param", "kind": 32768, @@ -8642,13 +8642,13 @@ }, "type": { "type": "reference", - "target": 2381, + "target": 2186, "name": "CreateCustomerAddressDTO", "package": "@medusajs/types" } }, { - "id": 2165, + "id": 1970, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -8665,7 +8665,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -8680,7 +8680,7 @@ "typeArguments": [ { "type": "reference", - "target": 2397, + "target": 2202, "name": "CustomerAddressDTO", "package": "@medusajs/types" } @@ -8692,14 +8692,14 @@ ] }, { - "id": 2166, + "id": 1971, "name": "updateAddresses", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2167, + "id": 1972, "name": "updateAddresses", "variant": "signature", "kind": 4096, @@ -8734,7 +8734,7 @@ }, "parameters": [ { - "id": 2168, + "id": 1973, "name": "addressId", "variant": "param", "kind": 32768, @@ -8753,7 +8753,7 @@ } }, { - "id": 2169, + "id": 1974, "name": "data", "variant": "param", "kind": 32768, @@ -8768,13 +8768,13 @@ }, "type": { "type": "reference", - "target": 2416, + "target": 2221, "name": "UpdateCustomerAddressDTO", "package": "@medusajs/types" } }, { - "id": 2170, + "id": 1975, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -8791,7 +8791,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -8806,7 +8806,7 @@ "typeArguments": [ { "type": "reference", - "target": 2397, + "target": 2202, "name": "CustomerAddressDTO", "package": "@medusajs/types" } @@ -8816,7 +8816,7 @@ } }, { - "id": 2171, + "id": 1976, "name": "updateAddresses", "variant": "signature", "kind": 4096, @@ -8851,7 +8851,7 @@ }, "parameters": [ { - "id": 2172, + "id": 1977, "name": "addressIds", "variant": "param", "kind": 32768, @@ -8873,7 +8873,7 @@ } }, { - "id": 2173, + "id": 1978, "name": "data", "variant": "param", "kind": 32768, @@ -8888,13 +8888,13 @@ }, "type": { "type": "reference", - "target": 2416, + "target": 2221, "name": "UpdateCustomerAddressDTO", "package": "@medusajs/types" } }, { - "id": 2174, + "id": 1979, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -8911,7 +8911,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -8928,7 +8928,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2397, + "target": 2202, "name": "CustomerAddressDTO", "package": "@medusajs/types" } @@ -8939,7 +8939,7 @@ } }, { - "id": 2175, + "id": 1980, "name": "updateAddresses", "variant": "signature", "kind": 4096, @@ -8974,7 +8974,7 @@ }, "parameters": [ { - "id": 2176, + "id": 1981, "name": "selector", "variant": "param", "kind": 32768, @@ -8989,13 +8989,13 @@ }, "type": { "type": "reference", - "target": 2433, + "target": 2238, "name": "FilterableCustomerAddressProps", "package": "@medusajs/types" } }, { - "id": 2177, + "id": 1982, "name": "data", "variant": "param", "kind": 32768, @@ -9010,13 +9010,13 @@ }, "type": { "type": "reference", - "target": 2416, + "target": 2221, "name": "UpdateCustomerAddressDTO", "package": "@medusajs/types" } }, { - "id": 2178, + "id": 1983, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -9033,7 +9033,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -9050,7 +9050,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2397, + "target": 2202, "name": "CustomerAddressDTO", "package": "@medusajs/types" } @@ -9063,14 +9063,14 @@ ] }, { - "id": 2179, + "id": 1984, "name": "deleteAddresses", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2180, + "id": 1985, "name": "deleteAddresses", "variant": "signature", "kind": 4096, @@ -9105,7 +9105,7 @@ }, "parameters": [ { - "id": 2181, + "id": 1986, "name": "addressId", "variant": "param", "kind": 32768, @@ -9124,7 +9124,7 @@ } }, { - "id": 2182, + "id": 1987, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -9141,7 +9141,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -9164,7 +9164,7 @@ } }, { - "id": 2183, + "id": 1988, "name": "deleteAddresses", "variant": "signature", "kind": 4096, @@ -9199,7 +9199,7 @@ }, "parameters": [ { - "id": 2184, + "id": 1989, "name": "addressIds", "variant": "param", "kind": 32768, @@ -9221,7 +9221,7 @@ } }, { - "id": 2185, + "id": 1990, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -9238,7 +9238,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -9261,7 +9261,7 @@ } }, { - "id": 2186, + "id": 1991, "name": "deleteAddresses", "variant": "signature", "kind": 4096, @@ -9296,7 +9296,7 @@ }, "parameters": [ { - "id": 2187, + "id": 1992, "name": "selector", "variant": "param", "kind": 32768, @@ -9311,13 +9311,13 @@ }, "type": { "type": "reference", - "target": 2433, + "target": 2238, "name": "FilterableCustomerAddressProps", "package": "@medusajs/types" } }, { - "id": 2188, + "id": 1993, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -9334,7 +9334,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -9359,14 +9359,14 @@ ] }, { - "id": 2189, + "id": 1994, "name": "listAddresses", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2190, + "id": 1995, "name": "listAddresses", "variant": "signature", "kind": 4096, @@ -9453,7 +9453,7 @@ }, "parameters": [ { - "id": 2191, + "id": 1996, "name": "filters", "variant": "param", "kind": 32768, @@ -9470,13 +9470,13 @@ }, "type": { "type": "reference", - "target": 2433, + "target": 2238, "name": "FilterableCustomerAddressProps", "package": "@medusajs/types" } }, { - "id": 2192, + "id": 1997, "name": "config", "variant": "param", "kind": 32768, @@ -9509,11 +9509,11 @@ }, "type": { "type": "reference", - "target": 2275, + "target": 2080, "typeArguments": [ { "type": "reference", - "target": 2397, + "target": 2202, "name": "CustomerAddressDTO", "package": "@medusajs/types" } @@ -9523,7 +9523,7 @@ } }, { - "id": 2193, + "id": 1998, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -9540,7 +9540,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -9557,7 +9557,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2397, + "target": 2202, "name": "CustomerAddressDTO", "package": "@medusajs/types" } @@ -9570,14 +9570,14 @@ ] }, { - "id": 2194, + "id": 1999, "name": "listAndCountAddresses", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2195, + "id": 2000, "name": "listAndCountAddresses", "variant": "signature", "kind": 4096, @@ -9664,7 +9664,7 @@ }, "parameters": [ { - "id": 2196, + "id": 2001, "name": "filters", "variant": "param", "kind": 32768, @@ -9681,13 +9681,13 @@ }, "type": { "type": "reference", - "target": 2433, + "target": 2238, "name": "FilterableCustomerAddressProps", "package": "@medusajs/types" } }, { - "id": 2197, + "id": 2002, "name": "config", "variant": "param", "kind": 32768, @@ -9720,11 +9720,11 @@ }, "type": { "type": "reference", - "target": 2275, + "target": 2080, "typeArguments": [ { "type": "reference", - "target": 2397, + "target": 2202, "name": "CustomerAddressDTO", "package": "@medusajs/types" } @@ -9734,7 +9734,7 @@ } }, { - "id": 2198, + "id": 2003, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -9751,7 +9751,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -9771,7 +9771,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2397, + "target": 2202, "name": "CustomerAddressDTO", "package": "@medusajs/types" } @@ -9790,14 +9790,14 @@ ] }, { - "id": 2199, + "id": 2004, "name": "listCustomerGroupCustomers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2200, + "id": 2005, "name": "listCustomerGroupCustomers", "variant": "signature", "kind": 4096, @@ -9884,7 +9884,7 @@ }, "parameters": [ { - "id": 2201, + "id": 2006, "name": "filters", "variant": "param", "kind": 32768, @@ -9901,13 +9901,13 @@ }, "type": { "type": "reference", - "target": 2456, + "target": 2261, "name": "FilterableCustomerGroupCustomerProps", "package": "@medusajs/types" } }, { - "id": 2202, + "id": 2007, "name": "config", "variant": "param", "kind": 32768, @@ -9940,11 +9940,11 @@ }, "type": { "type": "reference", - "target": 2275, + "target": 2080, "typeArguments": [ { "type": "reference", - "target": 2467, + "target": 2272, "name": "CustomerGroupCustomerDTO", "package": "@medusajs/types" } @@ -9954,7 +9954,7 @@ } }, { - "id": 2203, + "id": 2008, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -9971,7 +9971,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -9988,7 +9988,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2467, + "target": 2272, "name": "CustomerGroupCustomerDTO", "package": "@medusajs/types" } @@ -10001,14 +10001,14 @@ ] }, { - "id": 2204, + "id": 2009, "name": "listCustomers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2205, + "id": 2010, "name": "listCustomers", "variant": "signature", "kind": 4096, @@ -10095,7 +10095,7 @@ }, "parameters": [ { - "id": 2206, + "id": 2011, "name": "filters", "variant": "param", "kind": 32768, @@ -10112,13 +10112,13 @@ }, "type": { "type": "reference", - "target": 2336, + "target": 2141, "name": "FilterableCustomerProps", "package": "@medusajs/types" } }, { - "id": 2207, + "id": 2012, "name": "config", "variant": "param", "kind": 32768, @@ -10151,11 +10151,11 @@ }, "type": { "type": "reference", - "target": 2275, + "target": 2080, "typeArguments": [ { "type": "reference", - "target": 2288, + "target": 2093, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -10165,7 +10165,7 @@ } }, { - "id": 2208, + "id": 2013, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10182,7 +10182,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -10199,7 +10199,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2288, + "target": 2093, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -10212,14 +10212,14 @@ ] }, { - "id": 2209, + "id": 2014, "name": "listAndCountCustomers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2210, + "id": 2015, "name": "listAndCountCustomers", "variant": "signature", "kind": 4096, @@ -10306,7 +10306,7 @@ }, "parameters": [ { - "id": 2211, + "id": 2016, "name": "filters", "variant": "param", "kind": 32768, @@ -10323,13 +10323,13 @@ }, "type": { "type": "reference", - "target": 2336, + "target": 2141, "name": "FilterableCustomerProps", "package": "@medusajs/types" } }, { - "id": 2212, + "id": 2017, "name": "config", "variant": "param", "kind": 32768, @@ -10362,11 +10362,11 @@ }, "type": { "type": "reference", - "target": 2275, + "target": 2080, "typeArguments": [ { "type": "reference", - "target": 2288, + "target": 2093, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -10376,7 +10376,7 @@ } }, { - "id": 2213, + "id": 2018, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10393,7 +10393,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -10413,7 +10413,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2288, + "target": 2093, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -10432,14 +10432,14 @@ ] }, { - "id": 2214, + "id": 2019, "name": "listCustomerGroups", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2215, + "id": 2020, "name": "listCustomerGroups", "variant": "signature", "kind": 4096, @@ -10526,7 +10526,7 @@ }, "parameters": [ { - "id": 2216, + "id": 2021, "name": "filters", "variant": "param", "kind": 32768, @@ -10543,13 +10543,13 @@ }, "type": { "type": "reference", - "target": 2368, + "target": 2173, "name": "FilterableCustomerGroupProps", "package": "@medusajs/types" } }, { - "id": 2217, + "id": 2022, "name": "config", "variant": "param", "kind": 32768, @@ -10582,11 +10582,11 @@ }, "type": { "type": "reference", - "target": 2275, + "target": 2080, "typeArguments": [ { "type": "reference", - "target": 2356, + "target": 2161, "name": "CustomerGroupDTO", "package": "@medusajs/types" } @@ -10596,7 +10596,7 @@ } }, { - "id": 2218, + "id": 2023, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10613,7 +10613,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -10630,7 +10630,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2356, + "target": 2161, "name": "CustomerGroupDTO", "package": "@medusajs/types" } @@ -10643,14 +10643,14 @@ ] }, { - "id": 2219, + "id": 2024, "name": "listAndCountCustomerGroups", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2220, + "id": 2025, "name": "listAndCountCustomerGroups", "variant": "signature", "kind": 4096, @@ -10737,7 +10737,7 @@ }, "parameters": [ { - "id": 2221, + "id": 2026, "name": "filters", "variant": "param", "kind": 32768, @@ -10754,13 +10754,13 @@ }, "type": { "type": "reference", - "target": 2368, + "target": 2173, "name": "FilterableCustomerGroupProps", "package": "@medusajs/types" } }, { - "id": 2222, + "id": 2027, "name": "config", "variant": "param", "kind": 32768, @@ -10793,11 +10793,11 @@ }, "type": { "type": "reference", - "target": 2275, + "target": 2080, "typeArguments": [ { "type": "reference", - "target": 2356, + "target": 2161, "name": "CustomerGroupDTO", "package": "@medusajs/types" } @@ -10807,7 +10807,7 @@ } }, { - "id": 2223, + "id": 2028, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10824,7 +10824,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -10844,7 +10844,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2356, + "target": 2161, "name": "CustomerGroupDTO", "package": "@medusajs/types" } @@ -10863,14 +10863,14 @@ ] }, { - "id": 2224, + "id": 2029, "name": "softDeleteCustomers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2225, + "id": 2030, "name": "softDeleteCustomers", "variant": "signature", "kind": 4096, @@ -10921,7 +10921,7 @@ }, "typeParameters": [ { - "id": 2226, + "id": 2031, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -10938,7 +10938,7 @@ ], "parameters": [ { - "id": 2227, + "id": 2032, "name": "customerIds", "variant": "param", "kind": 32768, @@ -10960,7 +10960,7 @@ } }, { - "id": 2228, + "id": 2033, "name": "config", "variant": "param", "kind": 32768, @@ -10977,11 +10977,11 @@ }, "type": { "type": "reference", - "target": 2476, + "target": 2281, "typeArguments": [ { "type": "reference", - "target": 2226, + "target": 2031, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10992,7 +10992,7 @@ } }, { - "id": 2229, + "id": 2034, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11009,7 +11009,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -11038,7 +11038,7 @@ "typeArguments": [ { "type": "reference", - "target": 2226, + "target": 2031, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11064,14 +11064,14 @@ ] }, { - "id": 2230, + "id": 2035, "name": "restoreCustomers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2231, + "id": 2036, "name": "restoreCustomers", "variant": "signature", "kind": 4096, @@ -11114,7 +11114,7 @@ }, "typeParameters": [ { - "id": 2232, + "id": 2037, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -11131,7 +11131,7 @@ ], "parameters": [ { - "id": 2233, + "id": 2038, "name": "customerIds", "variant": "param", "kind": 32768, @@ -11153,7 +11153,7 @@ } }, { - "id": 2234, + "id": 2039, "name": "config", "variant": "param", "kind": 32768, @@ -11186,11 +11186,11 @@ }, "type": { "type": "reference", - "target": 2479, + "target": 2284, "typeArguments": [ { "type": "reference", - "target": 2232, + "target": 2037, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11201,7 +11201,7 @@ } }, { - "id": 2235, + "id": 2040, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11218,7 +11218,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -11247,7 +11247,7 @@ "typeArguments": [ { "type": "reference", - "target": 2232, + "target": 2037, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11273,14 +11273,14 @@ ] }, { - "id": 2236, + "id": 2041, "name": "softDeleteCustomerGroups", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2237, + "id": 2042, "name": "softDeleteCustomerGroups", "variant": "signature", "kind": 4096, @@ -11323,7 +11323,7 @@ }, "typeParameters": [ { - "id": 2238, + "id": 2043, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -11340,7 +11340,7 @@ ], "parameters": [ { - "id": 2239, + "id": 2044, "name": "groupIds", "variant": "param", "kind": 32768, @@ -11362,7 +11362,7 @@ } }, { - "id": 2240, + "id": 2045, "name": "config", "variant": "param", "kind": 32768, @@ -11379,11 +11379,11 @@ }, "type": { "type": "reference", - "target": 2476, + "target": 2281, "typeArguments": [ { "type": "reference", - "target": 2238, + "target": 2043, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11394,7 +11394,7 @@ } }, { - "id": 2241, + "id": 2046, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11411,7 +11411,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -11440,7 +11440,7 @@ "typeArguments": [ { "type": "reference", - "target": 2238, + "target": 2043, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11466,14 +11466,14 @@ ] }, { - "id": 2242, + "id": 2047, "name": "restoreCustomerGroups", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2243, + "id": 2048, "name": "restoreCustomerGroups", "variant": "signature", "kind": 4096, @@ -11516,7 +11516,7 @@ }, "typeParameters": [ { - "id": 2244, + "id": 2049, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -11533,7 +11533,7 @@ ], "parameters": [ { - "id": 2245, + "id": 2050, "name": "groupIds", "variant": "param", "kind": 32768, @@ -11555,7 +11555,7 @@ } }, { - "id": 2246, + "id": 2051, "name": "config", "variant": "param", "kind": 32768, @@ -11588,11 +11588,11 @@ }, "type": { "type": "reference", - "target": 2479, + "target": 2284, "typeArguments": [ { "type": "reference", - "target": 2244, + "target": 2049, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11603,7 +11603,7 @@ } }, { - "id": 2247, + "id": 2052, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11620,7 +11620,7 @@ }, "type": { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" } @@ -11649,7 +11649,7 @@ "typeArguments": [ { "type": "reference", - "target": 2244, + "target": 2049, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11679,44 +11679,44 @@ { "title": "Methods", "children": [ - 2071, - 2076, - 2083, - 2096, - 2106, - 2113, - 2118, - 2131, - 2141, - 2152, - 2159, - 2166, - 2179, - 2189, - 2194, - 2199, - 2204, - 2209, - 2214, - 2219, - 2224, - 2230, - 2236, - 2242 + 1876, + 1881, + 1888, + 1901, + 1911, + 1918, + 1923, + 1936, + 1946, + 1957, + 1964, + 1971, + 1984, + 1994, + 1999, + 2004, + 2009, + 2014, + 2019, + 2024, + 2029, + 2035, + 2041, + 2047 ] } ], "extendedTypes": [ { "type": "reference", - "target": 2261, + "target": 2066, "name": "IModuleService", "package": "@medusajs/types" } ] }, { - "id": 2521, + "id": 2326, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -11731,7 +11731,7 @@ }, "children": [ { - "id": 2522, + "id": 2327, "name": "$and", "variant": "declaration", "kind": 1024, @@ -11753,11 +11753,11 @@ "types": [ { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2524, + "target": 2329, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -11769,7 +11769,7 @@ }, { "type": "reference", - "target": 2524, + "target": 2329, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -11780,7 +11780,7 @@ } }, { - "id": 2523, + "id": 2328, "name": "$or", "variant": "declaration", "kind": 1024, @@ -11802,11 +11802,11 @@ "types": [ { "type": "reference", - "target": 2521, + "target": 2326, "typeArguments": [ { "type": "reference", - "target": 2524, + "target": 2329, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -11818,7 +11818,7 @@ }, { "type": "reference", - "target": 2524, + "target": 2329, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -11833,14 +11833,14 @@ { "title": "Properties", "children": [ - 2522, - 2523 + 2327, + 2328 ] } ], "typeParameters": [ { - "id": 2524, + "id": 2329, "name": "T", "variant": "typeParam", "kind": 131072, @@ -11850,28 +11850,28 @@ "extendedBy": [ { "type": "reference", - "target": 2336, + "target": 2141, "name": "FilterableCustomerProps" }, { "type": "reference", - "target": 2368, + "target": 2173, "name": "FilterableCustomerGroupProps" }, { "type": "reference", - "target": 2433, + "target": 2238, "name": "FilterableCustomerAddressProps" }, { "type": "reference", - "target": 2456, + "target": 2261, "name": "FilterableCustomerGroupCustomerProps" } ] }, { - "id": 2476, + "id": 2281, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -11886,7 +11886,7 @@ }, "children": [ { - "id": 2477, + "id": 2282, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -11905,7 +11905,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2478, + "target": 2283, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11917,13 +11917,13 @@ { "title": "Properties", "children": [ - 2477 + 2282 ] } ], "typeParameters": [ { - "id": 2478, + "id": 2283, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -11936,7 +11936,7 @@ ] }, { - "id": 2479, + "id": 2284, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -11951,7 +11951,7 @@ }, "children": [ { - "id": 2480, + "id": 2285, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -11970,7 +11970,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2481, + "target": 2286, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11982,13 +11982,13 @@ { "title": "Properties", "children": [ - 2480 + 2285 ] } ], "typeParameters": [ { - "id": 2481, + "id": 2286, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -12001,14 +12001,14 @@ ] }, { - "id": 2590, + "id": 2395, "name": "Query", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2591, + "id": 2396, "name": "T", "variant": "typeParam", "kind": 131072, @@ -12019,7 +12019,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 2591, + "target": 2396, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12032,14 +12032,14 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 2591, + "target": 2396, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 2612, + "target": 2417, "name": "Scalar", "package": "@medusajs/types" }, @@ -12049,11 +12049,11 @@ }, "falseType": { "type": "reference", - "target": 2616, + "target": 2421, "typeArguments": [ { "type": "reference", - "target": 2591, + "target": 2396, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12065,11 +12065,11 @@ }, "falseType": { "type": "reference", - "target": 2622, + "target": 2427, "typeArguments": [ { "type": "reference", - "target": 2591, + "target": 2396, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12081,14 +12081,14 @@ } }, { - "id": 2592, + "id": 2397, "name": "ExpandScalar", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2593, + "id": 2398, "name": "T", "variant": "typeParam", "kind": 131072, @@ -12106,7 +12106,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 2593, + "target": 2398, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12137,7 +12137,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 2593, + "target": 2398, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12171,7 +12171,7 @@ }, "falseType": { "type": "reference", - "target": 2593, + "target": 2398, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12182,7 +12182,7 @@ } }, { - "id": 2612, + "id": 2417, "name": "Scalar", "variant": "declaration", "kind": 2097152, @@ -12241,21 +12241,21 @@ { "type": "reflection", "declaration": { - "id": 2613, + "id": 2418, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2614, + "id": 2419, "name": "toHexString", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2615, + "id": 2420, "name": "toHexString", "variant": "signature", "kind": 4096, @@ -12272,7 +12272,7 @@ { "title": "Methods", "children": [ - 2614 + 2419 ] } ] @@ -12282,14 +12282,14 @@ } }, { - "id": 2640, + "id": 2445, "name": "ReadonlyPrimary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2641, + "id": 2446, "name": "T", "variant": "typeParam", "kind": 131072, @@ -12300,7 +12300,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 2641, + "target": 2446, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12321,7 +12321,7 @@ "typeArguments": [ { "type": "reference", - "target": 2641, + "target": 2446, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12332,7 +12332,7 @@ }, "falseType": { "type": "reference", - "target": 2641, + "target": 2446, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12340,14 +12340,14 @@ } }, { - "id": 2630, + "id": 2435, "name": "Primary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2639, + "id": 2444, "name": "T", "variant": "typeParam", "kind": 131072, @@ -12358,7 +12358,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 2639, + "target": 2444, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12366,14 +12366,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 2631, + "id": 2436, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2632, + "id": 2437, "name": "[PrimaryKeyType]", "variant": "declaration", "kind": 1024, @@ -12390,7 +12390,7 @@ { "title": "Properties", "children": [ - 2632 + 2437 ] } ] @@ -12398,7 +12398,7 @@ }, "trueType": { "type": "reference", - "target": 2640, + "target": 2445, "typeArguments": [ { "type": "reference", @@ -12418,7 +12418,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 2639, + "target": 2444, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12426,14 +12426,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 2633, + "id": 2438, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2634, + "id": 2439, "name": "_id", "variant": "declaration", "kind": 1024, @@ -12450,7 +12450,7 @@ { "title": "Properties", "children": [ - 2634 + 2439 ] } ] @@ -12461,7 +12461,7 @@ "types": [ { "type": "reference", - "target": 2640, + "target": 2445, "typeArguments": [ { "type": "reference", @@ -12487,7 +12487,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 2639, + "target": 2444, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12495,14 +12495,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 2635, + "id": 2440, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2636, + "id": 2441, "name": "uuid", "variant": "declaration", "kind": 1024, @@ -12519,7 +12519,7 @@ { "title": "Properties", "children": [ - 2636 + 2441 ] } ] @@ -12527,7 +12527,7 @@ }, "trueType": { "type": "reference", - "target": 2640, + "target": 2445, "typeArguments": [ { "type": "reference", @@ -12547,7 +12547,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 2639, + "target": 2444, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12555,14 +12555,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 2637, + "id": 2442, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2638, + "id": 2443, "name": "id", "variant": "declaration", "kind": 1024, @@ -12579,7 +12579,7 @@ { "title": "Properties", "children": [ - 2638 + 2443 ] } ] @@ -12587,7 +12587,7 @@ }, "trueType": { "type": "reference", - "target": 2640, + "target": 2445, "typeArguments": [ { "type": "reference", @@ -12613,14 +12613,14 @@ } }, { - "id": 2525, + "id": 2330, "name": "OperatorMap", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2546, + "id": 2351, "name": "T", "variant": "typeParam", "kind": 131072, @@ -12630,14 +12630,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2526, + "id": 2331, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2527, + "id": 2332, "name": "$and", "variant": "declaration", "kind": 1024, @@ -12648,11 +12648,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 2590, + "target": 2395, "typeArguments": [ { "type": "reference", - "target": 2546, + "target": 2351, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12664,7 +12664,7 @@ } }, { - "id": 2528, + "id": 2333, "name": "$or", "variant": "declaration", "kind": 1024, @@ -12675,11 +12675,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 2590, + "target": 2395, "typeArguments": [ { "type": "reference", - "target": 2546, + "target": 2351, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12691,7 +12691,7 @@ } }, { - "id": 2529, + "id": 2334, "name": "$eq", "variant": "declaration", "kind": 1024, @@ -12703,11 +12703,11 @@ "types": [ { "type": "reference", - "target": 2592, + "target": 2397, "typeArguments": [ { "type": "reference", - "target": 2546, + "target": 2351, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12720,11 +12720,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 2592, + "target": 2397, "typeArguments": [ { "type": "reference", - "target": 2546, + "target": 2351, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12738,7 +12738,7 @@ } }, { - "id": 2530, + "id": 2335, "name": "$ne", "variant": "declaration", "kind": 1024, @@ -12747,11 +12747,11 @@ }, "type": { "type": "reference", - "target": 2592, + "target": 2397, "typeArguments": [ { "type": "reference", - "target": 2546, + "target": 2351, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12762,7 +12762,7 @@ } }, { - "id": 2531, + "id": 2336, "name": "$in", "variant": "declaration", "kind": 1024, @@ -12773,11 +12773,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 2592, + "target": 2397, "typeArguments": [ { "type": "reference", - "target": 2546, + "target": 2351, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12789,7 +12789,7 @@ } }, { - "id": 2532, + "id": 2337, "name": "$nin", "variant": "declaration", "kind": 1024, @@ -12800,11 +12800,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 2592, + "target": 2397, "typeArguments": [ { "type": "reference", - "target": 2546, + "target": 2351, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12816,7 +12816,7 @@ } }, { - "id": 2533, + "id": 2338, "name": "$not", "variant": "declaration", "kind": 1024, @@ -12825,11 +12825,11 @@ }, "type": { "type": "reference", - "target": 2590, + "target": 2395, "typeArguments": [ { "type": "reference", - "target": 2546, + "target": 2351, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12840,7 +12840,7 @@ } }, { - "id": 2534, + "id": 2339, "name": "$gt", "variant": "declaration", "kind": 1024, @@ -12849,11 +12849,11 @@ }, "type": { "type": "reference", - "target": 2592, + "target": 2397, "typeArguments": [ { "type": "reference", - "target": 2546, + "target": 2351, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12864,7 +12864,7 @@ } }, { - "id": 2535, + "id": 2340, "name": "$gte", "variant": "declaration", "kind": 1024, @@ -12873,11 +12873,11 @@ }, "type": { "type": "reference", - "target": 2592, + "target": 2397, "typeArguments": [ { "type": "reference", - "target": 2546, + "target": 2351, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12888,7 +12888,7 @@ } }, { - "id": 2536, + "id": 2341, "name": "$lt", "variant": "declaration", "kind": 1024, @@ -12897,11 +12897,11 @@ }, "type": { "type": "reference", - "target": 2592, + "target": 2397, "typeArguments": [ { "type": "reference", - "target": 2546, + "target": 2351, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12912,7 +12912,7 @@ } }, { - "id": 2537, + "id": 2342, "name": "$lte", "variant": "declaration", "kind": 1024, @@ -12921,11 +12921,11 @@ }, "type": { "type": "reference", - "target": 2592, + "target": 2397, "typeArguments": [ { "type": "reference", - "target": 2546, + "target": 2351, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12936,7 +12936,7 @@ } }, { - "id": 2538, + "id": 2343, "name": "$like", "variant": "declaration", "kind": 1024, @@ -12949,7 +12949,7 @@ } }, { - "id": 2539, + "id": 2344, "name": "$re", "variant": "declaration", "kind": 1024, @@ -12962,7 +12962,7 @@ } }, { - "id": 2540, + "id": 2345, "name": "$ilike", "variant": "declaration", "kind": 1024, @@ -12975,7 +12975,7 @@ } }, { - "id": 2541, + "id": 2346, "name": "$fulltext", "variant": "declaration", "kind": 1024, @@ -12988,7 +12988,7 @@ } }, { - "id": 2542, + "id": 2347, "name": "$overlap", "variant": "declaration", "kind": 1024, @@ -13004,7 +13004,7 @@ } }, { - "id": 2543, + "id": 2348, "name": "$contains", "variant": "declaration", "kind": 1024, @@ -13020,7 +13020,7 @@ } }, { - "id": 2544, + "id": 2349, "name": "$contained", "variant": "declaration", "kind": 1024, @@ -13036,7 +13036,7 @@ } }, { - "id": 2545, + "id": 2350, "name": "$exists", "variant": "declaration", "kind": 1024, @@ -13053,25 +13053,25 @@ { "title": "Properties", "children": [ - 2527, - 2528, - 2529, - 2530, - 2531, - 2532, - 2533, - 2534, - 2535, - 2536, - 2537, - 2538, - 2539, - 2540, - 2541, - 2542, - 2543, - 2544, - 2545 + 2332, + 2333, + 2334, + 2335, + 2336, + 2337, + 2338, + 2339, + 2340, + 2341, + 2342, + 2343, + 2344, + 2345, + 2346, + 2347, + 2348, + 2349, + 2350 ] } ] @@ -13079,14 +13079,14 @@ } }, { - "id": 2628, + "id": 2433, "name": "FilterValue2", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2629, + "id": 2434, "name": "T", "variant": "typeParam", "kind": 131072, @@ -13098,18 +13098,18 @@ "types": [ { "type": "reference", - "target": 2629, + "target": 2434, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, { "type": "reference", - "target": 2592, + "target": 2397, "typeArguments": [ { "type": "reference", - "target": 2629, + "target": 2434, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13120,11 +13120,11 @@ }, { "type": "reference", - "target": 2630, + "target": 2435, "typeArguments": [ { "type": "reference", - "target": 2629, + "target": 2434, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13137,14 +13137,14 @@ } }, { - "id": 2622, + "id": 2427, "name": "FilterValue", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2623, + "id": 2428, "name": "T", "variant": "typeParam", "kind": 131072, @@ -13156,15 +13156,15 @@ "types": [ { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "reference", - "target": 2628, + "target": 2433, "typeArguments": [ { "type": "reference", - "target": 2623, + "target": 2428, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13179,11 +13179,11 @@ }, { "type": "reference", - "target": 2628, + "target": 2433, "typeArguments": [ { "type": "reference", - "target": 2623, + "target": 2428, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13196,11 +13196,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 2628, + "target": 2433, "typeArguments": [ { "type": "reference", - "target": 2623, + "target": 2428, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13218,7 +13218,7 @@ } }, { - "id": 2627, + "id": 2432, "name": "PrevLimit", "variant": "declaration", "kind": 2097152, @@ -13246,14 +13246,14 @@ } }, { - "id": 2616, + "id": 2421, "name": "FilterQuery", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2620, + "id": 2425, "name": "T", "variant": "typeParam", "kind": 131072, @@ -13264,7 +13264,7 @@ } }, { - "id": 2621, + "id": 2426, "name": "Prev", "variant": "typeParam", "kind": 131072, @@ -13283,7 +13283,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 2621, + "target": 2426, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13304,7 +13304,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 2620, + "target": 2425, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13326,7 +13326,7 @@ }, "objectType": { "type": "reference", - "target": 2620, + "target": 2425, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13383,7 +13383,7 @@ }, "objectType": { "type": "reference", - "target": 2620, + "target": 2425, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13391,7 +13391,7 @@ }, { "type": "reference", - "target": 2525, + "target": 2330, "typeArguments": [ { "type": "indexedAccess", @@ -13407,7 +13407,7 @@ }, "objectType": { "type": "reference", - "target": 2620, + "target": 2425, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13435,7 +13435,7 @@ }, "objectType": { "type": "reference", - "target": 2620, + "target": 2425, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13460,21 +13460,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 2617, + "id": 2422, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 2618, + "id": 2423, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 2619, + "id": 2424, "name": "x", "variant": "param", "kind": 32768, @@ -13511,7 +13511,7 @@ }, "trueType": { "type": "reference", - "target": 2616, + "target": 2421, "typeArguments": [ { "type": "reference", @@ -13538,14 +13538,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 2621, + "target": 2426, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 2627, + "target": 2432, "name": "PrevLimit", "package": "@medusajs/types" } @@ -13575,7 +13575,7 @@ } }, { - "id": 2624, + "id": 2429, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -13605,14 +13605,14 @@ { "type": "reflection", "declaration": { - "id": 2625, + "id": 2430, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2626, + "id": 2431, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -13629,7 +13629,7 @@ { "title": "Properties", "children": [ - 2626 + 2431 ] } ] @@ -13639,14 +13639,14 @@ } }, { - "id": 2606, + "id": 2411, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2611, + "id": 2416, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -13660,14 +13660,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2607, + "id": 2412, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2608, + "id": 2413, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -13678,7 +13678,7 @@ } }, { - "id": 2609, + "id": 2414, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -13687,20 +13687,20 @@ }, "type": { "type": "reference", - "target": 2624, + "target": 2429, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 2610, + "id": 2415, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 2611, + "target": 2416, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13711,9 +13711,9 @@ { "title": "Properties", "children": [ - 2608, - 2609, - 2610 + 2413, + 2414, + 2415 ] } ] @@ -13721,14 +13721,14 @@ } }, { - "id": 2570, + "id": 2375, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2573, + "id": 2378, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -13744,11 +13744,11 @@ "types": [ { "type": "reference", - "target": 2606, + "target": 2411, "typeArguments": [ { "type": "reference", - "target": 2573, + "target": 2378, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13760,14 +13760,14 @@ { "type": "reflection", "declaration": { - "id": 2571, + "id": 2376, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2572, + "id": 2377, "name": "options", "variant": "declaration", "kind": 1024, @@ -13799,7 +13799,7 @@ { "title": "Properties", "children": [ - 2572 + 2377 ] } ] @@ -13809,14 +13809,14 @@ } }, { - "id": 2580, + "id": 2385, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 2589, + "id": 2394, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -13830,14 +13830,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2581, + "id": 2386, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2582, + "id": 2387, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -13848,21 +13848,21 @@ } }, { - "id": 2583, + "id": 2388, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 2589, + "target": 2394, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 2584, + "id": 2389, "name": "source", "variant": "declaration", "kind": 1024, @@ -13873,7 +13873,7 @@ } }, { - "id": 2585, + "id": 2390, "name": "object", "variant": "declaration", "kind": 1024, @@ -13884,7 +13884,7 @@ } }, { - "id": 2586, + "id": 2391, "name": "action", "variant": "declaration", "kind": 1024, @@ -13897,7 +13897,7 @@ } }, { - "id": 2587, + "id": 2392, "name": "context", "variant": "declaration", "kind": 1024, @@ -13913,7 +13913,7 @@ "typeArguments": [ { "type": "reference", - "target": 2308, + "target": 2113, "name": "Context", "package": "@medusajs/types" }, @@ -13927,7 +13927,7 @@ } }, { - "id": 2588, + "id": 2393, "name": "options", "variant": "declaration", "kind": 1024, @@ -13959,13 +13959,13 @@ { "title": "Properties", "children": [ - 2582, - 2583, - 2584, - 2585, - 2586, - 2587, - 2588 + 2387, + 2388, + 2389, + 2390, + 2391, + 2392, + 2393 ] } ] @@ -13973,7 +13973,7 @@ } }, { - "id": 2597, + "id": 2402, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -13981,14 +13981,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2598, + "id": 2403, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2599, + "id": 2404, "name": "alias", "variant": "declaration", "kind": 1024, @@ -13999,7 +13999,7 @@ } }, { - "id": 2600, + "id": 2405, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -14010,7 +14010,7 @@ } }, { - "id": 2601, + "id": 2406, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -14021,7 +14021,7 @@ } }, { - "id": 2602, + "id": 2407, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -14032,7 +14032,7 @@ } }, { - "id": 2603, + "id": 2408, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -14053,7 +14053,7 @@ } }, { - "id": 2604, + "id": 2409, "name": "isList", "variant": "declaration", "kind": 1024, @@ -14074,7 +14074,7 @@ } }, { - "id": 2605, + "id": 2410, "name": "args", "variant": "declaration", "kind": 1024, @@ -14114,13 +14114,13 @@ { "title": "Properties", "children": [ - 2599, - 2600, - 2601, - 2602, - 2603, - 2604, - 2605 + 2404, + 2405, + 2406, + 2407, + 2408, + 2409, + 2410 ] } ] @@ -14128,14 +14128,14 @@ } }, { - "id": 2594, + "id": 2399, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2595, + "id": 2400, "name": "name", "variant": "declaration", "kind": 1024, @@ -14158,7 +14158,7 @@ } }, { - "id": 2596, + "id": 2401, "name": "args", "variant": "declaration", "kind": 1024, @@ -14198,21 +14198,21 @@ { "title": "Properties", "children": [ - 2595, - 2596 + 2400, + 2401 ] } ] }, { - "id": 2547, + "id": 2352, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2548, + "id": 2353, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -14223,7 +14223,7 @@ } }, { - "id": 2549, + "id": 2354, "name": "alias", "variant": "declaration", "kind": 1024, @@ -14243,7 +14243,7 @@ "types": [ { "type": "reference", - "target": 2594, + "target": 2399, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -14251,7 +14251,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2594, + "target": 2399, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -14260,7 +14260,7 @@ } }, { - "id": 2550, + "id": 2355, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -14296,14 +14296,14 @@ { "type": "reflection", "declaration": { - "id": 2551, + "id": 2356, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2552, + "id": 2357, "name": "path", "variant": "declaration", "kind": 1024, @@ -14314,7 +14314,7 @@ } }, { - "id": 2553, + "id": 2358, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -14332,8 +14332,8 @@ { "title": "Properties", "children": [ - 2552, - 2553 + 2357, + 2358 ] } ] @@ -14347,7 +14347,7 @@ } }, { - "id": 2554, + "id": 2359, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -14361,7 +14361,7 @@ } }, { - "id": 2555, + "id": 2360, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -14372,14 +14372,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2597, + "target": 2402, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 2556, + "id": 2361, "name": "extends", "variant": "declaration", "kind": 1024, @@ -14391,14 +14391,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 2557, + "id": 2362, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2558, + "id": 2363, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -14409,14 +14409,14 @@ } }, { - "id": 2559, + "id": 2364, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 2597, + "target": 2402, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -14426,8 +14426,8 @@ { "title": "Properties", "children": [ - 2558, - 2559 + 2363, + 2364 ] } ] @@ -14436,7 +14436,7 @@ } }, { - "id": 2560, + "id": 2365, "name": "args", "variant": "declaration", "kind": 1024, @@ -14476,19 +14476,19 @@ { "title": "Properties", "children": [ - 2548, - 2549, - 2550, - 2554, - 2555, - 2556, - 2560 + 2353, + 2354, + 2355, + 2359, + 2360, + 2361, + 2365 ] } ] }, { - "id": 2564, + "id": 2369, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -14507,14 +14507,14 @@ { "type": "reflection", "declaration": { - "id": 2565, + "id": 2370, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2566, + "id": 2371, "name": "type", "variant": "declaration", "kind": 1024, @@ -14610,7 +14610,7 @@ } }, { - "id": 2567, + "id": 2372, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -14623,7 +14623,7 @@ } }, { - "id": 2568, + "id": 2373, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -14636,7 +14636,7 @@ } }, { - "id": 2569, + "id": 2374, "name": "options", "variant": "declaration", "kind": 1024, @@ -14676,10 +14676,10 @@ { "title": "Properties", "children": [ - 2566, - 2567, - 2568, - 2569 + 2371, + 2372, + 2373, + 2374 ] } ] @@ -14691,7 +14691,7 @@ } }, { - "id": 2482, + "id": 2287, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -14708,7 +14708,7 @@ "typeArguments": [ { "type": "reference", - "target": 2547, + "target": 2352, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -14740,14 +14740,14 @@ { "type": "reflection", "declaration": { - "id": 2483, + "id": 2288, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2484, + "id": 2289, "name": "schema", "variant": "declaration", "kind": 1024, @@ -14768,7 +14768,7 @@ } }, { - "id": 2485, + "id": 2290, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -14779,14 +14779,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 2561, + "target": 2366, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 2486, + "id": 2291, "name": "extends", "variant": "declaration", "kind": 1024, @@ -14798,14 +14798,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 2487, + "id": 2292, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2488, + "id": 2293, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -14816,7 +14816,7 @@ } }, { - "id": 2489, + "id": 2294, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -14844,14 +14844,14 @@ { "type": "reflection", "declaration": { - "id": 2490, + "id": 2295, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2491, + "id": 2296, "name": "path", "variant": "declaration", "kind": 1024, @@ -14862,7 +14862,7 @@ } }, { - "id": 2492, + "id": 2297, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -14878,7 +14878,7 @@ } }, { - "id": 2493, + "id": 2298, "name": "isList", "variant": "declaration", "kind": 1024, @@ -14895,9 +14895,9 @@ { "title": "Properties", "children": [ - 2491, - 2492, - 2493 + 2296, + 2297, + 2298 ] } ] @@ -14911,14 +14911,14 @@ } }, { - "id": 2494, + "id": 2299, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 2561, + "target": 2366, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -14928,9 +14928,9 @@ { "title": "Properties", "children": [ - 2488, - 2489, - 2494 + 2293, + 2294, + 2299 ] } ] @@ -14939,7 +14939,7 @@ } }, { - "id": 2495, + "id": 2300, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -14952,7 +14952,7 @@ } }, { - "id": 2496, + "id": 2301, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -14968,7 +14968,7 @@ } }, { - "id": 2497, + "id": 2302, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -14989,7 +14989,7 @@ } }, { - "id": 2498, + "id": 2303, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -15025,7 +15025,7 @@ } }, { - "id": 2499, + "id": 2304, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -15046,7 +15046,7 @@ } }, { - "id": 2500, + "id": 2305, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -15070,7 +15070,7 @@ } }, { - "id": 2501, + "id": 2306, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -15080,14 +15080,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2502, + "id": 2307, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2503, + "id": 2308, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -15108,7 +15108,7 @@ } }, { - "id": 2504, + "id": 2309, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -15129,7 +15129,7 @@ } }, { - "id": 2505, + "id": 2310, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -15138,7 +15138,7 @@ }, "type": { "type": "reference", - "target": 2564, + "target": 2369, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -15148,9 +15148,9 @@ { "title": "Properties", "children": [ - 2503, - 2504, - 2505 + 2308, + 2309, + 2310 ] } ] @@ -15162,16 +15162,16 @@ { "title": "Properties", "children": [ - 2484, - 2485, - 2486, - 2495, - 2496, - 2497, - 2498, - 2499, - 2500, - 2501 + 2289, + 2290, + 2291, + 2300, + 2301, + 2302, + 2303, + 2304, + 2305, + 2306 ] } ] @@ -15181,7 +15181,7 @@ } }, { - "id": 2561, + "id": 2366, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -15191,21 +15191,21 @@ "types": [ { "type": "reference", - "target": 2597, + "target": 2402, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 2562, + "id": 2367, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 2563, + "id": 2368, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -15230,7 +15230,7 @@ { "title": "Properties", "children": [ - 2563 + 2368 ] } ] @@ -15240,7 +15240,7 @@ } }, { - "id": 2261, + "id": 2066, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -15248,20 +15248,20 @@ "extendedBy": [ { "type": "reference", - "target": 2070, + "target": 1875, "name": "ICustomerModuleService" } ] }, { - "id": 2574, + "id": 2379, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2575, + "id": 2380, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -15277,7 +15277,7 @@ } }, { - "id": 2576, + "id": 2381, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -15287,21 +15287,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2577, + "id": 2382, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 2578, + "id": 2383, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 2579, + "id": 2384, "name": "key", "variant": "param", "kind": 32768, @@ -15342,35 +15342,35 @@ { "title": "Properties", "children": [ - 2575, - 2576 + 2380, + 2381 ] } ] }, { - "id": 2506, + "id": 2311, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 2507, + "id": 2312, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2508, + "id": 2313, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2509, + "id": 2314, "name": "msg", "variant": "param", "kind": 32768, @@ -15380,7 +15380,7 @@ "types": [ { "type": "reference", - "target": 2570, + "target": 2375, "name": "Message", "package": "@medusajs/types" }, @@ -15388,7 +15388,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2570, + "target": 2375, "name": "Message", "package": "@medusajs/types" } @@ -15405,21 +15405,21 @@ ] }, { - "id": 2510, + "id": 2315, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2511, + "id": 2316, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 2512, + "id": 2317, "name": "format", "variant": "param", "kind": 32768, @@ -15428,7 +15428,7 @@ }, "type": { "type": "reference", - "target": 2574, + "target": 2379, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -15449,7 +15449,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 2570, + "target": 2375, "name": "Message", "package": "@medusajs/types" } @@ -15462,14 +15462,14 @@ ] }, { - "id": 2513, + "id": 2318, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2514, + "id": 2319, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -15482,21 +15482,21 @@ ] }, { - "id": 2515, + "id": 2320, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2516, + "id": 2321, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 2517, + "id": 2322, "name": "T", "variant": "typeParam", "kind": 131072, @@ -15505,7 +15505,7 @@ ], "parameters": [ { - "id": 2518, + "id": 2323, "name": "messageData", "variant": "param", "kind": 32768, @@ -15515,11 +15515,11 @@ "types": [ { "type": "reference", - "target": 2580, + "target": 2385, "typeArguments": [ { "type": "reference", - "target": 2517, + "target": 2322, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -15532,11 +15532,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 2580, + "target": 2385, "typeArguments": [ { "type": "reference", - "target": 2517, + "target": 2322, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -15550,7 +15550,7 @@ } }, { - "id": 2519, + "id": 2324, "name": "options", "variant": "param", "kind": 32768, @@ -15590,16 +15590,16 @@ { "title": "Methods", "children": [ - 2507, - 2510, - 2513, - 2515 + 2312, + 2315, + 2318, + 2320 ] } ] }, { - "id": 2308, + "id": 2113, "name": "Context", "variant": "declaration", "kind": 256, @@ -15614,7 +15614,7 @@ }, "children": [ { - "id": 2309, + "id": 2114, "name": "__type", "variant": "declaration", "kind": 1024, @@ -15627,7 +15627,7 @@ } }, { - "id": 2310, + "id": 2115, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -15660,14 +15660,14 @@ }, "type": { "type": "reference", - "target": 2319, + "target": 2124, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 2311, + "id": 2116, "name": "manager", "variant": "declaration", "kind": 1024, @@ -15700,14 +15700,14 @@ }, "type": { "type": "reference", - "target": 2319, + "target": 2124, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 2312, + "id": 2117, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -15760,7 +15760,7 @@ } }, { - "id": 2313, + "id": 2118, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -15781,7 +15781,7 @@ } }, { - "id": 2314, + "id": 2119, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -15802,7 +15802,7 @@ } }, { - "id": 2315, + "id": 2120, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -15823,7 +15823,7 @@ } }, { - "id": 2316, + "id": 2121, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -15840,13 +15840,13 @@ }, "type": { "type": "reference", - "target": 2506, + "target": 2311, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 2317, + "id": 2122, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -15867,7 +15867,7 @@ } }, { - "id": 2318, + "id": 2123, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -15892,22 +15892,22 @@ { "title": "Properties", "children": [ - 2309, - 2310, - 2311, - 2312, - 2313, - 2314, - 2315, - 2316, - 2317, - 2318 + 2114, + 2115, + 2116, + 2117, + 2118, + 2119, + 2120, + 2121, + 2122, + 2123 ] } ], "typeParameters": [ { - "id": 2319, + "id": 2124, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -15924,2234 +15924,2234 @@ { "title": "Interfaces", "children": [ - 2275, - 2397, - 2433, - 2368, - 2456, - 2336, - 2356, - 2467, - 2288, - 2378, - 2381, - 2416, - 2320, - 2329, - 2365, - 2352, - 2070, - 2521, - 2476, - 2479, - 2594, - 2547, + 2080, + 2202, + 2238, + 2173, 2261, - 2574, - 2506, - 2308 + 2141, + 2161, + 2272, + 2093, + 2183, + 2186, + 2221, + 2125, + 2134, + 2170, + 2157, + 1875, + 2326, + 2281, + 2284, + 2399, + 2352, + 2066, + 2379, + 2311, + 2113 ] }, { "title": "Type Aliases", "children": [ - 2520, - 2590, - 2592, - 2612, - 2640, - 2630, - 2525, - 2628, - 2622, - 2627, - 2616, - 2624, - 2606, - 2570, - 2580, - 2597, - 2564, - 2482, - 2561 + 2325, + 2395, + 2397, + 2417, + 2445, + 2435, + 2330, + 2433, + 2427, + 2432, + 2421, + 2429, + 2411, + 2375, + 2385, + 2402, + 2369, + 2287, + 2366 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "2069": { + "1874": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "" }, - "2070": { + "1875": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService" }, - "2071": { + "1876": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.retrieveCustomer" }, - "2072": { + "1877": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.retrieveCustomer" }, - "2073": { + "1878": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "customerId" }, - "2074": { + "1879": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "config" }, - "2075": { + "1880": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2076": { + "1881": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.createCustomers" }, - "2077": { + "1882": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.createCustomers" }, - "2078": { + "1883": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "data" }, - "2079": { + "1884": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2080": { + "1885": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.createCustomers" }, - "2081": { + "1886": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "data" }, - "2082": { + "1887": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2083": { + "1888": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.updateCustomers" }, - "2084": { + "1889": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.updateCustomers" }, - "2085": { + "1890": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "customerId" }, - "2086": { + "1891": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "data" }, - "2087": { + "1892": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2088": { + "1893": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.updateCustomers" }, - "2089": { + "1894": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "customerIds" }, - "2090": { + "1895": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "data" }, - "2091": { + "1896": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2092": { + "1897": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.updateCustomers" }, - "2093": { + "1898": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "selector" }, - "2094": { + "1899": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "data" }, - "2095": { + "1900": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2096": { + "1901": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.deleteCustomers" }, - "2097": { + "1902": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.deleteCustomers" }, - "2098": { + "1903": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "customerId" }, - "2099": { + "1904": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2100": { + "1905": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.deleteCustomers" }, - "2101": { + "1906": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "customerIds" }, - "2102": { + "1907": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2103": { + "1908": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.deleteCustomers" }, - "2104": { + "1909": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "selector" }, - "2105": { + "1910": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2106": { + "1911": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.createCustomerGroups" }, - "2107": { + "1912": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.createCustomerGroups" }, - "2108": { + "1913": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "data" }, - "2109": { + "1914": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2110": { + "1915": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.createCustomerGroups" }, - "2111": { + "1916": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "data" }, - "2112": { + "1917": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2113": { + "1918": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.retrieveCustomerGroup" }, - "2114": { + "1919": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.retrieveCustomerGroup" }, - "2115": { + "1920": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "groupId" }, - "2116": { + "1921": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "config" }, - "2117": { + "1922": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2118": { + "1923": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.updateCustomerGroups" }, - "2119": { + "1924": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.updateCustomerGroups" }, - "2120": { + "1925": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "groupId" }, - "2121": { + "1926": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "data" }, - "2122": { + "1927": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2123": { + "1928": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.updateCustomerGroups" }, - "2124": { + "1929": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "groupIds" }, - "2125": { + "1930": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "data" }, - "2126": { + "1931": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2127": { + "1932": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.updateCustomerGroups" }, - "2128": { + "1933": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "selector" }, - "2129": { + "1934": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "data" }, - "2130": { + "1935": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2131": { + "1936": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.deleteCustomerGroups" }, - "2132": { + "1937": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.deleteCustomerGroups" }, - "2133": { + "1938": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "groupId" }, - "2134": { + "1939": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2135": { + "1940": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.deleteCustomerGroups" }, - "2136": { + "1941": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "groupIds" }, - "2137": { + "1942": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2138": { + "1943": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.deleteCustomerGroups" }, - "2139": { + "1944": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "selector" }, - "2140": { + "1945": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2141": { + "1946": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.addCustomerToGroup" }, - "2142": { + "1947": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.addCustomerToGroup" }, - "2143": { + "1948": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "groupCustomerPair" }, - "2144": { + "1949": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2145": { + "1950": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "__type" }, - "2146": { + "1951": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "__type.id" }, - "2147": { + "1952": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.addCustomerToGroup" }, - "2148": { + "1953": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "groupCustomerPairs" }, - "2149": { + "1954": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2150": { + "1955": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "__type" }, - "2151": { + "1956": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "__type.id" }, - "2152": { + "1957": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.removeCustomerFromGroup" }, - "2153": { + "1958": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.removeCustomerFromGroup" }, - "2154": { + "1959": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "groupCustomerPair" }, - "2155": { + "1960": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2156": { + "1961": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.removeCustomerFromGroup" }, - "2157": { + "1962": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "groupCustomerPairs" }, - "2158": { + "1963": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2159": { + "1964": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.createAddresses" }, - "2160": { + "1965": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.createAddresses" }, - "2161": { + "1966": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "addresses" }, - "2162": { + "1967": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2163": { + "1968": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.createAddresses" }, - "2164": { + "1969": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "address" }, - "2165": { + "1970": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2166": { + "1971": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.updateAddresses" }, - "2167": { + "1972": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.updateAddresses" }, - "2168": { + "1973": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "addressId" }, - "2169": { + "1974": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "data" }, - "2170": { + "1975": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2171": { + "1976": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.updateAddresses" }, - "2172": { + "1977": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "addressIds" }, - "2173": { + "1978": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "data" }, - "2174": { + "1979": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2175": { + "1980": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.updateAddresses" }, - "2176": { + "1981": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "selector" }, - "2177": { + "1982": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "data" }, - "2178": { + "1983": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2179": { + "1984": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.deleteAddresses" }, - "2180": { + "1985": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.deleteAddresses" }, - "2181": { + "1986": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "addressId" }, - "2182": { + "1987": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2183": { + "1988": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.deleteAddresses" }, - "2184": { + "1989": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "addressIds" }, - "2185": { + "1990": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2186": { + "1991": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.deleteAddresses" }, - "2187": { + "1992": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "selector" }, - "2188": { + "1993": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2189": { + "1994": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listAddresses" }, - "2190": { + "1995": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listAddresses" }, - "2191": { + "1996": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "filters" }, - "2192": { + "1997": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "config" }, - "2193": { + "1998": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2194": { + "1999": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listAndCountAddresses" }, - "2195": { + "2000": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listAndCountAddresses" }, - "2196": { + "2001": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "filters" }, - "2197": { + "2002": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "config" }, - "2198": { + "2003": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2199": { + "2004": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listCustomerGroupCustomers" }, - "2200": { + "2005": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listCustomerGroupCustomers" }, - "2201": { + "2006": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "filters" }, - "2202": { + "2007": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "config" }, - "2203": { + "2008": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2204": { + "2009": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listCustomers" }, - "2205": { + "2010": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listCustomers" }, - "2206": { + "2011": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "filters" }, - "2207": { + "2012": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "config" }, - "2208": { + "2013": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2209": { + "2014": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listAndCountCustomers" }, - "2210": { + "2015": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listAndCountCustomers" }, - "2211": { + "2016": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "filters" }, - "2212": { + "2017": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "config" }, - "2213": { + "2018": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2214": { + "2019": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listCustomerGroups" }, - "2215": { + "2020": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listCustomerGroups" }, - "2216": { + "2021": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "filters" }, - "2217": { + "2022": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "config" }, - "2218": { + "2023": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2219": { + "2024": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listAndCountCustomerGroups" }, - "2220": { + "2025": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.listAndCountCustomerGroups" }, - "2221": { + "2026": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "filters" }, - "2222": { + "2027": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "config" }, - "2223": { + "2028": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2224": { + "2029": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.softDeleteCustomers" }, - "2225": { + "2030": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.softDeleteCustomers" }, - "2226": { + "2031": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "2227": { + "2032": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "customerIds" }, - "2228": { + "2033": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "config" }, - "2229": { + "2034": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2230": { + "2035": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.restoreCustomers" }, - "2231": { + "2036": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.restoreCustomers" }, - "2232": { + "2037": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "2233": { + "2038": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "customerIds" }, - "2234": { + "2039": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "config" }, - "2235": { + "2040": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2236": { + "2041": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.softDeleteCustomerGroups" }, - "2237": { + "2042": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.softDeleteCustomerGroups" }, - "2238": { + "2043": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "2239": { + "2044": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "groupIds" }, - "2240": { + "2045": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "config" }, - "2241": { + "2046": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2242": { + "2047": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.restoreCustomerGroups" }, - "2243": { + "2048": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "ICustomerModuleService.restoreCustomerGroups" }, - "2244": { + "2049": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "2245": { + "2050": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "groupIds" }, - "2246": { + "2051": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "config" }, - "2247": { + "2052": { "sourceFileName": "../../../../packages/core/types/src/customer/service.ts", "qualifiedName": "sharedContext" }, - "2261": { + "2066": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "2275": { + "2080": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "2276": { + "2081": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "2277": { + "2082": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "2278": { + "2083": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "2279": { + "2084": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "2280": { + "2085": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "2281": { + "2086": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "2282": { + "2087": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "2284": { + "2089": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "2285": { + "2090": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "2286": { + "2091": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "2287": { + "2092": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "2288": { + "2093": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO" }, - "2289": { + "2094": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.id" }, - "2290": { + "2095": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.email" }, - "2291": { + "2096": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.has_account" }, - "2292": { + "2097": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.default_billing_address_id" }, - "2293": { + "2098": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.default_shipping_address_id" }, - "2294": { + "2099": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.company_name" }, - "2295": { + "2100": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.first_name" }, - "2296": { + "2101": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.last_name" }, - "2297": { + "2102": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.addresses" }, - "2298": { + "2103": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.phone" }, - "2299": { + "2104": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.groups" }, - "2300": { + "2105": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "__type" }, - "2301": { + "2106": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "__type.id" }, - "2302": { + "2107": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "__type.name" }, - "2303": { + "2108": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.metadata" }, - "2304": { + "2109": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.created_by" }, - "2305": { + "2110": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.deleted_at" }, - "2306": { + "2111": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.created_at" }, - "2307": { + "2112": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.updated_at" }, - "2308": { + "2113": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "2309": { + "2114": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "2310": { + "2115": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "2311": { + "2116": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "2312": { + "2117": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "2313": { + "2118": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "2314": { + "2119": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "2315": { + "2120": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "2316": { + "2121": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "2317": { + "2122": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "2318": { + "2123": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "2319": { + "2124": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "2320": { + "2125": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerDTO" }, - "2321": { + "2126": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerDTO.company_name" }, - "2322": { + "2127": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerDTO.first_name" }, - "2323": { + "2128": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerDTO.last_name" }, - "2324": { + "2129": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerDTO.email" }, - "2325": { + "2130": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerDTO.phone" }, - "2326": { + "2131": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerDTO.created_by" }, - "2327": { + "2132": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerDTO.addresses" }, - "2328": { + "2133": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerDTO.metadata" }, - "2329": { + "2134": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CustomerUpdatableFields" }, - "2330": { + "2135": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CustomerUpdatableFields.company_name" }, - "2331": { + "2136": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CustomerUpdatableFields.first_name" }, - "2332": { + "2137": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CustomerUpdatableFields.last_name" }, - "2333": { + "2138": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CustomerUpdatableFields.email" }, - "2334": { + "2139": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CustomerUpdatableFields.phone" }, - "2335": { + "2140": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CustomerUpdatableFields.metadata" }, - "2336": { + "2141": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps" }, - "2337": { + "2142": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps.q" }, - "2338": { + "2143": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps.id" }, - "2339": { + "2144": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps.email" }, - "2340": { + "2145": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps.groups" }, - "2341": { + "2146": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps.default_billing_address_id" }, - "2342": { + "2147": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps.default_shipping_address_id" }, - "2343": { + "2148": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps.company_name" }, - "2344": { + "2149": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps.first_name" }, - "2345": { + "2150": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps.last_name" }, - "2346": { + "2151": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps.has_account" }, - "2347": { + "2152": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps.created_by" }, - "2348": { + "2153": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps.created_at" }, - "2349": { + "2154": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerProps.updated_at" }, - "2350": { + "2155": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "2351": { + "2156": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "2352": { + "2157": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerGroupDTO" }, - "2353": { + "2158": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerGroupDTO.name" }, - "2354": { + "2159": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerGroupDTO.metadata" }, - "2355": { + "2160": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerGroupDTO.created_by" }, - "2356": { + "2161": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupDTO" }, - "2357": { + "2162": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupDTO.id" }, - "2358": { + "2163": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupDTO.name" }, - "2359": { + "2164": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupDTO.customers" }, - "2360": { + "2165": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupDTO.metadata" }, - "2361": { + "2166": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupDTO.created_by" }, - "2362": { + "2167": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupDTO.deleted_at" }, - "2363": { + "2168": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupDTO.created_at" }, - "2364": { + "2169": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupDTO.updated_at" }, - "2365": { + "2170": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CustomerGroupUpdatableFields" }, - "2366": { + "2171": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CustomerGroupUpdatableFields.name" }, - "2367": { + "2172": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CustomerGroupUpdatableFields.metadata" }, - "2368": { + "2173": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupProps" }, - "2369": { + "2174": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupProps.q" }, - "2370": { + "2175": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupProps.id" }, - "2371": { + "2176": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupProps.name" }, - "2372": { + "2177": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupProps.customers" }, - "2373": { + "2178": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupProps.created_by" }, - "2374": { + "2179": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupProps.created_at" }, - "2375": { + "2180": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupProps.updated_at" }, - "2376": { + "2181": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "2377": { + "2182": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "2378": { + "2183": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "GroupCustomerPair" }, - "2379": { + "2184": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "__type.customer_id" }, - "2380": { + "2185": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "__type.customer_group_id" }, - "2381": { + "2186": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO" }, - "2382": { + "2187": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.address_name" }, - "2383": { + "2188": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.is_default_shipping" }, - "2384": { + "2189": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.is_default_billing" }, - "2385": { + "2190": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.customer_id" }, - "2386": { + "2191": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.company" }, - "2387": { + "2192": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.first_name" }, - "2388": { + "2193": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.last_name" }, - "2389": { + "2194": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.address_1" }, - "2390": { + "2195": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.address_2" }, - "2391": { + "2196": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.city" }, - "2392": { + "2197": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.country_code" }, - "2393": { + "2198": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.province" }, - "2394": { + "2199": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.postal_code" }, - "2395": { + "2200": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.phone" }, - "2396": { + "2201": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "CreateCustomerAddressDTO.metadata" }, - "2397": { + "2202": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO" }, - "2398": { + "2203": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.id" }, - "2399": { + "2204": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.address_name" }, - "2400": { + "2205": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.is_default_shipping" }, - "2401": { + "2206": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.is_default_billing" }, - "2402": { + "2207": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.customer_id" }, - "2403": { + "2208": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.company" }, - "2404": { + "2209": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.first_name" }, - "2405": { + "2210": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.last_name" }, - "2406": { + "2211": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.address_1" }, - "2407": { + "2212": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.address_2" }, - "2408": { + "2213": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.city" }, - "2409": { + "2214": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.country_code" }, - "2410": { + "2215": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.province" }, - "2411": { + "2216": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.postal_code" }, - "2412": { + "2217": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.phone" }, - "2413": { + "2218": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.metadata" }, - "2414": { + "2219": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.created_at" }, - "2415": { + "2220": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.updated_at" }, - "2416": { + "2221": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO" }, - "2417": { + "2222": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.id" }, - "2418": { + "2223": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.address_name" }, - "2419": { + "2224": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.is_default_shipping" }, - "2420": { + "2225": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.is_default_billing" }, - "2421": { + "2226": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.customer_id" }, - "2422": { + "2227": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.company" }, - "2423": { + "2228": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.first_name" }, - "2424": { + "2229": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.last_name" }, - "2425": { + "2230": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.address_1" }, - "2426": { + "2231": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.address_2" }, - "2427": { + "2232": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.city" }, - "2428": { + "2233": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.country_code" }, - "2429": { + "2234": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.province" }, - "2430": { + "2235": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.postal_code" }, - "2431": { + "2236": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.phone" }, - "2432": { + "2237": { "sourceFileName": "../../../../packages/core/types/src/customer/mutations.ts", "qualifiedName": "UpdateCustomerAddressDTO.metadata" }, - "2433": { + "2238": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps" }, - "2434": { + "2239": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.q" }, - "2435": { + "2240": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.id" }, - "2436": { + "2241": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.address_name" }, - "2437": { + "2242": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.is_default_shipping" }, - "2438": { + "2243": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.is_default_billing" }, - "2439": { + "2244": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.customer_id" }, - "2440": { + "2245": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.customer" }, - "2441": { + "2246": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.company" }, - "2442": { + "2247": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.first_name" }, - "2443": { + "2248": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.last_name" }, - "2444": { + "2249": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.address_1" }, - "2445": { + "2250": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.address_2" }, - "2446": { + "2251": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.city" }, - "2447": { + "2252": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.country_code" }, - "2448": { + "2253": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.province" }, - "2449": { + "2254": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.postal_code" }, - "2450": { + "2255": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.phone" }, - "2451": { + "2256": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.metadata" }, - "2452": { + "2257": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.created_at" }, - "2453": { + "2258": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerAddressProps.updated_at" }, - "2454": { + "2259": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "2455": { + "2260": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "2456": { + "2261": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupCustomerProps" }, - "2457": { + "2262": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupCustomerProps.id" }, - "2458": { + "2263": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupCustomerProps.customer_id" }, - "2459": { + "2264": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupCustomerProps.customer_group_id" }, - "2460": { + "2265": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupCustomerProps.customer" }, - "2461": { + "2266": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupCustomerProps.group" }, - "2462": { + "2267": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupCustomerProps.created_by" }, - "2463": { + "2268": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupCustomerProps.created_at" }, - "2464": { + "2269": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "FilterableCustomerGroupCustomerProps.updated_at" }, - "2465": { + "2270": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "2466": { + "2271": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "2467": { + "2272": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupCustomerDTO" }, - "2468": { + "2273": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupCustomerDTO.id" }, - "2469": { + "2274": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupCustomerDTO.customer_id" }, - "2470": { + "2275": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupCustomerDTO.customer_group_id" }, - "2471": { + "2276": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupCustomerDTO.customer" }, - "2472": { + "2277": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupCustomerDTO.group" }, - "2473": { + "2278": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupCustomerDTO.created_by" }, - "2474": { + "2279": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupCustomerDTO.created_at" }, - "2475": { + "2280": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerGroupCustomerDTO.updated_at" }, - "2476": { + "2281": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "SoftDeleteReturn" }, - "2477": { + "2282": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "2478": { + "2283": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "2479": { + "2284": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RestoreReturn" }, - "2480": { + "2285": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "2481": { + "2286": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "2482": { + "2287": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "2483": { + "2288": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "2484": { + "2289": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "2485": { + "2290": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "2486": { + "2291": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "2487": { + "2292": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "2488": { + "2293": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "2489": { + "2294": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "2490": { + "2295": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "2491": { + "2296": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "2492": { + "2297": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "2493": { + "2298": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "2494": { + "2299": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "2495": { + "2300": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "2496": { + "2301": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "2497": { + "2302": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "2498": { + "2303": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "2499": { + "2304": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "2500": { + "2305": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "2501": { + "2306": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "2502": { + "2307": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "2503": { + "2308": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "2504": { + "2309": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "2505": { + "2310": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "2506": { + "2311": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "2507": { + "2312": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "2508": { + "2313": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "2509": { + "2314": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "2510": { + "2315": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "2511": { + "2316": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "2512": { + "2317": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "2513": { + "2318": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "2514": { + "2319": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "2515": { + "2320": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "2516": { + "2321": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "2517": { + "2322": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "2518": { + "2323": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "2519": { + "2324": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "2520": { + "2325": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "MetadataType" }, - "2521": { + "2326": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "2522": { + "2327": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "2523": { + "2328": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "2524": { + "2329": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "2525": { + "2330": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "OperatorMap" }, - "2526": { + "2331": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "2527": { + "2332": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$and" }, - "2528": { + "2333": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$or" }, - "2529": { + "2334": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$eq" }, - "2530": { + "2335": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ne" }, - "2531": { + "2336": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$in" }, - "2532": { + "2337": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$nin" }, - "2533": { + "2338": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$not" }, - "2534": { + "2339": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gt" }, - "2535": { + "2340": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gte" }, - "2536": { + "2341": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lt" }, - "2537": { + "2342": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lte" }, - "2538": { + "2343": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$like" }, - "2539": { + "2344": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$re" }, - "2540": { + "2345": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ilike" }, - "2541": { + "2346": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$fulltext" }, - "2542": { + "2347": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$overlap" }, - "2543": { + "2348": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contains" }, - "2544": { + "2349": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contained" }, - "2545": { + "2350": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$exists" }, - "2546": { + "2351": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "2547": { + "2352": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "2548": { + "2353": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "2549": { + "2354": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "2550": { + "2355": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "2551": { + "2356": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "2552": { + "2357": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "2553": { + "2358": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "2554": { + "2359": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "2555": { + "2360": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "2556": { + "2361": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "2557": { + "2362": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "2558": { + "2363": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "2559": { + "2364": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "2560": { + "2365": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "2561": { + "2366": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "2562": { + "2367": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "2563": { + "2368": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "2564": { + "2369": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "2565": { + "2370": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "2566": { + "2371": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "2567": { + "2372": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "2568": { + "2373": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "2569": { + "2374": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "2570": { + "2375": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "2571": { + "2376": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "2572": { + "2377": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "2573": { + "2378": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "2574": { + "2379": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "2575": { + "2380": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "2576": { + "2381": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "2577": { + "2382": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "2578": { + "2383": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "2580": { + "2385": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "2581": { + "2386": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "2582": { + "2387": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "2583": { + "2388": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "2584": { + "2389": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "2585": { + "2390": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "2586": { + "2391": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "2587": { + "2392": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "2588": { + "2393": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "2589": { + "2394": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "2590": { + "2395": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Query" }, - "2591": { + "2396": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "2592": { + "2397": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ExpandScalar" }, - "2593": { + "2398": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "2594": { + "2399": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "2595": { + "2400": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "2596": { + "2401": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "2597": { + "2402": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "2598": { + "2403": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "2599": { + "2404": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "2600": { + "2405": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "2601": { + "2406": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "2602": { + "2407": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "2603": { + "2408": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "2604": { + "2409": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "2605": { + "2410": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "2606": { + "2411": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "2607": { + "2412": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "2608": { + "2413": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "2609": { + "2414": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "2610": { + "2415": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "2611": { + "2416": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "2612": { + "2417": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Scalar" }, - "2613": { + "2418": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "2614": { + "2419": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "2615": { + "2420": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "2616": { + "2421": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterQuery" }, - "2617": { + "2422": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "2618": { + "2423": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "2620": { + "2425": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "2621": { + "2426": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Prev" }, - "2622": { + "2427": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue" }, - "2623": { + "2428": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "2624": { + "2429": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "2625": { + "2430": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "2626": { + "2431": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" }, - "2627": { + "2432": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "PrevLimit" }, - "2628": { + "2433": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue2" }, - "2629": { + "2434": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "2630": { + "2435": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Primary" }, - "2631": { + "2436": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "2632": { + "2437": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.[PrimaryKeyType]" }, - "2633": { + "2438": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "2634": { + "2439": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type._id" }, - "2635": { + "2440": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "2636": { + "2441": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.uuid" }, - "2637": { + "2442": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "2638": { + "2443": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.id" }, - "2639": { + "2444": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "2640": { + "2445": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ReadonlyPrimary" }, - "2641": { + "2446": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" } @@ -18161,7 +18161,7 @@ "1": "../../../../packages/core/types/src/customer/service.ts" }, "reflections": { - "1": 2069 + "1": 1874 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/fulfillment-models.json b/www/utils/generated/typedoc-json-output/fulfillment-models.json index ba62e103220d5..d9ffa6136ca68 100644 --- a/www/utils/generated/typedoc-json-output/fulfillment-models.json +++ b/www/utils/generated/typedoc-json-output/fulfillment-models.json @@ -1,5 +1,5 @@ { - "id": 4104, + "id": 4148, "name": "fulfillment-models", "variant": "project", "kind": 1, @@ -18,28 +18,28 @@ }, "children": [ { - "id": 4105, + "id": 4149, "name": "Address", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4106, + "id": 4150, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4107, + "id": 4151, "name": "new Address", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4105, + "target": 4149, "name": "Address", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -48,7 +48,7 @@ ] }, { - "id": 4127, + "id": 4171, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -57,14 +57,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 4108, + "id": 4152, "name": "id", "variant": "declaration", "kind": 1024, @@ -75,7 +75,7 @@ } }, { - "id": 4109, + "id": 4153, "name": "company", "variant": "declaration", "kind": 1024, @@ -96,7 +96,7 @@ "defaultValue": "null" }, { - "id": 4110, + "id": 4154, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -117,7 +117,7 @@ "defaultValue": "null" }, { - "id": 4111, + "id": 4155, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -138,7 +138,7 @@ "defaultValue": "null" }, { - "id": 4112, + "id": 4156, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -159,7 +159,7 @@ "defaultValue": "null" }, { - "id": 4113, + "id": 4157, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -180,7 +180,7 @@ "defaultValue": "null" }, { - "id": 4114, + "id": 4158, "name": "city", "variant": "declaration", "kind": 1024, @@ -201,7 +201,7 @@ "defaultValue": "null" }, { - "id": 4115, + "id": 4159, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -222,7 +222,7 @@ "defaultValue": "null" }, { - "id": 4116, + "id": 4160, "name": "province", "variant": "declaration", "kind": 1024, @@ -243,7 +243,7 @@ "defaultValue": "null" }, { - "id": 4117, + "id": 4161, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -264,7 +264,7 @@ "defaultValue": "null" }, { - "id": 4118, + "id": 4162, "name": "phone", "variant": "declaration", "kind": 1024, @@ -285,7 +285,7 @@ "defaultValue": "null" }, { - "id": 4119, + "id": 4163, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -321,7 +321,7 @@ "defaultValue": "null" }, { - "id": 4120, + "id": 4164, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -337,7 +337,7 @@ } }, { - "id": 4121, + "id": 4165, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -353,7 +353,7 @@ } }, { - "id": 4122, + "id": 4166, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -379,14 +379,14 @@ "defaultValue": "null" }, { - "id": 4123, + "id": 4167, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4124, + "id": 4168, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -399,14 +399,14 @@ ] }, { - "id": 4125, + "id": 4169, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4126, + "id": 4170, "name": "onInit", "variant": "signature", "kind": 4096, @@ -423,62 +423,62 @@ { "title": "Constructors", "children": [ - 4106 + 4150 ] }, { "title": "Properties", "children": [ - 4127, - 4108, - 4109, - 4110, - 4111, - 4112, - 4113, - 4114, - 4115, - 4116, - 4117, - 4118, - 4119, - 4120, - 4121, - 4122 + 4171, + 4152, + 4153, + 4154, + 4155, + 4156, + 4157, + 4158, + 4159, + 4160, + 4161, + 4162, + 4163, + 4164, + 4165, + 4166 ] }, { "title": "Methods", "children": [ - 4123, - 4125 + 4167, + 4169 ] } ] }, { - "id": 4154, + "id": 4198, "name": "FulfillmentItem", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4155, + "id": 4199, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4156, + "id": 4200, "name": "new FulfillmentItem", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4154, + "target": 4198, "name": "FulfillmentItem", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -487,7 +487,7 @@ ] }, { - "id": 4174, + "id": 4218, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -498,14 +498,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 4157, + "id": 4201, "name": "id", "variant": "declaration", "kind": 1024, @@ -516,7 +516,7 @@ } }, { - "id": 4158, + "id": 4202, "name": "title", "variant": "declaration", "kind": 1024, @@ -527,7 +527,7 @@ } }, { - "id": 4159, + "id": 4203, "name": "sku", "variant": "declaration", "kind": 1024, @@ -538,7 +538,7 @@ } }, { - "id": 4160, + "id": 4204, "name": "barcode", "variant": "declaration", "kind": 1024, @@ -549,7 +549,7 @@ } }, { - "id": 4161, + "id": 4205, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -574,7 +574,7 @@ } }, { - "id": 4162, + "id": 4206, "name": "raw_quantity", "variant": "declaration", "kind": 1024, @@ -590,7 +590,7 @@ } }, { - "id": 4163, + "id": 4207, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -611,7 +611,7 @@ "defaultValue": "null" }, { - "id": 4164, + "id": 4208, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -632,7 +632,7 @@ "defaultValue": "null" }, { - "id": 4165, + "id": 4209, "name": "fulfillment_id", "variant": "declaration", "kind": 1024, @@ -643,21 +643,21 @@ } }, { - "id": 4166, + "id": 4210, "name": "fulfillment", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4128, + "target": 4172, "name": "Fulfillment", "package": "@medusajs/fulfillment", "qualifiedName": "default" } }, { - "id": 4167, + "id": 4211, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -673,7 +673,7 @@ } }, { - "id": 4168, + "id": 4212, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -689,7 +689,7 @@ } }, { - "id": 4169, + "id": 4213, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -715,14 +715,14 @@ "defaultValue": "null" }, { - "id": 4170, + "id": 4214, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4171, + "id": 4215, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -735,14 +735,14 @@ ] }, { - "id": 4172, + "id": 4216, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4173, + "id": 4217, "name": "onInit", "variant": "signature", "kind": 4096, @@ -759,60 +759,60 @@ { "title": "Constructors", "children": [ - 4155 + 4199 ] }, { "title": "Properties", "children": [ - 4174, - 4157, - 4158, - 4159, - 4160, - 4161, - 4162, - 4163, - 4164, - 4165, - 4166, - 4167, - 4168, - 4169 + 4218, + 4201, + 4202, + 4203, + 4204, + 4205, + 4206, + 4207, + 4208, + 4209, + 4210, + 4211, + 4212, + 4213 ] }, { "title": "Methods", "children": [ - 4170, - 4172 + 4214, + 4216 ] } ] }, { - "id": 4175, + "id": 4219, "name": "FulfillmentLabel", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4176, + "id": 4220, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4177, + "id": 4221, "name": "new FulfillmentLabel", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4175, + "target": 4219, "name": "FulfillmentLabel", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -821,7 +821,7 @@ ] }, { - "id": 4191, + "id": 4235, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -832,14 +832,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 4178, + "id": 4222, "name": "id", "variant": "declaration", "kind": 1024, @@ -850,7 +850,7 @@ } }, { - "id": 4179, + "id": 4223, "name": "tracking_number", "variant": "declaration", "kind": 1024, @@ -861,7 +861,7 @@ } }, { - "id": 4180, + "id": 4224, "name": "tracking_url", "variant": "declaration", "kind": 1024, @@ -872,7 +872,7 @@ } }, { - "id": 4181, + "id": 4225, "name": "label_url", "variant": "declaration", "kind": 1024, @@ -883,7 +883,7 @@ } }, { - "id": 4182, + "id": 4226, "name": "fulfillment_id", "variant": "declaration", "kind": 1024, @@ -894,21 +894,21 @@ } }, { - "id": 4183, + "id": 4227, "name": "fulfillment", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4128, + "target": 4172, "name": "Fulfillment", "package": "@medusajs/fulfillment", "qualifiedName": "default" } }, { - "id": 4184, + "id": 4228, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -924,7 +924,7 @@ } }, { - "id": 4185, + "id": 4229, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -940,7 +940,7 @@ } }, { - "id": 4186, + "id": 4230, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -966,14 +966,14 @@ "defaultValue": "null" }, { - "id": 4187, + "id": 4231, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4188, + "id": 4232, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -986,14 +986,14 @@ ] }, { - "id": 4189, + "id": 4233, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4190, + "id": 4234, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1010,56 +1010,56 @@ { "title": "Constructors", "children": [ - 4176 + 4220 ] }, { "title": "Properties", "children": [ - 4191, - 4178, - 4179, - 4180, - 4181, - 4182, - 4183, - 4184, - 4185, - 4186 + 4235, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230 ] }, { "title": "Methods", "children": [ - 4187, - 4189 + 4231, + 4233 ] } ] }, { - "id": 4192, + "id": 4236, "name": "FulfillmentProvider", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4193, + "id": 4237, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4194, + "id": 4238, "name": "new FulfillmentProvider", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4192, + "target": 4236, "name": "FulfillmentProvider", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -1068,7 +1068,7 @@ ] }, { - "id": 4195, + "id": 4239, "name": "id", "variant": "declaration", "kind": 1024, @@ -1079,7 +1079,7 @@ } }, { - "id": 4196, + "id": 4240, "name": "is_enabled", "variant": "declaration", "kind": 1024, @@ -1091,14 +1091,14 @@ "defaultValue": "true" }, { - "id": 4197, + "id": 4241, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4198, + "id": 4242, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1111,14 +1111,14 @@ ] }, { - "id": 4199, + "id": 4243, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4200, + "id": 4244, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1135,48 +1135,48 @@ { "title": "Constructors", "children": [ - 4193 + 4237 ] }, { "title": "Properties", "children": [ - 4195, - 4196 + 4239, + 4240 ] }, { "title": "Methods", "children": [ - 4197, - 4199 + 4241, + 4243 ] } ] }, { - "id": 4201, + "id": 4245, "name": "FulfillmentSet", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4202, + "id": 4246, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4203, + "id": 4247, "name": "new FulfillmentSet", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4201, + "target": 4245, "name": "FulfillmentSet", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -1185,7 +1185,7 @@ ] }, { - "id": 4216, + "id": 4260, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -1196,14 +1196,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 4204, + "id": 4248, "name": "id", "variant": "declaration", "kind": 1024, @@ -1214,7 +1214,7 @@ } }, { - "id": 4205, + "id": 4249, "name": "name", "variant": "declaration", "kind": 1024, @@ -1225,7 +1225,7 @@ } }, { - "id": 4206, + "id": 4250, "name": "type", "variant": "declaration", "kind": 1024, @@ -1236,7 +1236,7 @@ } }, { - "id": 4207, + "id": 4251, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1272,7 +1272,7 @@ "defaultValue": "null" }, { - "id": 4208, + "id": 4252, "name": "service_zones", "variant": "declaration", "kind": 1024, @@ -1286,7 +1286,7 @@ "typeArguments": [ { "type": "reference", - "target": 4237, + "target": 4281, "name": "ServiceZone", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -1302,7 +1302,7 @@ "defaultValue": "..." }, { - "id": 4209, + "id": 4253, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1318,7 +1318,7 @@ } }, { - "id": 4210, + "id": 4254, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1334,7 +1334,7 @@ } }, { - "id": 4211, + "id": 4255, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1360,14 +1360,14 @@ "defaultValue": "null" }, { - "id": 4212, + "id": 4256, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4213, + "id": 4257, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1380,14 +1380,14 @@ ] }, { - "id": 4214, + "id": 4258, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4215, + "id": 4259, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1404,55 +1404,55 @@ { "title": "Constructors", "children": [ - 4202 + 4246 ] }, { "title": "Properties", "children": [ - 4216, - 4204, - 4205, - 4206, - 4207, - 4208, - 4209, - 4210, - 4211 + 4260, + 4248, + 4249, + 4250, + 4251, + 4252, + 4253, + 4254, + 4255 ] }, { "title": "Methods", "children": [ - 4212, - 4214 + 4256, + 4258 ] } ] }, { - "id": 4128, + "id": 4172, "name": "Fulfillment", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4129, + "id": 4173, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4130, + "id": 4174, "name": "new Fulfillment", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4128, + "target": 4172, "name": "Fulfillment", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -1461,7 +1461,7 @@ ] }, { - "id": 4153, + "id": 4197, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -1472,14 +1472,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 4131, + "id": 4175, "name": "id", "variant": "declaration", "kind": 1024, @@ -1490,7 +1490,7 @@ } }, { - "id": 4132, + "id": 4176, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -1501,7 +1501,7 @@ } }, { - "id": 4133, + "id": 4177, "name": "packed_at", "variant": "declaration", "kind": 1024, @@ -1527,7 +1527,7 @@ "defaultValue": "null" }, { - "id": 4134, + "id": 4178, "name": "shipped_at", "variant": "declaration", "kind": 1024, @@ -1553,7 +1553,7 @@ "defaultValue": "null" }, { - "id": 4135, + "id": 4179, "name": "delivered_at", "variant": "declaration", "kind": 1024, @@ -1579,7 +1579,7 @@ "defaultValue": "null" }, { - "id": 4136, + "id": 4180, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -1605,7 +1605,7 @@ "defaultValue": "null" }, { - "id": 4137, + "id": 4181, "name": "data", "variant": "declaration", "kind": 1024, @@ -1641,7 +1641,7 @@ "defaultValue": "null" }, { - "id": 4138, + "id": 4182, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -1652,7 +1652,7 @@ } }, { - "id": 4139, + "id": 4183, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -1673,7 +1673,7 @@ "defaultValue": "null" }, { - "id": 4140, + "id": 4184, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1709,7 +1709,7 @@ "defaultValue": "null" }, { - "id": 4141, + "id": 4185, "name": "shipping_option", "variant": "declaration", "kind": 1024, @@ -1723,7 +1723,7 @@ }, { "type": "reference", - "target": 4255, + "target": 4299, "name": "ShippingOption", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -1732,35 +1732,35 @@ } }, { - "id": 4142, + "id": 4186, "name": "provider", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4192, + "target": 4236, "name": "FulfillmentProvider", "package": "@medusajs/fulfillment", "qualifiedName": "default" } }, { - "id": 4143, + "id": 4187, "name": "delivery_address", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4105, + "target": 4149, "name": "Address", "package": "@medusajs/fulfillment", "qualifiedName": "default" } }, { - "id": 4144, + "id": 4188, "name": "items", "variant": "declaration", "kind": 1024, @@ -1774,7 +1774,7 @@ "typeArguments": [ { "type": "reference", - "target": 4154, + "target": 4198, "name": "FulfillmentItem", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -1790,7 +1790,7 @@ "defaultValue": "..." }, { - "id": 4145, + "id": 4189, "name": "labels", "variant": "declaration", "kind": 1024, @@ -1804,7 +1804,7 @@ "typeArguments": [ { "type": "reference", - "target": 4175, + "target": 4219, "name": "FulfillmentLabel", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -1820,7 +1820,7 @@ "defaultValue": "..." }, { - "id": 4146, + "id": 4190, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1836,7 +1836,7 @@ } }, { - "id": 4147, + "id": 4191, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1852,7 +1852,7 @@ } }, { - "id": 4148, + "id": 4192, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1878,14 +1878,14 @@ "defaultValue": "null" }, { - "id": 4149, + "id": 4193, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4150, + "id": 4194, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1898,14 +1898,14 @@ ] }, { - "id": 4151, + "id": 4195, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4152, + "id": 4196, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1922,65 +1922,65 @@ { "title": "Constructors", "children": [ - 4129 + 4173 ] }, { "title": "Properties", "children": [ - 4153, - 4131, - 4132, - 4133, - 4134, - 4135, - 4136, - 4137, - 4138, - 4139, - 4140, - 4141, - 4142, - 4143, - 4144, - 4145, - 4146, - 4147, - 4148 + 4197, + 4175, + 4176, + 4177, + 4178, + 4179, + 4180, + 4181, + 4182, + 4183, + 4184, + 4185, + 4186, + 4187, + 4188, + 4189, + 4190, + 4191, + 4192 ] }, { "title": "Methods", "children": [ - 4149, - 4151 + 4193, + 4195 ] } ] }, { - "id": 4217, + "id": 4261, "name": "GeoZone", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4218, + "id": 4262, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4219, + "id": 4263, "name": "new GeoZone", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4217, + "target": 4261, "name": "GeoZone", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -1989,7 +1989,7 @@ ] }, { - "id": 4236, + "id": 4280, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -2000,14 +2000,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 4220, + "id": 4264, "name": "id", "variant": "declaration", "kind": 1024, @@ -2018,7 +2018,7 @@ } }, { - "id": 4221, + "id": 4265, "name": "type", "variant": "declaration", "kind": 1024, @@ -2034,7 +2034,7 @@ } }, { - "id": 4222, + "id": 4266, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -2045,7 +2045,7 @@ } }, { - "id": 4223, + "id": 4267, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -2066,7 +2066,7 @@ "defaultValue": "null" }, { - "id": 4224, + "id": 4268, "name": "city", "variant": "declaration", "kind": 1024, @@ -2087,7 +2087,7 @@ "defaultValue": "null" }, { - "id": 4225, + "id": 4269, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -2098,7 +2098,7 @@ } }, { - "id": 4226, + "id": 4270, "name": "postal_expression", "variant": "declaration", "kind": 1024, @@ -2134,7 +2134,7 @@ "defaultValue": "null" }, { - "id": 4227, + "id": 4271, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2170,21 +2170,21 @@ "defaultValue": "null" }, { - "id": 4228, + "id": 4272, "name": "service_zone", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4237, + "target": 4281, "name": "ServiceZone", "package": "@medusajs/fulfillment", "qualifiedName": "default" } }, { - "id": 4229, + "id": 4273, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -2200,7 +2200,7 @@ } }, { - "id": 4230, + "id": 4274, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -2216,7 +2216,7 @@ } }, { - "id": 4231, + "id": 4275, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -2242,14 +2242,14 @@ "defaultValue": "null" }, { - "id": 4232, + "id": 4276, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4233, + "id": 4277, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -2262,14 +2262,14 @@ ] }, { - "id": 4234, + "id": 4278, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4235, + "id": 4279, "name": "onInit", "variant": "signature", "kind": 4096, @@ -2286,59 +2286,59 @@ { "title": "Constructors", "children": [ - 4218 + 4262 ] }, { "title": "Properties", "children": [ - 4236, - 4220, - 4221, - 4222, - 4223, - 4224, - 4225, - 4226, - 4227, - 4228, - 4229, - 4230, - 4231 + 4280, + 4264, + 4265, + 4266, + 4267, + 4268, + 4269, + 4270, + 4271, + 4272, + 4273, + 4274, + 4275 ] }, { "title": "Methods", "children": [ - 4232, - 4234 + 4276, + 4278 ] } ] }, { - "id": 4237, + "id": 4281, "name": "ServiceZone", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4238, + "id": 4282, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4239, + "id": 4283, "name": "new ServiceZone", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4237, + "target": 4281, "name": "ServiceZone", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -2347,7 +2347,7 @@ ] }, { - "id": 4254, + "id": 4298, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -2358,14 +2358,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 4240, + "id": 4284, "name": "id", "variant": "declaration", "kind": 1024, @@ -2376,7 +2376,7 @@ } }, { - "id": 4241, + "id": 4285, "name": "name", "variant": "declaration", "kind": 1024, @@ -2387,7 +2387,7 @@ } }, { - "id": 4242, + "id": 4286, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2423,7 +2423,7 @@ "defaultValue": "null" }, { - "id": 4243, + "id": 4287, "name": "fulfillment_set_id", "variant": "declaration", "kind": 1024, @@ -2434,21 +2434,21 @@ } }, { - "id": 4244, + "id": 4288, "name": "fulfillment_set", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4201, + "target": 4245, "name": "FulfillmentSet", "package": "@medusajs/fulfillment", "qualifiedName": "default" } }, { - "id": 4245, + "id": 4289, "name": "geo_zones", "variant": "declaration", "kind": 1024, @@ -2462,7 +2462,7 @@ "typeArguments": [ { "type": "reference", - "target": 4217, + "target": 4261, "name": "GeoZone", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -2478,7 +2478,7 @@ "defaultValue": "..." }, { - "id": 4246, + "id": 4290, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -2492,7 +2492,7 @@ "typeArguments": [ { "type": "reference", - "target": 4255, + "target": 4299, "name": "ShippingOption", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -2508,7 +2508,7 @@ "defaultValue": "..." }, { - "id": 4247, + "id": 4291, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -2524,7 +2524,7 @@ } }, { - "id": 4248, + "id": 4292, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -2540,7 +2540,7 @@ } }, { - "id": 4249, + "id": 4293, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -2566,14 +2566,14 @@ "defaultValue": "null" }, { - "id": 4250, + "id": 4294, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4251, + "id": 4295, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -2586,14 +2586,14 @@ ] }, { - "id": 4252, + "id": 4296, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4253, + "id": 4297, "name": "onInit", "variant": "signature", "kind": 4096, @@ -2610,57 +2610,57 @@ { "title": "Constructors", "children": [ - 4238 + 4282 ] }, { "title": "Properties", "children": [ - 4254, - 4240, - 4241, - 4242, - 4243, - 4244, - 4245, - 4246, - 4247, - 4248, - 4249 + 4298, + 4284, + 4285, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293 ] }, { "title": "Methods", "children": [ - 4250, - 4252 + 4294, + 4296 ] } ] }, { - "id": 4281, + "id": 4325, "name": "ShippingOptionRule", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4282, + "id": 4326, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4283, + "id": 4327, "name": "new ShippingOptionRule", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4281, + "target": 4325, "name": "ShippingOptionRule", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -2669,7 +2669,7 @@ ] }, { - "id": 4297, + "id": 4341, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -2680,14 +2680,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 4284, + "id": 4328, "name": "id", "variant": "declaration", "kind": 1024, @@ -2698,7 +2698,7 @@ } }, { - "id": 4285, + "id": 4329, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -2709,7 +2709,7 @@ } }, { - "id": 4286, + "id": 4330, "name": "operator", "variant": "declaration", "kind": 1024, @@ -2753,7 +2753,7 @@ } }, { - "id": 4287, + "id": 4331, "name": "value", "variant": "declaration", "kind": 1024, @@ -2781,7 +2781,7 @@ "defaultValue": "null" }, { - "id": 4288, + "id": 4332, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -2792,21 +2792,21 @@ } }, { - "id": 4289, + "id": 4333, "name": "shipping_option", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4255, + "target": 4299, "name": "ShippingOption", "package": "@medusajs/fulfillment", "qualifiedName": "default" } }, { - "id": 4290, + "id": 4334, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -2822,7 +2822,7 @@ } }, { - "id": 4291, + "id": 4335, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -2838,7 +2838,7 @@ } }, { - "id": 4292, + "id": 4336, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -2864,14 +2864,14 @@ "defaultValue": "null" }, { - "id": 4293, + "id": 4337, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4294, + "id": 4338, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -2884,14 +2884,14 @@ ] }, { - "id": 4295, + "id": 4339, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4296, + "id": 4340, "name": "onInit", "variant": "signature", "kind": 4096, @@ -2908,56 +2908,56 @@ { "title": "Constructors", "children": [ - 4282 + 4326 ] }, { "title": "Properties", "children": [ - 4297, - 4284, - 4285, - 4286, - 4287, - 4288, - 4289, - 4290, - 4291, - 4292 + 4341, + 4328, + 4329, + 4330, + 4331, + 4332, + 4333, + 4334, + 4335, + 4336 ] }, { "title": "Methods", "children": [ - 4293, - 4295 + 4337, + 4339 ] } ] }, { - "id": 4298, + "id": 4342, "name": "ShippingOptionType", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4299, + "id": 4343, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4300, + "id": 4344, "name": "new ShippingOptionType", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4298, + "target": 4342, "name": "ShippingOptionType", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -2966,7 +2966,7 @@ ] }, { - "id": 4313, + "id": 4357, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -2977,14 +2977,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 4301, + "id": 4345, "name": "id", "variant": "declaration", "kind": 1024, @@ -2995,7 +2995,7 @@ } }, { - "id": 4302, + "id": 4346, "name": "label", "variant": "declaration", "kind": 1024, @@ -3006,7 +3006,7 @@ } }, { - "id": 4303, + "id": 4347, "name": "description", "variant": "declaration", "kind": 1024, @@ -3027,7 +3027,7 @@ "defaultValue": "null" }, { - "id": 4304, + "id": 4348, "name": "code", "variant": "declaration", "kind": 1024, @@ -3038,21 +3038,21 @@ } }, { - "id": 4305, + "id": 4349, "name": "shipping_option", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4255, + "target": 4299, "name": "ShippingOption", "package": "@medusajs/fulfillment", "qualifiedName": "default" } }, { - "id": 4306, + "id": 4350, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3068,7 +3068,7 @@ } }, { - "id": 4307, + "id": 4351, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3084,7 +3084,7 @@ } }, { - "id": 4308, + "id": 4352, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3110,14 +3110,14 @@ "defaultValue": "null" }, { - "id": 4309, + "id": 4353, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4310, + "id": 4354, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -3130,14 +3130,14 @@ ] }, { - "id": 4311, + "id": 4355, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4312, + "id": 4356, "name": "onInit", "variant": "signature", "kind": 4096, @@ -3154,55 +3154,55 @@ { "title": "Constructors", "children": [ - 4299 + 4343 ] }, { "title": "Properties", "children": [ - 4313, - 4301, - 4302, - 4303, - 4304, - 4305, - 4306, - 4307, - 4308 + 4357, + 4345, + 4346, + 4347, + 4348, + 4349, + 4350, + 4351, + 4352 ] }, { "title": "Methods", "children": [ - 4309, - 4311 + 4353, + 4355 ] } ] }, { - "id": 4255, + "id": 4299, "name": "ShippingOption", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4256, + "id": 4300, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4257, + "id": 4301, "name": "new ShippingOption", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4255, + "target": 4299, "name": "ShippingOption", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -3211,7 +3211,7 @@ ] }, { - "id": 4280, + "id": 4324, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -3222,14 +3222,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 4258, + "id": 4302, "name": "id", "variant": "declaration", "kind": 1024, @@ -3240,7 +3240,7 @@ } }, { - "id": 4259, + "id": 4303, "name": "name", "variant": "declaration", "kind": 1024, @@ -3251,7 +3251,7 @@ } }, { - "id": 4260, + "id": 4304, "name": "price_type", "variant": "declaration", "kind": 1024, @@ -3267,7 +3267,7 @@ } }, { - "id": 4261, + "id": 4305, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -3278,7 +3278,7 @@ } }, { - "id": 4262, + "id": 4306, "name": "shipping_profile_id", "variant": "declaration", "kind": 1024, @@ -3298,7 +3298,7 @@ } }, { - "id": 4263, + "id": 4307, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -3309,7 +3309,7 @@ } }, { - "id": 4264, + "id": 4308, "name": "shipping_option_type_id", "variant": "declaration", "kind": 1024, @@ -3330,7 +3330,7 @@ "defaultValue": "null" }, { - "id": 4265, + "id": 4309, "name": "data", "variant": "declaration", "kind": 1024, @@ -3366,7 +3366,7 @@ "defaultValue": "null" }, { - "id": 4266, + "id": 4310, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3402,21 +3402,21 @@ "defaultValue": "null" }, { - "id": 4267, + "id": 4311, "name": "service_zone", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4237, + "target": 4281, "name": "ServiceZone", "package": "@medusajs/fulfillment", "qualifiedName": "default" } }, { - "id": 4268, + "id": 4312, "name": "shipping_profile", "variant": "declaration", "kind": 1024, @@ -3430,7 +3430,7 @@ }, { "type": "reference", - "target": 4314, + "target": 4358, "name": "ShippingProfile", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -3439,7 +3439,7 @@ } }, { - "id": 4269, + "id": 4313, "name": "provider", "variant": "declaration", "kind": 1024, @@ -3453,7 +3453,7 @@ }, { "type": "reference", - "target": 4192, + "target": 4236, "name": "FulfillmentProvider", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -3462,21 +3462,21 @@ } }, { - "id": 4270, + "id": 4314, "name": "type", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4298, + "target": 4342, "name": "ShippingOptionType", "package": "@medusajs/fulfillment", "qualifiedName": "default" } }, { - "id": 4271, + "id": 4315, "name": "rules", "variant": "declaration", "kind": 1024, @@ -3490,7 +3490,7 @@ "typeArguments": [ { "type": "reference", - "target": 4281, + "target": 4325, "name": "ShippingOptionRule", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -3506,7 +3506,7 @@ "defaultValue": "..." }, { - "id": 4272, + "id": 4316, "name": "fulfillments", "variant": "declaration", "kind": 1024, @@ -3520,7 +3520,7 @@ "typeArguments": [ { "type": "reference", - "target": 4128, + "target": 4172, "name": "Fulfillment", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -3536,7 +3536,7 @@ "defaultValue": "..." }, { - "id": 4273, + "id": 4317, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3552,7 +3552,7 @@ } }, { - "id": 4274, + "id": 4318, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3568,7 +3568,7 @@ } }, { - "id": 4275, + "id": 4319, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3594,14 +3594,14 @@ "defaultValue": "null" }, { - "id": 4276, + "id": 4320, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4277, + "id": 4321, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -3614,14 +3614,14 @@ ] }, { - "id": 4278, + "id": 4322, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4279, + "id": 4323, "name": "onInit", "variant": "signature", "kind": 4096, @@ -3638,65 +3638,65 @@ { "title": "Constructors", "children": [ - 4256 + 4300 ] }, { "title": "Properties", "children": [ - 4280, - 4258, - 4259, - 4260, - 4261, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4271, - 4272, - 4273, - 4274, - 4275 + 4324, + 4302, + 4303, + 4304, + 4305, + 4306, + 4307, + 4308, + 4309, + 4310, + 4311, + 4312, + 4313, + 4314, + 4315, + 4316, + 4317, + 4318, + 4319 ] }, { "title": "Methods", "children": [ - 4276, - 4278 + 4320, + 4322 ] } ] }, { - "id": 4314, + "id": 4358, "name": "ShippingProfile", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4315, + "id": 4359, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4316, + "id": 4360, "name": "new ShippingProfile", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4314, + "target": 4358, "name": "ShippingProfile", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -3705,7 +3705,7 @@ ] }, { - "id": 4329, + "id": 4373, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -3716,14 +3716,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 4317, + "id": 4361, "name": "id", "variant": "declaration", "kind": 1024, @@ -3734,7 +3734,7 @@ } }, { - "id": 4318, + "id": 4362, "name": "name", "variant": "declaration", "kind": 1024, @@ -3745,7 +3745,7 @@ } }, { - "id": 4319, + "id": 4363, "name": "type", "variant": "declaration", "kind": 1024, @@ -3756,7 +3756,7 @@ } }, { - "id": 4320, + "id": 4364, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -3770,7 +3770,7 @@ "typeArguments": [ { "type": "reference", - "target": 4255, + "target": 4299, "name": "ShippingOption", "package": "@medusajs/fulfillment", "qualifiedName": "default" @@ -3786,7 +3786,7 @@ "defaultValue": "..." }, { - "id": 4321, + "id": 4365, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3822,7 +3822,7 @@ "defaultValue": "null" }, { - "id": 4322, + "id": 4366, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3838,7 +3838,7 @@ } }, { - "id": 4323, + "id": 4367, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3854,7 +3854,7 @@ } }, { - "id": 4324, + "id": 4368, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3880,14 +3880,14 @@ "defaultValue": "null" }, { - "id": 4325, + "id": 4369, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4326, + "id": 4370, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -3900,14 +3900,14 @@ ] }, { - "id": 4327, + "id": 4371, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4328, + "id": 4372, "name": "onInit", "variant": "signature", "kind": 4096, @@ -3924,28 +3924,28 @@ { "title": "Constructors", "children": [ - 4315 + 4359 ] }, { "title": "Properties", "children": [ - 4329, - 4317, - 4318, - 4319, - 4320, - 4321, - 4322, - 4323, - 4324 + 4373, + 4361, + 4362, + 4363, + 4364, + 4365, + 4366, + 4367, + 4368 ] }, { "title": "Methods", "children": [ - 4325, - 4327 + 4369, + 4371 ] } ] @@ -3955,828 +3955,828 @@ { "title": "Classes", "children": [ - 4105, - 4154, - 4175, - 4192, - 4201, - 4128, - 4217, - 4237, + 4149, + 4198, + 4219, + 4236, + 4245, + 4172, + 4261, 4281, - 4298, - 4255, - 4314 + 4325, + 4342, + 4299, + 4358 ] } ], "packageName": "@medusajs/fulfillment", "symbolIdMap": { - "4104": { + "4148": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/index.ts", "qualifiedName": "" }, - "4105": { + "4149": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default" }, - "4108": { + "4152": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.id" }, - "4109": { + "4153": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.company" }, - "4110": { + "4154": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.first_name" }, - "4111": { + "4155": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.last_name" }, - "4112": { + "4156": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.address_1" }, - "4113": { + "4157": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.address_2" }, - "4114": { + "4158": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.city" }, - "4115": { + "4159": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.country_code" }, - "4116": { + "4160": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.province" }, - "4117": { + "4161": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.postal_code" }, - "4118": { + "4162": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.phone" }, - "4119": { + "4163": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.metadata" }, - "4120": { + "4164": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.created_at" }, - "4121": { + "4165": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.updated_at" }, - "4122": { + "4166": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.deleted_at" }, - "4123": { + "4167": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.onCreate" }, - "4124": { + "4168": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.onCreate" }, - "4125": { + "4169": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.onInit" }, - "4126": { + "4170": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.onInit" }, - "4127": { + "4171": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/address.ts", "qualifiedName": "default.[OptionalProps]" }, - "4128": { + "4172": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default" }, - "4131": { + "4175": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.id" }, - "4132": { + "4176": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.location_id" }, - "4133": { + "4177": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.packed_at" }, - "4134": { + "4178": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.shipped_at" }, - "4135": { + "4179": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.delivered_at" }, - "4136": { + "4180": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.canceled_at" }, - "4137": { + "4181": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.data" }, - "4138": { + "4182": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.provider_id" }, - "4139": { + "4183": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.shipping_option_id" }, - "4140": { + "4184": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.metadata" }, - "4141": { + "4185": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.shipping_option" }, - "4142": { + "4186": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.provider" }, - "4143": { + "4187": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.delivery_address" }, - "4144": { + "4188": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.items" }, - "4145": { + "4189": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.labels" }, - "4146": { + "4190": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.created_at" }, - "4147": { + "4191": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.updated_at" }, - "4148": { + "4192": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.deleted_at" }, - "4149": { + "4193": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.onCreate" }, - "4150": { + "4194": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.onCreate" }, - "4151": { + "4195": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.onInit" }, - "4152": { + "4196": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.onInit" }, - "4153": { + "4197": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment.ts", "qualifiedName": "default.[OptionalProps]" }, - "4154": { + "4198": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default" }, - "4157": { + "4201": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.id" }, - "4158": { + "4202": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.title" }, - "4159": { + "4203": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.sku" }, - "4160": { + "4204": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.barcode" }, - "4161": { + "4205": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.quantity" }, - "4162": { + "4206": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.raw_quantity" }, - "4163": { + "4207": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.line_item_id" }, - "4164": { + "4208": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.inventory_item_id" }, - "4165": { + "4209": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.fulfillment_id" }, - "4166": { + "4210": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.fulfillment" }, - "4167": { + "4211": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.created_at" }, - "4168": { + "4212": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.updated_at" }, - "4169": { + "4213": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.deleted_at" }, - "4170": { + "4214": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.onCreate" }, - "4171": { + "4215": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.onCreate" }, - "4172": { + "4216": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.onInit" }, - "4173": { + "4217": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.onInit" }, - "4174": { + "4218": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-item.ts", "qualifiedName": "default.[OptionalProps]" }, - "4175": { + "4219": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default" }, - "4178": { + "4222": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.id" }, - "4179": { + "4223": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.tracking_number" }, - "4180": { + "4224": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.tracking_url" }, - "4181": { + "4225": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.label_url" }, - "4182": { + "4226": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.fulfillment_id" }, - "4183": { + "4227": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.fulfillment" }, - "4184": { + "4228": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.created_at" }, - "4185": { + "4229": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.updated_at" }, - "4186": { + "4230": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.deleted_at" }, - "4187": { + "4231": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.onCreate" }, - "4188": { + "4232": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.onCreate" }, - "4189": { + "4233": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.onInit" }, - "4190": { + "4234": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.onInit" }, - "4191": { + "4235": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-label.ts", "qualifiedName": "default.[OptionalProps]" }, - "4192": { + "4236": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-provider.ts", "qualifiedName": "default" }, - "4195": { + "4239": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-provider.ts", "qualifiedName": "default.id" }, - "4196": { + "4240": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-provider.ts", "qualifiedName": "default.is_enabled" }, - "4197": { + "4241": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-provider.ts", "qualifiedName": "default.onCreate" }, - "4198": { + "4242": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-provider.ts", "qualifiedName": "default.onCreate" }, - "4199": { + "4243": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-provider.ts", "qualifiedName": "default.onInit" }, - "4200": { + "4244": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-provider.ts", "qualifiedName": "default.onInit" }, - "4201": { + "4245": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default" }, - "4204": { + "4248": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default.id" }, - "4205": { + "4249": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default.name" }, - "4206": { + "4250": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default.type" }, - "4207": { + "4251": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default.metadata" }, - "4208": { + "4252": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default.service_zones" }, - "4209": { + "4253": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default.created_at" }, - "4210": { + "4254": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default.updated_at" }, - "4211": { + "4255": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default.deleted_at" }, - "4212": { + "4256": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default.onCreate" }, - "4213": { + "4257": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default.onCreate" }, - "4214": { + "4258": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default.onInit" }, - "4215": { + "4259": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default.onInit" }, - "4216": { + "4260": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/fulfillment-set.ts", "qualifiedName": "default.[OptionalProps]" }, - "4217": { + "4261": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default" }, - "4220": { + "4264": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.id" }, - "4221": { + "4265": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.type" }, - "4222": { + "4266": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.country_code" }, - "4223": { + "4267": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.province_code" }, - "4224": { + "4268": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.city" }, - "4225": { + "4269": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.service_zone_id" }, - "4226": { + "4270": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.postal_expression" }, - "4227": { + "4271": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.metadata" }, - "4228": { + "4272": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.service_zone" }, - "4229": { + "4273": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.created_at" }, - "4230": { + "4274": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.updated_at" }, - "4231": { + "4275": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.deleted_at" }, - "4232": { + "4276": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.onCreate" }, - "4233": { + "4277": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.onCreate" }, - "4234": { + "4278": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.onInit" }, - "4235": { + "4279": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.onInit" }, - "4236": { + "4280": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/geo-zone.ts", "qualifiedName": "default.[OptionalProps]" }, - "4237": { + "4281": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default" }, - "4240": { + "4284": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.id" }, - "4241": { + "4285": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.name" }, - "4242": { + "4286": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.metadata" }, - "4243": { + "4287": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.fulfillment_set_id" }, - "4244": { + "4288": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.fulfillment_set" }, - "4245": { + "4289": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.geo_zones" }, - "4246": { + "4290": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.shipping_options" }, - "4247": { + "4291": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.created_at" }, - "4248": { + "4292": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.updated_at" }, - "4249": { + "4293": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.deleted_at" }, - "4250": { + "4294": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.onCreate" }, - "4251": { + "4295": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.onCreate" }, - "4252": { + "4296": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.onInit" }, - "4253": { + "4297": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.onInit" }, - "4254": { + "4298": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/service-zone.ts", "qualifiedName": "default.[OptionalProps]" }, - "4255": { + "4299": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default" }, - "4258": { + "4302": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.id" }, - "4259": { + "4303": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.name" }, - "4260": { + "4304": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.price_type" }, - "4261": { + "4305": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.service_zone_id" }, - "4262": { + "4306": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.shipping_profile_id" }, - "4263": { + "4307": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.provider_id" }, - "4264": { + "4308": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.shipping_option_type_id" }, - "4265": { + "4309": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.data" }, - "4266": { + "4310": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.metadata" }, - "4267": { + "4311": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.service_zone" }, - "4268": { + "4312": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.shipping_profile" }, - "4269": { + "4313": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.provider" }, - "4270": { + "4314": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.type" }, - "4271": { + "4315": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.rules" }, - "4272": { + "4316": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.fulfillments" }, - "4273": { + "4317": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.created_at" }, - "4274": { + "4318": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.updated_at" }, - "4275": { + "4319": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.deleted_at" }, - "4276": { + "4320": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.onCreate" }, - "4277": { + "4321": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.onCreate" }, - "4278": { + "4322": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.onInit" }, - "4279": { + "4323": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.onInit" }, - "4280": { + "4324": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option.ts", "qualifiedName": "default.[OptionalProps]" }, - "4281": { + "4325": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default" }, - "4284": { + "4328": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.id" }, - "4285": { + "4329": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.attribute" }, - "4286": { + "4330": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.operator" }, - "4287": { + "4331": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.value" }, - "4288": { + "4332": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.shipping_option_id" }, - "4289": { + "4333": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.shipping_option" }, - "4290": { + "4334": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.created_at" }, - "4291": { + "4335": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.updated_at" }, - "4292": { + "4336": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.deleted_at" }, - "4293": { + "4337": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.onCreate" }, - "4294": { + "4338": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.onCreate" }, - "4295": { + "4339": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.onInit" }, - "4296": { + "4340": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.onInit" }, - "4297": { + "4341": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-rule.ts", "qualifiedName": "default.[OptionalProps]" }, - "4298": { + "4342": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default" }, - "4301": { + "4345": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default.id" }, - "4302": { + "4346": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default.label" }, - "4303": { + "4347": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default.description" }, - "4304": { + "4348": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default.code" }, - "4305": { + "4349": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default.shipping_option" }, - "4306": { + "4350": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default.created_at" }, - "4307": { + "4351": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default.updated_at" }, - "4308": { + "4352": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default.deleted_at" }, - "4309": { + "4353": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default.onCreate" }, - "4310": { + "4354": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default.onCreate" }, - "4311": { + "4355": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default.onInit" }, - "4312": { + "4356": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default.onInit" }, - "4313": { + "4357": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-option-type.ts", "qualifiedName": "default.[OptionalProps]" }, - "4314": { + "4358": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default" }, - "4317": { + "4361": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default.id" }, - "4318": { + "4362": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default.name" }, - "4319": { + "4363": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default.type" }, - "4320": { + "4364": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default.shipping_options" }, - "4321": { + "4365": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default.metadata" }, - "4322": { + "4366": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default.created_at" }, - "4323": { + "4367": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default.updated_at" }, - "4324": { + "4368": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default.deleted_at" }, - "4325": { + "4369": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default.onCreate" }, - "4326": { + "4370": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default.onCreate" }, - "4327": { + "4371": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default.onInit" }, - "4328": { + "4372": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default.onInit" }, - "4329": { + "4373": { "sourceFileName": "../../../../packages/modules/fulfillment/src/models/shipping-profile.ts", "qualifiedName": "default.[OptionalProps]" } @@ -4786,7 +4786,7 @@ "1": "../../../../packages/modules/fulfillment/src/models/index.ts" }, "reflections": { - "1": 4104 + "1": 4148 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/fulfillment.json b/www/utils/generated/typedoc-json-output/fulfillment.json index b33d793e91255..b09410baceb5a 100644 --- a/www/utils/generated/typedoc-json-output/fulfillment.json +++ b/www/utils/generated/typedoc-json-output/fulfillment.json @@ -1,12 +1,12 @@ { - "id": 2725, + "id": 2530, "name": "fulfillment", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 3132, + "id": 2937, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 3133, + "id": 2938, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 3144, + "target": 2949, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 3134, + "id": 2939, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 3135, + "id": 2940, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 3136, + "id": 2941, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 3137, + "id": 2942, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 3138, + "id": 2943, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 3139, + "id": 2944, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 3140, + "id": 2945, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 3141, + "id": 2946, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 3142, + "id": 2947, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 3143, + "id": 2948, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 3133, - 3134, - 3135, - 3136, - 3137, - 3141, - 3142, - 3143 + 2938, + 2939, + 2940, + 2941, + 2942, + 2946, + 2947, + 2948 ] } ], "typeParameters": [ { - "id": 3144, + "id": 2949, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 3601, + "id": 3406, "name": "RuleOperatorType", "variant": "declaration", "kind": 2097152, @@ -411,7 +411,7 @@ } }, { - "id": 3512, + "id": 3317, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -426,7 +426,7 @@ }, "children": [ { - "id": 3513, + "id": 3318, "name": "$and", "variant": "declaration", "kind": 1024, @@ -448,11 +448,11 @@ "types": [ { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3515, + "target": 3320, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -464,7 +464,7 @@ }, { "type": "reference", - "target": 3515, + "target": 3320, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -475,7 +475,7 @@ } }, { - "id": 3514, + "id": 3319, "name": "$or", "variant": "declaration", "kind": 1024, @@ -497,11 +497,11 @@ "types": [ { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3515, + "target": 3320, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -513,7 +513,7 @@ }, { "type": "reference", - "target": 3515, + "target": 3320, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -528,14 +528,14 @@ { "title": "Properties", "children": [ - 3513, - 3514 + 3318, + 3319 ] } ], "typeParameters": [ { - "id": 3515, + "id": 3320, "name": "T", "variant": "typeParam", "kind": 131072, @@ -545,53 +545,53 @@ "extendedBy": [ { "type": "reference", - "target": 3166, + "target": 2971, "name": "FilterableFulfillmentSetProps" }, { "type": "reference", - "target": 3200, + "target": 3005, "name": "FilterableServiceZoneProps" }, { "type": "reference", - "target": 3235, + "target": 3040, "name": "FilterableGeoZoneProps" }, { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps" }, { "type": "reference", - "target": 3339, + "target": 3144, "name": "FilterableShippingProfileProps" }, { "type": "reference", - "target": 3371, + "target": 3176, "name": "FilterableShippingOptionRuleProps" }, { "type": "reference", - "target": 3399, + "target": 3204, "name": "FilterableShippingOptionTypeProps" }, { "type": "reference", - "target": 3425, + "target": 3230, "name": "FilterableFulfillmentProps" }, { "type": "reference", - "target": 3462, + "target": 3267, "name": "FilterableFulfillmentProviderProps" } ] }, { - "id": 3184, + "id": 2989, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -606,7 +606,7 @@ }, "children": [ { - "id": 3185, + "id": 2990, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -625,7 +625,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3186, + "target": 2991, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -637,13 +637,13 @@ { "title": "Properties", "children": [ - 3185 + 2990 ] } ], "typeParameters": [ { - "id": 3186, + "id": 2991, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -656,7 +656,7 @@ ] }, { - "id": 3187, + "id": 2992, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -671,7 +671,7 @@ }, "children": [ { - "id": 3188, + "id": 2993, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -690,7 +690,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3189, + "target": 2994, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -702,13 +702,13 @@ { "title": "Properties", "children": [ - 3188 + 2993 ] } ], "typeParameters": [ { - "id": 3189, + "id": 2994, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -721,14 +721,14 @@ ] }, { - "id": 3774, + "id": 3580, "name": "Query", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3775, + "id": 3581, "name": "T", "variant": "typeParam", "kind": 131072, @@ -739,7 +739,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 3775, + "target": 3581, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -752,14 +752,14 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 3775, + "target": 3581, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 3953, + "target": 3785, "name": "Scalar", "package": "@medusajs/types" }, @@ -769,11 +769,11 @@ }, "falseType": { "type": "reference", - "target": 3957, + "target": 3789, "typeArguments": [ { "type": "reference", - "target": 3775, + "target": 3581, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -785,11 +785,11 @@ }, "falseType": { "type": "reference", - "target": 3963, + "target": 3795, "typeArguments": [ { "type": "reference", - "target": 3775, + "target": 3581, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -801,14 +801,14 @@ } }, { - "id": 3776, + "id": 3582, "name": "ExpandScalar", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3777, + "id": 3583, "name": "T", "variant": "typeParam", "kind": 131072, @@ -826,7 +826,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 3777, + "target": 3583, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -857,7 +857,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 3777, + "target": 3583, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -891,7 +891,7 @@ }, "falseType": { "type": "reference", - "target": 3777, + "target": 3583, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -902,7 +902,7 @@ } }, { - "id": 3953, + "id": 3785, "name": "Scalar", "variant": "declaration", "kind": 2097152, @@ -961,21 +961,21 @@ { "type": "reflection", "declaration": { - "id": 3954, + "id": 3786, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3955, + "id": 3787, "name": "toHexString", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3956, + "id": 3788, "name": "toHexString", "variant": "signature", "kind": 4096, @@ -992,7 +992,7 @@ { "title": "Methods", "children": [ - 3955 + 3787 ] } ] @@ -1002,14 +1002,14 @@ } }, { - "id": 4102, + "id": 4146, "name": "ReadonlyPrimary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4103, + "id": 4147, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1020,7 +1020,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4103, + "target": 4147, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1041,7 +1041,7 @@ "typeArguments": [ { "type": "reference", - "target": 4103, + "target": 4147, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1052,7 +1052,7 @@ }, "falseType": { "type": "reference", - "target": 4103, + "target": 4147, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1060,14 +1060,14 @@ } }, { - "id": 4092, + "id": 4136, "name": "Primary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4101, + "id": 4145, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1078,7 +1078,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4101, + "target": 4145, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1086,14 +1086,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 4093, + "id": 4137, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4094, + "id": 4138, "name": "[PrimaryKeyType]", "variant": "declaration", "kind": 1024, @@ -1110,7 +1110,7 @@ { "title": "Properties", "children": [ - 4094 + 4138 ] } ] @@ -1118,7 +1118,7 @@ }, "trueType": { "type": "reference", - "target": 4102, + "target": 4146, "typeArguments": [ { "type": "reference", @@ -1138,7 +1138,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4101, + "target": 4145, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1146,14 +1146,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 4095, + "id": 4139, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4096, + "id": 4140, "name": "_id", "variant": "declaration", "kind": 1024, @@ -1170,7 +1170,7 @@ { "title": "Properties", "children": [ - 4096 + 4140 ] } ] @@ -1181,7 +1181,7 @@ "types": [ { "type": "reference", - "target": 4102, + "target": 4146, "typeArguments": [ { "type": "reference", @@ -1207,7 +1207,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4101, + "target": 4145, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1215,14 +1215,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 4097, + "id": 4141, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4098, + "id": 4142, "name": "uuid", "variant": "declaration", "kind": 1024, @@ -1239,7 +1239,7 @@ { "title": "Properties", "children": [ - 4098 + 4142 ] } ] @@ -1247,7 +1247,7 @@ }, "trueType": { "type": "reference", - "target": 4102, + "target": 4146, "typeArguments": [ { "type": "reference", @@ -1267,7 +1267,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4101, + "target": 4145, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1275,14 +1275,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 4099, + "id": 4143, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4100, + "id": 4144, "name": "id", "variant": "declaration", "kind": 1024, @@ -1299,7 +1299,7 @@ { "title": "Properties", "children": [ - 4100 + 4144 ] } ] @@ -1307,7 +1307,7 @@ }, "trueType": { "type": "reference", - "target": 4102, + "target": 4146, "typeArguments": [ { "type": "reference", @@ -1333,14 +1333,14 @@ } }, { - "id": 3516, + "id": 3321, "name": "OperatorMap", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3537, + "id": 3342, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1350,14 +1350,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3517, + "id": 3322, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3518, + "id": 3323, "name": "$and", "variant": "declaration", "kind": 1024, @@ -1368,11 +1368,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 3774, + "target": 3580, "typeArguments": [ { "type": "reference", - "target": 3537, + "target": 3342, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1384,7 +1384,7 @@ } }, { - "id": 3519, + "id": 3324, "name": "$or", "variant": "declaration", "kind": 1024, @@ -1395,11 +1395,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 3774, + "target": 3580, "typeArguments": [ { "type": "reference", - "target": 3537, + "target": 3342, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1411,7 +1411,7 @@ } }, { - "id": 3520, + "id": 3325, "name": "$eq", "variant": "declaration", "kind": 1024, @@ -1423,11 +1423,11 @@ "types": [ { "type": "reference", - "target": 3776, + "target": 3582, "typeArguments": [ { "type": "reference", - "target": 3537, + "target": 3342, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1440,11 +1440,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 3776, + "target": 3582, "typeArguments": [ { "type": "reference", - "target": 3537, + "target": 3342, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1458,7 +1458,7 @@ } }, { - "id": 3521, + "id": 3326, "name": "$ne", "variant": "declaration", "kind": 1024, @@ -1467,11 +1467,11 @@ }, "type": { "type": "reference", - "target": 3776, + "target": 3582, "typeArguments": [ { "type": "reference", - "target": 3537, + "target": 3342, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1482,7 +1482,7 @@ } }, { - "id": 3522, + "id": 3327, "name": "$in", "variant": "declaration", "kind": 1024, @@ -1493,11 +1493,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 3776, + "target": 3582, "typeArguments": [ { "type": "reference", - "target": 3537, + "target": 3342, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1509,7 +1509,7 @@ } }, { - "id": 3523, + "id": 3328, "name": "$nin", "variant": "declaration", "kind": 1024, @@ -1520,11 +1520,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 3776, + "target": 3582, "typeArguments": [ { "type": "reference", - "target": 3537, + "target": 3342, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1536,7 +1536,7 @@ } }, { - "id": 3524, + "id": 3329, "name": "$not", "variant": "declaration", "kind": 1024, @@ -1545,11 +1545,11 @@ }, "type": { "type": "reference", - "target": 3774, + "target": 3580, "typeArguments": [ { "type": "reference", - "target": 3537, + "target": 3342, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1560,7 +1560,7 @@ } }, { - "id": 3525, + "id": 3330, "name": "$gt", "variant": "declaration", "kind": 1024, @@ -1569,11 +1569,11 @@ }, "type": { "type": "reference", - "target": 3776, + "target": 3582, "typeArguments": [ { "type": "reference", - "target": 3537, + "target": 3342, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1584,7 +1584,7 @@ } }, { - "id": 3526, + "id": 3331, "name": "$gte", "variant": "declaration", "kind": 1024, @@ -1593,11 +1593,11 @@ }, "type": { "type": "reference", - "target": 3776, + "target": 3582, "typeArguments": [ { "type": "reference", - "target": 3537, + "target": 3342, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1608,7 +1608,7 @@ } }, { - "id": 3527, + "id": 3332, "name": "$lt", "variant": "declaration", "kind": 1024, @@ -1617,11 +1617,11 @@ }, "type": { "type": "reference", - "target": 3776, + "target": 3582, "typeArguments": [ { "type": "reference", - "target": 3537, + "target": 3342, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1632,7 +1632,7 @@ } }, { - "id": 3528, + "id": 3333, "name": "$lte", "variant": "declaration", "kind": 1024, @@ -1641,11 +1641,11 @@ }, "type": { "type": "reference", - "target": 3776, + "target": 3582, "typeArguments": [ { "type": "reference", - "target": 3537, + "target": 3342, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1656,7 +1656,7 @@ } }, { - "id": 3529, + "id": 3334, "name": "$like", "variant": "declaration", "kind": 1024, @@ -1669,7 +1669,7 @@ } }, { - "id": 3530, + "id": 3335, "name": "$re", "variant": "declaration", "kind": 1024, @@ -1682,7 +1682,7 @@ } }, { - "id": 3531, + "id": 3336, "name": "$ilike", "variant": "declaration", "kind": 1024, @@ -1695,7 +1695,7 @@ } }, { - "id": 3532, + "id": 3337, "name": "$fulltext", "variant": "declaration", "kind": 1024, @@ -1708,7 +1708,7 @@ } }, { - "id": 3533, + "id": 3338, "name": "$overlap", "variant": "declaration", "kind": 1024, @@ -1724,7 +1724,7 @@ } }, { - "id": 3534, + "id": 3339, "name": "$contains", "variant": "declaration", "kind": 1024, @@ -1740,7 +1740,7 @@ } }, { - "id": 3535, + "id": 3340, "name": "$contained", "variant": "declaration", "kind": 1024, @@ -1756,7 +1756,7 @@ } }, { - "id": 3536, + "id": 3341, "name": "$exists", "variant": "declaration", "kind": 1024, @@ -1773,25 +1773,25 @@ { "title": "Properties", "children": [ - 3518, - 3519, - 3520, - 3521, - 3522, - 3523, - 3524, - 3525, - 3526, - 3527, - 3528, - 3529, - 3530, - 3531, - 3532, - 3533, - 3534, - 3535, - 3536 + 3323, + 3324, + 3325, + 3326, + 3327, + 3328, + 3329, + 3330, + 3331, + 3332, + 3333, + 3334, + 3335, + 3336, + 3337, + 3338, + 3339, + 3340, + 3341 ] } ] @@ -1799,14 +1799,14 @@ } }, { - "id": 4071, + "id": 4113, "name": "FilterValue2", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4072, + "id": 4114, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1818,18 +1818,18 @@ "types": [ { "type": "reference", - "target": 4072, + "target": 4114, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, { "type": "reference", - "target": 3776, + "target": 3582, "typeArguments": [ { "type": "reference", - "target": 4072, + "target": 4114, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1840,11 +1840,11 @@ }, { "type": "reference", - "target": 4092, + "target": 4136, "typeArguments": [ { "type": "reference", - "target": 4072, + "target": 4114, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1857,14 +1857,14 @@ } }, { - "id": 3963, + "id": 3795, "name": "FilterValue", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3964, + "id": 3796, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1876,15 +1876,15 @@ "types": [ { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "reference", - "target": 4071, + "target": 4113, "typeArguments": [ { "type": "reference", - "target": 3964, + "target": 3796, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1899,11 +1899,11 @@ }, { "type": "reference", - "target": 4071, + "target": 4113, "typeArguments": [ { "type": "reference", - "target": 3964, + "target": 3796, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1916,11 +1916,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 4071, + "target": 4113, "typeArguments": [ { "type": "reference", - "target": 3964, + "target": 3796, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1938,7 +1938,7 @@ } }, { - "id": 4070, + "id": 4112, "name": "PrevLimit", "variant": "declaration", "kind": 2097152, @@ -1966,14 +1966,14 @@ } }, { - "id": 3957, + "id": 3789, "name": "FilterQuery", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3961, + "id": 3793, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1984,7 +1984,7 @@ } }, { - "id": 3962, + "id": 3794, "name": "Prev", "variant": "typeParam", "kind": 131072, @@ -2003,7 +2003,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 3962, + "target": 3794, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2024,7 +2024,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 3961, + "target": 3793, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2046,7 +2046,7 @@ }, "objectType": { "type": "reference", - "target": 3961, + "target": 3793, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2103,7 +2103,7 @@ }, "objectType": { "type": "reference", - "target": 3961, + "target": 3793, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2111,7 +2111,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "indexedAccess", @@ -2127,7 +2127,7 @@ }, "objectType": { "type": "reference", - "target": 3961, + "target": 3793, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2155,7 +2155,7 @@ }, "objectType": { "type": "reference", - "target": 3961, + "target": 3793, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2180,21 +2180,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 3958, + "id": 3790, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 3959, + "id": 3791, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 3960, + "id": 3792, "name": "x", "variant": "param", "kind": 32768, @@ -2231,7 +2231,7 @@ }, "trueType": { "type": "reference", - "target": 3957, + "target": 3789, "typeArguments": [ { "type": "reference", @@ -2258,14 +2258,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 3962, + "target": 3794, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 4070, + "target": 4112, "name": "PrevLimit", "package": "@medusajs/types" } @@ -2295,7 +2295,7 @@ } }, { - "id": 4067, + "id": 4109, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -2325,14 +2325,14 @@ { "type": "reflection", "declaration": { - "id": 4068, + "id": 4110, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4069, + "id": 4111, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -2349,7 +2349,7 @@ { "title": "Properties", "children": [ - 4069 + 4111 ] } ] @@ -2359,14 +2359,14 @@ } }, { - "id": 3947, + "id": 3779, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3952, + "id": 3784, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2380,14 +2380,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3948, + "id": 3780, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3949, + "id": 3781, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2398,7 +2398,7 @@ } }, { - "id": 3950, + "id": 3782, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2407,20 +2407,20 @@ }, "type": { "type": "reference", - "target": 4067, + "target": 4109, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 3951, + "id": 3783, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3952, + "target": 3784, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2431,9 +2431,9 @@ { "title": "Properties", "children": [ - 3949, - 3950, - 3951 + 3781, + 3782, + 3783 ] } ] @@ -2441,14 +2441,14 @@ } }, { - "id": 3754, + "id": 3560, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3757, + "id": 3563, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2464,11 +2464,11 @@ "types": [ { "type": "reference", - "target": 3947, + "target": 3779, "typeArguments": [ { "type": "reference", - "target": 3757, + "target": 3563, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2480,14 +2480,14 @@ { "type": "reflection", "declaration": { - "id": 3755, + "id": 3561, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3756, + "id": 3562, "name": "options", "variant": "declaration", "kind": 1024, @@ -2519,7 +2519,7 @@ { "title": "Properties", "children": [ - 3756 + 3562 ] } ] @@ -2529,14 +2529,14 @@ } }, { - "id": 3764, + "id": 3570, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 3773, + "id": 3579, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2550,14 +2550,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3765, + "id": 3571, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3766, + "id": 3572, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2568,21 +2568,21 @@ } }, { - "id": 3767, + "id": 3573, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3773, + "target": 3579, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 3768, + "id": 3574, "name": "source", "variant": "declaration", "kind": 1024, @@ -2593,7 +2593,7 @@ } }, { - "id": 3769, + "id": 3575, "name": "object", "variant": "declaration", "kind": 1024, @@ -2604,7 +2604,7 @@ } }, { - "id": 3770, + "id": 3576, "name": "action", "variant": "declaration", "kind": 1024, @@ -2617,7 +2617,7 @@ } }, { - "id": 3771, + "id": 3577, "name": "context", "variant": "declaration", "kind": 1024, @@ -2633,7 +2633,7 @@ "typeArguments": [ { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" }, @@ -2647,7 +2647,7 @@ } }, { - "id": 3772, + "id": 3578, "name": "options", "variant": "declaration", "kind": 1024, @@ -2679,13 +2679,13 @@ { "title": "Properties", "children": [ - 3766, - 3767, - 3768, - 3769, - 3770, - 3771, - 3772 + 3572, + 3573, + 3574, + 3575, + 3576, + 3577, + 3578 ] } ] @@ -2693,7 +2693,7 @@ } }, { - "id": 3602, + "id": 3407, "name": "FulfillmentAddressDTO", "variant": "declaration", "kind": 256, @@ -2708,7 +2708,7 @@ }, "children": [ { - "id": 3603, + "id": 3408, "name": "id", "variant": "declaration", "kind": 1024, @@ -2727,7 +2727,7 @@ } }, { - "id": 3604, + "id": 3409, "name": "fulfillment_id", "variant": "declaration", "kind": 1024, @@ -2755,7 +2755,7 @@ } }, { - "id": 3605, + "id": 3410, "name": "company", "variant": "declaration", "kind": 1024, @@ -2783,7 +2783,7 @@ } }, { - "id": 3606, + "id": 3411, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -2811,7 +2811,7 @@ } }, { - "id": 3607, + "id": 3412, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -2839,7 +2839,7 @@ } }, { - "id": 3608, + "id": 3413, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -2867,7 +2867,7 @@ } }, { - "id": 3609, + "id": 3414, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -2895,7 +2895,7 @@ } }, { - "id": 3610, + "id": 3415, "name": "city", "variant": "declaration", "kind": 1024, @@ -2923,7 +2923,7 @@ } }, { - "id": 3611, + "id": 3416, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -2951,7 +2951,7 @@ } }, { - "id": 3612, + "id": 3417, "name": "province", "variant": "declaration", "kind": 1024, @@ -2979,7 +2979,7 @@ } }, { - "id": 3613, + "id": 3418, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -3007,7 +3007,7 @@ } }, { - "id": 3614, + "id": 3419, "name": "phone", "variant": "declaration", "kind": 1024, @@ -3035,7 +3035,7 @@ } }, { - "id": 3615, + "id": 3420, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3078,7 +3078,7 @@ } }, { - "id": 3616, + "id": 3421, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3102,7 +3102,7 @@ } }, { - "id": 3617, + "id": 3422, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3126,7 +3126,7 @@ } }, { - "id": 3618, + "id": 3423, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3163,28 +3163,28 @@ { "title": "Properties", "children": [ - 3603, - 3604, - 3605, - 3606, - 3607, - 3608, - 3609, - 3610, - 3611, - 3612, - 3613, - 3614, - 3615, - 3616, - 3617, - 3618 + 3408, + 3409, + 3410, + 3411, + 3412, + 3413, + 3414, + 3415, + 3416, + 3417, + 3418, + 3419, + 3420, + 3421, + 3422, + 3423 ] } ] }, { - "id": 3619, + "id": 3424, "name": "FulfillmentItemDTO", "variant": "declaration", "kind": 256, @@ -3199,7 +3199,7 @@ }, "children": [ { - "id": 3620, + "id": 3425, "name": "id", "variant": "declaration", "kind": 1024, @@ -3218,7 +3218,7 @@ } }, { - "id": 3621, + "id": 3426, "name": "title", "variant": "declaration", "kind": 1024, @@ -3237,7 +3237,7 @@ } }, { - "id": 3622, + "id": 3427, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -3256,7 +3256,7 @@ } }, { - "id": 3623, + "id": 3428, "name": "sku", "variant": "declaration", "kind": 1024, @@ -3275,7 +3275,7 @@ } }, { - "id": 3624, + "id": 3429, "name": "barcode", "variant": "declaration", "kind": 1024, @@ -3294,7 +3294,7 @@ } }, { - "id": 3625, + "id": 3430, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -3322,7 +3322,7 @@ } }, { - "id": 3626, + "id": 3431, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -3350,7 +3350,7 @@ } }, { - "id": 3627, + "id": 3432, "name": "fulfillment_id", "variant": "declaration", "kind": 1024, @@ -3369,7 +3369,7 @@ } }, { - "id": 3628, + "id": 3433, "name": "fulfillment", "variant": "declaration", "kind": 1024, @@ -3384,13 +3384,13 @@ }, "type": { "type": "reference", - "target": 3406, + "target": 3211, "name": "FulfillmentDTO", "package": "@medusajs/types" } }, { - "id": 3629, + "id": 3434, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3414,7 +3414,7 @@ } }, { - "id": 3630, + "id": 3435, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3438,7 +3438,7 @@ } }, { - "id": 3631, + "id": 3436, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3475,24 +3475,24 @@ { "title": "Properties", "children": [ - 3620, - 3621, - 3622, - 3623, - 3624, - 3625, - 3626, - 3627, - 3628, - 3629, - 3630, - 3631 + 3425, + 3426, + 3427, + 3428, + 3429, + 3430, + 3431, + 3432, + 3433, + 3434, + 3435, + 3436 ] } ] }, { - "id": 3632, + "id": 3437, "name": "FulfillmentLabelDTO", "variant": "declaration", "kind": 256, @@ -3507,7 +3507,7 @@ }, "children": [ { - "id": 3633, + "id": 3438, "name": "id", "variant": "declaration", "kind": 1024, @@ -3526,7 +3526,7 @@ } }, { - "id": 3634, + "id": 3439, "name": "tracking_number", "variant": "declaration", "kind": 1024, @@ -3545,7 +3545,7 @@ } }, { - "id": 3635, + "id": 3440, "name": "tracking_url", "variant": "declaration", "kind": 1024, @@ -3564,7 +3564,7 @@ } }, { - "id": 3636, + "id": 3441, "name": "label_url", "variant": "declaration", "kind": 1024, @@ -3583,7 +3583,7 @@ } }, { - "id": 3637, + "id": 3442, "name": "fulfillment_id", "variant": "declaration", "kind": 1024, @@ -3602,7 +3602,7 @@ } }, { - "id": 3638, + "id": 3443, "name": "fulfillment", "variant": "declaration", "kind": 1024, @@ -3617,13 +3617,13 @@ }, "type": { "type": "reference", - "target": 3406, + "target": 3211, "name": "FulfillmentDTO", "package": "@medusajs/types" } }, { - "id": 3639, + "id": 3444, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3647,7 +3647,7 @@ } }, { - "id": 3640, + "id": 3445, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3671,7 +3671,7 @@ } }, { - "id": 3641, + "id": 3446, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3708,21 +3708,21 @@ { "title": "Properties", "children": [ - 3633, - 3634, - 3635, - 3636, - 3637, - 3638, - 3639, - 3640, - 3641 + 3438, + 3439, + 3440, + 3441, + 3442, + 3443, + 3444, + 3445, + 3446 ] } ] }, { - "id": 3466, + "id": 3271, "name": "FulfillmentProviderDTO", "variant": "declaration", "kind": 256, @@ -3737,7 +3737,7 @@ }, "children": [ { - "id": 3467, + "id": 3272, "name": "id", "variant": "declaration", "kind": 1024, @@ -3756,7 +3756,7 @@ } }, { - "id": 3468, + "id": 3273, "name": "name", "variant": "declaration", "kind": 1024, @@ -3775,7 +3775,7 @@ } }, { - "id": 3469, + "id": 3274, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3818,7 +3818,7 @@ } }, { - "id": 3470, + "id": 3275, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -3835,14 +3835,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } } }, { - "id": 3471, + "id": 3276, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3866,7 +3866,7 @@ } }, { - "id": 3472, + "id": 3277, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3890,7 +3890,7 @@ } }, { - "id": 3473, + "id": 3278, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3927,19 +3927,19 @@ { "title": "Properties", "children": [ - 3467, - 3468, - 3469, - 3470, - 3471, - 3472, - 3473 + 3272, + 3273, + 3274, + 3275, + 3276, + 3277, + 3278 ] } ] }, { - "id": 3462, + "id": 3267, "name": "FilterableFulfillmentProviderProps", "variant": "declaration", "kind": 256, @@ -3954,7 +3954,7 @@ }, "children": [ { - "id": 3464, + "id": 3269, "name": "$and", "variant": "declaration", "kind": 1024, @@ -3977,17 +3977,17 @@ "types": [ { "type": "reference", - "target": 3462, + "target": 3267, "name": "FilterableFulfillmentProviderProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3462, + "target": 3267, "name": "FilterableFulfillmentProviderProps", "package": "@medusajs/types" } @@ -4000,12 +4000,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3513, + "target": 3318, "name": "BaseFilterable.$and" } }, { - "id": 3465, + "id": 3270, "name": "$or", "variant": "declaration", "kind": 1024, @@ -4028,17 +4028,17 @@ "types": [ { "type": "reference", - "target": 3462, + "target": 3267, "name": "FilterableFulfillmentProviderProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3462, + "target": 3267, "name": "FilterableFulfillmentProviderProps", "package": "@medusajs/types" } @@ -4051,12 +4051,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3514, + "target": 3319, "name": "BaseFilterable.$or" } }, { - "id": 3463, + "id": 3268, "name": "id", "variant": "declaration", "kind": 1024, @@ -4087,7 +4087,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -4117,20 +4117,20 @@ { "title": "Properties", "children": [ - 3464, - 3465, - 3463 + 3269, + 3270, + 3268 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3462, + "target": 3267, "name": "FilterableFulfillmentProviderProps", "package": "@medusajs/types" } @@ -4141,7 +4141,7 @@ ] }, { - "id": 3145, + "id": 2950, "name": "FulfillmentSetDTO", "variant": "declaration", "kind": 256, @@ -4156,7 +4156,7 @@ }, "children": [ { - "id": 3146, + "id": 2951, "name": "id", "variant": "declaration", "kind": 1024, @@ -4175,7 +4175,7 @@ } }, { - "id": 3147, + "id": 2952, "name": "name", "variant": "declaration", "kind": 1024, @@ -4194,7 +4194,7 @@ } }, { - "id": 3148, + "id": 2953, "name": "type", "variant": "declaration", "kind": 1024, @@ -4213,7 +4213,7 @@ } }, { - "id": 3149, + "id": 2954, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4256,7 +4256,7 @@ } }, { - "id": 3150, + "id": 2955, "name": "service_zones", "variant": "declaration", "kind": 1024, @@ -4273,14 +4273,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } } }, { - "id": 3151, + "id": 2956, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4304,7 +4304,7 @@ } }, { - "id": 3152, + "id": 2957, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4328,7 +4328,7 @@ } }, { - "id": 3153, + "id": 2958, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -4365,20 +4365,20 @@ { "title": "Properties", "children": [ - 3146, - 3147, - 3148, - 3149, - 3150, - 3151, - 3152, - 3153 + 2951, + 2952, + 2953, + 2954, + 2955, + 2956, + 2957, + 2958 ] } ] }, { - "id": 3166, + "id": 2971, "name": "FilterableFulfillmentSetProps", "variant": "declaration", "kind": 256, @@ -4393,7 +4393,7 @@ }, "children": [ { - "id": 3171, + "id": 2976, "name": "$and", "variant": "declaration", "kind": 1024, @@ -4416,17 +4416,17 @@ "types": [ { "type": "reference", - "target": 3166, + "target": 2971, "name": "FilterableFulfillmentSetProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3166, + "target": 2971, "name": "FilterableFulfillmentSetProps", "package": "@medusajs/types" } @@ -4439,12 +4439,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3513, + "target": 3318, "name": "BaseFilterable.$and" } }, { - "id": 3172, + "id": 2977, "name": "$or", "variant": "declaration", "kind": 1024, @@ -4467,17 +4467,17 @@ "types": [ { "type": "reference", - "target": 3166, + "target": 2971, "name": "FilterableFulfillmentSetProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3166, + "target": 2971, "name": "FilterableFulfillmentSetProps", "package": "@medusajs/types" } @@ -4490,12 +4490,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3514, + "target": 3319, "name": "BaseFilterable.$or" } }, { - "id": 3167, + "id": 2972, "name": "id", "variant": "declaration", "kind": 1024, @@ -4528,7 +4528,7 @@ } }, { - "id": 3168, + "id": 2973, "name": "name", "variant": "declaration", "kind": 1024, @@ -4561,7 +4561,7 @@ } }, { - "id": 3169, + "id": 2974, "name": "type", "variant": "declaration", "kind": 1024, @@ -4594,7 +4594,7 @@ } }, { - "id": 3170, + "id": 2975, "name": "service_zones", "variant": "declaration", "kind": 1024, @@ -4611,7 +4611,7 @@ }, "type": { "type": "reference", - "target": 3200, + "target": 3005, "name": "FilterableServiceZoneProps", "package": "@medusajs/types" } @@ -4621,23 +4621,23 @@ { "title": "Properties", "children": [ - 3171, - 3172, - 3167, - 3168, - 3169, - 3170 + 2976, + 2977, + 2972, + 2973, + 2974, + 2975 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3166, + "target": 2971, "name": "FilterableFulfillmentSetProps", "package": "@medusajs/types" } @@ -4648,7 +4648,7 @@ ] }, { - "id": 3406, + "id": 3211, "name": "FulfillmentDTO", "variant": "declaration", "kind": 256, @@ -4663,7 +4663,7 @@ }, "children": [ { - "id": 3407, + "id": 3212, "name": "id", "variant": "declaration", "kind": 1024, @@ -4682,7 +4682,7 @@ } }, { - "id": 3408, + "id": 3213, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -4701,7 +4701,7 @@ } }, { - "id": 3409, + "id": 3214, "name": "packed_at", "variant": "declaration", "kind": 1024, @@ -4734,7 +4734,7 @@ } }, { - "id": 3410, + "id": 3215, "name": "shipped_at", "variant": "declaration", "kind": 1024, @@ -4767,7 +4767,7 @@ } }, { - "id": 3411, + "id": 3216, "name": "delivered_at", "variant": "declaration", "kind": 1024, @@ -4800,7 +4800,7 @@ } }, { - "id": 3412, + "id": 3217, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -4833,7 +4833,7 @@ } }, { - "id": 3413, + "id": 3218, "name": "data", "variant": "declaration", "kind": 1024, @@ -4876,7 +4876,7 @@ } }, { - "id": 3414, + "id": 3219, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -4895,7 +4895,7 @@ } }, { - "id": 3415, + "id": 3220, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -4923,7 +4923,7 @@ } }, { - "id": 3416, + "id": 3221, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4966,7 +4966,7 @@ } }, { - "id": 3417, + "id": 3222, "name": "shipping_option", "variant": "declaration", "kind": 1024, @@ -4988,7 +4988,7 @@ }, { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -4996,7 +4996,7 @@ } }, { - "id": 3418, + "id": 3223, "name": "provider", "variant": "declaration", "kind": 1024, @@ -5011,13 +5011,13 @@ }, "type": { "type": "reference", - "target": 3466, + "target": 3271, "name": "FulfillmentProviderDTO", "package": "@medusajs/types" } }, { - "id": 3419, + "id": 3224, "name": "delivery_address", "variant": "declaration", "kind": 1024, @@ -5032,13 +5032,13 @@ }, "type": { "type": "reference", - "target": 3602, + "target": 3407, "name": "FulfillmentAddressDTO", "package": "@medusajs/types" } }, { - "id": 3420, + "id": 3225, "name": "items", "variant": "declaration", "kind": 1024, @@ -5055,14 +5055,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3619, + "target": 3424, "name": "FulfillmentItemDTO", "package": "@medusajs/types" } } }, { - "id": 3421, + "id": 3226, "name": "labels", "variant": "declaration", "kind": 1024, @@ -5079,14 +5079,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3632, + "target": 3437, "name": "FulfillmentLabelDTO", "package": "@medusajs/types" } } }, { - "id": 3422, + "id": 3227, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5110,7 +5110,7 @@ } }, { - "id": 3423, + "id": 3228, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5134,7 +5134,7 @@ } }, { - "id": 3424, + "id": 3229, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -5171,30 +5171,30 @@ { "title": "Properties", "children": [ - 3407, - 3408, - 3409, - 3410, - 3411, - 3412, - 3413, - 3414, - 3415, - 3416, - 3417, - 3418, - 3419, - 3420, - 3421, - 3422, - 3423, - 3424 + 3212, + 3213, + 3214, + 3215, + 3216, + 3217, + 3218, + 3219, + 3220, + 3221, + 3222, + 3223, + 3224, + 3225, + 3226, + 3227, + 3228, + 3229 ] } ] }, { - "id": 3425, + "id": 3230, "name": "FilterableFulfillmentProps", "variant": "declaration", "kind": 256, @@ -5209,7 +5209,7 @@ }, "children": [ { - "id": 3436, + "id": 3241, "name": "$and", "variant": "declaration", "kind": 1024, @@ -5232,17 +5232,17 @@ "types": [ { "type": "reference", - "target": 3425, + "target": 3230, "name": "FilterableFulfillmentProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3425, + "target": 3230, "name": "FilterableFulfillmentProps", "package": "@medusajs/types" } @@ -5255,12 +5255,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3513, + "target": 3318, "name": "BaseFilterable.$and" } }, { - "id": 3437, + "id": 3242, "name": "$or", "variant": "declaration", "kind": 1024, @@ -5283,17 +5283,17 @@ "types": [ { "type": "reference", - "target": 3425, + "target": 3230, "name": "FilterableFulfillmentProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3425, + "target": 3230, "name": "FilterableFulfillmentProps", "package": "@medusajs/types" } @@ -5306,12 +5306,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3514, + "target": 3319, "name": "BaseFilterable.$or" } }, { - "id": 3426, + "id": 3231, "name": "id", "variant": "declaration", "kind": 1024, @@ -5342,7 +5342,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -5368,7 +5368,7 @@ } }, { - "id": 3427, + "id": 3232, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -5399,7 +5399,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -5425,7 +5425,7 @@ } }, { - "id": 3428, + "id": 3233, "name": "packed_at", "variant": "declaration", "kind": 1024, @@ -5454,7 +5454,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -5480,7 +5480,7 @@ } }, { - "id": 3429, + "id": 3234, "name": "shipped_at", "variant": "declaration", "kind": 1024, @@ -5509,7 +5509,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -5535,7 +5535,7 @@ } }, { - "id": 3430, + "id": 3235, "name": "delivered_at", "variant": "declaration", "kind": 1024, @@ -5564,7 +5564,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -5590,7 +5590,7 @@ } }, { - "id": 3431, + "id": 3236, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -5619,7 +5619,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -5645,7 +5645,7 @@ } }, { - "id": 3432, + "id": 3237, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -5676,7 +5676,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -5702,7 +5702,7 @@ } }, { - "id": 3433, + "id": 3238, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -5732,7 +5732,7 @@ } }, { - "id": 3434, + "id": 3239, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5761,7 +5761,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -5787,7 +5787,7 @@ } }, { - "id": 3435, + "id": 3240, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5816,7 +5816,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -5846,29 +5846,29 @@ { "title": "Properties", "children": [ - 3436, - 3437, - 3426, - 3427, - 3428, - 3429, - 3430, - 3431, - 3432, - 3433, - 3434, - 3435 + 3241, + 3242, + 3231, + 3232, + 3233, + 3234, + 3235, + 3236, + 3237, + 3238, + 3239, + 3240 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3425, + "target": 3230, "name": "FilterableFulfillmentProps", "package": "@medusajs/types" } @@ -5879,7 +5879,7 @@ ] }, { - "id": 3594, + "id": 3399, "name": "GeoZoneType", "variant": "declaration", "kind": 2097152, @@ -5915,7 +5915,7 @@ } }, { - "id": 3224, + "id": 3029, "name": "GeoZoneDTO", "variant": "declaration", "kind": 256, @@ -5930,7 +5930,7 @@ }, "children": [ { - "id": 3225, + "id": 3030, "name": "id", "variant": "declaration", "kind": 1024, @@ -5949,7 +5949,7 @@ } }, { - "id": 3226, + "id": 3031, "name": "type", "variant": "declaration", "kind": 1024, @@ -5964,13 +5964,13 @@ }, "type": { "type": "reference", - "target": 3594, + "target": 3399, "name": "GeoZoneType", "package": "@medusajs/types" } }, { - "id": 3227, + "id": 3032, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -5989,7 +5989,7 @@ } }, { - "id": 3228, + "id": 3033, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -6017,7 +6017,7 @@ } }, { - "id": 3229, + "id": 3034, "name": "city", "variant": "declaration", "kind": 1024, @@ -6045,7 +6045,7 @@ } }, { - "id": 3230, + "id": 3035, "name": "postal_expression", "variant": "declaration", "kind": 1024, @@ -6088,7 +6088,7 @@ } }, { - "id": 3231, + "id": 3036, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6131,7 +6131,7 @@ } }, { - "id": 3232, + "id": 3037, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6155,7 +6155,7 @@ } }, { - "id": 3233, + "id": 3038, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6179,7 +6179,7 @@ } }, { - "id": 3234, + "id": 3039, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -6216,22 +6216,22 @@ { "title": "Properties", "children": [ - 3225, - 3226, - 3227, - 3228, - 3229, - 3230, - 3231, - 3232, - 3233, - 3234 + 3030, + 3031, + 3032, + 3033, + 3034, + 3035, + 3036, + 3037, + 3038, + 3039 ] } ] }, { - "id": 3235, + "id": 3040, "name": "FilterableGeoZoneProps", "variant": "declaration", "kind": 256, @@ -6246,7 +6246,7 @@ }, "children": [ { - "id": 3241, + "id": 3046, "name": "$and", "variant": "declaration", "kind": 1024, @@ -6269,17 +6269,17 @@ "types": [ { "type": "reference", - "target": 3235, + "target": 3040, "name": "FilterableGeoZoneProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3235, + "target": 3040, "name": "FilterableGeoZoneProps", "package": "@medusajs/types" } @@ -6292,12 +6292,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3513, + "target": 3318, "name": "BaseFilterable.$and" } }, { - "id": 3242, + "id": 3047, "name": "$or", "variant": "declaration", "kind": 1024, @@ -6320,17 +6320,17 @@ "types": [ { "type": "reference", - "target": 3235, + "target": 3040, "name": "FilterableGeoZoneProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3235, + "target": 3040, "name": "FilterableGeoZoneProps", "package": "@medusajs/types" } @@ -6343,12 +6343,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3514, + "target": 3319, "name": "BaseFilterable.$or" } }, { - "id": 3236, + "id": 3041, "name": "id", "variant": "declaration", "kind": 1024, @@ -6381,7 +6381,7 @@ } }, { - "id": 3237, + "id": 3042, "name": "type", "variant": "declaration", "kind": 1024, @@ -6401,7 +6401,7 @@ "types": [ { "type": "reference", - "target": 3594, + "target": 3399, "name": "GeoZoneType", "package": "@medusajs/types" }, @@ -6409,7 +6409,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3594, + "target": 3399, "name": "GeoZoneType", "package": "@medusajs/types" } @@ -6418,7 +6418,7 @@ } }, { - "id": 3238, + "id": 3043, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -6451,7 +6451,7 @@ } }, { - "id": 3239, + "id": 3044, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -6484,7 +6484,7 @@ } }, { - "id": 3240, + "id": 3045, "name": "city", "variant": "declaration", "kind": 1024, @@ -6521,24 +6521,24 @@ { "title": "Properties", "children": [ - 3241, - 3242, - 3236, - 3237, - 3238, - 3239, - 3240 + 3046, + 3047, + 3041, + 3042, + 3043, + 3044, + 3045 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3235, + "target": 3040, "name": "FilterableGeoZoneProps", "package": "@medusajs/types" } @@ -6549,7 +6549,7 @@ ] }, { - "id": 3190, + "id": 2995, "name": "ServiceZoneDTO", "variant": "declaration", "kind": 256, @@ -6564,7 +6564,7 @@ }, "children": [ { - "id": 3191, + "id": 2996, "name": "id", "variant": "declaration", "kind": 1024, @@ -6583,7 +6583,7 @@ } }, { - "id": 3192, + "id": 2997, "name": "name", "variant": "declaration", "kind": 1024, @@ -6602,7 +6602,7 @@ } }, { - "id": 3193, + "id": 2998, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6645,7 +6645,7 @@ } }, { - "id": 3194, + "id": 2999, "name": "fulfillment_sets", "variant": "declaration", "kind": 1024, @@ -6662,14 +6662,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3145, + "target": 2950, "name": "FulfillmentSetDTO", "package": "@medusajs/types" } } }, { - "id": 3195, + "id": 3000, "name": "geo_zones", "variant": "declaration", "kind": 1024, @@ -6686,14 +6686,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3224, + "target": 3029, "name": "GeoZoneDTO", "package": "@medusajs/types" } } }, { - "id": 3196, + "id": 3001, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -6710,14 +6710,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } } }, { - "id": 3197, + "id": 3002, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6741,7 +6741,7 @@ } }, { - "id": 3198, + "id": 3003, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6765,7 +6765,7 @@ } }, { - "id": 3199, + "id": 3004, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -6802,21 +6802,21 @@ { "title": "Properties", "children": [ - 3191, - 3192, - 3193, - 3194, - 3195, - 3196, - 3197, - 3198, - 3199 + 2996, + 2997, + 2998, + 2999, + 3000, + 3001, + 3002, + 3003, + 3004 ] } ] }, { - "id": 3200, + "id": 3005, "name": "FilterableServiceZoneProps", "variant": "declaration", "kind": 256, @@ -6831,7 +6831,7 @@ }, "children": [ { - "id": 3206, + "id": 3011, "name": "$and", "variant": "declaration", "kind": 1024, @@ -6854,17 +6854,17 @@ "types": [ { "type": "reference", - "target": 3200, + "target": 3005, "name": "FilterableServiceZoneProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3200, + "target": 3005, "name": "FilterableServiceZoneProps", "package": "@medusajs/types" } @@ -6877,12 +6877,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3513, + "target": 3318, "name": "BaseFilterable.$and" } }, { - "id": 3207, + "id": 3012, "name": "$or", "variant": "declaration", "kind": 1024, @@ -6905,17 +6905,17 @@ "types": [ { "type": "reference", - "target": 3200, + "target": 3005, "name": "FilterableServiceZoneProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3200, + "target": 3005, "name": "FilterableServiceZoneProps", "package": "@medusajs/types" } @@ -6928,12 +6928,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3514, + "target": 3319, "name": "BaseFilterable.$or" } }, { - "id": 3201, + "id": 3006, "name": "id", "variant": "declaration", "kind": 1024, @@ -6964,7 +6964,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -6990,7 +6990,7 @@ } }, { - "id": 3202, + "id": 3007, "name": "name", "variant": "declaration", "kind": 1024, @@ -7021,7 +7021,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -7047,7 +7047,7 @@ } }, { - "id": 3203, + "id": 3008, "name": "geo_zones", "variant": "declaration", "kind": 1024, @@ -7064,13 +7064,13 @@ }, "type": { "type": "reference", - "target": 3235, + "target": 3040, "name": "FilterableGeoZoneProps", "package": "@medusajs/types" } }, { - "id": 3204, + "id": 3009, "name": "fulfillment_set", "variant": "declaration", "kind": 1024, @@ -7087,7 +7087,7 @@ }, "type": { "type": "reference", - "target": 3166, + "target": 2971, "name": "FilterableFulfillmentSetProps", "package": "@medusajs/types" } @@ -7097,23 +7097,23 @@ { "title": "Properties", "children": [ - 3206, - 3207, - 3201, - 3202, - 3203, - 3204 + 3011, + 3012, + 3006, + 3007, + 3008, + 3009 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3200, + "target": 3005, "name": "FilterableServiceZoneProps", "package": "@medusajs/types" } @@ -7124,7 +7124,7 @@ ] }, { - "id": 3359, + "id": 3164, "name": "ShippingOptionRuleDTO", "variant": "declaration", "kind": 256, @@ -7139,7 +7139,7 @@ }, "children": [ { - "id": 3360, + "id": 3165, "name": "id", "variant": "declaration", "kind": 1024, @@ -7158,7 +7158,7 @@ } }, { - "id": 3361, + "id": 3166, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -7177,7 +7177,7 @@ } }, { - "id": 3362, + "id": 3167, "name": "operator", "variant": "declaration", "kind": 1024, @@ -7207,7 +7207,7 @@ } }, { - "id": 3363, + "id": 3168, "name": "value", "variant": "declaration", "kind": 1024, @@ -7230,14 +7230,14 @@ { "type": "reflection", "declaration": { - "id": 3364, + "id": 3169, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3365, + "id": 3170, "name": "value", "variant": "declaration", "kind": 1024, @@ -7272,7 +7272,7 @@ { "title": "Properties", "children": [ - 3365 + 3170 ] } ] @@ -7282,7 +7282,7 @@ } }, { - "id": 3366, + "id": 3171, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -7301,7 +7301,7 @@ } }, { - "id": 3367, + "id": 3172, "name": "shipping_option", "variant": "declaration", "kind": 1024, @@ -7316,13 +7316,13 @@ }, "type": { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } }, { - "id": 3368, + "id": 3173, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -7346,7 +7346,7 @@ } }, { - "id": 3369, + "id": 3174, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -7370,7 +7370,7 @@ } }, { - "id": 3370, + "id": 3175, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -7407,21 +7407,21 @@ { "title": "Properties", "children": [ - 3360, - 3361, - 3362, - 3363, - 3366, - 3367, - 3368, - 3369, - 3370 + 3165, + 3166, + 3167, + 3168, + 3171, + 3172, + 3173, + 3174, + 3175 ] } ] }, { - "id": 3371, + "id": 3176, "name": "FilterableShippingOptionRuleProps", "variant": "declaration", "kind": 256, @@ -7436,7 +7436,7 @@ }, "children": [ { - "id": 3376, + "id": 3181, "name": "$and", "variant": "declaration", "kind": 1024, @@ -7459,17 +7459,17 @@ "types": [ { "type": "reference", - "target": 3371, + "target": 3176, "name": "FilterableShippingOptionRuleProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3371, + "target": 3176, "name": "FilterableShippingOptionRuleProps", "package": "@medusajs/types" } @@ -7482,12 +7482,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3513, + "target": 3318, "name": "BaseFilterable.$and" } }, { - "id": 3377, + "id": 3182, "name": "$or", "variant": "declaration", "kind": 1024, @@ -7510,17 +7510,17 @@ "types": [ { "type": "reference", - "target": 3371, + "target": 3176, "name": "FilterableShippingOptionRuleProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3371, + "target": 3176, "name": "FilterableShippingOptionRuleProps", "package": "@medusajs/types" } @@ -7533,12 +7533,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3514, + "target": 3319, "name": "BaseFilterable.$or" } }, { - "id": 3372, + "id": 3177, "name": "id", "variant": "declaration", "kind": 1024, @@ -7569,7 +7569,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -7595,7 +7595,7 @@ } }, { - "id": 3373, + "id": 3178, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -7626,7 +7626,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -7652,7 +7652,7 @@ } }, { - "id": 3374, + "id": 3179, "name": "operator", "variant": "declaration", "kind": 1024, @@ -7683,7 +7683,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -7709,7 +7709,7 @@ } }, { - "id": 3375, + "id": 3180, "name": "value", "variant": "declaration", "kind": 1024, @@ -7740,7 +7740,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -7770,23 +7770,23 @@ { "title": "Properties", "children": [ - 3376, - 3377, - 3372, - 3373, - 3374, - 3375 + 3181, + 3182, + 3177, + 3178, + 3179, + 3180 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3371, + "target": 3176, "name": "FilterableShippingOptionRuleProps", "package": "@medusajs/types" } @@ -7797,7 +7797,7 @@ ] }, { - "id": 3389, + "id": 3194, "name": "ShippingOptionTypeDTO", "variant": "declaration", "kind": 256, @@ -7812,7 +7812,7 @@ }, "children": [ { - "id": 3390, + "id": 3195, "name": "id", "variant": "declaration", "kind": 1024, @@ -7831,7 +7831,7 @@ } }, { - "id": 3391, + "id": 3196, "name": "label", "variant": "declaration", "kind": 1024, @@ -7850,7 +7850,7 @@ } }, { - "id": 3392, + "id": 3197, "name": "description", "variant": "declaration", "kind": 1024, @@ -7869,7 +7869,7 @@ } }, { - "id": 3393, + "id": 3198, "name": "code", "variant": "declaration", "kind": 1024, @@ -7888,7 +7888,7 @@ } }, { - "id": 3394, + "id": 3199, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -7907,7 +7907,7 @@ } }, { - "id": 3395, + "id": 3200, "name": "shipping_option", "variant": "declaration", "kind": 1024, @@ -7922,13 +7922,13 @@ }, "type": { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } }, { - "id": 3396, + "id": 3201, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -7952,7 +7952,7 @@ } }, { - "id": 3397, + "id": 3202, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -7976,7 +7976,7 @@ } }, { - "id": 3398, + "id": 3203, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -8013,21 +8013,21 @@ { "title": "Properties", "children": [ - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3397, - 3398 + 3195, + 3196, + 3197, + 3198, + 3199, + 3200, + 3201, + 3202, + 3203 ] } ] }, { - "id": 3399, + "id": 3204, "name": "FilterableShippingOptionTypeProps", "variant": "declaration", "kind": 256, @@ -8042,7 +8042,7 @@ }, "children": [ { - "id": 3404, + "id": 3209, "name": "$and", "variant": "declaration", "kind": 1024, @@ -8065,17 +8065,17 @@ "types": [ { "type": "reference", - "target": 3399, + "target": 3204, "name": "FilterableShippingOptionTypeProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3399, + "target": 3204, "name": "FilterableShippingOptionTypeProps", "package": "@medusajs/types" } @@ -8088,12 +8088,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3513, + "target": 3318, "name": "BaseFilterable.$and" } }, { - "id": 3405, + "id": 3210, "name": "$or", "variant": "declaration", "kind": 1024, @@ -8116,17 +8116,17 @@ "types": [ { "type": "reference", - "target": 3399, + "target": 3204, "name": "FilterableShippingOptionTypeProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3399, + "target": 3204, "name": "FilterableShippingOptionTypeProps", "package": "@medusajs/types" } @@ -8139,12 +8139,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3514, + "target": 3319, "name": "BaseFilterable.$or" } }, { - "id": 3400, + "id": 3205, "name": "id", "variant": "declaration", "kind": 1024, @@ -8175,7 +8175,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -8201,7 +8201,7 @@ } }, { - "id": 3401, + "id": 3206, "name": "label", "variant": "declaration", "kind": 1024, @@ -8232,7 +8232,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -8258,7 +8258,7 @@ } }, { - "id": 3402, + "id": 3207, "name": "description", "variant": "declaration", "kind": 1024, @@ -8289,7 +8289,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -8315,7 +8315,7 @@ } }, { - "id": 3403, + "id": 3208, "name": "code", "variant": "declaration", "kind": 1024, @@ -8346,7 +8346,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -8376,23 +8376,23 @@ { "title": "Properties", "children": [ - 3404, - 3405, - 3400, - 3401, - 3402, - 3403 + 3209, + 3210, + 3205, + 3206, + 3207, + 3208 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3399, + "target": 3204, "name": "FilterableShippingOptionTypeProps", "package": "@medusajs/types" } @@ -8403,7 +8403,7 @@ ] }, { - "id": 3595, + "id": 3400, "name": "ShippingOptionPriceType", "variant": "declaration", "kind": 2097152, @@ -8447,7 +8447,7 @@ } }, { - "id": 3245, + "id": 3050, "name": "ShippingOptionDTO", "variant": "declaration", "kind": 256, @@ -8462,7 +8462,7 @@ }, "children": [ { - "id": 3246, + "id": 3051, "name": "id", "variant": "declaration", "kind": 1024, @@ -8481,7 +8481,7 @@ } }, { - "id": 3247, + "id": 3052, "name": "name", "variant": "declaration", "kind": 1024, @@ -8500,7 +8500,7 @@ } }, { - "id": 3248, + "id": 3053, "name": "price_type", "variant": "declaration", "kind": 1024, @@ -8515,13 +8515,13 @@ }, "type": { "type": "reference", - "target": 3595, + "target": 3400, "name": "ShippingOptionPriceType", "package": "@medusajs/types" } }, { - "id": 3249, + "id": 3054, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -8540,7 +8540,7 @@ } }, { - "id": 3250, + "id": 3055, "name": "shipping_profile_id", "variant": "declaration", "kind": 1024, @@ -8559,7 +8559,7 @@ } }, { - "id": 3251, + "id": 3056, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -8578,7 +8578,7 @@ } }, { - "id": 3252, + "id": 3057, "name": "shipping_option_type_id", "variant": "declaration", "kind": 1024, @@ -8606,7 +8606,7 @@ } }, { - "id": 3253, + "id": 3058, "name": "data", "variant": "declaration", "kind": 1024, @@ -8649,7 +8649,7 @@ } }, { - "id": 3254, + "id": 3059, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -8692,7 +8692,7 @@ } }, { - "id": 3255, + "id": 3060, "name": "service_zone", "variant": "declaration", "kind": 1024, @@ -8707,13 +8707,13 @@ }, "type": { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } }, { - "id": 3256, + "id": 3061, "name": "shipping_profile", "variant": "declaration", "kind": 1024, @@ -8728,13 +8728,13 @@ }, "type": { "type": "reference", - "target": 3330, + "target": 3135, "name": "ShippingProfileDTO", "package": "@medusajs/types" } }, { - "id": 3257, + "id": 3062, "name": "fulfillment_provider", "variant": "declaration", "kind": 1024, @@ -8749,13 +8749,13 @@ }, "type": { "type": "reference", - "target": 3466, + "target": 3271, "name": "FulfillmentProviderDTO", "package": "@medusajs/types" } }, { - "id": 3258, + "id": 3063, "name": "type", "variant": "declaration", "kind": 1024, @@ -8770,13 +8770,13 @@ }, "type": { "type": "reference", - "target": 3389, + "target": 3194, "name": "ShippingOptionTypeDTO", "package": "@medusajs/types" } }, { - "id": 3259, + "id": 3064, "name": "rules", "variant": "declaration", "kind": 1024, @@ -8793,14 +8793,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3359, + "target": 3164, "name": "ShippingOptionRuleDTO", "package": "@medusajs/types" } } }, { - "id": 3260, + "id": 3065, "name": "fulfillments", "variant": "declaration", "kind": 1024, @@ -8817,14 +8817,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3406, + "target": 3211, "name": "FulfillmentDTO", "package": "@medusajs/types" } } }, { - "id": 3261, + "id": 3066, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -8848,7 +8848,7 @@ } }, { - "id": 3262, + "id": 3067, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -8872,7 +8872,7 @@ } }, { - "id": 3263, + "id": 3068, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -8909,30 +8909,30 @@ { "title": "Properties", "children": [ - 3246, - 3247, - 3248, - 3249, - 3250, - 3251, - 3252, - 3253, - 3254, - 3255, - 3256, - 3257, - 3258, - 3259, - 3260, - 3261, - 3262, - 3263 + 3051, + 3052, + 3053, + 3054, + 3055, + 3056, + 3057, + 3058, + 3059, + 3060, + 3061, + 3062, + 3063, + 3064, + 3065, + 3066, + 3067, + 3068 ] } ] }, { - "id": 3283, + "id": 3088, "name": "FilterableShippingOptionProps", "variant": "declaration", "kind": 256, @@ -8947,7 +8947,7 @@ }, "children": [ { - "id": 3291, + "id": 3096, "name": "$and", "variant": "declaration", "kind": 1024, @@ -8970,17 +8970,17 @@ "types": [ { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps", "package": "@medusajs/types" } @@ -8993,12 +8993,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3513, + "target": 3318, "name": "BaseFilterable.$and" } }, { - "id": 3292, + "id": 3097, "name": "$or", "variant": "declaration", "kind": 1024, @@ -9021,17 +9021,17 @@ "types": [ { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps", "package": "@medusajs/types" } @@ -9044,12 +9044,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3514, + "target": 3319, "name": "BaseFilterable.$or" } }, { - "id": 3284, + "id": 3089, "name": "id", "variant": "declaration", "kind": 1024, @@ -9080,7 +9080,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -9106,7 +9106,7 @@ } }, { - "id": 3285, + "id": 3090, "name": "name", "variant": "declaration", "kind": 1024, @@ -9137,7 +9137,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -9163,7 +9163,7 @@ } }, { - "id": 3286, + "id": 3091, "name": "shipping_profile_id", "variant": "declaration", "kind": 1024, @@ -9194,7 +9194,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -9220,7 +9220,7 @@ } }, { - "id": 3287, + "id": 3092, "name": "price_type", "variant": "declaration", "kind": 1024, @@ -9240,7 +9240,7 @@ "types": [ { "type": "reference", - "target": 3595, + "target": 3400, "name": "ShippingOptionPriceType", "package": "@medusajs/types" }, @@ -9248,14 +9248,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3595, + "target": 3400, "name": "ShippingOptionPriceType", "package": "@medusajs/types" } }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "unknown", @@ -9269,7 +9269,7 @@ } }, { - "id": 3288, + "id": 3093, "name": "service_zone", "variant": "declaration", "kind": 1024, @@ -9286,13 +9286,13 @@ }, "type": { "type": "reference", - "target": 3200, + "target": 3005, "name": "FilterableServiceZoneProps", "package": "@medusajs/types" } }, { - "id": 3289, + "id": 3094, "name": "shipping_option_type", "variant": "declaration", "kind": 1024, @@ -9309,13 +9309,13 @@ }, "type": { "type": "reference", - "target": 3399, + "target": 3204, "name": "FilterableShippingOptionTypeProps", "package": "@medusajs/types" } }, { - "id": 3290, + "id": 3095, "name": "rules", "variant": "declaration", "kind": 1024, @@ -9332,7 +9332,7 @@ }, "type": { "type": "reference", - "target": 3371, + "target": 3176, "name": "FilterableShippingOptionRuleProps", "package": "@medusajs/types" } @@ -9342,26 +9342,26 @@ { "title": "Properties", "children": [ - 3291, - 3292, - 3284, - 3285, - 3286, - 3287, - 3288, - 3289, - 3290 + 3096, + 3097, + 3089, + 3090, + 3091, + 3092, + 3093, + 3094, + 3095 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps", "package": "@medusajs/types" } @@ -9373,13 +9373,13 @@ "extendedBy": [ { "type": "reference", - "target": 3264, + "target": 3069, "name": "FilterableShippingOptionForContextProps" } ] }, { - "id": 3264, + "id": 3069, "name": "FilterableShippingOptionForContextProps", "variant": "declaration", "kind": 256, @@ -9394,7 +9394,7 @@ }, "children": [ { - "id": 3281, + "id": 3086, "name": "$and", "variant": "declaration", "kind": 1024, @@ -9417,17 +9417,17 @@ "types": [ { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps", "package": "@medusajs/types" } @@ -9440,12 +9440,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3291, + "target": 3096, "name": "FilterableShippingOptionProps.$and" } }, { - "id": 3282, + "id": 3087, "name": "$or", "variant": "declaration", "kind": 1024, @@ -9468,17 +9468,17 @@ "types": [ { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps", "package": "@medusajs/types" } @@ -9491,12 +9491,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3292, + "target": 3097, "name": "FilterableShippingOptionProps.$or" } }, { - "id": 3274, + "id": 3079, "name": "id", "variant": "declaration", "kind": 1024, @@ -9528,7 +9528,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -9554,12 +9554,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3284, + "target": 3089, "name": "FilterableShippingOptionProps.id" } }, { - "id": 3275, + "id": 3080, "name": "name", "variant": "declaration", "kind": 1024, @@ -9591,7 +9591,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -9617,12 +9617,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3285, + "target": 3090, "name": "FilterableShippingOptionProps.name" } }, { - "id": 3276, + "id": 3081, "name": "shipping_profile_id", "variant": "declaration", "kind": 1024, @@ -9654,7 +9654,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -9680,12 +9680,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3286, + "target": 3091, "name": "FilterableShippingOptionProps.shipping_profile_id" } }, { - "id": 3277, + "id": 3082, "name": "price_type", "variant": "declaration", "kind": 1024, @@ -9706,7 +9706,7 @@ "types": [ { "type": "reference", - "target": 3595, + "target": 3400, "name": "ShippingOptionPriceType", "package": "@medusajs/types" }, @@ -9714,14 +9714,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3595, + "target": 3400, "name": "ShippingOptionPriceType", "package": "@medusajs/types" } }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "unknown", @@ -9735,12 +9735,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3287, + "target": 3092, "name": "FilterableShippingOptionProps.price_type" } }, { - "id": 3278, + "id": 3083, "name": "service_zone", "variant": "declaration", "kind": 1024, @@ -9758,18 +9758,18 @@ }, "type": { "type": "reference", - "target": 3200, + "target": 3005, "name": "FilterableServiceZoneProps", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3288, + "target": 3093, "name": "FilterableShippingOptionProps.service_zone" } }, { - "id": 3279, + "id": 3084, "name": "shipping_option_type", "variant": "declaration", "kind": 1024, @@ -9787,18 +9787,18 @@ }, "type": { "type": "reference", - "target": 3399, + "target": 3204, "name": "FilterableShippingOptionTypeProps", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3289, + "target": 3094, "name": "FilterableShippingOptionProps.shipping_option_type" } }, { - "id": 3280, + "id": 3085, "name": "rules", "variant": "declaration", "kind": 1024, @@ -9816,18 +9816,18 @@ }, "type": { "type": "reference", - "target": 3371, + "target": 3176, "name": "FilterableShippingOptionRuleProps", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3290, + "target": 3095, "name": "FilterableShippingOptionProps.rules" } }, { - "id": 3265, + "id": 3070, "name": "fulfillment_set_id", "variant": "declaration", "kind": 1024, @@ -9858,7 +9858,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -9884,7 +9884,7 @@ } }, { - "id": 3266, + "id": 3071, "name": "fulfillment_set_type", "variant": "declaration", "kind": 1024, @@ -9915,7 +9915,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -9941,7 +9941,7 @@ } }, { - "id": 3267, + "id": 3072, "name": "address", "variant": "declaration", "kind": 1024, @@ -9959,14 +9959,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3268, + "id": 3073, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3269, + "id": 3074, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -9987,7 +9987,7 @@ } }, { - "id": 3270, + "id": 3075, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -10008,7 +10008,7 @@ } }, { - "id": 3271, + "id": 3076, "name": "city", "variant": "declaration", "kind": 1024, @@ -10029,7 +10029,7 @@ } }, { - "id": 3272, + "id": 3077, "name": "postal_expression", "variant": "declaration", "kind": 1024, @@ -10054,10 +10054,10 @@ { "title": "Properties", "children": [ - 3269, - 3270, - 3271, - 3272 + 3074, + 3075, + 3076, + 3077 ] } ] @@ -10065,7 +10065,7 @@ } }, { - "id": 3273, + "id": 3078, "name": "context", "variant": "declaration", "kind": 1024, @@ -10105,33 +10105,33 @@ { "title": "Properties", "children": [ - 3281, - 3282, - 3274, - 3275, - 3276, - 3277, - 3278, - 3279, - 3280, - 3265, - 3266, - 3267, - 3273 + 3086, + 3087, + 3079, + 3080, + 3081, + 3082, + 3083, + 3084, + 3085, + 3070, + 3071, + 3072, + 3078 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps", "package": "@medusajs/types" } ] }, { - "id": 3330, + "id": 3135, "name": "ShippingProfileDTO", "variant": "declaration", "kind": 256, @@ -10146,7 +10146,7 @@ }, "children": [ { - "id": 3331, + "id": 3136, "name": "id", "variant": "declaration", "kind": 1024, @@ -10165,7 +10165,7 @@ } }, { - "id": 3332, + "id": 3137, "name": "name", "variant": "declaration", "kind": 1024, @@ -10184,7 +10184,7 @@ } }, { - "id": 3333, + "id": 3138, "name": "type", "variant": "declaration", "kind": 1024, @@ -10203,7 +10203,7 @@ } }, { - "id": 3334, + "id": 3139, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -10246,7 +10246,7 @@ } }, { - "id": 3335, + "id": 3140, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -10263,14 +10263,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } } }, { - "id": 3336, + "id": 3141, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -10294,7 +10294,7 @@ } }, { - "id": 3337, + "id": 3142, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -10318,7 +10318,7 @@ } }, { - "id": 3338, + "id": 3143, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -10355,20 +10355,20 @@ { "title": "Properties", "children": [ - 3331, - 3332, - 3333, - 3334, - 3335, - 3336, - 3337, - 3338 + 3136, + 3137, + 3138, + 3139, + 3140, + 3141, + 3142, + 3143 ] } ] }, { - "id": 3339, + "id": 3144, "name": "FilterableShippingProfileProps", "variant": "declaration", "kind": 256, @@ -10383,7 +10383,7 @@ }, "children": [ { - "id": 3344, + "id": 3149, "name": "$and", "variant": "declaration", "kind": 1024, @@ -10406,17 +10406,17 @@ "types": [ { "type": "reference", - "target": 3339, + "target": 3144, "name": "FilterableShippingProfileProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3339, + "target": 3144, "name": "FilterableShippingProfileProps", "package": "@medusajs/types" } @@ -10429,12 +10429,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3513, + "target": 3318, "name": "BaseFilterable.$and" } }, { - "id": 3345, + "id": 3150, "name": "$or", "variant": "declaration", "kind": 1024, @@ -10457,17 +10457,17 @@ "types": [ { "type": "reference", - "target": 3339, + "target": 3144, "name": "FilterableShippingProfileProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3339, + "target": 3144, "name": "FilterableShippingProfileProps", "package": "@medusajs/types" } @@ -10480,12 +10480,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3514, + "target": 3319, "name": "BaseFilterable.$or" } }, { - "id": 3340, + "id": 3145, "name": "id", "variant": "declaration", "kind": 1024, @@ -10516,7 +10516,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -10542,7 +10542,7 @@ } }, { - "id": 3341, + "id": 3146, "name": "name", "variant": "declaration", "kind": 1024, @@ -10573,7 +10573,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -10599,7 +10599,7 @@ } }, { - "id": 3342, + "id": 3147, "name": "type", "variant": "declaration", "kind": 1024, @@ -10630,7 +10630,7 @@ }, { "type": "reference", - "target": 3516, + "target": 3321, "typeArguments": [ { "type": "union", @@ -10656,7 +10656,7 @@ } }, { - "id": 3343, + "id": 3148, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -10673,7 +10673,7 @@ }, "type": { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps", "package": "@medusajs/types" } @@ -10683,23 +10683,23 @@ { "title": "Properties", "children": [ - 3344, - 3345, - 3340, - 3341, - 3342, - 3343 + 3149, + 3150, + 3145, + 3146, + 3147, + 3148 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3512, + "target": 3317, "typeArguments": [ { "type": "reference", - "target": 3339, + "target": 3144, "name": "FilterableShippingProfileProps", "package": "@medusajs/types" } @@ -10710,7 +10710,7 @@ ] }, { - "id": 3642, + "id": 3447, "name": "CreateFulfillmentAddressDTO", "variant": "declaration", "kind": 256, @@ -10725,7 +10725,7 @@ }, "children": [ { - "id": 3643, + "id": 3448, "name": "fulfillment_id", "variant": "declaration", "kind": 1024, @@ -10744,7 +10744,7 @@ } }, { - "id": 3644, + "id": 3449, "name": "company", "variant": "declaration", "kind": 1024, @@ -10774,7 +10774,7 @@ } }, { - "id": 3645, + "id": 3450, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -10804,7 +10804,7 @@ } }, { - "id": 3646, + "id": 3451, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -10834,7 +10834,7 @@ } }, { - "id": 3647, + "id": 3452, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -10864,7 +10864,7 @@ } }, { - "id": 3648, + "id": 3453, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -10894,7 +10894,7 @@ } }, { - "id": 3649, + "id": 3454, "name": "city", "variant": "declaration", "kind": 1024, @@ -10924,7 +10924,7 @@ } }, { - "id": 3650, + "id": 3455, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -10954,7 +10954,7 @@ } }, { - "id": 3651, + "id": 3456, "name": "province", "variant": "declaration", "kind": 1024, @@ -10984,7 +10984,7 @@ } }, { - "id": 3652, + "id": 3457, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -11014,7 +11014,7 @@ } }, { - "id": 3653, + "id": 3458, "name": "phone", "variant": "declaration", "kind": 1024, @@ -11044,7 +11044,7 @@ } }, { - "id": 3654, + "id": 3459, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -11093,24 +11093,24 @@ { "title": "Properties", "children": [ - 3643, - 3644, - 3645, - 3646, - 3647, - 3648, - 3649, - 3650, - 3651, - 3652, - 3653, - 3654 + 3448, + 3449, + 3450, + 3451, + 3452, + 3453, + 3454, + 3455, + 3456, + 3457, + 3458, + 3459 ] } ] }, { - "id": 3655, + "id": 3460, "name": "CreateFulfillmentItemDTO", "variant": "declaration", "kind": 256, @@ -11125,7 +11125,7 @@ }, "children": [ { - "id": 3656, + "id": 3461, "name": "fulfillment_id", "variant": "declaration", "kind": 1024, @@ -11144,7 +11144,7 @@ } }, { - "id": 3657, + "id": 3462, "name": "title", "variant": "declaration", "kind": 1024, @@ -11163,7 +11163,7 @@ } }, { - "id": 3658, + "id": 3463, "name": "sku", "variant": "declaration", "kind": 1024, @@ -11182,7 +11182,7 @@ } }, { - "id": 3659, + "id": 3464, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -11201,7 +11201,7 @@ } }, { - "id": 3660, + "id": 3465, "name": "barcode", "variant": "declaration", "kind": 1024, @@ -11220,7 +11220,7 @@ } }, { - "id": 3661, + "id": 3466, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -11250,7 +11250,7 @@ } }, { - "id": 3662, + "id": 3467, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -11284,19 +11284,19 @@ { "title": "Properties", "children": [ - 3656, - 3657, - 3658, - 3659, - 3660, - 3661, - 3662 + 3461, + 3462, + 3463, + 3464, + 3465, + 3466, + 3467 ] } ] }, { - "id": 3663, + "id": 3468, "name": "CreateFulfillmentLabelDTO", "variant": "declaration", "kind": 256, @@ -11311,7 +11311,7 @@ }, "children": [ { - "id": 3664, + "id": 3469, "name": "tracking_number", "variant": "declaration", "kind": 1024, @@ -11330,7 +11330,7 @@ } }, { - "id": 3665, + "id": 3470, "name": "tracking_url", "variant": "declaration", "kind": 1024, @@ -11349,7 +11349,7 @@ } }, { - "id": 3666, + "id": 3471, "name": "label_url", "variant": "declaration", "kind": 1024, @@ -11368,7 +11368,7 @@ } }, { - "id": 3667, + "id": 3472, "name": "fulfillment_id", "variant": "declaration", "kind": 1024, @@ -11391,16 +11391,16 @@ { "title": "Properties", "children": [ - 3664, - 3665, - 3666, - 3667 + 3469, + 3470, + 3471, + 3472 ] } ] }, { - "id": 3173, + "id": 2978, "name": "CreateFulfillmentSetDTO", "variant": "declaration", "kind": 256, @@ -11415,7 +11415,7 @@ }, "children": [ { - "id": 3174, + "id": 2979, "name": "name", "variant": "declaration", "kind": 1024, @@ -11434,7 +11434,7 @@ } }, { - "id": 3175, + "id": 2980, "name": "type", "variant": "declaration", "kind": 1024, @@ -11453,7 +11453,7 @@ } }, { - "id": 3176, + "id": 2981, "name": "service_zones", "variant": "declaration", "kind": 1024, @@ -11479,7 +11479,7 @@ "typeArguments": [ { "type": "reference", - "target": 3208, + "target": 3013, "name": "CreateServiceZoneDTO", "package": "@medusajs/types" }, @@ -11498,15 +11498,15 @@ { "title": "Properties", "children": [ - 3174, - 3175, - 3176 + 2979, + 2980, + 2981 ] } ] }, { - "id": 3177, + "id": 2982, "name": "UpdateFulfillmentSetDTO", "variant": "declaration", "kind": 256, @@ -11521,7 +11521,7 @@ }, "children": [ { - "id": 3178, + "id": 2983, "name": "id", "variant": "declaration", "kind": 1024, @@ -11540,7 +11540,7 @@ } }, { - "id": 3179, + "id": 2984, "name": "name", "variant": "declaration", "kind": 1024, @@ -11561,7 +11561,7 @@ } }, { - "id": 3180, + "id": 2985, "name": "type", "variant": "declaration", "kind": 1024, @@ -11582,7 +11582,7 @@ } }, { - "id": 3181, + "id": 2986, "name": "service_zones", "variant": "declaration", "kind": 1024, @@ -11611,7 +11611,7 @@ "typeArguments": [ { "type": "reference", - "target": 3208, + "target": 3013, "name": "CreateServiceZoneDTO", "package": "@medusajs/types" }, @@ -11626,14 +11626,14 @@ { "type": "reflection", "declaration": { - "id": 3182, + "id": 2987, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3183, + "id": 2988, "name": "id", "variant": "declaration", "kind": 1024, @@ -11656,7 +11656,7 @@ { "title": "Properties", "children": [ - 3183 + 2988 ] } ] @@ -11671,16 +11671,16 @@ { "title": "Properties", "children": [ - 3178, - 3179, - 3180, - 3181 + 2983, + 2984, + 2985, + 2986 ] } ] }, { - "id": 3438, + "id": 3243, "name": "CreateFulfillmentDTO", "variant": "declaration", "kind": 256, @@ -11695,7 +11695,7 @@ }, "children": [ { - "id": 3439, + "id": 3244, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -11714,7 +11714,7 @@ } }, { - "id": 3440, + "id": 3245, "name": "packed_at", "variant": "declaration", "kind": 1024, @@ -11749,7 +11749,7 @@ } }, { - "id": 3441, + "id": 3246, "name": "shipped_at", "variant": "declaration", "kind": 1024, @@ -11784,7 +11784,7 @@ } }, { - "id": 3442, + "id": 3247, "name": "delivered_at", "variant": "declaration", "kind": 1024, @@ -11819,7 +11819,7 @@ } }, { - "id": 3443, + "id": 3248, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -11854,7 +11854,7 @@ } }, { - "id": 3444, + "id": 3249, "name": "data", "variant": "declaration", "kind": 1024, @@ -11899,7 +11899,7 @@ } }, { - "id": 3445, + "id": 3250, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -11918,7 +11918,7 @@ } }, { - "id": 3446, + "id": 3251, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -11948,7 +11948,7 @@ } }, { - "id": 3447, + "id": 3252, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -11993,7 +11993,7 @@ } }, { - "id": 3448, + "id": 3253, "name": "delivery_address", "variant": "declaration", "kind": 1024, @@ -12015,7 +12015,7 @@ "typeArguments": [ { "type": "reference", - "target": 3642, + "target": 3447, "name": "CreateFulfillmentAddressDTO", "package": "@medusajs/types" }, @@ -12029,7 +12029,7 @@ } }, { - "id": 3449, + "id": 3254, "name": "items", "variant": "declaration", "kind": 1024, @@ -12053,7 +12053,7 @@ "typeArguments": [ { "type": "reference", - "target": 3655, + "target": 3460, "name": "CreateFulfillmentItemDTO", "package": "@medusajs/types" }, @@ -12068,7 +12068,7 @@ } }, { - "id": 3450, + "id": 3255, "name": "labels", "variant": "declaration", "kind": 1024, @@ -12092,7 +12092,7 @@ "typeArguments": [ { "type": "reference", - "target": 3663, + "target": 3468, "name": "CreateFulfillmentLabelDTO", "package": "@medusajs/types" }, @@ -12107,7 +12107,7 @@ } }, { - "id": 3451, + "id": 3256, "name": "order", "variant": "declaration", "kind": 1024, @@ -12131,7 +12131,7 @@ "typeArguments": [ { "type": "reference", - "target": 3668, + "target": 3473, "name": "OrderDTO", "package": "@medusajs/types" } @@ -12145,25 +12145,25 @@ { "title": "Properties", "children": [ - 3439, - 3440, - 3441, - 3442, - 3443, - 3444, - 3445, - 3446, - 3447, - 3448, - 3449, - 3450, - 3451 + 3244, + 3245, + 3246, + 3247, + 3248, + 3249, + 3250, + 3251, + 3252, + 3253, + 3254, + 3255, + 3256 ] } ] }, { - "id": 3452, + "id": 3257, "name": "UpdateFulfillmentDTO", "variant": "declaration", "kind": 256, @@ -12178,7 +12178,7 @@ }, "children": [ { - "id": 3453, + "id": 3258, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -12199,7 +12199,7 @@ } }, { - "id": 3454, + "id": 3259, "name": "packed_at", "variant": "declaration", "kind": 1024, @@ -12234,7 +12234,7 @@ } }, { - "id": 3455, + "id": 3260, "name": "shipped_at", "variant": "declaration", "kind": 1024, @@ -12269,7 +12269,7 @@ } }, { - "id": 3456, + "id": 3261, "name": "delivered_at", "variant": "declaration", "kind": 1024, @@ -12304,7 +12304,7 @@ } }, { - "id": 3457, + "id": 3262, "name": "data", "variant": "declaration", "kind": 1024, @@ -12349,7 +12349,7 @@ } }, { - "id": 3458, + "id": 3263, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -12394,7 +12394,7 @@ } }, { - "id": 3459, + "id": 3264, "name": "labels", "variant": "declaration", "kind": 1024, @@ -12423,7 +12423,7 @@ "typeArguments": [ { "type": "reference", - "target": 3663, + "target": 3468, "name": "CreateFulfillmentLabelDTO", "package": "@medusajs/types" }, @@ -12438,14 +12438,14 @@ { "type": "reflection", "declaration": { - "id": 3460, + "id": 3265, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3461, + "id": 3266, "name": "id", "variant": "declaration", "kind": 1024, @@ -12460,7 +12460,7 @@ { "title": "Properties", "children": [ - 3461 + 3266 ] } ] @@ -12475,19 +12475,19 @@ { "title": "Properties", "children": [ - 3453, - 3454, - 3455, - 3456, - 3457, - 3458, - 3459 + 3258, + 3259, + 3260, + 3261, + 3262, + 3263, + 3264 ] } ] }, { - "id": 3778, + "id": 3584, "name": "CreateGeoZoneBaseDTO", "variant": "declaration", "kind": 256, @@ -12502,7 +12502,7 @@ }, "children": [ { - "id": 3779, + "id": 3585, "name": "type", "variant": "declaration", "kind": 1024, @@ -12517,13 +12517,13 @@ }, "type": { "type": "reference", - "target": 3594, + "target": 3399, "name": "GeoZoneType", "package": "@medusajs/types" } }, { - "id": 3780, + "id": 3586, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -12542,7 +12542,7 @@ } }, { - "id": 3781, + "id": 3587, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -12561,7 +12561,7 @@ } }, { - "id": 3782, + "id": 3588, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -12610,38 +12610,38 @@ { "title": "Properties", "children": [ - 3779, - 3780, - 3781, - 3782 + 3585, + 3586, + 3587, + 3588 ] } ], "extendedBy": [ { "type": "reference", - "target": 3538, + "target": 3343, "name": "CreateCountryGeoZoneDTO" }, { "type": "reference", - "target": 3543, + "target": 3348, "name": "CreateProvinceGeoZoneDTO" }, { "type": "reference", - "target": 3549, + "target": 3354, "name": "CreateCityGeoZoneDTO" }, { "type": "reference", - "target": 3556, + "target": 3361, "name": "CreateZipGeoZoneDTO" } ] }, { - "id": 3538, + "id": 3343, "name": "CreateCountryGeoZoneDTO", "variant": "declaration", "kind": 256, @@ -12664,7 +12664,7 @@ }, "children": [ { - "id": 3540, + "id": 3345, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -12685,12 +12685,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3780, + "target": 3586, "name": "CreateGeoZoneBaseDTO.service_zone_id" } }, { - "id": 3541, + "id": 3346, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -12711,12 +12711,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3781, + "target": 3587, "name": "CreateGeoZoneBaseDTO.country_code" } }, { - "id": 3542, + "id": 3347, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -12762,12 +12762,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3782, + "target": 3588, "name": "CreateGeoZoneBaseDTO.metadata" } }, { - "id": 3539, + "id": 3344, "name": "type", "variant": "declaration", "kind": 1024, @@ -12797,7 +12797,7 @@ }, "overwrites": { "type": "reference", - "target": 3779, + "target": 3585, "name": "CreateGeoZoneBaseDTO.type" } } @@ -12806,24 +12806,24 @@ { "title": "Properties", "children": [ - 3540, - 3541, - 3542, - 3539 + 3345, + 3346, + 3347, + 3344 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3778, + "target": 3584, "name": "CreateGeoZoneBaseDTO", "package": "@medusajs/types" } ] }, { - "id": 3543, + "id": 3348, "name": "CreateProvinceGeoZoneDTO", "variant": "declaration", "kind": 256, @@ -12846,7 +12846,7 @@ }, "children": [ { - "id": 3546, + "id": 3351, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -12867,12 +12867,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3780, + "target": 3586, "name": "CreateGeoZoneBaseDTO.service_zone_id" } }, { - "id": 3547, + "id": 3352, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -12893,12 +12893,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3781, + "target": 3587, "name": "CreateGeoZoneBaseDTO.country_code" } }, { - "id": 3548, + "id": 3353, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -12944,12 +12944,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3782, + "target": 3588, "name": "CreateGeoZoneBaseDTO.metadata" } }, { - "id": 3544, + "id": 3349, "name": "type", "variant": "declaration", "kind": 1024, @@ -12979,12 +12979,12 @@ }, "overwrites": { "type": "reference", - "target": 3779, + "target": 3585, "name": "CreateGeoZoneBaseDTO.type" } }, { - "id": 3545, + "id": 3350, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -13007,25 +13007,25 @@ { "title": "Properties", "children": [ - 3546, - 3547, - 3548, - 3544, - 3545 + 3351, + 3352, + 3353, + 3349, + 3350 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3778, + "target": 3584, "name": "CreateGeoZoneBaseDTO", "package": "@medusajs/types" } ] }, { - "id": 3549, + "id": 3354, "name": "CreateCityGeoZoneDTO", "variant": "declaration", "kind": 256, @@ -13048,7 +13048,7 @@ }, "children": [ { - "id": 3553, + "id": 3358, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -13069,12 +13069,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3780, + "target": 3586, "name": "CreateGeoZoneBaseDTO.service_zone_id" } }, { - "id": 3554, + "id": 3359, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -13095,12 +13095,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3781, + "target": 3587, "name": "CreateGeoZoneBaseDTO.country_code" } }, { - "id": 3555, + "id": 3360, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -13146,12 +13146,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3782, + "target": 3588, "name": "CreateGeoZoneBaseDTO.metadata" } }, { - "id": 3550, + "id": 3355, "name": "type", "variant": "declaration", "kind": 1024, @@ -13181,12 +13181,12 @@ }, "overwrites": { "type": "reference", - "target": 3779, + "target": 3585, "name": "CreateGeoZoneBaseDTO.type" } }, { - "id": 3551, + "id": 3356, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -13205,7 +13205,7 @@ } }, { - "id": 3552, + "id": 3357, "name": "city", "variant": "declaration", "kind": 1024, @@ -13228,26 +13228,26 @@ { "title": "Properties", "children": [ - 3553, - 3554, - 3555, - 3550, - 3551, - 3552 + 3358, + 3359, + 3360, + 3355, + 3356, + 3357 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3778, + "target": 3584, "name": "CreateGeoZoneBaseDTO", "package": "@medusajs/types" } ] }, { - "id": 3556, + "id": 3361, "name": "CreateZipGeoZoneDTO", "variant": "declaration", "kind": 256, @@ -13270,7 +13270,7 @@ }, "children": [ { - "id": 3561, + "id": 3366, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -13291,12 +13291,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3780, + "target": 3586, "name": "CreateGeoZoneBaseDTO.service_zone_id" } }, { - "id": 3562, + "id": 3367, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -13317,12 +13317,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3781, + "target": 3587, "name": "CreateGeoZoneBaseDTO.country_code" } }, { - "id": 3563, + "id": 3368, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -13368,12 +13368,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3782, + "target": 3588, "name": "CreateGeoZoneBaseDTO.metadata" } }, { - "id": 3557, + "id": 3362, "name": "type", "variant": "declaration", "kind": 1024, @@ -13403,12 +13403,12 @@ }, "overwrites": { "type": "reference", - "target": 3779, + "target": 3585, "name": "CreateGeoZoneBaseDTO.type" } }, { - "id": 3558, + "id": 3363, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -13427,7 +13427,7 @@ } }, { - "id": 3559, + "id": 3364, "name": "city", "variant": "declaration", "kind": 1024, @@ -13446,7 +13446,7 @@ } }, { - "id": 3560, + "id": 3365, "name": "postal_expression", "variant": "declaration", "kind": 1024, @@ -13484,27 +13484,27 @@ { "title": "Properties", "children": [ - 3561, - 3562, - 3563, - 3557, - 3558, - 3559, - 3560 + 3366, + 3367, + 3368, + 3362, + 3363, + 3364, + 3365 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3778, + "target": 3584, "name": "CreateGeoZoneBaseDTO", "package": "@medusajs/types" } ] }, { - "id": 3243, + "id": 3048, "name": "CreateGeoZoneDTO", "variant": "declaration", "kind": 2097152, @@ -13530,25 +13530,25 @@ "types": [ { "type": "reference", - "target": 3538, + "target": 3343, "name": "CreateCountryGeoZoneDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 3543, + "target": 3348, "name": "CreateProvinceGeoZoneDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 3549, + "target": 3354, "name": "CreateCityGeoZoneDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 3556, + "target": 3361, "name": "CreateZipGeoZoneDTO", "package": "@medusajs/types" } @@ -13556,7 +13556,7 @@ } }, { - "id": 3783, + "id": 3589, "name": "UpdateGeoZoneBaseDTO", "variant": "declaration", "kind": 256, @@ -13571,7 +13571,7 @@ }, "children": [ { - "id": 3785, + "id": 3591, "name": "type", "variant": "declaration", "kind": 1024, @@ -13589,7 +13589,7 @@ }, "type": { "type": "reference", - "target": 3594, + "target": 3399, "name": "GeoZoneType", "package": "@medusajs/types" }, @@ -13600,7 +13600,7 @@ } }, { - "id": 3786, + "id": 3592, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -13627,7 +13627,7 @@ } }, { - "id": 3787, + "id": 3593, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -13654,7 +13654,7 @@ } }, { - "id": 3788, + "id": 3594, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -13705,7 +13705,7 @@ } }, { - "id": 3784, + "id": 3590, "name": "id", "variant": "declaration", "kind": 1024, @@ -13728,11 +13728,11 @@ { "title": "Properties", "children": [ - 3785, - 3786, - 3787, - 3788, - 3784 + 3591, + 3592, + 3593, + 3594, + 3590 ] } ], @@ -13746,7 +13746,7 @@ "typeArguments": [ { "type": "reference", - "target": 3778, + "target": 3584, "name": "CreateGeoZoneBaseDTO", "package": "@medusajs/types" } @@ -13758,28 +13758,28 @@ "extendedBy": [ { "type": "reference", - "target": 3564, + "target": 3369, "name": "UpdateCountryGeoZoneDTO" }, { "type": "reference", - "target": 3570, + "target": 3375, "name": "UpdateProvinceGeoZoneDTO" }, { "type": "reference", - "target": 3577, + "target": 3382, "name": "UpdateCityGeoZoneDTO" }, { "type": "reference", - "target": 3585, + "target": 3390, "name": "UpdateZipGeoZoneDTO" } ] }, { - "id": 3564, + "id": 3369, "name": "UpdateCountryGeoZoneDTO", "variant": "declaration", "kind": 256, @@ -13802,7 +13802,7 @@ }, "children": [ { - "id": 3567, + "id": 3372, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -13824,12 +13824,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3786, + "target": 3592, "name": "UpdateGeoZoneBaseDTO.service_zone_id" } }, { - "id": 3568, + "id": 3373, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -13851,12 +13851,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3787, + "target": 3593, "name": "UpdateGeoZoneBaseDTO.country_code" } }, { - "id": 3569, + "id": 3374, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -13902,12 +13902,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3788, + "target": 3594, "name": "UpdateGeoZoneBaseDTO.metadata" } }, { - "id": 3566, + "id": 3371, "name": "id", "variant": "declaration", "kind": 1024, @@ -13928,12 +13928,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3784, + "target": 3590, "name": "UpdateGeoZoneBaseDTO.id" } }, { - "id": 3565, + "id": 3370, "name": "type", "variant": "declaration", "kind": 1024, @@ -13963,7 +13963,7 @@ }, "overwrites": { "type": "reference", - "target": 3785, + "target": 3591, "name": "UpdateGeoZoneBaseDTO.type" } } @@ -13972,25 +13972,25 @@ { "title": "Properties", "children": [ - 3567, - 3568, - 3569, - 3566, - 3565 + 3372, + 3373, + 3374, + 3371, + 3370 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3783, + "target": 3589, "name": "UpdateGeoZoneBaseDTO", "package": "@medusajs/types" } ] }, { - "id": 3570, + "id": 3375, "name": "UpdateProvinceGeoZoneDTO", "variant": "declaration", "kind": 256, @@ -14013,7 +14013,7 @@ }, "children": [ { - "id": 3574, + "id": 3379, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -14035,12 +14035,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3786, + "target": 3592, "name": "UpdateGeoZoneBaseDTO.service_zone_id" } }, { - "id": 3575, + "id": 3380, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -14062,12 +14062,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3787, + "target": 3593, "name": "UpdateGeoZoneBaseDTO.country_code" } }, { - "id": 3576, + "id": 3381, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -14113,12 +14113,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3788, + "target": 3594, "name": "UpdateGeoZoneBaseDTO.metadata" } }, { - "id": 3573, + "id": 3378, "name": "id", "variant": "declaration", "kind": 1024, @@ -14139,12 +14139,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3784, + "target": 3590, "name": "UpdateGeoZoneBaseDTO.id" } }, { - "id": 3571, + "id": 3376, "name": "type", "variant": "declaration", "kind": 1024, @@ -14174,12 +14174,12 @@ }, "overwrites": { "type": "reference", - "target": 3785, + "target": 3591, "name": "UpdateGeoZoneBaseDTO.type" } }, { - "id": 3572, + "id": 3377, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -14202,26 +14202,26 @@ { "title": "Properties", "children": [ - 3574, - 3575, - 3576, - 3573, - 3571, - 3572 + 3379, + 3380, + 3381, + 3378, + 3376, + 3377 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3783, + "target": 3589, "name": "UpdateGeoZoneBaseDTO", "package": "@medusajs/types" } ] }, { - "id": 3577, + "id": 3382, "name": "UpdateCityGeoZoneDTO", "variant": "declaration", "kind": 256, @@ -14244,7 +14244,7 @@ }, "children": [ { - "id": 3582, + "id": 3387, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -14266,12 +14266,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3786, + "target": 3592, "name": "UpdateGeoZoneBaseDTO.service_zone_id" } }, { - "id": 3583, + "id": 3388, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -14293,12 +14293,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3787, + "target": 3593, "name": "UpdateGeoZoneBaseDTO.country_code" } }, { - "id": 3584, + "id": 3389, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -14344,12 +14344,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3788, + "target": 3594, "name": "UpdateGeoZoneBaseDTO.metadata" } }, { - "id": 3581, + "id": 3386, "name": "id", "variant": "declaration", "kind": 1024, @@ -14370,12 +14370,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3784, + "target": 3590, "name": "UpdateGeoZoneBaseDTO.id" } }, { - "id": 3578, + "id": 3383, "name": "type", "variant": "declaration", "kind": 1024, @@ -14405,12 +14405,12 @@ }, "overwrites": { "type": "reference", - "target": 3785, + "target": 3591, "name": "UpdateGeoZoneBaseDTO.type" } }, { - "id": 3579, + "id": 3384, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -14431,7 +14431,7 @@ } }, { - "id": 3580, + "id": 3385, "name": "city", "variant": "declaration", "kind": 1024, @@ -14456,27 +14456,27 @@ { "title": "Properties", "children": [ - 3582, - 3583, - 3584, - 3581, - 3578, - 3579, - 3580 + 3387, + 3388, + 3389, + 3386, + 3383, + 3384, + 3385 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3783, + "target": 3589, "name": "UpdateGeoZoneBaseDTO", "package": "@medusajs/types" } ] }, { - "id": 3585, + "id": 3390, "name": "UpdateZipGeoZoneDTO", "variant": "declaration", "kind": 256, @@ -14499,7 +14499,7 @@ }, "children": [ { - "id": 3591, + "id": 3396, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -14521,12 +14521,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3786, + "target": 3592, "name": "UpdateGeoZoneBaseDTO.service_zone_id" } }, { - "id": 3592, + "id": 3397, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -14548,12 +14548,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3787, + "target": 3593, "name": "UpdateGeoZoneBaseDTO.country_code" } }, { - "id": 3593, + "id": 3398, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -14599,12 +14599,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3788, + "target": 3594, "name": "UpdateGeoZoneBaseDTO.metadata" } }, { - "id": 3590, + "id": 3395, "name": "id", "variant": "declaration", "kind": 1024, @@ -14625,12 +14625,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3784, + "target": 3590, "name": "UpdateGeoZoneBaseDTO.id" } }, { - "id": 3586, + "id": 3391, "name": "type", "variant": "declaration", "kind": 1024, @@ -14660,12 +14660,12 @@ }, "overwrites": { "type": "reference", - "target": 3785, + "target": 3591, "name": "UpdateGeoZoneBaseDTO.type" } }, { - "id": 3587, + "id": 3392, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -14686,7 +14686,7 @@ } }, { - "id": 3588, + "id": 3393, "name": "city", "variant": "declaration", "kind": 1024, @@ -14707,7 +14707,7 @@ } }, { - "id": 3589, + "id": 3394, "name": "postal_expression", "variant": "declaration", "kind": 1024, @@ -14747,28 +14747,28 @@ { "title": "Properties", "children": [ - 3591, - 3592, - 3593, - 3590, - 3586, - 3587, - 3588, - 3589 + 3396, + 3397, + 3398, + 3395, + 3391, + 3392, + 3393, + 3394 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3783, + "target": 3589, "name": "UpdateGeoZoneBaseDTO", "package": "@medusajs/types" } ] }, { - "id": 3244, + "id": 3049, "name": "UpdateGeoZoneDTO", "variant": "declaration", "kind": 2097152, @@ -14794,25 +14794,25 @@ "types": [ { "type": "reference", - "target": 3564, + "target": 3369, "name": "UpdateCountryGeoZoneDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 3570, + "target": 3375, "name": "UpdateProvinceGeoZoneDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 3577, + "target": 3382, "name": "UpdateCityGeoZoneDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 3585, + "target": 3390, "name": "UpdateZipGeoZoneDTO", "package": "@medusajs/types" } @@ -14820,7 +14820,7 @@ } }, { - "id": 3208, + "id": 3013, "name": "CreateServiceZoneDTO", "variant": "declaration", "kind": 256, @@ -14835,7 +14835,7 @@ }, "children": [ { - "id": 3209, + "id": 3014, "name": "name", "variant": "declaration", "kind": 1024, @@ -14854,7 +14854,7 @@ } }, { - "id": 3210, + "id": 3015, "name": "fulfillment_set_id", "variant": "declaration", "kind": 1024, @@ -14873,7 +14873,7 @@ } }, { - "id": 3211, + "id": 3016, "name": "geo_zones", "variant": "declaration", "kind": 1024, @@ -14902,7 +14902,7 @@ "typeArguments": [ { "type": "reference", - "target": 3538, + "target": 3343, "name": "CreateCountryGeoZoneDTO", "package": "@medusajs/types" }, @@ -14923,7 +14923,7 @@ "typeArguments": [ { "type": "reference", - "target": 3543, + "target": 3348, "name": "CreateProvinceGeoZoneDTO", "package": "@medusajs/types" }, @@ -14944,7 +14944,7 @@ "typeArguments": [ { "type": "reference", - "target": 3549, + "target": 3354, "name": "CreateCityGeoZoneDTO", "package": "@medusajs/types" }, @@ -14965,7 +14965,7 @@ "typeArguments": [ { "type": "reference", - "target": 3556, + "target": 3361, "name": "CreateZipGeoZoneDTO", "package": "@medusajs/types" }, @@ -14986,15 +14986,15 @@ { "title": "Properties", "children": [ - 3209, - 3210, - 3211 + 3014, + 3015, + 3016 ] } ] }, { - "id": 3212, + "id": 3017, "name": "UpdateServiceZoneDTO", "variant": "declaration", "kind": 256, @@ -15009,7 +15009,7 @@ }, "children": [ { - "id": 3213, + "id": 3018, "name": "id", "variant": "declaration", "kind": 1024, @@ -15030,7 +15030,7 @@ } }, { - "id": 3214, + "id": 3019, "name": "name", "variant": "declaration", "kind": 1024, @@ -15060,7 +15060,7 @@ } }, { - "id": 3215, + "id": 3020, "name": "geo_zones", "variant": "declaration", "kind": 1024, @@ -15082,25 +15082,25 @@ "types": [ { "type": "reference", - "target": 3564, + "target": 3369, "name": "UpdateCountryGeoZoneDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 3570, + "target": 3375, "name": "UpdateProvinceGeoZoneDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 3577, + "target": 3382, "name": "UpdateCityGeoZoneDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 3585, + "target": 3390, "name": "UpdateZipGeoZoneDTO", "package": "@medusajs/types" }, @@ -15113,7 +15113,7 @@ "typeArguments": [ { "type": "reference", - "target": 3538, + "target": 3343, "name": "CreateCountryGeoZoneDTO", "package": "@medusajs/types" }, @@ -15134,7 +15134,7 @@ "typeArguments": [ { "type": "reference", - "target": 3543, + "target": 3348, "name": "CreateProvinceGeoZoneDTO", "package": "@medusajs/types" }, @@ -15155,7 +15155,7 @@ "typeArguments": [ { "type": "reference", - "target": 3549, + "target": 3354, "name": "CreateCityGeoZoneDTO", "package": "@medusajs/types" }, @@ -15176,7 +15176,7 @@ "typeArguments": [ { "type": "reference", - "target": 3556, + "target": 3361, "name": "CreateZipGeoZoneDTO", "package": "@medusajs/types" }, @@ -15191,14 +15191,14 @@ { "type": "reflection", "declaration": { - "id": 3216, + "id": 3021, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3217, + "id": 3022, "name": "id", "variant": "declaration", "kind": 1024, @@ -15221,7 +15221,7 @@ { "title": "Properties", "children": [ - 3217 + 3022 ] } ] @@ -15236,22 +15236,22 @@ { "title": "Properties", "children": [ - 3213, - 3214, - 3215 + 3018, + 3019, + 3020 ] } ], "extendedBy": [ { "type": "reference", - "target": 3218, + "target": 3023, "name": "UpsertServiceZoneDTO" } ] }, { - "id": 3218, + "id": 3023, "name": "UpsertServiceZoneDTO", "variant": "declaration", "kind": 256, @@ -15266,7 +15266,7 @@ }, "children": [ { - "id": 3219, + "id": 3024, "name": "id", "variant": "declaration", "kind": 1024, @@ -15288,12 +15288,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3213, + "target": 3018, "name": "UpdateServiceZoneDTO.id" } }, { - "id": 3220, + "id": 3025, "name": "name", "variant": "declaration", "kind": 1024, @@ -15324,12 +15324,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3214, + "target": 3019, "name": "UpdateServiceZoneDTO.name" } }, { - "id": 3221, + "id": 3026, "name": "geo_zones", "variant": "declaration", "kind": 1024, @@ -15352,25 +15352,25 @@ "types": [ { "type": "reference", - "target": 3564, + "target": 3369, "name": "UpdateCountryGeoZoneDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 3570, + "target": 3375, "name": "UpdateProvinceGeoZoneDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 3577, + "target": 3382, "name": "UpdateCityGeoZoneDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 3585, + "target": 3390, "name": "UpdateZipGeoZoneDTO", "package": "@medusajs/types" }, @@ -15383,7 +15383,7 @@ "typeArguments": [ { "type": "reference", - "target": 3538, + "target": 3343, "name": "CreateCountryGeoZoneDTO", "package": "@medusajs/types" }, @@ -15404,7 +15404,7 @@ "typeArguments": [ { "type": "reference", - "target": 3543, + "target": 3348, "name": "CreateProvinceGeoZoneDTO", "package": "@medusajs/types" }, @@ -15425,7 +15425,7 @@ "typeArguments": [ { "type": "reference", - "target": 3549, + "target": 3354, "name": "CreateCityGeoZoneDTO", "package": "@medusajs/types" }, @@ -15446,7 +15446,7 @@ "typeArguments": [ { "type": "reference", - "target": 3556, + "target": 3361, "name": "CreateZipGeoZoneDTO", "package": "@medusajs/types" }, @@ -15461,14 +15461,14 @@ { "type": "reflection", "declaration": { - "id": 3222, + "id": 3027, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3223, + "id": 3028, "name": "id", "variant": "declaration", "kind": 1024, @@ -15491,7 +15491,7 @@ { "title": "Properties", "children": [ - 3223 + 3028 ] } ] @@ -15502,7 +15502,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3215, + "target": 3020, "name": "UpdateServiceZoneDTO.geo_zones" } } @@ -15511,23 +15511,23 @@ { "title": "Properties", "children": [ - 3219, - 3220, - 3221 + 3024, + 3025, + 3026 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3212, + "target": 3017, "name": "UpdateServiceZoneDTO", "package": "@medusajs/types" } ] }, { - "id": 3378, + "id": 3183, "name": "CreateShippingOptionRuleDTO", "variant": "declaration", "kind": 256, @@ -15542,7 +15542,7 @@ }, "children": [ { - "id": 3379, + "id": 3184, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -15561,7 +15561,7 @@ } }, { - "id": 3380, + "id": 3185, "name": "operator", "variant": "declaration", "kind": 1024, @@ -15576,13 +15576,13 @@ }, "type": { "type": "reference", - "target": 3601, + "target": 3406, "name": "RuleOperatorType", "package": "@medusajs/types" } }, { - "id": 3381, + "id": 3186, "name": "value", "variant": "declaration", "kind": 1024, @@ -15613,7 +15613,7 @@ } }, { - "id": 3382, + "id": 3187, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -15636,16 +15636,16 @@ { "title": "Properties", "children": [ - 3379, - 3380, - 3381, - 3382 + 3184, + 3185, + 3186, + 3187 ] } ] }, { - "id": 3383, + "id": 3188, "name": "UpdateShippingOptionRuleDTO", "variant": "declaration", "kind": 256, @@ -15660,7 +15660,7 @@ }, "children": [ { - "id": 3385, + "id": 3190, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -15687,7 +15687,7 @@ } }, { - "id": 3386, + "id": 3191, "name": "operator", "variant": "declaration", "kind": 1024, @@ -15705,7 +15705,7 @@ }, "type": { "type": "reference", - "target": 3601, + "target": 3406, "name": "RuleOperatorType", "package": "@medusajs/types" }, @@ -15716,7 +15716,7 @@ } }, { - "id": 3387, + "id": 3192, "name": "value", "variant": "declaration", "kind": 1024, @@ -15755,7 +15755,7 @@ } }, { - "id": 3388, + "id": 3193, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -15782,7 +15782,7 @@ } }, { - "id": 3384, + "id": 3189, "name": "id", "variant": "declaration", "kind": 1024, @@ -15805,11 +15805,11 @@ { "title": "Properties", "children": [ - 3385, - 3386, - 3387, - 3388, - 3384 + 3190, + 3191, + 3192, + 3193, + 3189 ] } ], @@ -15823,7 +15823,7 @@ "typeArguments": [ { "type": "reference", - "target": 3378, + "target": 3183, "name": "CreateShippingOptionRuleDTO", "package": "@medusajs/types" } @@ -15834,7 +15834,7 @@ ] }, { - "id": 3596, + "id": 3401, "name": "CreateShippingOptionTypeDTO", "variant": "declaration", "kind": 256, @@ -15849,7 +15849,7 @@ }, "children": [ { - "id": 3597, + "id": 3402, "name": "label", "variant": "declaration", "kind": 1024, @@ -15868,7 +15868,7 @@ } }, { - "id": 3598, + "id": 3403, "name": "description", "variant": "declaration", "kind": 1024, @@ -15887,7 +15887,7 @@ } }, { - "id": 3599, + "id": 3404, "name": "code", "variant": "declaration", "kind": 1024, @@ -15906,7 +15906,7 @@ } }, { - "id": 3600, + "id": 3405, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -15929,16 +15929,16 @@ { "title": "Properties", "children": [ - 3597, - 3598, - 3599, - 3600 + 3402, + 3403, + 3404, + 3405 ] } ] }, { - "id": 3293, + "id": 3098, "name": "CreateShippingOptionDTO", "variant": "declaration", "kind": 256, @@ -15953,7 +15953,7 @@ }, "children": [ { - "id": 3294, + "id": 3099, "name": "name", "variant": "declaration", "kind": 1024, @@ -15972,7 +15972,7 @@ } }, { - "id": 3295, + "id": 3100, "name": "price_type", "variant": "declaration", "kind": 1024, @@ -15987,13 +15987,13 @@ }, "type": { "type": "reference", - "target": 3595, + "target": 3400, "name": "ShippingOptionPriceType", "package": "@medusajs/types" } }, { - "id": 3296, + "id": 3101, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -16012,7 +16012,7 @@ } }, { - "id": 3297, + "id": 3102, "name": "shipping_profile_id", "variant": "declaration", "kind": 1024, @@ -16031,7 +16031,7 @@ } }, { - "id": 3298, + "id": 3103, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -16050,7 +16050,7 @@ } }, { - "id": 3299, + "id": 3104, "name": "type", "variant": "declaration", "kind": 1024, @@ -16072,7 +16072,7 @@ "typeArguments": [ { "type": "reference", - "target": 3596, + "target": 3401, "name": "CreateShippingOptionTypeDTO", "package": "@medusajs/types" }, @@ -16086,7 +16086,7 @@ } }, { - "id": 3300, + "id": 3105, "name": "data", "variant": "declaration", "kind": 1024, @@ -16131,7 +16131,7 @@ } }, { - "id": 3301, + "id": 3106, "name": "rules", "variant": "declaration", "kind": 1024, @@ -16157,7 +16157,7 @@ "typeArguments": [ { "type": "reference", - "target": 3378, + "target": 3183, "name": "CreateShippingOptionRuleDTO", "package": "@medusajs/types" }, @@ -16176,20 +16176,20 @@ { "title": "Properties", "children": [ - 3294, - 3295, - 3296, - 3297, - 3298, - 3299, - 3300, - 3301 + 3099, + 3100, + 3101, + 3102, + 3103, + 3104, + 3105, + 3106 ] } ] }, { - "id": 3302, + "id": 3107, "name": "UpdateShippingOptionDTO", "variant": "declaration", "kind": 256, @@ -16204,7 +16204,7 @@ }, "children": [ { - "id": 3303, + "id": 3108, "name": "id", "variant": "declaration", "kind": 1024, @@ -16225,7 +16225,7 @@ } }, { - "id": 3304, + "id": 3109, "name": "name", "variant": "declaration", "kind": 1024, @@ -16246,7 +16246,7 @@ } }, { - "id": 3305, + "id": 3110, "name": "price_type", "variant": "declaration", "kind": 1024, @@ -16263,13 +16263,13 @@ }, "type": { "type": "reference", - "target": 3595, + "target": 3400, "name": "ShippingOptionPriceType", "package": "@medusajs/types" } }, { - "id": 3306, + "id": 3111, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -16290,7 +16290,7 @@ } }, { - "id": 3307, + "id": 3112, "name": "shipping_profile_id", "variant": "declaration", "kind": 1024, @@ -16311,7 +16311,7 @@ } }, { - "id": 3308, + "id": 3113, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -16332,7 +16332,7 @@ } }, { - "id": 3309, + "id": 3114, "name": "type", "variant": "declaration", "kind": 1024, @@ -16357,7 +16357,7 @@ "typeArguments": [ { "type": "reference", - "target": 3596, + "target": 3401, "name": "CreateShippingOptionTypeDTO", "package": "@medusajs/types" }, @@ -16372,14 +16372,14 @@ { "type": "reflection", "declaration": { - "id": 3310, + "id": 3115, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3311, + "id": 3116, "name": "id", "variant": "declaration", "kind": 1024, @@ -16402,7 +16402,7 @@ { "title": "Properties", "children": [ - 3311 + 3116 ] } ] @@ -16412,7 +16412,7 @@ } }, { - "id": 3312, + "id": 3117, "name": "data", "variant": "declaration", "kind": 1024, @@ -16457,7 +16457,7 @@ } }, { - "id": 3313, + "id": 3118, "name": "rules", "variant": "declaration", "kind": 1024, @@ -16486,7 +16486,7 @@ "typeArguments": [ { "type": "reference", - "target": 3378, + "target": 3183, "name": "CreateShippingOptionRuleDTO", "package": "@medusajs/types" }, @@ -16501,14 +16501,14 @@ { "type": "reflection", "declaration": { - "id": 3314, + "id": 3119, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3315, + "id": 3120, "name": "id", "variant": "declaration", "kind": 1024, @@ -16531,7 +16531,7 @@ { "title": "Properties", "children": [ - 3315 + 3120 ] } ] @@ -16546,28 +16546,28 @@ { "title": "Properties", "children": [ - 3303, - 3304, - 3305, - 3306, - 3307, - 3308, - 3309, - 3312, - 3313 + 3108, + 3109, + 3110, + 3111, + 3112, + 3113, + 3114, + 3117, + 3118 ] } ], "extendedBy": [ { "type": "reference", - "target": 3316, + "target": 3121, "name": "UpsertShippingOptionDTO" } ] }, { - "id": 3316, + "id": 3121, "name": "UpsertShippingOptionDTO", "variant": "declaration", "kind": 256, @@ -16582,7 +16582,7 @@ }, "children": [ { - "id": 3317, + "id": 3122, "name": "id", "variant": "declaration", "kind": 1024, @@ -16604,12 +16604,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3303, + "target": 3108, "name": "UpdateShippingOptionDTO.id" } }, { - "id": 3318, + "id": 3123, "name": "name", "variant": "declaration", "kind": 1024, @@ -16631,12 +16631,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3304, + "target": 3109, "name": "UpdateShippingOptionDTO.name" } }, { - "id": 3319, + "id": 3124, "name": "price_type", "variant": "declaration", "kind": 1024, @@ -16654,18 +16654,18 @@ }, "type": { "type": "reference", - "target": 3595, + "target": 3400, "name": "ShippingOptionPriceType", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3305, + "target": 3110, "name": "UpdateShippingOptionDTO.price_type" } }, { - "id": 3320, + "id": 3125, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -16687,12 +16687,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3306, + "target": 3111, "name": "UpdateShippingOptionDTO.service_zone_id" } }, { - "id": 3321, + "id": 3126, "name": "shipping_profile_id", "variant": "declaration", "kind": 1024, @@ -16714,12 +16714,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3307, + "target": 3112, "name": "UpdateShippingOptionDTO.shipping_profile_id" } }, { - "id": 3322, + "id": 3127, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -16741,12 +16741,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3308, + "target": 3113, "name": "UpdateShippingOptionDTO.provider_id" } }, { - "id": 3323, + "id": 3128, "name": "type", "variant": "declaration", "kind": 1024, @@ -16773,7 +16773,7 @@ "typeArguments": [ { "type": "reference", - "target": 3596, + "target": 3401, "name": "CreateShippingOptionTypeDTO", "package": "@medusajs/types" }, @@ -16788,14 +16788,14 @@ { "type": "reflection", "declaration": { - "id": 3324, + "id": 3129, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3325, + "id": 3130, "name": "id", "variant": "declaration", "kind": 1024, @@ -16818,7 +16818,7 @@ { "title": "Properties", "children": [ - 3325 + 3130 ] } ] @@ -16828,12 +16828,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3309, + "target": 3114, "name": "UpdateShippingOptionDTO.type" } }, { - "id": 3326, + "id": 3131, "name": "data", "variant": "declaration", "kind": 1024, @@ -16879,12 +16879,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3312, + "target": 3117, "name": "UpdateShippingOptionDTO.data" } }, { - "id": 3327, + "id": 3132, "name": "rules", "variant": "declaration", "kind": 1024, @@ -16914,7 +16914,7 @@ "typeArguments": [ { "type": "reference", - "target": 3378, + "target": 3183, "name": "CreateShippingOptionRuleDTO", "package": "@medusajs/types" }, @@ -16929,14 +16929,14 @@ { "type": "reflection", "declaration": { - "id": 3328, + "id": 3133, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3329, + "id": 3134, "name": "id", "variant": "declaration", "kind": 1024, @@ -16959,7 +16959,7 @@ { "title": "Properties", "children": [ - 3329 + 3134 ] } ] @@ -16970,7 +16970,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 3313, + "target": 3118, "name": "UpdateShippingOptionDTO.rules" } } @@ -16979,29 +16979,29 @@ { "title": "Properties", "children": [ - 3317, - 3318, - 3319, - 3320, - 3321, - 3322, - 3323, - 3326, - 3327 + 3122, + 3123, + 3124, + 3125, + 3126, + 3127, + 3128, + 3131, + 3132 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3302, + "target": 3107, "name": "UpdateShippingOptionDTO", "package": "@medusajs/types" } ] }, { - "id": 3346, + "id": 3151, "name": "CreateShippingProfileDTO", "variant": "declaration", "kind": 256, @@ -17016,7 +17016,7 @@ }, "children": [ { - "id": 3347, + "id": 3152, "name": "name", "variant": "declaration", "kind": 1024, @@ -17035,7 +17035,7 @@ } }, { - "id": 3348, + "id": 3153, "name": "type", "variant": "declaration", "kind": 1024, @@ -17056,7 +17056,7 @@ } }, { - "id": 3349, + "id": 3154, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -17105,15 +17105,15 @@ { "title": "Properties", "children": [ - 3347, - 3348, - 3349 + 3152, + 3153, + 3154 ] } ] }, { - "id": 3350, + "id": 3155, "name": "UpdateShippingProfileDTO", "variant": "declaration", "kind": 256, @@ -17128,7 +17128,7 @@ }, "children": [ { - "id": 3351, + "id": 3156, "name": "name", "variant": "declaration", "kind": 1024, @@ -17149,7 +17149,7 @@ } }, { - "id": 3352, + "id": 3157, "name": "type", "variant": "declaration", "kind": 1024, @@ -17170,7 +17170,7 @@ } }, { - "id": 3353, + "id": 3158, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -17219,22 +17219,22 @@ { "title": "Properties", "children": [ - 3351, - 3352, - 3353 + 3156, + 3157, + 3158 ] } ], "extendedBy": [ { "type": "reference", - "target": 3354, + "target": 3159, "name": "UpsertShippingProfileDTO" } ] }, { - "id": 3354, + "id": 3159, "name": "UpsertShippingProfileDTO", "variant": "declaration", "kind": 256, @@ -17249,7 +17249,7 @@ }, "children": [ { - "id": 3356, + "id": 3161, "name": "name", "variant": "declaration", "kind": 1024, @@ -17271,12 +17271,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3351, + "target": 3156, "name": "UpdateShippingProfileDTO.name" } }, { - "id": 3357, + "id": 3162, "name": "type", "variant": "declaration", "kind": 1024, @@ -17298,12 +17298,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3352, + "target": 3157, "name": "UpdateShippingProfileDTO.type" } }, { - "id": 3358, + "id": 3163, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -17349,12 +17349,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 3353, + "target": 3158, "name": "UpdateShippingProfileDTO.metadata" } }, { - "id": 3355, + "id": 3160, "name": "id", "variant": "declaration", "kind": 1024, @@ -17371,24 +17371,24 @@ { "title": "Properties", "children": [ - 3356, - 3357, - 3358, - 3355 + 3161, + 3162, + 3163, + 3160 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3350, + "target": 3155, "name": "UpdateShippingProfileDTO", "package": "@medusajs/types" } ] }, { - "id": 2726, + "id": 2531, "name": "IFulfillmentModuleService", "variant": "declaration", "kind": 256, @@ -17403,14 +17403,14 @@ }, "children": [ { - "id": 2727, + "id": 2532, "name": "retrieveFulfillmentSet", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2728, + "id": 2533, "name": "retrieveFulfillmentSet", "variant": "signature", "kind": 4096, @@ -17457,7 +17457,7 @@ }, "parameters": [ { - "id": 2729, + "id": 2534, "name": "id", "variant": "param", "kind": 32768, @@ -17476,7 +17476,7 @@ } }, { - "id": 2730, + "id": 2535, "name": "config", "variant": "param", "kind": 32768, @@ -17509,11 +17509,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3145, + "target": 2950, "name": "FulfillmentSetDTO", "package": "@medusajs/types" } @@ -17523,7 +17523,7 @@ } }, { - "id": 2731, + "id": 2536, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -17540,7 +17540,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -17555,7 +17555,7 @@ "typeArguments": [ { "type": "reference", - "target": 3145, + "target": 2950, "name": "FulfillmentSetDTO", "package": "@medusajs/types" } @@ -17567,14 +17567,14 @@ ] }, { - "id": 2732, + "id": 2537, "name": "listFulfillmentSets", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2733, + "id": 2538, "name": "listFulfillmentSets", "variant": "signature", "kind": 4096, @@ -17661,7 +17661,7 @@ }, "parameters": [ { - "id": 2734, + "id": 2539, "name": "filters", "variant": "param", "kind": 32768, @@ -17678,13 +17678,13 @@ }, "type": { "type": "reference", - "target": 3166, + "target": 2971, "name": "FilterableFulfillmentSetProps", "package": "@medusajs/types" } }, { - "id": 2735, + "id": 2540, "name": "config", "variant": "param", "kind": 32768, @@ -17717,11 +17717,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3145, + "target": 2950, "name": "FulfillmentSetDTO", "package": "@medusajs/types" } @@ -17731,7 +17731,7 @@ } }, { - "id": 2736, + "id": 2541, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -17748,7 +17748,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -17765,7 +17765,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3145, + "target": 2950, "name": "FulfillmentSetDTO", "package": "@medusajs/types" } @@ -17778,14 +17778,14 @@ ] }, { - "id": 2737, + "id": 2542, "name": "listAndCountFulfillmentSets", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2738, + "id": 2543, "name": "listAndCountFulfillmentSets", "variant": "signature", "kind": 4096, @@ -17872,7 +17872,7 @@ }, "parameters": [ { - "id": 2739, + "id": 2544, "name": "filters", "variant": "param", "kind": 32768, @@ -17889,13 +17889,13 @@ }, "type": { "type": "reference", - "target": 3166, + "target": 2971, "name": "FilterableFulfillmentSetProps", "package": "@medusajs/types" } }, { - "id": 2740, + "id": 2545, "name": "config", "variant": "param", "kind": 32768, @@ -17928,11 +17928,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3145, + "target": 2950, "name": "FulfillmentSetDTO", "package": "@medusajs/types" } @@ -17942,7 +17942,7 @@ } }, { - "id": 2741, + "id": 2546, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -17959,7 +17959,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -17979,7 +17979,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3145, + "target": 2950, "name": "FulfillmentSetDTO", "package": "@medusajs/types" } @@ -17998,14 +17998,14 @@ ] }, { - "id": 2742, + "id": 2547, "name": "createFulfillmentSets", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2743, + "id": 2548, "name": "createFulfillmentSets", "variant": "signature", "kind": 4096, @@ -18040,7 +18040,7 @@ }, "parameters": [ { - "id": 2744, + "id": 2549, "name": "data", "variant": "param", "kind": 32768, @@ -18057,14 +18057,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3173, + "target": 2978, "name": "CreateFulfillmentSetDTO", "package": "@medusajs/types" } } }, { - "id": 2745, + "id": 2550, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18081,7 +18081,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -18098,7 +18098,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3145, + "target": 2950, "name": "FulfillmentSetDTO", "package": "@medusajs/types" } @@ -18109,7 +18109,7 @@ } }, { - "id": 2746, + "id": 2551, "name": "createFulfillmentSets", "variant": "signature", "kind": 4096, @@ -18144,7 +18144,7 @@ }, "parameters": [ { - "id": 2747, + "id": 2552, "name": "data", "variant": "param", "kind": 32768, @@ -18159,13 +18159,13 @@ }, "type": { "type": "reference", - "target": 3173, + "target": 2978, "name": "CreateFulfillmentSetDTO", "package": "@medusajs/types" } }, { - "id": 2748, + "id": 2553, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18182,7 +18182,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -18197,7 +18197,7 @@ "typeArguments": [ { "type": "reference", - "target": 3145, + "target": 2950, "name": "FulfillmentSetDTO", "package": "@medusajs/types" } @@ -18209,14 +18209,14 @@ ] }, { - "id": 2749, + "id": 2554, "name": "updateFulfillmentSets", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2750, + "id": 2555, "name": "updateFulfillmentSets", "variant": "signature", "kind": 4096, @@ -18251,7 +18251,7 @@ }, "parameters": [ { - "id": 2751, + "id": 2556, "name": "data", "variant": "param", "kind": 32768, @@ -18268,14 +18268,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3177, + "target": 2982, "name": "UpdateFulfillmentSetDTO", "package": "@medusajs/types" } } }, { - "id": 2752, + "id": 2557, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18292,7 +18292,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -18309,7 +18309,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3145, + "target": 2950, "name": "FulfillmentSetDTO", "package": "@medusajs/types" } @@ -18320,7 +18320,7 @@ } }, { - "id": 2753, + "id": 2558, "name": "updateFulfillmentSets", "variant": "signature", "kind": 4096, @@ -18355,7 +18355,7 @@ }, "parameters": [ { - "id": 2754, + "id": 2559, "name": "data", "variant": "param", "kind": 32768, @@ -18370,13 +18370,13 @@ }, "type": { "type": "reference", - "target": 3177, + "target": 2982, "name": "UpdateFulfillmentSetDTO", "package": "@medusajs/types" } }, { - "id": 2755, + "id": 2560, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18393,7 +18393,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -18408,7 +18408,7 @@ "typeArguments": [ { "type": "reference", - "target": 3145, + "target": 2950, "name": "FulfillmentSetDTO", "package": "@medusajs/types" } @@ -18420,14 +18420,14 @@ ] }, { - "id": 2756, + "id": 2561, "name": "deleteFulfillmentSets", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2757, + "id": 2562, "name": "deleteFulfillmentSets", "variant": "signature", "kind": 4096, @@ -18462,7 +18462,7 @@ }, "parameters": [ { - "id": 2758, + "id": 2563, "name": "ids", "variant": "param", "kind": 32768, @@ -18484,7 +18484,7 @@ } }, { - "id": 2759, + "id": 2564, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18501,7 +18501,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -18524,7 +18524,7 @@ } }, { - "id": 2760, + "id": 2565, "name": "deleteFulfillmentSets", "variant": "signature", "kind": 4096, @@ -18559,7 +18559,7 @@ }, "parameters": [ { - "id": 2761, + "id": 2566, "name": "id", "variant": "param", "kind": 32768, @@ -18578,7 +18578,7 @@ } }, { - "id": 2762, + "id": 2567, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18595,7 +18595,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -18620,14 +18620,14 @@ ] }, { - "id": 2763, + "id": 2568, "name": "softDeleteFulfillmentSets", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2764, + "id": 2569, "name": "softDeleteFulfillmentSets", "variant": "signature", "kind": 4096, @@ -18670,7 +18670,7 @@ }, "typeParameters": [ { - "id": 2765, + "id": 2570, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -18687,7 +18687,7 @@ ], "parameters": [ { - "id": 2766, + "id": 2571, "name": "fulfillmentIds", "variant": "param", "kind": 32768, @@ -18709,7 +18709,7 @@ } }, { - "id": 2767, + "id": 2572, "name": "config", "variant": "param", "kind": 32768, @@ -18726,11 +18726,11 @@ }, "type": { "type": "reference", - "target": 3184, + "target": 2989, "typeArguments": [ { "type": "reference", - "target": 2765, + "target": 2570, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -18741,7 +18741,7 @@ } }, { - "id": 2768, + "id": 2573, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18758,7 +18758,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -18810,14 +18810,14 @@ ] }, { - "id": 2769, + "id": 2574, "name": "restoreFulfillmentSets", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2770, + "id": 2575, "name": "restoreFulfillmentSets", "variant": "signature", "kind": 4096, @@ -18860,7 +18860,7 @@ }, "typeParameters": [ { - "id": 2771, + "id": 2576, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -18877,7 +18877,7 @@ ], "parameters": [ { - "id": 2772, + "id": 2577, "name": "fulfillmentIds", "variant": "param", "kind": 32768, @@ -18899,7 +18899,7 @@ } }, { - "id": 2773, + "id": 2578, "name": "config", "variant": "param", "kind": 32768, @@ -18924,11 +18924,11 @@ }, "type": { "type": "reference", - "target": 3187, + "target": 2992, "typeArguments": [ { "type": "reference", - "target": 2771, + "target": 2576, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -18939,7 +18939,7 @@ } }, { - "id": 2774, + "id": 2579, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18956,7 +18956,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -19008,14 +19008,14 @@ ] }, { - "id": 2775, + "id": 2580, "name": "retrieveServiceZone", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2776, + "id": 2581, "name": "retrieveServiceZone", "variant": "signature", "kind": 4096, @@ -19062,7 +19062,7 @@ }, "parameters": [ { - "id": 2777, + "id": 2582, "name": "id", "variant": "param", "kind": 32768, @@ -19081,7 +19081,7 @@ } }, { - "id": 2778, + "id": 2583, "name": "config", "variant": "param", "kind": 32768, @@ -19114,11 +19114,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } @@ -19128,7 +19128,7 @@ } }, { - "id": 2779, + "id": 2584, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -19145,7 +19145,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -19160,7 +19160,7 @@ "typeArguments": [ { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } @@ -19172,14 +19172,14 @@ ] }, { - "id": 2780, + "id": 2585, "name": "listServiceZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2781, + "id": 2586, "name": "listServiceZones", "variant": "signature", "kind": 4096, @@ -19266,7 +19266,7 @@ }, "parameters": [ { - "id": 2782, + "id": 2587, "name": "filters", "variant": "param", "kind": 32768, @@ -19283,13 +19283,13 @@ }, "type": { "type": "reference", - "target": 3200, + "target": 3005, "name": "FilterableServiceZoneProps", "package": "@medusajs/types" } }, { - "id": 2783, + "id": 2588, "name": "config", "variant": "param", "kind": 32768, @@ -19322,11 +19322,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } @@ -19336,7 +19336,7 @@ } }, { - "id": 2784, + "id": 2589, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -19353,7 +19353,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -19370,7 +19370,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } @@ -19383,14 +19383,14 @@ ] }, { - "id": 2785, + "id": 2590, "name": "listAndCountServiceZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2786, + "id": 2591, "name": "listAndCountServiceZones", "variant": "signature", "kind": 4096, @@ -19477,7 +19477,7 @@ }, "parameters": [ { - "id": 2787, + "id": 2592, "name": "filters", "variant": "param", "kind": 32768, @@ -19494,13 +19494,13 @@ }, "type": { "type": "reference", - "target": 3200, + "target": 3005, "name": "FilterableServiceZoneProps", "package": "@medusajs/types" } }, { - "id": 2788, + "id": 2593, "name": "config", "variant": "param", "kind": 32768, @@ -19533,11 +19533,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } @@ -19547,7 +19547,7 @@ } }, { - "id": 2789, + "id": 2594, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -19564,7 +19564,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -19584,7 +19584,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } @@ -19603,14 +19603,14 @@ ] }, { - "id": 2790, + "id": 2595, "name": "createServiceZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2791, + "id": 2596, "name": "createServiceZones", "variant": "signature", "kind": 4096, @@ -19645,7 +19645,7 @@ }, "parameters": [ { - "id": 2792, + "id": 2597, "name": "data", "variant": "param", "kind": 32768, @@ -19662,14 +19662,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3208, + "target": 3013, "name": "CreateServiceZoneDTO", "package": "@medusajs/types" } } }, { - "id": 2793, + "id": 2598, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -19686,7 +19686,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -19703,7 +19703,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } @@ -19714,7 +19714,7 @@ } }, { - "id": 2794, + "id": 2599, "name": "createServiceZones", "variant": "signature", "kind": 4096, @@ -19749,7 +19749,7 @@ }, "parameters": [ { - "id": 2795, + "id": 2600, "name": "data", "variant": "param", "kind": 32768, @@ -19764,13 +19764,13 @@ }, "type": { "type": "reference", - "target": 3208, + "target": 3013, "name": "CreateServiceZoneDTO", "package": "@medusajs/types" } }, { - "id": 2796, + "id": 2601, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -19787,7 +19787,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -19802,7 +19802,7 @@ "typeArguments": [ { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } @@ -19814,14 +19814,14 @@ ] }, { - "id": 2797, + "id": 2602, "name": "updateServiceZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2798, + "id": 2603, "name": "updateServiceZones", "variant": "signature", "kind": 4096, @@ -19856,7 +19856,7 @@ }, "parameters": [ { - "id": 2799, + "id": 2604, "name": "id", "variant": "param", "kind": 32768, @@ -19875,7 +19875,7 @@ } }, { - "id": 2800, + "id": 2605, "name": "data", "variant": "param", "kind": 32768, @@ -19890,13 +19890,13 @@ }, "type": { "type": "reference", - "target": 3212, + "target": 3017, "name": "UpdateServiceZoneDTO", "package": "@medusajs/types" } }, { - "id": 2801, + "id": 2606, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -19913,7 +19913,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -19928,7 +19928,7 @@ "typeArguments": [ { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } @@ -19938,7 +19938,7 @@ } }, { - "id": 2802, + "id": 2607, "name": "updateServiceZones", "variant": "signature", "kind": 4096, @@ -19973,7 +19973,7 @@ }, "parameters": [ { - "id": 2803, + "id": 2608, "name": "selector", "variant": "param", "kind": 32768, @@ -19988,13 +19988,13 @@ }, "type": { "type": "reference", - "target": 3200, + "target": 3005, "name": "FilterableServiceZoneProps", "package": "@medusajs/types" } }, { - "id": 2804, + "id": 2609, "name": "data", "variant": "param", "kind": 32768, @@ -20009,13 +20009,13 @@ }, "type": { "type": "reference", - "target": 3212, + "target": 3017, "name": "UpdateServiceZoneDTO", "package": "@medusajs/types" } }, { - "id": 2805, + "id": 2610, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20032,7 +20032,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -20049,7 +20049,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } @@ -20062,14 +20062,14 @@ ] }, { - "id": 2806, + "id": 2611, "name": "upsertServiceZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2807, + "id": 2612, "name": "upsertServiceZones", "variant": "signature", "kind": 4096, @@ -20104,7 +20104,7 @@ }, "parameters": [ { - "id": 2808, + "id": 2613, "name": "data", "variant": "param", "kind": 32768, @@ -20119,13 +20119,13 @@ }, "type": { "type": "reference", - "target": 3218, + "target": 3023, "name": "UpsertServiceZoneDTO", "package": "@medusajs/types" } }, { - "id": 2809, + "id": 2614, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20142,7 +20142,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -20157,7 +20157,7 @@ "typeArguments": [ { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } @@ -20167,7 +20167,7 @@ } }, { - "id": 2810, + "id": 2615, "name": "upsertServiceZones", "variant": "signature", "kind": 4096, @@ -20202,7 +20202,7 @@ }, "parameters": [ { - "id": 2811, + "id": 2616, "name": "data", "variant": "param", "kind": 32768, @@ -20219,14 +20219,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3218, + "target": 3023, "name": "UpsertServiceZoneDTO", "package": "@medusajs/types" } } }, { - "id": 2812, + "id": 2617, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20243,7 +20243,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -20260,7 +20260,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3190, + "target": 2995, "name": "ServiceZoneDTO", "package": "@medusajs/types" } @@ -20273,14 +20273,14 @@ ] }, { - "id": 2813, + "id": 2618, "name": "deleteServiceZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2814, + "id": 2619, "name": "deleteServiceZones", "variant": "signature", "kind": 4096, @@ -20315,7 +20315,7 @@ }, "parameters": [ { - "id": 2815, + "id": 2620, "name": "ids", "variant": "param", "kind": 32768, @@ -20337,7 +20337,7 @@ } }, { - "id": 2816, + "id": 2621, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20354,7 +20354,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -20377,7 +20377,7 @@ } }, { - "id": 2817, + "id": 2622, "name": "deleteServiceZones", "variant": "signature", "kind": 4096, @@ -20412,7 +20412,7 @@ }, "parameters": [ { - "id": 2818, + "id": 2623, "name": "id", "variant": "param", "kind": 32768, @@ -20431,7 +20431,7 @@ } }, { - "id": 2819, + "id": 2624, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20448,7 +20448,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -20473,14 +20473,14 @@ ] }, { - "id": 2820, + "id": 2625, "name": "softDeleteServiceZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2821, + "id": 2626, "name": "softDeleteServiceZones", "variant": "signature", "kind": 4096, @@ -20523,7 +20523,7 @@ }, "typeParameters": [ { - "id": 2822, + "id": 2627, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -20540,7 +20540,7 @@ ], "parameters": [ { - "id": 2823, + "id": 2628, "name": "serviceZoneIds", "variant": "param", "kind": 32768, @@ -20562,7 +20562,7 @@ } }, { - "id": 2824, + "id": 2629, "name": "config", "variant": "param", "kind": 32768, @@ -20579,11 +20579,11 @@ }, "type": { "type": "reference", - "target": 3184, + "target": 2989, "typeArguments": [ { "type": "reference", - "target": 2822, + "target": 2627, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -20594,7 +20594,7 @@ } }, { - "id": 2825, + "id": 2630, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20611,7 +20611,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -20663,14 +20663,14 @@ ] }, { - "id": 2826, + "id": 2631, "name": "restoreServiceZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2827, + "id": 2632, "name": "restoreServiceZones", "variant": "signature", "kind": 4096, @@ -20713,7 +20713,7 @@ }, "typeParameters": [ { - "id": 2828, + "id": 2633, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -20730,7 +20730,7 @@ ], "parameters": [ { - "id": 2829, + "id": 2634, "name": "serviceZoneIds", "variant": "param", "kind": 32768, @@ -20752,7 +20752,7 @@ } }, { - "id": 2830, + "id": 2635, "name": "config", "variant": "param", "kind": 32768, @@ -20785,11 +20785,11 @@ }, "type": { "type": "reference", - "target": 3187, + "target": 2992, "typeArguments": [ { "type": "reference", - "target": 2828, + "target": 2633, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -20800,7 +20800,7 @@ } }, { - "id": 2831, + "id": 2636, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20817,7 +20817,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -20869,14 +20869,14 @@ ] }, { - "id": 2832, + "id": 2637, "name": "retrieveGeoZone", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2833, + "id": 2638, "name": "retrieveGeoZone", "variant": "signature", "kind": 4096, @@ -20923,7 +20923,7 @@ }, "parameters": [ { - "id": 2834, + "id": 2639, "name": "id", "variant": "param", "kind": 32768, @@ -20942,7 +20942,7 @@ } }, { - "id": 2835, + "id": 2640, "name": "config", "variant": "param", "kind": 32768, @@ -20975,11 +20975,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3224, + "target": 3029, "name": "GeoZoneDTO", "package": "@medusajs/types" } @@ -20989,7 +20989,7 @@ } }, { - "id": 2836, + "id": 2641, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -21006,7 +21006,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -21021,7 +21021,7 @@ "typeArguments": [ { "type": "reference", - "target": 3224, + "target": 3029, "name": "GeoZoneDTO", "package": "@medusajs/types" } @@ -21033,14 +21033,14 @@ ] }, { - "id": 2837, + "id": 2642, "name": "listGeoZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2838, + "id": 2643, "name": "listGeoZones", "variant": "signature", "kind": 4096, @@ -21127,7 +21127,7 @@ }, "parameters": [ { - "id": 2839, + "id": 2644, "name": "filters", "variant": "param", "kind": 32768, @@ -21144,13 +21144,13 @@ }, "type": { "type": "reference", - "target": 3235, + "target": 3040, "name": "FilterableGeoZoneProps", "package": "@medusajs/types" } }, { - "id": 2840, + "id": 2645, "name": "config", "variant": "param", "kind": 32768, @@ -21183,11 +21183,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3224, + "target": 3029, "name": "GeoZoneDTO", "package": "@medusajs/types" } @@ -21197,7 +21197,7 @@ } }, { - "id": 2841, + "id": 2646, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -21214,7 +21214,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -21231,7 +21231,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3224, + "target": 3029, "name": "GeoZoneDTO", "package": "@medusajs/types" } @@ -21244,14 +21244,14 @@ ] }, { - "id": 2842, + "id": 2647, "name": "listAndCountGeoZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2843, + "id": 2648, "name": "listAndCountGeoZones", "variant": "signature", "kind": 4096, @@ -21338,7 +21338,7 @@ }, "parameters": [ { - "id": 2844, + "id": 2649, "name": "filters", "variant": "param", "kind": 32768, @@ -21355,13 +21355,13 @@ }, "type": { "type": "reference", - "target": 3235, + "target": 3040, "name": "FilterableGeoZoneProps", "package": "@medusajs/types" } }, { - "id": 2845, + "id": 2650, "name": "config", "variant": "param", "kind": 32768, @@ -21394,11 +21394,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3224, + "target": 3029, "name": "GeoZoneDTO", "package": "@medusajs/types" } @@ -21408,7 +21408,7 @@ } }, { - "id": 2846, + "id": 2651, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -21425,7 +21425,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -21445,7 +21445,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3224, + "target": 3029, "name": "GeoZoneDTO", "package": "@medusajs/types" } @@ -21464,14 +21464,14 @@ ] }, { - "id": 2847, + "id": 2652, "name": "createGeoZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2848, + "id": 2653, "name": "createGeoZones", "variant": "signature", "kind": 4096, @@ -21506,7 +21506,7 @@ }, "parameters": [ { - "id": 2849, + "id": 2654, "name": "data", "variant": "param", "kind": 32768, @@ -21523,14 +21523,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3243, + "target": 3048, "name": "CreateGeoZoneDTO", "package": "@medusajs/types" } } }, { - "id": 2850, + "id": 2655, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -21547,7 +21547,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -21564,7 +21564,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3224, + "target": 3029, "name": "GeoZoneDTO", "package": "@medusajs/types" } @@ -21575,7 +21575,7 @@ } }, { - "id": 2851, + "id": 2656, "name": "createGeoZones", "variant": "signature", "kind": 4096, @@ -21610,7 +21610,7 @@ }, "parameters": [ { - "id": 2852, + "id": 2657, "name": "data", "variant": "param", "kind": 32768, @@ -21625,13 +21625,13 @@ }, "type": { "type": "reference", - "target": 3243, + "target": 3048, "name": "CreateGeoZoneDTO", "package": "@medusajs/types" } }, { - "id": 2853, + "id": 2658, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -21648,7 +21648,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -21663,7 +21663,7 @@ "typeArguments": [ { "type": "reference", - "target": 3224, + "target": 3029, "name": "GeoZoneDTO", "package": "@medusajs/types" } @@ -21675,14 +21675,14 @@ ] }, { - "id": 2854, + "id": 2659, "name": "updateGeoZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2855, + "id": 2660, "name": "updateGeoZones", "variant": "signature", "kind": 4096, @@ -21717,7 +21717,7 @@ }, "parameters": [ { - "id": 2856, + "id": 2661, "name": "data", "variant": "param", "kind": 32768, @@ -21734,14 +21734,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3244, + "target": 3049, "name": "UpdateGeoZoneDTO", "package": "@medusajs/types" } } }, { - "id": 2857, + "id": 2662, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -21758,7 +21758,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -21775,7 +21775,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3224, + "target": 3029, "name": "GeoZoneDTO", "package": "@medusajs/types" } @@ -21786,7 +21786,7 @@ } }, { - "id": 2858, + "id": 2663, "name": "updateGeoZones", "variant": "signature", "kind": 4096, @@ -21821,7 +21821,7 @@ }, "parameters": [ { - "id": 2859, + "id": 2664, "name": "data", "variant": "param", "kind": 32768, @@ -21836,13 +21836,13 @@ }, "type": { "type": "reference", - "target": 3244, + "target": 3049, "name": "UpdateGeoZoneDTO", "package": "@medusajs/types" } }, { - "id": 2860, + "id": 2665, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -21859,7 +21859,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -21874,7 +21874,7 @@ "typeArguments": [ { "type": "reference", - "target": 3224, + "target": 3029, "name": "GeoZoneDTO", "package": "@medusajs/types" } @@ -21886,14 +21886,14 @@ ] }, { - "id": 2861, + "id": 2666, "name": "deleteGeoZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2862, + "id": 2667, "name": "deleteGeoZones", "variant": "signature", "kind": 4096, @@ -21928,7 +21928,7 @@ }, "parameters": [ { - "id": 2863, + "id": 2668, "name": "ids", "variant": "param", "kind": 32768, @@ -21950,7 +21950,7 @@ } }, { - "id": 2864, + "id": 2669, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -21967,7 +21967,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -21990,7 +21990,7 @@ } }, { - "id": 2865, + "id": 2670, "name": "deleteGeoZones", "variant": "signature", "kind": 4096, @@ -22025,7 +22025,7 @@ }, "parameters": [ { - "id": 2866, + "id": 2671, "name": "id", "variant": "param", "kind": 32768, @@ -22044,7 +22044,7 @@ } }, { - "id": 2867, + "id": 2672, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -22061,7 +22061,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -22086,14 +22086,14 @@ ] }, { - "id": 2868, + "id": 2673, "name": "softDeleteGeoZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2869, + "id": 2674, "name": "softDeleteGeoZones", "variant": "signature", "kind": 4096, @@ -22136,7 +22136,7 @@ }, "typeParameters": [ { - "id": 2870, + "id": 2675, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -22153,7 +22153,7 @@ ], "parameters": [ { - "id": 2871, + "id": 2676, "name": "geoZoneIds", "variant": "param", "kind": 32768, @@ -22175,7 +22175,7 @@ } }, { - "id": 2872, + "id": 2677, "name": "config", "variant": "param", "kind": 32768, @@ -22192,11 +22192,11 @@ }, "type": { "type": "reference", - "target": 3184, + "target": 2989, "typeArguments": [ { "type": "reference", - "target": 2870, + "target": 2675, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -22207,7 +22207,7 @@ } }, { - "id": 2873, + "id": 2678, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -22224,7 +22224,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -22276,14 +22276,14 @@ ] }, { - "id": 2874, + "id": 2679, "name": "restoreGeoZones", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2875, + "id": 2680, "name": "restoreGeoZones", "variant": "signature", "kind": 4096, @@ -22326,7 +22326,7 @@ }, "typeParameters": [ { - "id": 2876, + "id": 2681, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -22343,7 +22343,7 @@ ], "parameters": [ { - "id": 2877, + "id": 2682, "name": "geoZoneIds", "variant": "param", "kind": 32768, @@ -22365,7 +22365,7 @@ } }, { - "id": 2878, + "id": 2683, "name": "config", "variant": "param", "kind": 32768, @@ -22398,11 +22398,11 @@ }, "type": { "type": "reference", - "target": 3187, + "target": 2992, "typeArguments": [ { "type": "reference", - "target": 2876, + "target": 2681, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -22413,7 +22413,7 @@ } }, { - "id": 2879, + "id": 2684, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -22430,7 +22430,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -22482,14 +22482,14 @@ ] }, { - "id": 2880, + "id": 2685, "name": "retrieveShippingOption", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2881, + "id": 2686, "name": "retrieveShippingOption", "variant": "signature", "kind": 4096, @@ -22536,7 +22536,7 @@ }, "parameters": [ { - "id": 2882, + "id": 2687, "name": "id", "variant": "param", "kind": 32768, @@ -22555,7 +22555,7 @@ } }, { - "id": 2883, + "id": 2688, "name": "config", "variant": "param", "kind": 32768, @@ -22588,11 +22588,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -22602,7 +22602,7 @@ } }, { - "id": 2884, + "id": 2689, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -22619,7 +22619,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -22634,7 +22634,7 @@ "typeArguments": [ { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -22646,14 +22646,14 @@ ] }, { - "id": 2885, + "id": 2690, "name": "listShippingOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2886, + "id": 2691, "name": "listShippingOptions", "variant": "signature", "kind": 4096, @@ -22740,7 +22740,7 @@ }, "parameters": [ { - "id": 2887, + "id": 2692, "name": "filters", "variant": "param", "kind": 32768, @@ -22757,13 +22757,13 @@ }, "type": { "type": "reference", - "target": 3264, + "target": 3069, "name": "FilterableShippingOptionForContextProps", "package": "@medusajs/types" } }, { - "id": 2888, + "id": 2693, "name": "config", "variant": "param", "kind": 32768, @@ -22796,11 +22796,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -22810,7 +22810,7 @@ } }, { - "id": 2889, + "id": 2694, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -22827,7 +22827,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -22844,7 +22844,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -22857,14 +22857,14 @@ ] }, { - "id": 2890, + "id": 2695, "name": "listShippingOptionsForContext", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2891, + "id": 2696, "name": "listShippingOptionsForContext", "variant": "signature", "kind": 4096, @@ -22951,7 +22951,7 @@ }, "parameters": [ { - "id": 2892, + "id": 2697, "name": "filters", "variant": "param", "kind": 32768, @@ -22966,13 +22966,13 @@ }, "type": { "type": "reference", - "target": 3264, + "target": 3069, "name": "FilterableShippingOptionForContextProps", "package": "@medusajs/types" } }, { - "id": 2893, + "id": 2698, "name": "config", "variant": "param", "kind": 32768, @@ -23005,11 +23005,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -23019,7 +23019,7 @@ } }, { - "id": 2894, + "id": 2699, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23036,7 +23036,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -23053,7 +23053,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -23066,14 +23066,14 @@ ] }, { - "id": 2895, + "id": 2700, "name": "listAndCountShippingOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2896, + "id": 2701, "name": "listAndCountShippingOptions", "variant": "signature", "kind": 4096, @@ -23160,7 +23160,7 @@ }, "parameters": [ { - "id": 2897, + "id": 2702, "name": "filters", "variant": "param", "kind": 32768, @@ -23184,7 +23184,7 @@ "typeArguments": [ { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps", "package": "@medusajs/types" }, @@ -23198,7 +23198,7 @@ } }, { - "id": 2898, + "id": 2703, "name": "config", "variant": "param", "kind": 32768, @@ -23231,11 +23231,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -23245,7 +23245,7 @@ } }, { - "id": 2899, + "id": 2704, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23262,7 +23262,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -23282,7 +23282,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -23301,14 +23301,14 @@ ] }, { - "id": 2900, + "id": 2705, "name": "createShippingOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2901, + "id": 2706, "name": "createShippingOptions", "variant": "signature", "kind": 4096, @@ -23343,7 +23343,7 @@ }, "parameters": [ { - "id": 2902, + "id": 2707, "name": "data", "variant": "param", "kind": 32768, @@ -23360,14 +23360,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3293, + "target": 3098, "name": "CreateShippingOptionDTO", "package": "@medusajs/types" } } }, { - "id": 2903, + "id": 2708, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23384,7 +23384,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -23401,7 +23401,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -23412,7 +23412,7 @@ } }, { - "id": 2904, + "id": 2709, "name": "createShippingOptions", "variant": "signature", "kind": 4096, @@ -23447,7 +23447,7 @@ }, "parameters": [ { - "id": 2905, + "id": 2710, "name": "data", "variant": "param", "kind": 32768, @@ -23462,13 +23462,13 @@ }, "type": { "type": "reference", - "target": 3293, + "target": 3098, "name": "CreateShippingOptionDTO", "package": "@medusajs/types" } }, { - "id": 2906, + "id": 2711, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23485,7 +23485,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -23500,7 +23500,7 @@ "typeArguments": [ { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -23512,14 +23512,14 @@ ] }, { - "id": 2907, + "id": 2712, "name": "updateShippingOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2908, + "id": 2713, "name": "updateShippingOptions", "variant": "signature", "kind": 4096, @@ -23554,7 +23554,7 @@ }, "parameters": [ { - "id": 2909, + "id": 2714, "name": "id", "variant": "param", "kind": 32768, @@ -23573,7 +23573,7 @@ } }, { - "id": 2910, + "id": 2715, "name": "data", "variant": "param", "kind": 32768, @@ -23588,13 +23588,13 @@ }, "type": { "type": "reference", - "target": 3302, + "target": 3107, "name": "UpdateShippingOptionDTO", "package": "@medusajs/types" } }, { - "id": 2911, + "id": 2716, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23611,7 +23611,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -23626,7 +23626,7 @@ "typeArguments": [ { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -23636,7 +23636,7 @@ } }, { - "id": 2912, + "id": 2717, "name": "updateShippingOptions", "variant": "signature", "kind": 4096, @@ -23671,7 +23671,7 @@ }, "parameters": [ { - "id": 2913, + "id": 2718, "name": "selector", "variant": "param", "kind": 32768, @@ -23686,13 +23686,13 @@ }, "type": { "type": "reference", - "target": 3283, + "target": 3088, "name": "FilterableShippingOptionProps", "package": "@medusajs/types" } }, { - "id": 2914, + "id": 2719, "name": "data", "variant": "param", "kind": 32768, @@ -23707,13 +23707,13 @@ }, "type": { "type": "reference", - "target": 3302, + "target": 3107, "name": "UpdateShippingOptionDTO", "package": "@medusajs/types" } }, { - "id": 2915, + "id": 2720, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23730,7 +23730,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -23747,7 +23747,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -23760,14 +23760,14 @@ ] }, { - "id": 2916, + "id": 2721, "name": "upsertShippingOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2917, + "id": 2722, "name": "upsertShippingOptions", "variant": "signature", "kind": 4096, @@ -23802,7 +23802,7 @@ }, "parameters": [ { - "id": 2918, + "id": 2723, "name": "data", "variant": "param", "kind": 32768, @@ -23817,13 +23817,13 @@ }, "type": { "type": "reference", - "target": 3316, + "target": 3121, "name": "UpsertShippingOptionDTO", "package": "@medusajs/types" } }, { - "id": 2919, + "id": 2724, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23840,7 +23840,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -23855,7 +23855,7 @@ "typeArguments": [ { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -23865,7 +23865,7 @@ } }, { - "id": 2920, + "id": 2725, "name": "upsertShippingOptions", "variant": "signature", "kind": 4096, @@ -23900,7 +23900,7 @@ }, "parameters": [ { - "id": 2921, + "id": 2726, "name": "data", "variant": "param", "kind": 32768, @@ -23917,14 +23917,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3316, + "target": 3121, "name": "UpsertShippingOptionDTO", "package": "@medusajs/types" } } }, { - "id": 2922, + "id": 2727, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23941,7 +23941,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -23958,7 +23958,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3245, + "target": 3050, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -23971,14 +23971,14 @@ ] }, { - "id": 2923, + "id": 2728, "name": "deleteShippingOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2924, + "id": 2729, "name": "deleteShippingOptions", "variant": "signature", "kind": 4096, @@ -24013,7 +24013,7 @@ }, "parameters": [ { - "id": 2925, + "id": 2730, "name": "ids", "variant": "param", "kind": 32768, @@ -24035,7 +24035,7 @@ } }, { - "id": 2926, + "id": 2731, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -24052,7 +24052,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -24075,7 +24075,7 @@ } }, { - "id": 2927, + "id": 2732, "name": "deleteShippingOptions", "variant": "signature", "kind": 4096, @@ -24110,7 +24110,7 @@ }, "parameters": [ { - "id": 2928, + "id": 2733, "name": "id", "variant": "param", "kind": 32768, @@ -24129,7 +24129,7 @@ } }, { - "id": 2929, + "id": 2734, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -24146,7 +24146,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -24171,14 +24171,14 @@ ] }, { - "id": 2930, + "id": 2735, "name": "softDeleteShippingOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2931, + "id": 2736, "name": "softDeleteShippingOptions", "variant": "signature", "kind": 4096, @@ -24221,7 +24221,7 @@ }, "typeParameters": [ { - "id": 2932, + "id": 2737, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -24238,7 +24238,7 @@ ], "parameters": [ { - "id": 2933, + "id": 2738, "name": "shippingOptionIds", "variant": "param", "kind": 32768, @@ -24260,7 +24260,7 @@ } }, { - "id": 2934, + "id": 2739, "name": "config", "variant": "param", "kind": 32768, @@ -24277,11 +24277,11 @@ }, "type": { "type": "reference", - "target": 3184, + "target": 2989, "typeArguments": [ { "type": "reference", - "target": 2932, + "target": 2737, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -24292,7 +24292,7 @@ } }, { - "id": 2935, + "id": 2740, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -24309,7 +24309,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -24361,14 +24361,14 @@ ] }, { - "id": 2936, + "id": 2741, "name": "restoreShippingOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2937, + "id": 2742, "name": "restoreShippingOptions", "variant": "signature", "kind": 4096, @@ -24411,7 +24411,7 @@ }, "typeParameters": [ { - "id": 2938, + "id": 2743, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -24428,7 +24428,7 @@ ], "parameters": [ { - "id": 2939, + "id": 2744, "name": "shippingOptionIds", "variant": "param", "kind": 32768, @@ -24450,7 +24450,7 @@ } }, { - "id": 2940, + "id": 2745, "name": "config", "variant": "param", "kind": 32768, @@ -24475,11 +24475,11 @@ }, "type": { "type": "reference", - "target": 3187, + "target": 2992, "typeArguments": [ { "type": "reference", - "target": 2938, + "target": 2743, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -24490,7 +24490,7 @@ } }, { - "id": 2941, + "id": 2746, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -24507,7 +24507,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -24559,14 +24559,14 @@ ] }, { - "id": 2942, + "id": 2747, "name": "retrieveShippingProfile", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2943, + "id": 2748, "name": "retrieveShippingProfile", "variant": "signature", "kind": 4096, @@ -24613,7 +24613,7 @@ }, "parameters": [ { - "id": 2944, + "id": 2749, "name": "id", "variant": "param", "kind": 32768, @@ -24632,7 +24632,7 @@ } }, { - "id": 2945, + "id": 2750, "name": "config", "variant": "param", "kind": 32768, @@ -24665,11 +24665,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3330, + "target": 3135, "name": "ShippingProfileDTO", "package": "@medusajs/types" } @@ -24679,7 +24679,7 @@ } }, { - "id": 2946, + "id": 2751, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -24696,7 +24696,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -24711,7 +24711,7 @@ "typeArguments": [ { "type": "reference", - "target": 3330, + "target": 3135, "name": "ShippingProfileDTO", "package": "@medusajs/types" } @@ -24723,14 +24723,14 @@ ] }, { - "id": 2947, + "id": 2752, "name": "listShippingProfiles", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2948, + "id": 2753, "name": "listShippingProfiles", "variant": "signature", "kind": 4096, @@ -24817,7 +24817,7 @@ }, "parameters": [ { - "id": 2949, + "id": 2754, "name": "filters", "variant": "param", "kind": 32768, @@ -24834,13 +24834,13 @@ }, "type": { "type": "reference", - "target": 3339, + "target": 3144, "name": "FilterableShippingProfileProps", "package": "@medusajs/types" } }, { - "id": 2950, + "id": 2755, "name": "config", "variant": "param", "kind": 32768, @@ -24873,11 +24873,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3330, + "target": 3135, "name": "ShippingProfileDTO", "package": "@medusajs/types" } @@ -24887,7 +24887,7 @@ } }, { - "id": 2951, + "id": 2756, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -24904,7 +24904,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -24921,7 +24921,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3330, + "target": 3135, "name": "ShippingProfileDTO", "package": "@medusajs/types" } @@ -24934,14 +24934,14 @@ ] }, { - "id": 2952, + "id": 2757, "name": "listAndCountShippingProfiles", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2953, + "id": 2758, "name": "listAndCountShippingProfiles", "variant": "signature", "kind": 4096, @@ -25028,7 +25028,7 @@ }, "parameters": [ { - "id": 2954, + "id": 2759, "name": "filters", "variant": "param", "kind": 32768, @@ -25045,13 +25045,13 @@ }, "type": { "type": "reference", - "target": 3339, + "target": 3144, "name": "FilterableShippingProfileProps", "package": "@medusajs/types" } }, { - "id": 2955, + "id": 2760, "name": "config", "variant": "param", "kind": 32768, @@ -25084,11 +25084,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3330, + "target": 3135, "name": "ShippingProfileDTO", "package": "@medusajs/types" } @@ -25098,7 +25098,7 @@ } }, { - "id": 2956, + "id": 2761, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25115,7 +25115,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -25135,7 +25135,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3330, + "target": 3135, "name": "ShippingProfileDTO", "package": "@medusajs/types" } @@ -25154,14 +25154,14 @@ ] }, { - "id": 2957, + "id": 2762, "name": "createShippingProfiles", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2958, + "id": 2763, "name": "createShippingProfiles", "variant": "signature", "kind": 4096, @@ -25196,7 +25196,7 @@ }, "parameters": [ { - "id": 2959, + "id": 2764, "name": "data", "variant": "param", "kind": 32768, @@ -25213,14 +25213,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3346, + "target": 3151, "name": "CreateShippingProfileDTO", "package": "@medusajs/types" } } }, { - "id": 2960, + "id": 2765, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25237,7 +25237,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -25254,7 +25254,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3330, + "target": 3135, "name": "ShippingProfileDTO", "package": "@medusajs/types" } @@ -25265,7 +25265,7 @@ } }, { - "id": 2961, + "id": 2766, "name": "createShippingProfiles", "variant": "signature", "kind": 4096, @@ -25300,7 +25300,7 @@ }, "parameters": [ { - "id": 2962, + "id": 2767, "name": "data", "variant": "param", "kind": 32768, @@ -25315,13 +25315,13 @@ }, "type": { "type": "reference", - "target": 3346, + "target": 3151, "name": "CreateShippingProfileDTO", "package": "@medusajs/types" } }, { - "id": 2963, + "id": 2768, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25338,7 +25338,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -25353,7 +25353,7 @@ "typeArguments": [ { "type": "reference", - "target": 3330, + "target": 3135, "name": "ShippingProfileDTO", "package": "@medusajs/types" } @@ -25365,14 +25365,14 @@ ] }, { - "id": 2964, + "id": 2769, "name": "updateShippingProfiles", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2965, + "id": 2770, "name": "updateShippingProfiles", "variant": "signature", "kind": 4096, @@ -25407,7 +25407,7 @@ }, "parameters": [ { - "id": 2966, + "id": 2771, "name": "selector", "variant": "param", "kind": 32768, @@ -25422,13 +25422,13 @@ }, "type": { "type": "reference", - "target": 3339, + "target": 3144, "name": "FilterableShippingProfileProps", "package": "@medusajs/types" } }, { - "id": 2967, + "id": 2772, "name": "data", "variant": "param", "kind": 32768, @@ -25443,13 +25443,13 @@ }, "type": { "type": "reference", - "target": 3350, + "target": 3155, "name": "UpdateShippingProfileDTO", "package": "@medusajs/types" } }, { - "id": 2968, + "id": 2773, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25466,7 +25466,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -25483,7 +25483,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3330, + "target": 3135, "name": "ShippingProfileDTO", "package": "@medusajs/types" } @@ -25494,7 +25494,7 @@ } }, { - "id": 2969, + "id": 2774, "name": "updateShippingProfiles", "variant": "signature", "kind": 4096, @@ -25529,7 +25529,7 @@ }, "parameters": [ { - "id": 2970, + "id": 2775, "name": "id", "variant": "param", "kind": 32768, @@ -25548,7 +25548,7 @@ } }, { - "id": 2971, + "id": 2776, "name": "data", "variant": "param", "kind": 32768, @@ -25563,13 +25563,13 @@ }, "type": { "type": "reference", - "target": 3350, + "target": 3155, "name": "UpdateShippingProfileDTO", "package": "@medusajs/types" } }, { - "id": 2972, + "id": 2777, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25586,7 +25586,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -25601,7 +25601,7 @@ "typeArguments": [ { "type": "reference", - "target": 3330, + "target": 3135, "name": "ShippingProfileDTO", "package": "@medusajs/types" } @@ -25613,14 +25613,14 @@ ] }, { - "id": 2973, + "id": 2778, "name": "deleteShippingProfiles", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2974, + "id": 2779, "name": "deleteShippingProfiles", "variant": "signature", "kind": 4096, @@ -25655,7 +25655,7 @@ }, "parameters": [ { - "id": 2975, + "id": 2780, "name": "ids", "variant": "param", "kind": 32768, @@ -25677,7 +25677,7 @@ } }, { - "id": 2976, + "id": 2781, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25694,7 +25694,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -25717,7 +25717,7 @@ } }, { - "id": 2977, + "id": 2782, "name": "deleteShippingProfiles", "variant": "signature", "kind": 4096, @@ -25752,7 +25752,7 @@ }, "parameters": [ { - "id": 2978, + "id": 2783, "name": "id", "variant": "param", "kind": 32768, @@ -25771,7 +25771,7 @@ } }, { - "id": 2979, + "id": 2784, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25788,7 +25788,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -25813,14 +25813,14 @@ ] }, { - "id": 2980, + "id": 2785, "name": "upsertShippingProfiles", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2981, + "id": 2786, "name": "upsertShippingProfiles", "variant": "signature", "kind": 4096, @@ -25855,7 +25855,7 @@ }, "parameters": [ { - "id": 2982, + "id": 2787, "name": "data", "variant": "param", "kind": 32768, @@ -25872,14 +25872,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3354, + "target": 3159, "name": "UpsertShippingProfileDTO", "package": "@medusajs/types" } } }, { - "id": 2983, + "id": 2788, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25896,7 +25896,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -25913,7 +25913,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3330, + "target": 3135, "name": "ShippingProfileDTO", "package": "@medusajs/types" } @@ -25924,7 +25924,7 @@ } }, { - "id": 2984, + "id": 2789, "name": "upsertShippingProfiles", "variant": "signature", "kind": 4096, @@ -25959,7 +25959,7 @@ }, "parameters": [ { - "id": 2985, + "id": 2790, "name": "data", "variant": "param", "kind": 32768, @@ -25974,13 +25974,13 @@ }, "type": { "type": "reference", - "target": 3354, + "target": 3159, "name": "UpsertShippingProfileDTO", "package": "@medusajs/types" } }, { - "id": 2986, + "id": 2791, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25997,7 +25997,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -26012,7 +26012,7 @@ "typeArguments": [ { "type": "reference", - "target": 3330, + "target": 3135, "name": "ShippingProfileDTO", "package": "@medusajs/types" } @@ -26024,14 +26024,14 @@ ] }, { - "id": 2987, + "id": 2792, "name": "softDeleteShippingProfiles", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2988, + "id": 2793, "name": "softDeleteShippingProfiles", "variant": "signature", "kind": 4096, @@ -26074,7 +26074,7 @@ }, "typeParameters": [ { - "id": 2989, + "id": 2794, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -26091,7 +26091,7 @@ ], "parameters": [ { - "id": 2990, + "id": 2795, "name": "shippingProfileIds", "variant": "param", "kind": 32768, @@ -26113,7 +26113,7 @@ } }, { - "id": 2991, + "id": 2796, "name": "config", "variant": "param", "kind": 32768, @@ -26130,11 +26130,11 @@ }, "type": { "type": "reference", - "target": 3184, + "target": 2989, "typeArguments": [ { "type": "reference", - "target": 2989, + "target": 2794, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -26145,7 +26145,7 @@ } }, { - "id": 2992, + "id": 2797, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -26162,7 +26162,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -26214,14 +26214,14 @@ ] }, { - "id": 2993, + "id": 2798, "name": "restoreShippingProfiles", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 2994, + "id": 2799, "name": "restoreShippingProfiles", "variant": "signature", "kind": 4096, @@ -26264,7 +26264,7 @@ }, "typeParameters": [ { - "id": 2995, + "id": 2800, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -26281,7 +26281,7 @@ ], "parameters": [ { - "id": 2996, + "id": 2801, "name": "shippingProfileIds", "variant": "param", "kind": 32768, @@ -26303,7 +26303,7 @@ } }, { - "id": 2997, + "id": 2802, "name": "config", "variant": "param", "kind": 32768, @@ -26336,11 +26336,11 @@ }, "type": { "type": "reference", - "target": 3187, + "target": 2992, "typeArguments": [ { "type": "reference", - "target": 2995, + "target": 2800, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -26351,7 +26351,7 @@ } }, { - "id": 2998, + "id": 2803, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -26368,7 +26368,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -26420,14 +26420,14 @@ ] }, { - "id": 2999, + "id": 2804, "name": "retrieveShippingOptionRule", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3000, + "id": 2805, "name": "retrieveShippingOptionRule", "variant": "signature", "kind": 4096, @@ -26474,7 +26474,7 @@ }, "parameters": [ { - "id": 3001, + "id": 2806, "name": "id", "variant": "param", "kind": 32768, @@ -26493,7 +26493,7 @@ } }, { - "id": 3002, + "id": 2807, "name": "config", "variant": "param", "kind": 32768, @@ -26526,11 +26526,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3359, + "target": 3164, "name": "ShippingOptionRuleDTO", "package": "@medusajs/types" } @@ -26540,7 +26540,7 @@ } }, { - "id": 3003, + "id": 2808, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -26557,7 +26557,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -26572,7 +26572,7 @@ "typeArguments": [ { "type": "reference", - "target": 3359, + "target": 3164, "name": "ShippingOptionRuleDTO", "package": "@medusajs/types" } @@ -26584,14 +26584,14 @@ ] }, { - "id": 3004, + "id": 2809, "name": "listShippingOptionRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3005, + "id": 2810, "name": "listShippingOptionRules", "variant": "signature", "kind": 4096, @@ -26678,7 +26678,7 @@ }, "parameters": [ { - "id": 3006, + "id": 2811, "name": "filters", "variant": "param", "kind": 32768, @@ -26695,13 +26695,13 @@ }, "type": { "type": "reference", - "target": 3371, + "target": 3176, "name": "FilterableShippingOptionRuleProps", "package": "@medusajs/types" } }, { - "id": 3007, + "id": 2812, "name": "config", "variant": "param", "kind": 32768, @@ -26734,11 +26734,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3359, + "target": 3164, "name": "ShippingOptionRuleDTO", "package": "@medusajs/types" } @@ -26748,7 +26748,7 @@ } }, { - "id": 3008, + "id": 2813, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -26765,7 +26765,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -26782,7 +26782,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3359, + "target": 3164, "name": "ShippingOptionRuleDTO", "package": "@medusajs/types" } @@ -26795,14 +26795,14 @@ ] }, { - "id": 3009, + "id": 2814, "name": "listAndCountShippingOptionRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3010, + "id": 2815, "name": "listAndCountShippingOptionRules", "variant": "signature", "kind": 4096, @@ -26889,7 +26889,7 @@ }, "parameters": [ { - "id": 3011, + "id": 2816, "name": "filters", "variant": "param", "kind": 32768, @@ -26906,13 +26906,13 @@ }, "type": { "type": "reference", - "target": 3371, + "target": 3176, "name": "FilterableShippingOptionRuleProps", "package": "@medusajs/types" } }, { - "id": 3012, + "id": 2817, "name": "config", "variant": "param", "kind": 32768, @@ -26945,11 +26945,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3359, + "target": 3164, "name": "ShippingOptionRuleDTO", "package": "@medusajs/types" } @@ -26959,7 +26959,7 @@ } }, { - "id": 3013, + "id": 2818, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -26976,7 +26976,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -26996,7 +26996,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3359, + "target": 3164, "name": "ShippingOptionRuleDTO", "package": "@medusajs/types" } @@ -27015,14 +27015,14 @@ ] }, { - "id": 3014, + "id": 2819, "name": "createShippingOptionRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3015, + "id": 2820, "name": "createShippingOptionRules", "variant": "signature", "kind": 4096, @@ -27057,7 +27057,7 @@ }, "parameters": [ { - "id": 3016, + "id": 2821, "name": "data", "variant": "param", "kind": 32768, @@ -27074,14 +27074,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3378, + "target": 3183, "name": "CreateShippingOptionRuleDTO", "package": "@medusajs/types" } } }, { - "id": 3017, + "id": 2822, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27098,7 +27098,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -27115,7 +27115,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3359, + "target": 3164, "name": "ShippingOptionRuleDTO", "package": "@medusajs/types" } @@ -27126,7 +27126,7 @@ } }, { - "id": 3018, + "id": 2823, "name": "createShippingOptionRules", "variant": "signature", "kind": 4096, @@ -27161,7 +27161,7 @@ }, "parameters": [ { - "id": 3019, + "id": 2824, "name": "data", "variant": "param", "kind": 32768, @@ -27176,13 +27176,13 @@ }, "type": { "type": "reference", - "target": 3378, + "target": 3183, "name": "CreateShippingOptionRuleDTO", "package": "@medusajs/types" } }, { - "id": 3020, + "id": 2825, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27199,7 +27199,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -27214,7 +27214,7 @@ "typeArguments": [ { "type": "reference", - "target": 3359, + "target": 3164, "name": "ShippingOptionRuleDTO", "package": "@medusajs/types" } @@ -27226,14 +27226,14 @@ ] }, { - "id": 3021, + "id": 2826, "name": "updateShippingOptionRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3022, + "id": 2827, "name": "updateShippingOptionRules", "variant": "signature", "kind": 4096, @@ -27268,7 +27268,7 @@ }, "parameters": [ { - "id": 3023, + "id": 2828, "name": "data", "variant": "param", "kind": 32768, @@ -27285,14 +27285,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3383, + "target": 3188, "name": "UpdateShippingOptionRuleDTO", "package": "@medusajs/types" } } }, { - "id": 3024, + "id": 2829, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27309,7 +27309,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -27326,7 +27326,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3359, + "target": 3164, "name": "ShippingOptionRuleDTO", "package": "@medusajs/types" } @@ -27337,7 +27337,7 @@ } }, { - "id": 3025, + "id": 2830, "name": "updateShippingOptionRules", "variant": "signature", "kind": 4096, @@ -27372,7 +27372,7 @@ }, "parameters": [ { - "id": 3026, + "id": 2831, "name": "data", "variant": "param", "kind": 32768, @@ -27387,13 +27387,13 @@ }, "type": { "type": "reference", - "target": 3383, + "target": 3188, "name": "UpdateShippingOptionRuleDTO", "package": "@medusajs/types" } }, { - "id": 3027, + "id": 2832, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27410,7 +27410,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -27425,7 +27425,7 @@ "typeArguments": [ { "type": "reference", - "target": 3359, + "target": 3164, "name": "ShippingOptionRuleDTO", "package": "@medusajs/types" } @@ -27437,14 +27437,14 @@ ] }, { - "id": 3028, + "id": 2833, "name": "deleteShippingOptionRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3029, + "id": 2834, "name": "deleteShippingOptionRules", "variant": "signature", "kind": 4096, @@ -27479,7 +27479,7 @@ }, "parameters": [ { - "id": 3030, + "id": 2835, "name": "ids", "variant": "param", "kind": 32768, @@ -27501,7 +27501,7 @@ } }, { - "id": 3031, + "id": 2836, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27518,7 +27518,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -27541,7 +27541,7 @@ } }, { - "id": 3032, + "id": 2837, "name": "deleteShippingOptionRules", "variant": "signature", "kind": 4096, @@ -27576,7 +27576,7 @@ }, "parameters": [ { - "id": 3033, + "id": 2838, "name": "id", "variant": "param", "kind": 32768, @@ -27595,7 +27595,7 @@ } }, { - "id": 3034, + "id": 2839, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27612,7 +27612,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -27637,14 +27637,14 @@ ] }, { - "id": 3035, + "id": 2840, "name": "retrieveShippingOptionType", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3036, + "id": 2841, "name": "retrieveShippingOptionType", "variant": "signature", "kind": 4096, @@ -27691,7 +27691,7 @@ }, "parameters": [ { - "id": 3037, + "id": 2842, "name": "id", "variant": "param", "kind": 32768, @@ -27710,7 +27710,7 @@ } }, { - "id": 3038, + "id": 2843, "name": "config", "variant": "param", "kind": 32768, @@ -27743,11 +27743,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3389, + "target": 3194, "name": "ShippingOptionTypeDTO", "package": "@medusajs/types" } @@ -27757,7 +27757,7 @@ } }, { - "id": 3039, + "id": 2844, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27774,7 +27774,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -27789,7 +27789,7 @@ "typeArguments": [ { "type": "reference", - "target": 3389, + "target": 3194, "name": "ShippingOptionTypeDTO", "package": "@medusajs/types" } @@ -27801,14 +27801,14 @@ ] }, { - "id": 3040, + "id": 2845, "name": "listShippingOptionTypes", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3041, + "id": 2846, "name": "listShippingOptionTypes", "variant": "signature", "kind": 4096, @@ -27895,7 +27895,7 @@ }, "parameters": [ { - "id": 3042, + "id": 2847, "name": "filters", "variant": "param", "kind": 32768, @@ -27912,13 +27912,13 @@ }, "type": { "type": "reference", - "target": 3399, + "target": 3204, "name": "FilterableShippingOptionTypeProps", "package": "@medusajs/types" } }, { - "id": 3043, + "id": 2848, "name": "config", "variant": "param", "kind": 32768, @@ -27951,11 +27951,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3389, + "target": 3194, "name": "ShippingOptionTypeDTO", "package": "@medusajs/types" } @@ -27965,7 +27965,7 @@ } }, { - "id": 3044, + "id": 2849, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27982,7 +27982,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -27999,7 +27999,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3389, + "target": 3194, "name": "ShippingOptionTypeDTO", "package": "@medusajs/types" } @@ -28012,14 +28012,14 @@ ] }, { - "id": 3045, + "id": 2850, "name": "listAndCountShippingOptionTypes", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3046, + "id": 2851, "name": "listAndCountShippingOptionTypes", "variant": "signature", "kind": 4096, @@ -28106,7 +28106,7 @@ }, "parameters": [ { - "id": 3047, + "id": 2852, "name": "filters", "variant": "param", "kind": 32768, @@ -28123,13 +28123,13 @@ }, "type": { "type": "reference", - "target": 3399, + "target": 3204, "name": "FilterableShippingOptionTypeProps", "package": "@medusajs/types" } }, { - "id": 3048, + "id": 2853, "name": "config", "variant": "param", "kind": 32768, @@ -28162,11 +28162,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3389, + "target": 3194, "name": "ShippingOptionTypeDTO", "package": "@medusajs/types" } @@ -28176,7 +28176,7 @@ } }, { - "id": 3049, + "id": 2854, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -28193,7 +28193,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -28213,7 +28213,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3389, + "target": 3194, "name": "ShippingOptionTypeDTO", "package": "@medusajs/types" } @@ -28232,14 +28232,14 @@ ] }, { - "id": 3050, + "id": 2855, "name": "deleteShippingOptionTypes", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3051, + "id": 2856, "name": "deleteShippingOptionTypes", "variant": "signature", "kind": 4096, @@ -28274,7 +28274,7 @@ }, "parameters": [ { - "id": 3052, + "id": 2857, "name": "ids", "variant": "param", "kind": 32768, @@ -28296,7 +28296,7 @@ } }, { - "id": 3053, + "id": 2858, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -28313,7 +28313,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -28336,7 +28336,7 @@ } }, { - "id": 3054, + "id": 2859, "name": "deleteShippingOptionTypes", "variant": "signature", "kind": 4096, @@ -28371,7 +28371,7 @@ }, "parameters": [ { - "id": 3055, + "id": 2860, "name": "id", "variant": "param", "kind": 32768, @@ -28390,7 +28390,7 @@ } }, { - "id": 3056, + "id": 2861, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -28407,7 +28407,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -28432,14 +28432,14 @@ ] }, { - "id": 3057, + "id": 2862, "name": "retrieveFulfillment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3058, + "id": 2863, "name": "retrieveFulfillment", "variant": "signature", "kind": 4096, @@ -28486,7 +28486,7 @@ }, "parameters": [ { - "id": 3059, + "id": 2864, "name": "id", "variant": "param", "kind": 32768, @@ -28505,7 +28505,7 @@ } }, { - "id": 3060, + "id": 2865, "name": "config", "variant": "param", "kind": 32768, @@ -28538,11 +28538,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3406, + "target": 3211, "name": "FulfillmentDTO", "package": "@medusajs/types" } @@ -28552,7 +28552,7 @@ } }, { - "id": 3061, + "id": 2866, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -28569,7 +28569,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -28584,7 +28584,7 @@ "typeArguments": [ { "type": "reference", - "target": 3406, + "target": 3211, "name": "FulfillmentDTO", "package": "@medusajs/types" } @@ -28596,14 +28596,14 @@ ] }, { - "id": 3062, + "id": 2867, "name": "listFulfillments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3063, + "id": 2868, "name": "listFulfillments", "variant": "signature", "kind": 4096, @@ -28690,7 +28690,7 @@ }, "parameters": [ { - "id": 3064, + "id": 2869, "name": "filters", "variant": "param", "kind": 32768, @@ -28707,13 +28707,13 @@ }, "type": { "type": "reference", - "target": 3425, + "target": 3230, "name": "FilterableFulfillmentProps", "package": "@medusajs/types" } }, { - "id": 3065, + "id": 2870, "name": "config", "variant": "param", "kind": 32768, @@ -28746,11 +28746,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3406, + "target": 3211, "name": "FulfillmentDTO", "package": "@medusajs/types" } @@ -28760,7 +28760,7 @@ } }, { - "id": 3066, + "id": 2871, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -28777,7 +28777,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -28794,7 +28794,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3406, + "target": 3211, "name": "FulfillmentDTO", "package": "@medusajs/types" } @@ -28807,14 +28807,14 @@ ] }, { - "id": 3067, + "id": 2872, "name": "listAndCountFulfillments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3068, + "id": 2873, "name": "listAndCountFulfillments", "variant": "signature", "kind": 4096, @@ -28901,7 +28901,7 @@ }, "parameters": [ { - "id": 3069, + "id": 2874, "name": "filters", "variant": "param", "kind": 32768, @@ -28918,13 +28918,13 @@ }, "type": { "type": "reference", - "target": 3425, + "target": 3230, "name": "FilterableFulfillmentProps", "package": "@medusajs/types" } }, { - "id": 3070, + "id": 2875, "name": "config", "variant": "param", "kind": 32768, @@ -28957,11 +28957,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3406, + "target": 3211, "name": "FulfillmentDTO", "package": "@medusajs/types" } @@ -28971,7 +28971,7 @@ } }, { - "id": 3071, + "id": 2876, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -28988,7 +28988,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -29008,7 +29008,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3406, + "target": 3211, "name": "FulfillmentDTO", "package": "@medusajs/types" } @@ -29027,14 +29027,14 @@ ] }, { - "id": 3072, + "id": 2877, "name": "createFulfillment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3073, + "id": 2878, "name": "createFulfillment", "variant": "signature", "kind": 4096, @@ -29069,7 +29069,7 @@ }, "parameters": [ { - "id": 3074, + "id": 2879, "name": "data", "variant": "param", "kind": 32768, @@ -29084,13 +29084,13 @@ }, "type": { "type": "reference", - "target": 3438, + "target": 3243, "name": "CreateFulfillmentDTO", "package": "@medusajs/types" } }, { - "id": 3075, + "id": 2880, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -29107,7 +29107,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -29122,7 +29122,7 @@ "typeArguments": [ { "type": "reference", - "target": 3406, + "target": 3211, "name": "FulfillmentDTO", "package": "@medusajs/types" } @@ -29134,14 +29134,14 @@ ] }, { - "id": 3076, + "id": 2881, "name": "createReturnFulfillment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3077, + "id": 2882, "name": "createReturnFulfillment", "variant": "signature", "kind": 4096, @@ -29176,7 +29176,7 @@ }, "parameters": [ { - "id": 3078, + "id": 2883, "name": "data", "variant": "param", "kind": 32768, @@ -29191,13 +29191,13 @@ }, "type": { "type": "reference", - "target": 3438, + "target": 3243, "name": "CreateFulfillmentDTO", "package": "@medusajs/types" } }, { - "id": 3079, + "id": 2884, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -29214,7 +29214,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -29229,7 +29229,7 @@ "typeArguments": [ { "type": "reference", - "target": 3406, + "target": 3211, "name": "FulfillmentDTO", "package": "@medusajs/types" } @@ -29241,14 +29241,14 @@ ] }, { - "id": 3080, + "id": 2885, "name": "updateFulfillment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3081, + "id": 2886, "name": "updateFulfillment", "variant": "signature", "kind": 4096, @@ -29283,7 +29283,7 @@ }, "parameters": [ { - "id": 3082, + "id": 2887, "name": "id", "variant": "param", "kind": 32768, @@ -29302,7 +29302,7 @@ } }, { - "id": 3083, + "id": 2888, "name": "data", "variant": "param", "kind": 32768, @@ -29317,13 +29317,13 @@ }, "type": { "type": "reference", - "target": 3452, + "target": 3257, "name": "UpdateFulfillmentDTO", "package": "@medusajs/types" } }, { - "id": 3084, + "id": 2889, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -29340,7 +29340,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -29355,7 +29355,7 @@ "typeArguments": [ { "type": "reference", - "target": 3406, + "target": 3211, "name": "FulfillmentDTO", "package": "@medusajs/types" } @@ -29367,14 +29367,14 @@ ] }, { - "id": 3085, + "id": 2890, "name": "cancelFulfillment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3086, + "id": 2891, "name": "cancelFulfillment", "variant": "signature", "kind": 4096, @@ -29409,7 +29409,7 @@ }, "parameters": [ { - "id": 3087, + "id": 2892, "name": "id", "variant": "param", "kind": 32768, @@ -29428,7 +29428,7 @@ } }, { - "id": 3088, + "id": 2893, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -29445,7 +29445,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -29460,7 +29460,7 @@ "typeArguments": [ { "type": "reference", - "target": 3406, + "target": 3211, "name": "FulfillmentDTO", "package": "@medusajs/types" } @@ -29472,14 +29472,14 @@ ] }, { - "id": 3089, + "id": 2894, "name": "retrieveFulfillmentOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3090, + "id": 2895, "name": "retrieveFulfillmentOptions", "variant": "signature", "kind": 4096, @@ -29514,7 +29514,7 @@ }, "parameters": [ { - "id": 3091, + "id": 2896, "name": "providerId", "variant": "param", "kind": 32768, @@ -29570,14 +29570,14 @@ ] }, { - "id": 3092, + "id": 2897, "name": "validateFulfillmentOption", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3093, + "id": 2898, "name": "validateFulfillmentOption", "variant": "signature", "kind": 4096, @@ -29612,7 +29612,7 @@ }, "parameters": [ { - "id": 3094, + "id": 2899, "name": "providerId", "variant": "param", "kind": 32768, @@ -29631,7 +29631,7 @@ } }, { - "id": 3095, + "id": 2900, "name": "data", "variant": "param", "kind": 32768, @@ -29684,14 +29684,14 @@ ] }, { - "id": 3096, + "id": 2901, "name": "validateShippingOption", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3097, + "id": 2902, "name": "validateShippingOption", "variant": "signature", "kind": 4096, @@ -29726,7 +29726,7 @@ }, "parameters": [ { - "id": 3098, + "id": 2903, "name": "shippingOptionId", "variant": "param", "kind": 32768, @@ -29745,7 +29745,7 @@ } }, { - "id": 3099, + "id": 2904, "name": "context", "variant": "param", "kind": 32768, @@ -29798,14 +29798,14 @@ ] }, { - "id": 3100, + "id": 2905, "name": "listFulfillmentProviders", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3101, + "id": 2906, "name": "listFulfillmentProviders", "variant": "signature", "kind": 4096, @@ -29844,7 +29844,7 @@ }, "parameters": [ { - "id": 3102, + "id": 2907, "name": "filters", "variant": "param", "kind": 32768, @@ -29861,13 +29861,13 @@ }, "type": { "type": "reference", - "target": 3462, + "target": 3267, "name": "FilterableFulfillmentProviderProps", "package": "@medusajs/types" } }, { - "id": 3103, + "id": 2908, "name": "config", "variant": "param", "kind": 32768, @@ -29900,11 +29900,11 @@ }, "type": { "type": "reference", - "target": 3132, + "target": 2937, "typeArguments": [ { "type": "reference", - "target": 3466, + "target": 3271, "name": "FulfillmentProviderDTO", "package": "@medusajs/types" } @@ -29914,7 +29914,7 @@ } }, { - "id": 3104, + "id": 2909, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -29931,7 +29931,7 @@ }, "type": { "type": "reference", - "target": 3154, + "target": 2959, "name": "Context", "package": "@medusajs/types" } @@ -29948,7 +29948,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3466, + "target": 3271, "name": "FulfillmentProviderDTO", "package": "@medusajs/types" } @@ -29965,85 +29965,85 @@ { "title": "Methods", "children": [ - 2727, - 2732, - 2737, - 2742, - 2749, - 2756, - 2763, + 2532, + 2537, + 2542, + 2547, + 2554, + 2561, + 2568, + 2574, + 2580, + 2585, + 2590, + 2595, + 2602, + 2611, + 2618, + 2625, + 2631, + 2637, + 2642, + 2647, + 2652, + 2659, + 2666, + 2673, + 2679, + 2685, + 2690, + 2695, + 2700, + 2705, + 2712, + 2721, + 2728, + 2735, + 2741, + 2747, + 2752, + 2757, + 2762, 2769, - 2775, - 2780, + 2778, 2785, - 2790, - 2797, - 2806, - 2813, - 2820, + 2792, + 2798, + 2804, + 2809, + 2814, + 2819, 2826, - 2832, - 2837, - 2842, - 2847, - 2854, - 2861, - 2868, - 2874, - 2880, + 2833, + 2840, + 2845, + 2850, + 2855, + 2862, + 2867, + 2872, + 2877, + 2881, 2885, 2890, - 2895, - 2900, - 2907, - 2916, - 2923, - 2930, - 2936, - 2942, - 2947, - 2952, - 2957, - 2964, - 2973, - 2980, - 2987, - 2993, - 2999, - 3004, - 3009, - 3014, - 3021, - 3028, - 3035, - 3040, - 3045, - 3050, - 3057, - 3062, - 3067, - 3072, - 3076, - 3080, - 3085, - 3089, - 3092, - 3096, - 3100 + 2894, + 2897, + 2901, + 2905 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3118, + "target": 2923, "name": "IModuleService", "package": "@medusajs/types" } ] }, { - "id": 3938, + "id": 3770, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -30051,14 +30051,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3939, + "id": 3771, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3940, + "id": 3772, "name": "alias", "variant": "declaration", "kind": 1024, @@ -30069,7 +30069,7 @@ } }, { - "id": 3941, + "id": 3773, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -30080,7 +30080,7 @@ } }, { - "id": 3942, + "id": 3774, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -30091,7 +30091,7 @@ } }, { - "id": 3943, + "id": 3775, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -30102,7 +30102,7 @@ } }, { - "id": 3944, + "id": 3776, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -30123,7 +30123,7 @@ } }, { - "id": 3945, + "id": 3777, "name": "isList", "variant": "declaration", "kind": 1024, @@ -30144,7 +30144,7 @@ } }, { - "id": 3946, + "id": 3778, "name": "args", "variant": "declaration", "kind": 1024, @@ -30184,13 +30184,13 @@ { "title": "Properties", "children": [ - 3940, - 3941, - 3942, - 3943, - 3944, - 3945, - 3946 + 3772, + 3773, + 3774, + 3775, + 3776, + 3777, + 3778 ] } ] @@ -30198,14 +30198,14 @@ } }, { - "id": 3935, + "id": 3767, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3936, + "id": 3768, "name": "name", "variant": "declaration", "kind": 1024, @@ -30228,7 +30228,7 @@ } }, { - "id": 3937, + "id": 3769, "name": "args", "variant": "declaration", "kind": 1024, @@ -30268,21 +30268,21 @@ { "title": "Properties", "children": [ - 3936, - 3937 + 3768, + 3769 ] } ] }, { - "id": 3731, + "id": 3537, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3732, + "id": 3538, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -30293,7 +30293,7 @@ } }, { - "id": 3733, + "id": 3539, "name": "alias", "variant": "declaration", "kind": 1024, @@ -30313,7 +30313,7 @@ "types": [ { "type": "reference", - "target": 3935, + "target": 3767, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -30321,7 +30321,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3935, + "target": 3767, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -30330,7 +30330,7 @@ } }, { - "id": 3734, + "id": 3540, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -30366,14 +30366,14 @@ { "type": "reflection", "declaration": { - "id": 3735, + "id": 3541, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3736, + "id": 3542, "name": "path", "variant": "declaration", "kind": 1024, @@ -30384,7 +30384,7 @@ } }, { - "id": 3737, + "id": 3543, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -30402,8 +30402,8 @@ { "title": "Properties", "children": [ - 3736, - 3737 + 3542, + 3543 ] } ] @@ -30417,7 +30417,7 @@ } }, { - "id": 3738, + "id": 3544, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -30431,7 +30431,7 @@ } }, { - "id": 3739, + "id": 3545, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -30442,14 +30442,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3938, + "target": 3770, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 3740, + "id": 3546, "name": "extends", "variant": "declaration", "kind": 1024, @@ -30461,14 +30461,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 3741, + "id": 3547, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3742, + "id": 3548, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -30479,14 +30479,14 @@ } }, { - "id": 3743, + "id": 3549, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3938, + "target": 3770, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -30496,8 +30496,8 @@ { "title": "Properties", "children": [ - 3742, - 3743 + 3548, + 3549 ] } ] @@ -30506,7 +30506,7 @@ } }, { - "id": 3744, + "id": 3550, "name": "args", "variant": "declaration", "kind": 1024, @@ -30546,19 +30546,19 @@ { "title": "Properties", "children": [ - 3732, - 3733, - 3734, - 3738, - 3739, - 3740, - 3744 + 3538, + 3539, + 3540, + 3544, + 3545, + 3546, + 3550 ] } ] }, { - "id": 3748, + "id": 3554, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -30577,14 +30577,14 @@ { "type": "reflection", "declaration": { - "id": 3749, + "id": 3555, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3750, + "id": 3556, "name": "type", "variant": "declaration", "kind": 1024, @@ -30680,7 +30680,7 @@ } }, { - "id": 3751, + "id": 3557, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -30693,7 +30693,7 @@ } }, { - "id": 3752, + "id": 3558, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -30706,7 +30706,7 @@ } }, { - "id": 3753, + "id": 3559, "name": "options", "variant": "declaration", "kind": 1024, @@ -30746,10 +30746,10 @@ { "title": "Properties", "children": [ - 3750, - 3751, - 3752, - 3753 + 3556, + 3557, + 3558, + 3559 ] } ] @@ -30761,7 +30761,7 @@ } }, { - "id": 3474, + "id": 3279, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -30778,7 +30778,7 @@ "typeArguments": [ { "type": "reference", - "target": 3731, + "target": 3537, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -30810,14 +30810,14 @@ { "type": "reflection", "declaration": { - "id": 3475, + "id": 3280, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3476, + "id": 3281, "name": "schema", "variant": "declaration", "kind": 1024, @@ -30838,7 +30838,7 @@ } }, { - "id": 3477, + "id": 3282, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -30849,14 +30849,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3745, + "target": 3551, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 3478, + "id": 3283, "name": "extends", "variant": "declaration", "kind": 1024, @@ -30868,14 +30868,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 3479, + "id": 3284, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3480, + "id": 3285, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -30886,7 +30886,7 @@ } }, { - "id": 3481, + "id": 3286, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -30914,14 +30914,14 @@ { "type": "reflection", "declaration": { - "id": 3482, + "id": 3287, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3483, + "id": 3288, "name": "path", "variant": "declaration", "kind": 1024, @@ -30932,7 +30932,7 @@ } }, { - "id": 3484, + "id": 3289, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -30948,7 +30948,7 @@ } }, { - "id": 3485, + "id": 3290, "name": "isList", "variant": "declaration", "kind": 1024, @@ -30965,9 +30965,9 @@ { "title": "Properties", "children": [ - 3483, - 3484, - 3485 + 3288, + 3289, + 3290 ] } ] @@ -30981,14 +30981,14 @@ } }, { - "id": 3486, + "id": 3291, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3745, + "target": 3551, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -30998,9 +30998,9 @@ { "title": "Properties", "children": [ - 3480, - 3481, - 3486 + 3285, + 3286, + 3291 ] } ] @@ -31009,7 +31009,7 @@ } }, { - "id": 3487, + "id": 3292, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -31022,7 +31022,7 @@ } }, { - "id": 3488, + "id": 3293, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -31038,7 +31038,7 @@ } }, { - "id": 3489, + "id": 3294, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -31059,7 +31059,7 @@ } }, { - "id": 3490, + "id": 3295, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -31095,7 +31095,7 @@ } }, { - "id": 3491, + "id": 3296, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -31116,7 +31116,7 @@ } }, { - "id": 3492, + "id": 3297, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -31140,7 +31140,7 @@ } }, { - "id": 3493, + "id": 3298, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -31150,14 +31150,14 @@ "type": { "type": "reflection", "declaration": { - "id": 3494, + "id": 3299, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3495, + "id": 3300, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -31178,7 +31178,7 @@ } }, { - "id": 3496, + "id": 3301, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -31199,7 +31199,7 @@ } }, { - "id": 3497, + "id": 3302, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -31208,7 +31208,7 @@ }, "type": { "type": "reference", - "target": 3748, + "target": 3554, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -31218,9 +31218,9 @@ { "title": "Properties", "children": [ - 3495, - 3496, - 3497 + 3300, + 3301, + 3302 ] } ] @@ -31232,16 +31232,16 @@ { "title": "Properties", "children": [ - 3476, - 3477, - 3478, - 3487, - 3488, - 3489, - 3490, - 3491, - 3492, - 3493 + 3281, + 3282, + 3283, + 3292, + 3293, + 3294, + 3295, + 3296, + 3297, + 3298 ] } ] @@ -31251,7 +31251,7 @@ } }, { - "id": 3745, + "id": 3551, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -31261,21 +31261,21 @@ "types": [ { "type": "reference", - "target": 3938, + "target": 3770, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 3746, + "id": 3552, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3747, + "id": 3553, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -31300,7 +31300,7 @@ { "title": "Properties", "children": [ - 3747 + 3553 ] } ] @@ -31310,7 +31310,7 @@ } }, { - "id": 3118, + "id": 2923, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -31318,13 +31318,81 @@ "extendedBy": [ { "type": "reference", - "target": 2726, + "target": 2531, "name": "IFulfillmentModuleService" } ] }, { - "id": 3907, + "id": 4116, + "name": "ChangeActionType", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "CANCEL" + }, + { + "type": "literal", + "value": "CANCEL_RETURN_ITEM" + }, + { + "type": "literal", + "value": "FULFILL_ITEM" + }, + { + "type": "literal", + "value": "CANCEL_ITEM_FULFILLMENT" + }, + { + "type": "literal", + "value": "ITEM_ADD" + }, + { + "type": "literal", + "value": "ITEM_REMOVE" + }, + { + "type": "literal", + "value": "RECEIVE_DAMAGED_RETURN_ITEM" + }, + { + "type": "literal", + "value": "RECEIVE_RETURN_ITEM" + }, + { + "type": "literal", + "value": "RETURN_ITEM" + }, + { + "type": "literal", + "value": "SHIPPING_ADD" + }, + { + "type": "literal", + "value": "SHIPPING_REMOVE" + }, + { + "type": "literal", + "value": "SHIP_ITEM" + }, + { + "type": "literal", + "value": "WRITE_OFF_ITEM" + }, + { + "type": "literal", + "value": "REINSTATE_ITEM" + } + ] + } + }, + { + "id": 3739, "name": "OrderSummaryDTO", "variant": "declaration", "kind": 2097152, @@ -31332,268 +31400,268 @@ "type": { "type": "reflection", "declaration": { - "id": 3908, + "id": 3740, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 3909, + "id": 3741, "name": "total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3910, + "id": 3742, "name": "subtotal", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3911, + "id": 3743, "name": "total_tax", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3912, + "id": 3744, "name": "ordered_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3913, + "id": 3745, "name": "fulfilled_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3914, + "id": 3746, "name": "returned_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3915, + "id": 3747, "name": "return_request_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3916, + "id": 3748, "name": "write_off_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3917, + "id": 3749, "name": "projected_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3918, + "id": 3750, "name": "net_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3919, + "id": 3751, "name": "net_subtotal", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3920, + "id": 3752, "name": "net_total_tax", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3921, + "id": 3753, "name": "future_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3922, + "id": 3754, "name": "future_subtotal", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3923, + "id": 3755, "name": "future_total_tax", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3924, + "id": 3756, "name": "future_projected_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3925, + "id": 3757, "name": "balance", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3926, + "id": 3758, "name": "future_balance", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3927, + "id": 3759, "name": "paid_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3928, + "id": 3760, "name": "refunded_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } @@ -31603,26 +31671,26 @@ { "title": "Properties", "children": [ - 3909, - 3910, - 3911, - 3912, - 3913, - 3914, - 3915, - 3916, - 3917, - 3918, - 3919, - 3920, - 3921, - 3922, - 3923, - 3924, - 3925, - 3926, - 3927, - 3928 + 3741, + 3742, + 3743, + 3744, + 3745, + 3746, + 3747, + 3748, + 3749, + 3750, + 3751, + 3752, + 3753, + 3754, + 3755, + 3756, + 3757, + 3758, + 3759, + 3760 ] } ] @@ -31630,14 +31698,14 @@ } }, { - "id": 4082, + "id": 4126, "name": "OrderAdjustmentLineDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4083, + "id": 4127, "name": "id", "variant": "declaration", "kind": 1024, @@ -31656,7 +31724,7 @@ } }, { - "id": 4084, + "id": 4128, "name": "code", "variant": "declaration", "kind": 1024, @@ -31677,7 +31745,7 @@ } }, { - "id": 4085, + "id": 4129, "name": "amount", "variant": "declaration", "kind": 1024, @@ -31692,13 +31760,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 4086, + "id": 4130, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -31717,7 +31785,7 @@ } }, { - "id": 4087, + "id": 4131, "name": "description", "variant": "declaration", "kind": 1024, @@ -31738,7 +31806,7 @@ } }, { - "id": 4088, + "id": 4132, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -31759,7 +31827,7 @@ } }, { - "id": 4089, + "id": 4133, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -31780,7 +31848,7 @@ } }, { - "id": 4090, + "id": 4134, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -31813,7 +31881,7 @@ } }, { - "id": 4091, + "id": 4135, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -31850,40 +31918,40 @@ { "title": "Properties", "children": [ - 4083, - 4084, - 4085, - 4086, - 4087, - 4088, - 4089, - 4090, - 4091 + 4127, + 4128, + 4129, + 4130, + 4131, + 4132, + 4133, + 4134, + 4135 ] } ], "extendedBy": [ { "type": "reference", - "target": 4007, + "target": 4049, "name": "OrderLineItemAdjustmentDTO" }, { "type": "reference", - "target": 4055, + "target": 4097, "name": "OrderShippingMethodAdjustmentDTO" } ] }, { - "id": 4055, + "id": 4097, "name": "OrderShippingMethodAdjustmentDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4058, + "id": 4100, "name": "id", "variant": "declaration", "kind": 1024, @@ -31904,12 +31972,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4083, + "target": 4127, "name": "OrderAdjustmentLineDTO.id" } }, { - "id": 4059, + "id": 4101, "name": "code", "variant": "declaration", "kind": 1024, @@ -31931,12 +31999,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4084, + "target": 4128, "name": "OrderAdjustmentLineDTO.code" } }, { - "id": 4060, + "id": 4102, "name": "amount", "variant": "declaration", "kind": 1024, @@ -31953,18 +32021,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 4085, + "target": 4129, "name": "OrderAdjustmentLineDTO.amount" } }, { - "id": 4061, + "id": 4103, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -31985,12 +32053,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4086, + "target": 4130, "name": "OrderAdjustmentLineDTO.order_id" } }, { - "id": 4062, + "id": 4104, "name": "description", "variant": "declaration", "kind": 1024, @@ -32012,12 +32080,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4087, + "target": 4131, "name": "OrderAdjustmentLineDTO.description" } }, { - "id": 4063, + "id": 4105, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -32039,12 +32107,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4088, + "target": 4132, "name": "OrderAdjustmentLineDTO.promotion_id" } }, { - "id": 4064, + "id": 4106, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -32066,12 +32134,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4089, + "target": 4133, "name": "OrderAdjustmentLineDTO.provider_id" } }, { - "id": 4065, + "id": 4107, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -32106,12 +32174,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4090, + "target": 4134, "name": "OrderAdjustmentLineDTO.created_at" } }, { - "id": 4066, + "id": 4108, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -32146,12 +32214,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4091, + "target": 4135, "name": "OrderAdjustmentLineDTO.updated_at" } }, { - "id": 4056, + "id": 4098, "name": "shipping_method", "variant": "declaration", "kind": 1024, @@ -32166,13 +32234,13 @@ }, "type": { "type": "reference", - "target": 3864, + "target": 3696, "name": "OrderShippingMethodDTO", "package": "@medusajs/types" } }, { - "id": 4057, + "id": 4099, "name": "shipping_method_id", "variant": "declaration", "kind": 1024, @@ -32195,38 +32263,38 @@ { "title": "Properties", "children": [ - 4058, - 4059, - 4060, - 4061, - 4062, - 4063, - 4064, - 4065, - 4066, - 4056, - 4057 + 4100, + 4101, + 4102, + 4103, + 4104, + 4105, + 4106, + 4107, + 4108, + 4098, + 4099 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4082, + "target": 4126, "name": "OrderAdjustmentLineDTO", "package": "@medusajs/types" } ] }, { - "id": 4007, + "id": 4049, "name": "OrderLineItemAdjustmentDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4010, + "id": 4052, "name": "id", "variant": "declaration", "kind": 1024, @@ -32247,12 +32315,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4083, + "target": 4127, "name": "OrderAdjustmentLineDTO.id" } }, { - "id": 4011, + "id": 4053, "name": "code", "variant": "declaration", "kind": 1024, @@ -32274,12 +32342,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4084, + "target": 4128, "name": "OrderAdjustmentLineDTO.code" } }, { - "id": 4012, + "id": 4054, "name": "amount", "variant": "declaration", "kind": 1024, @@ -32296,18 +32364,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 4085, + "target": 4129, "name": "OrderAdjustmentLineDTO.amount" } }, { - "id": 4013, + "id": 4055, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -32328,12 +32396,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4086, + "target": 4130, "name": "OrderAdjustmentLineDTO.order_id" } }, { - "id": 4014, + "id": 4056, "name": "description", "variant": "declaration", "kind": 1024, @@ -32355,12 +32423,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4087, + "target": 4131, "name": "OrderAdjustmentLineDTO.description" } }, { - "id": 4015, + "id": 4057, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -32382,12 +32450,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4088, + "target": 4132, "name": "OrderAdjustmentLineDTO.promotion_id" } }, { - "id": 4016, + "id": 4058, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -32409,12 +32477,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4089, + "target": 4133, "name": "OrderAdjustmentLineDTO.provider_id" } }, { - "id": 4017, + "id": 4059, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -32449,12 +32517,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4090, + "target": 4134, "name": "OrderAdjustmentLineDTO.created_at" } }, { - "id": 4018, + "id": 4060, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -32489,12 +32557,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4091, + "target": 4135, "name": "OrderAdjustmentLineDTO.updated_at" } }, { - "id": 4008, + "id": 4050, "name": "item", "variant": "declaration", "kind": 1024, @@ -32512,13 +32580,13 @@ }, "type": { "type": "reference", - "target": 3806, + "target": 3638, "name": "OrderLineItemDTO", "package": "@medusajs/types" } }, { - "id": 4009, + "id": 4051, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -32541,38 +32609,38 @@ { "title": "Properties", "children": [ - 4010, - 4011, - 4012, - 4013, - 4014, - 4015, - 4016, - 4017, - 4018, - 4008, - 4009 + 4052, + 4053, + 4054, + 4055, + 4056, + 4057, + 4058, + 4059, + 4060, + 4050, + 4051 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4082, + "target": 4126, "name": "OrderAdjustmentLineDTO", "package": "@medusajs/types" } ] }, { - "id": 4073, + "id": 4117, "name": "OrderTaxLineDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4074, + "id": 4118, "name": "id", "variant": "declaration", "kind": 1024, @@ -32591,7 +32659,7 @@ } }, { - "id": 4075, + "id": 4119, "name": "description", "variant": "declaration", "kind": 1024, @@ -32612,7 +32680,7 @@ } }, { - "id": 4076, + "id": 4120, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -32633,7 +32701,7 @@ } }, { - "id": 4077, + "id": 4121, "name": "code", "variant": "declaration", "kind": 1024, @@ -32652,7 +32720,7 @@ } }, { - "id": 4078, + "id": 4122, "name": "rate", "variant": "declaration", "kind": 1024, @@ -32671,7 +32739,7 @@ } }, { - "id": 4079, + "id": 4123, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -32692,7 +32760,7 @@ } }, { - "id": 4080, + "id": 4124, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -32725,7 +32793,7 @@ } }, { - "id": 4081, + "id": 4125, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -32762,39 +32830,39 @@ { "title": "Properties", "children": [ - 4074, - 4075, - 4076, - 4077, - 4078, - 4079, - 4080, - 4081 + 4118, + 4119, + 4120, + 4121, + 4122, + 4123, + 4124, + 4125 ] } ], "extendedBy": [ { "type": "reference", - "target": 3992, + "target": 4034, "name": "OrderLineItemTaxLineDTO" }, { "type": "reference", - "target": 4040, + "target": 4082, "name": "OrderShippingMethodTaxLineDTO" } ] }, { - "id": 4040, + "id": 4082, "name": "OrderShippingMethodTaxLineDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4047, + "id": 4089, "name": "id", "variant": "declaration", "kind": 1024, @@ -32815,12 +32883,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4074, + "target": 4118, "name": "OrderTaxLineDTO.id" } }, { - "id": 4048, + "id": 4090, "name": "description", "variant": "declaration", "kind": 1024, @@ -32842,12 +32910,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4075, + "target": 4119, "name": "OrderTaxLineDTO.description" } }, { - "id": 4049, + "id": 4091, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -32869,12 +32937,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4076, + "target": 4120, "name": "OrderTaxLineDTO.tax_rate_id" } }, { - "id": 4050, + "id": 4092, "name": "code", "variant": "declaration", "kind": 1024, @@ -32895,12 +32963,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4077, + "target": 4121, "name": "OrderTaxLineDTO.code" } }, { - "id": 4051, + "id": 4093, "name": "rate", "variant": "declaration", "kind": 1024, @@ -32921,12 +32989,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4078, + "target": 4122, "name": "OrderTaxLineDTO.rate" } }, { - "id": 4052, + "id": 4094, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -32948,12 +33016,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4079, + "target": 4123, "name": "OrderTaxLineDTO.provider_id" } }, { - "id": 4053, + "id": 4095, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -32988,12 +33056,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4080, + "target": 4124, "name": "OrderTaxLineDTO.created_at" } }, { - "id": 4054, + "id": 4096, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -33028,12 +33096,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4081, + "target": 4125, "name": "OrderTaxLineDTO.updated_at" } }, { - "id": 4041, + "id": 4083, "name": "shipping_method", "variant": "declaration", "kind": 1024, @@ -33048,13 +33116,13 @@ }, "type": { "type": "reference", - "target": 3864, + "target": 3696, "name": "OrderShippingMethodDTO", "package": "@medusajs/types" } }, { - "id": 4042, + "id": 4084, "name": "shipping_method_id", "variant": "declaration", "kind": 1024, @@ -33073,7 +33141,7 @@ } }, { - "id": 4043, + "id": 4085, "name": "total", "variant": "declaration", "kind": 1024, @@ -33088,13 +33156,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 4044, + "id": 4086, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -33109,13 +33177,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 4045, + "id": 4087, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -33130,13 +33198,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 4046, + "id": 4088, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -33151,7 +33219,7 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } @@ -33161,41 +33229,41 @@ { "title": "Properties", "children": [ - 4047, - 4048, - 4049, - 4050, - 4051, - 4052, - 4053, - 4054, - 4041, - 4042, - 4043, - 4044, - 4045, - 4046 + 4089, + 4090, + 4091, + 4092, + 4093, + 4094, + 4095, + 4096, + 4083, + 4084, + 4085, + 4086, + 4087, + 4088 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4073, + "target": 4117, "name": "OrderTaxLineDTO", "package": "@medusajs/types" } ] }, { - "id": 3992, + "id": 4034, "name": "OrderLineItemTaxLineDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3999, + "id": 4041, "name": "id", "variant": "declaration", "kind": 1024, @@ -33216,12 +33284,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4074, + "target": 4118, "name": "OrderTaxLineDTO.id" } }, { - "id": 4000, + "id": 4042, "name": "description", "variant": "declaration", "kind": 1024, @@ -33243,12 +33311,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4075, + "target": 4119, "name": "OrderTaxLineDTO.description" } }, { - "id": 4001, + "id": 4043, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -33270,12 +33338,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4076, + "target": 4120, "name": "OrderTaxLineDTO.tax_rate_id" } }, { - "id": 4002, + "id": 4044, "name": "code", "variant": "declaration", "kind": 1024, @@ -33296,12 +33364,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4077, + "target": 4121, "name": "OrderTaxLineDTO.code" } }, { - "id": 4003, + "id": 4045, "name": "rate", "variant": "declaration", "kind": 1024, @@ -33322,12 +33390,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4078, + "target": 4122, "name": "OrderTaxLineDTO.rate" } }, { - "id": 4004, + "id": 4046, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -33349,12 +33417,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4079, + "target": 4123, "name": "OrderTaxLineDTO.provider_id" } }, { - "id": 4005, + "id": 4047, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -33389,12 +33457,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4080, + "target": 4124, "name": "OrderTaxLineDTO.created_at" } }, { - "id": 4006, + "id": 4048, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -33429,12 +33497,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4081, + "target": 4125, "name": "OrderTaxLineDTO.updated_at" } }, { - "id": 3993, + "id": 4035, "name": "item", "variant": "declaration", "kind": 1024, @@ -33449,13 +33517,13 @@ }, "type": { "type": "reference", - "target": 3806, + "target": 3638, "name": "OrderLineItemDTO", "package": "@medusajs/types" } }, { - "id": 3994, + "id": 4036, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -33474,7 +33542,7 @@ } }, { - "id": 3995, + "id": 4037, "name": "total", "variant": "declaration", "kind": 1024, @@ -33489,13 +33557,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3996, + "id": 4038, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -33510,13 +33578,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3997, + "id": 4039, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -33531,13 +33599,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3998, + "id": 4040, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -33552,7 +33620,7 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } @@ -33562,41 +33630,41 @@ { "title": "Properties", "children": [ - 3999, - 4000, - 4001, - 4002, - 4003, - 4004, - 4005, - 4006, - 3993, - 3994, - 3995, - 3996, - 3997, - 3998 + 4041, + 4042, + 4043, + 4044, + 4045, + 4046, + 4047, + 4048, + 4035, + 4036, + 4037, + 4038, + 4039, + 4040 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4073, + "target": 4117, "name": "OrderTaxLineDTO", "package": "@medusajs/types" } ] }, { - "id": 3790, + "id": 3622, "name": "OrderAddressDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3791, + "id": 3623, "name": "id", "variant": "declaration", "kind": 1024, @@ -33615,7 +33683,7 @@ } }, { - "id": 3792, + "id": 3624, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -33636,7 +33704,7 @@ } }, { - "id": 3793, + "id": 3625, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -33657,7 +33725,7 @@ } }, { - "id": 3794, + "id": 3626, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -33678,7 +33746,7 @@ } }, { - "id": 3795, + "id": 3627, "name": "phone", "variant": "declaration", "kind": 1024, @@ -33699,7 +33767,7 @@ } }, { - "id": 3796, + "id": 3628, "name": "company", "variant": "declaration", "kind": 1024, @@ -33720,7 +33788,7 @@ } }, { - "id": 3797, + "id": 3629, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -33741,7 +33809,7 @@ } }, { - "id": 3798, + "id": 3630, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -33762,7 +33830,7 @@ } }, { - "id": 3799, + "id": 3631, "name": "city", "variant": "declaration", "kind": 1024, @@ -33783,7 +33851,7 @@ } }, { - "id": 3800, + "id": 3632, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -33804,7 +33872,7 @@ } }, { - "id": 3801, + "id": 3633, "name": "province", "variant": "declaration", "kind": 1024, @@ -33825,7 +33893,7 @@ } }, { - "id": 3802, + "id": 3634, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -33846,7 +33914,7 @@ } }, { - "id": 3803, + "id": 3635, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -33891,7 +33959,7 @@ } }, { - "id": 3804, + "id": 3636, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -33924,7 +33992,7 @@ } }, { - "id": 3805, + "id": 3637, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -33961,34 +34029,34 @@ { "title": "Properties", "children": [ - 3791, - 3792, - 3793, - 3794, - 3795, - 3796, - 3797, - 3798, - 3799, - 3800, - 3801, - 3802, - 3803, - 3804, - 3805 + 3623, + 3624, + 3625, + 3626, + 3627, + 3628, + 3629, + 3630, + 3631, + 3632, + 3633, + 3634, + 3635, + 3636, + 3637 ] } ] }, { - "id": 3864, + "id": 3696, "name": "OrderShippingMethodDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3865, + "id": 3697, "name": "id", "variant": "declaration", "kind": 1024, @@ -34007,7 +34075,7 @@ } }, { - "id": 3866, + "id": 3698, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -34026,7 +34094,7 @@ } }, { - "id": 3867, + "id": 3699, "name": "name", "variant": "declaration", "kind": 1024, @@ -34045,7 +34113,7 @@ } }, { - "id": 3868, + "id": 3700, "name": "description", "variant": "declaration", "kind": 1024, @@ -34066,7 +34134,7 @@ } }, { - "id": 3869, + "id": 3701, "name": "amount", "variant": "declaration", "kind": 1024, @@ -34081,13 +34149,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3870, + "id": 3702, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -34102,13 +34170,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3871, + "id": 3703, "name": "is_tax_inclusive", "variant": "declaration", "kind": 1024, @@ -34127,7 +34195,7 @@ } }, { - "id": 3872, + "id": 3704, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -34148,7 +34216,7 @@ } }, { - "id": 3873, + "id": 3705, "name": "data", "variant": "declaration", "kind": 1024, @@ -34184,7 +34252,7 @@ } }, { - "id": 3874, + "id": 3706, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -34229,7 +34297,7 @@ } }, { - "id": 3875, + "id": 3707, "name": "tax_lines", "variant": "declaration", "kind": 1024, @@ -34251,14 +34319,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4040, + "target": 4082, "name": "OrderShippingMethodTaxLineDTO", "package": "@medusajs/types" } } }, { - "id": 3876, + "id": 3708, "name": "adjustments", "variant": "declaration", "kind": 1024, @@ -34280,14 +34348,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4055, + "target": 4097, "name": "OrderShippingMethodAdjustmentDTO", "package": "@medusajs/types" } } }, { - "id": 3877, + "id": 3709, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -34320,7 +34388,7 @@ } }, { - "id": 3878, + "id": 3710, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -34353,7 +34421,7 @@ } }, { - "id": 3879, + "id": 3711, "name": "original_total", "variant": "declaration", "kind": 1024, @@ -34368,13 +34436,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3880, + "id": 3712, "name": "original_subtotal", "variant": "declaration", "kind": 1024, @@ -34389,13 +34457,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3881, + "id": 3713, "name": "original_tax_total", "variant": "declaration", "kind": 1024, @@ -34410,13 +34478,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3882, + "id": 3714, "name": "total", "variant": "declaration", "kind": 1024, @@ -34431,13 +34499,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3883, + "id": 3715, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -34452,13 +34520,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3884, + "id": 3716, "name": "tax_total", "variant": "declaration", "kind": 1024, @@ -34473,13 +34541,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3885, + "id": 3717, "name": "discount_total", "variant": "declaration", "kind": 1024, @@ -34494,13 +34562,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3886, + "id": 3718, "name": "discount_tax_total", "variant": "declaration", "kind": 1024, @@ -34515,13 +34583,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3887, + "id": 3719, "name": "raw_original_total", "variant": "declaration", "kind": 1024, @@ -34536,13 +34604,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3888, + "id": 3720, "name": "raw_original_subtotal", "variant": "declaration", "kind": 1024, @@ -34557,13 +34625,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3889, + "id": 3721, "name": "raw_original_tax_total", "variant": "declaration", "kind": 1024, @@ -34578,13 +34646,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3890, + "id": 3722, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -34599,13 +34667,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3891, + "id": 3723, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -34620,13 +34688,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3892, + "id": 3724, "name": "raw_tax_total", "variant": "declaration", "kind": 1024, @@ -34641,13 +34709,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3893, + "id": 3725, "name": "raw_discount_total", "variant": "declaration", "kind": 1024, @@ -34662,13 +34730,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3894, + "id": 3726, "name": "raw_discount_tax_total", "variant": "declaration", "kind": 1024, @@ -34683,7 +34751,7 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } @@ -34693,49 +34761,49 @@ { "title": "Properties", "children": [ - 3865, - 3866, - 3867, - 3868, - 3869, - 3870, - 3871, - 3872, - 3873, - 3874, - 3875, - 3876, - 3877, - 3878, - 3879, - 3880, - 3881, - 3882, - 3883, - 3884, - 3885, - 3886, - 3887, - 3888, - 3889, - 3890, - 3891, - 3892, - 3893, - 3894 + 3697, + 3698, + 3699, + 3700, + 3701, + 3702, + 3703, + 3704, + 3705, + 3706, + 3707, + 3708, + 3709, + 3710, + 3711, + 3712, + 3713, + 3714, + 3715, + 3716, + 3717, + 3718, + 3719, + 3720, + 3721, + 3722, + 3723, + 3724, + 3725, + 3726 ] } ] }, { - "id": 3965, + "id": 4007, "name": "OrderLineItemTotalsDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3966, + "id": 4008, "name": "original_total", "variant": "declaration", "kind": 1024, @@ -34750,13 +34818,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3967, + "id": 4009, "name": "original_subtotal", "variant": "declaration", "kind": 1024, @@ -34771,13 +34839,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3968, + "id": 4010, "name": "original_tax_total", "variant": "declaration", "kind": 1024, @@ -34792,13 +34860,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3969, + "id": 4011, "name": "item_total", "variant": "declaration", "kind": 1024, @@ -34813,13 +34881,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3970, + "id": 4012, "name": "item_subtotal", "variant": "declaration", "kind": 1024, @@ -34834,13 +34902,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3971, + "id": 4013, "name": "item_tax_total", "variant": "declaration", "kind": 1024, @@ -34855,13 +34923,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3972, + "id": 4014, "name": "total", "variant": "declaration", "kind": 1024, @@ -34876,13 +34944,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3973, + "id": 4015, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -34897,13 +34965,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3974, + "id": 4016, "name": "tax_total", "variant": "declaration", "kind": 1024, @@ -34918,13 +34986,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3975, + "id": 4017, "name": "discount_total", "variant": "declaration", "kind": 1024, @@ -34939,13 +35007,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3976, + "id": 4018, "name": "discount_tax_total", "variant": "declaration", "kind": 1024, @@ -34960,13 +35028,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3977, + "id": 4019, "name": "refundable_total", "variant": "declaration", "kind": 1024, @@ -34981,13 +35049,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3978, + "id": 4020, "name": "refundable_total_per_unit", "variant": "declaration", "kind": 1024, @@ -35002,13 +35070,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3979, + "id": 4021, "name": "raw_original_total", "variant": "declaration", "kind": 1024, @@ -35023,13 +35091,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3980, + "id": 4022, "name": "raw_original_subtotal", "variant": "declaration", "kind": 1024, @@ -35044,13 +35112,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3981, + "id": 4023, "name": "raw_original_tax_total", "variant": "declaration", "kind": 1024, @@ -35065,13 +35133,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3982, + "id": 4024, "name": "raw_item_total", "variant": "declaration", "kind": 1024, @@ -35086,13 +35154,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3983, + "id": 4025, "name": "raw_item_subtotal", "variant": "declaration", "kind": 1024, @@ -35107,13 +35175,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3984, + "id": 4026, "name": "raw_item_tax_total", "variant": "declaration", "kind": 1024, @@ -35128,13 +35196,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3985, + "id": 4027, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -35149,13 +35217,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3986, + "id": 4028, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -35170,13 +35238,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3987, + "id": 4029, "name": "raw_tax_total", "variant": "declaration", "kind": 1024, @@ -35191,13 +35259,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3988, + "id": 4030, "name": "raw_discount_total", "variant": "declaration", "kind": 1024, @@ -35212,13 +35280,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3989, + "id": 4031, "name": "raw_discount_tax_total", "variant": "declaration", "kind": 1024, @@ -35233,13 +35301,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3990, + "id": 4032, "name": "raw_refundable_total", "variant": "declaration", "kind": 1024, @@ -35254,13 +35322,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3991, + "id": 4033, "name": "raw_refundable_total_per_unit", "variant": "declaration", "kind": 1024, @@ -35275,7 +35343,7 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } @@ -35285,52 +35353,52 @@ { "title": "Properties", "children": [ - 3966, - 3967, - 3968, - 3969, - 3970, - 3971, - 3972, - 3973, - 3974, - 3975, - 3976, - 3977, - 3978, - 3979, - 3980, - 3981, - 3982, - 3983, - 3984, - 3985, - 3986, - 3987, - 3988, - 3989, - 3990, - 3991 + 4008, + 4009, + 4010, + 4011, + 4012, + 4013, + 4014, + 4015, + 4016, + 4017, + 4018, + 4019, + 4020, + 4021, + 4022, + 4023, + 4024, + 4025, + 4026, + 4027, + 4028, + 4029, + 4030, + 4031, + 4032, + 4033 ] } ], "extendedBy": [ { "type": "reference", - "target": 3806, + "target": 3638, "name": "OrderLineItemDTO" } ] }, { - "id": 3806, + "id": 3638, "name": "OrderLineItemDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3838, + "id": 3670, "name": "original_total", "variant": "declaration", "kind": 1024, @@ -35347,18 +35415,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3966, + "target": 4008, "name": "OrderLineItemTotalsDTO.original_total" } }, { - "id": 3839, + "id": 3671, "name": "original_subtotal", "variant": "declaration", "kind": 1024, @@ -35375,18 +35443,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3967, + "target": 4009, "name": "OrderLineItemTotalsDTO.original_subtotal" } }, { - "id": 3840, + "id": 3672, "name": "original_tax_total", "variant": "declaration", "kind": 1024, @@ -35403,18 +35471,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3968, + "target": 4010, "name": "OrderLineItemTotalsDTO.original_tax_total" } }, { - "id": 3841, + "id": 3673, "name": "item_total", "variant": "declaration", "kind": 1024, @@ -35431,18 +35499,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3969, + "target": 4011, "name": "OrderLineItemTotalsDTO.item_total" } }, { - "id": 3842, + "id": 3674, "name": "item_subtotal", "variant": "declaration", "kind": 1024, @@ -35459,18 +35527,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3970, + "target": 4012, "name": "OrderLineItemTotalsDTO.item_subtotal" } }, { - "id": 3843, + "id": 3675, "name": "item_tax_total", "variant": "declaration", "kind": 1024, @@ -35487,18 +35555,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3971, + "target": 4013, "name": "OrderLineItemTotalsDTO.item_tax_total" } }, { - "id": 3844, + "id": 3676, "name": "total", "variant": "declaration", "kind": 1024, @@ -35515,18 +35583,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3972, + "target": 4014, "name": "OrderLineItemTotalsDTO.total" } }, { - "id": 3845, + "id": 3677, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -35543,18 +35611,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3973, + "target": 4015, "name": "OrderLineItemTotalsDTO.subtotal" } }, { - "id": 3846, + "id": 3678, "name": "tax_total", "variant": "declaration", "kind": 1024, @@ -35571,18 +35639,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3974, + "target": 4016, "name": "OrderLineItemTotalsDTO.tax_total" } }, { - "id": 3847, + "id": 3679, "name": "discount_total", "variant": "declaration", "kind": 1024, @@ -35599,18 +35667,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3975, + "target": 4017, "name": "OrderLineItemTotalsDTO.discount_total" } }, { - "id": 3848, + "id": 3680, "name": "discount_tax_total", "variant": "declaration", "kind": 1024, @@ -35627,18 +35695,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3976, + "target": 4018, "name": "OrderLineItemTotalsDTO.discount_tax_total" } }, { - "id": 3849, + "id": 3681, "name": "refundable_total", "variant": "declaration", "kind": 1024, @@ -35655,18 +35723,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3977, + "target": 4019, "name": "OrderLineItemTotalsDTO.refundable_total" } }, { - "id": 3850, + "id": 3682, "name": "refundable_total_per_unit", "variant": "declaration", "kind": 1024, @@ -35683,18 +35751,18 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3978, + "target": 4020, "name": "OrderLineItemTotalsDTO.refundable_total_per_unit" } }, { - "id": 3851, + "id": 3683, "name": "raw_original_total", "variant": "declaration", "kind": 1024, @@ -35711,18 +35779,18 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3979, + "target": 4021, "name": "OrderLineItemTotalsDTO.raw_original_total" } }, { - "id": 3852, + "id": 3684, "name": "raw_original_subtotal", "variant": "declaration", "kind": 1024, @@ -35739,18 +35807,18 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3980, + "target": 4022, "name": "OrderLineItemTotalsDTO.raw_original_subtotal" } }, { - "id": 3853, + "id": 3685, "name": "raw_original_tax_total", "variant": "declaration", "kind": 1024, @@ -35767,18 +35835,18 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3981, + "target": 4023, "name": "OrderLineItemTotalsDTO.raw_original_tax_total" } }, { - "id": 3854, + "id": 3686, "name": "raw_item_total", "variant": "declaration", "kind": 1024, @@ -35795,18 +35863,18 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3982, + "target": 4024, "name": "OrderLineItemTotalsDTO.raw_item_total" } }, { - "id": 3855, + "id": 3687, "name": "raw_item_subtotal", "variant": "declaration", "kind": 1024, @@ -35823,18 +35891,18 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3983, + "target": 4025, "name": "OrderLineItemTotalsDTO.raw_item_subtotal" } }, { - "id": 3856, + "id": 3688, "name": "raw_item_tax_total", "variant": "declaration", "kind": 1024, @@ -35851,18 +35919,18 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3984, + "target": 4026, "name": "OrderLineItemTotalsDTO.raw_item_tax_total" } }, { - "id": 3857, + "id": 3689, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -35879,18 +35947,18 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3985, + "target": 4027, "name": "OrderLineItemTotalsDTO.raw_total" } }, { - "id": 3858, + "id": 3690, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -35907,18 +35975,18 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3986, + "target": 4028, "name": "OrderLineItemTotalsDTO.raw_subtotal" } }, { - "id": 3859, + "id": 3691, "name": "raw_tax_total", "variant": "declaration", "kind": 1024, @@ -35935,18 +36003,18 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3987, + "target": 4029, "name": "OrderLineItemTotalsDTO.raw_tax_total" } }, { - "id": 3860, + "id": 3692, "name": "raw_discount_total", "variant": "declaration", "kind": 1024, @@ -35963,18 +36031,18 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3988, + "target": 4030, "name": "OrderLineItemTotalsDTO.raw_discount_total" } }, { - "id": 3861, + "id": 3693, "name": "raw_discount_tax_total", "variant": "declaration", "kind": 1024, @@ -35991,18 +36059,18 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3989, + "target": 4031, "name": "OrderLineItemTotalsDTO.raw_discount_tax_total" } }, { - "id": 3862, + "id": 3694, "name": "raw_refundable_total", "variant": "declaration", "kind": 1024, @@ -36019,18 +36087,18 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3990, + "target": 4032, "name": "OrderLineItemTotalsDTO.raw_refundable_total" } }, { - "id": 3863, + "id": 3695, "name": "raw_refundable_total_per_unit", "variant": "declaration", "kind": 1024, @@ -36047,18 +36115,18 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 3991, + "target": 4033, "name": "OrderLineItemTotalsDTO.raw_refundable_total_per_unit" } }, { - "id": 3807, + "id": 3639, "name": "id", "variant": "declaration", "kind": 1024, @@ -36077,7 +36145,7 @@ } }, { - "id": 3808, + "id": 3640, "name": "title", "variant": "declaration", "kind": 1024, @@ -36096,7 +36164,7 @@ } }, { - "id": 3809, + "id": 3641, "name": "subtitle", "variant": "declaration", "kind": 1024, @@ -36126,7 +36194,7 @@ } }, { - "id": 3810, + "id": 3642, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -36156,7 +36224,7 @@ } }, { - "id": 3811, + "id": 3643, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -36186,7 +36254,7 @@ } }, { - "id": 3812, + "id": 3644, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -36216,7 +36284,7 @@ } }, { - "id": 3813, + "id": 3645, "name": "product_title", "variant": "declaration", "kind": 1024, @@ -36246,7 +36314,7 @@ } }, { - "id": 3814, + "id": 3646, "name": "product_description", "variant": "declaration", "kind": 1024, @@ -36276,7 +36344,7 @@ } }, { - "id": 3815, + "id": 3647, "name": "product_subtitle", "variant": "declaration", "kind": 1024, @@ -36306,7 +36374,7 @@ } }, { - "id": 3816, + "id": 3648, "name": "product_type", "variant": "declaration", "kind": 1024, @@ -36336,7 +36404,7 @@ } }, { - "id": 3817, + "id": 3649, "name": "product_collection", "variant": "declaration", "kind": 1024, @@ -36366,7 +36434,7 @@ } }, { - "id": 3818, + "id": 3650, "name": "product_handle", "variant": "declaration", "kind": 1024, @@ -36396,7 +36464,7 @@ } }, { - "id": 3819, + "id": 3651, "name": "variant_sku", "variant": "declaration", "kind": 1024, @@ -36426,7 +36494,7 @@ } }, { - "id": 3820, + "id": 3652, "name": "variant_barcode", "variant": "declaration", "kind": 1024, @@ -36456,7 +36524,7 @@ } }, { - "id": 3821, + "id": 3653, "name": "variant_title", "variant": "declaration", "kind": 1024, @@ -36486,7 +36554,7 @@ } }, { - "id": 3822, + "id": 3654, "name": "variant_option_values", "variant": "declaration", "kind": 1024, @@ -36531,7 +36599,7 @@ } }, { - "id": 3823, + "id": 3655, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -36550,7 +36618,7 @@ } }, { - "id": 3824, + "id": 3656, "name": "is_discountable", "variant": "declaration", "kind": 1024, @@ -36569,7 +36637,7 @@ } }, { - "id": 3825, + "id": 3657, "name": "is_tax_inclusive", "variant": "declaration", "kind": 1024, @@ -36588,7 +36656,7 @@ } }, { - "id": 3826, + "id": 3658, "name": "compare_at_unit_price", "variant": "declaration", "kind": 1024, @@ -36609,7 +36677,7 @@ } }, { - "id": 3827, + "id": 3659, "name": "raw_compare_at_unit_price", "variant": "declaration", "kind": 1024, @@ -36626,13 +36694,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3828, + "id": 3660, "name": "unit_price", "variant": "declaration", "kind": 1024, @@ -36651,7 +36719,7 @@ } }, { - "id": 3829, + "id": 3661, "name": "raw_unit_price", "variant": "declaration", "kind": 1024, @@ -36666,13 +36734,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3830, + "id": 3662, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -36691,7 +36759,7 @@ } }, { - "id": 3831, + "id": 3663, "name": "raw_quantity", "variant": "declaration", "kind": 1024, @@ -36706,13 +36774,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3832, + "id": 3664, "name": "tax_lines", "variant": "declaration", "kind": 1024, @@ -36734,14 +36802,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3992, + "target": 4034, "name": "OrderLineItemTaxLineDTO", "package": "@medusajs/types" } } }, { - "id": 3833, + "id": 3665, "name": "adjustments", "variant": "declaration", "kind": 1024, @@ -36763,14 +36831,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4007, + "target": 4049, "name": "OrderLineItemAdjustmentDTO", "package": "@medusajs/types" } } }, { - "id": 3834, + "id": 3666, "name": "detail", "variant": "declaration", "kind": 1024, @@ -36785,13 +36853,13 @@ }, "type": { "type": "reference", - "target": 4019, + "target": 4061, "name": "OrderItemDTO", "package": "@medusajs/types" } }, { - "id": 3835, + "id": 3667, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -36815,7 +36883,7 @@ } }, { - "id": 3836, + "id": 3668, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -36839,7 +36907,7 @@ } }, { - "id": 3837, + "id": 3669, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -36888,84 +36956,84 @@ { "title": "Properties", "children": [ - 3838, - 3839, - 3840, - 3841, - 3842, - 3843, - 3844, - 3845, - 3846, - 3847, - 3848, - 3849, - 3850, - 3851, - 3852, - 3853, - 3854, - 3855, - 3856, - 3857, - 3858, - 3859, - 3860, - 3861, - 3862, - 3863, - 3807, - 3808, - 3809, - 3810, - 3811, - 3812, - 3813, - 3814, - 3815, - 3816, - 3817, - 3818, - 3819, - 3820, - 3821, - 3822, - 3823, - 3824, - 3825, - 3826, - 3827, - 3828, - 3829, - 3830, - 3831, - 3832, - 3833, - 3834, - 3835, - 3836, - 3837 + 3670, + 3671, + 3672, + 3673, + 3674, + 3675, + 3676, + 3677, + 3678, + 3679, + 3680, + 3681, + 3682, + 3683, + 3684, + 3685, + 3686, + 3687, + 3688, + 3689, + 3690, + 3691, + 3692, + 3693, + 3694, + 3695, + 3639, + 3640, + 3641, + 3642, + 3643, + 3644, + 3645, + 3646, + 3647, + 3648, + 3649, + 3650, + 3651, + 3652, + 3653, + 3654, + 3655, + 3656, + 3657, + 3658, + 3659, + 3660, + 3661, + 3662, + 3663, + 3664, + 3665, + 3666, + 3667, + 3668, + 3669 ] } ], "extendedTypes": [ { "type": "reference", - "target": 3965, + "target": 4007, "name": "OrderLineItemTotalsDTO", "package": "@medusajs/types" } ] }, { - "id": 4019, + "id": 4061, "name": "OrderItemDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4020, + "id": 4062, "name": "id", "variant": "declaration", "kind": 1024, @@ -36984,7 +37052,7 @@ } }, { - "id": 4021, + "id": 4063, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -37003,7 +37071,7 @@ } }, { - "id": 4022, + "id": 4064, "name": "item", "variant": "declaration", "kind": 1024, @@ -37018,13 +37086,13 @@ }, "type": { "type": "reference", - "target": 3806, + "target": 3638, "name": "OrderLineItemDTO", "package": "@medusajs/types" } }, { - "id": 4023, + "id": 4065, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -37043,7 +37111,7 @@ } }, { - "id": 4024, + "id": 4066, "name": "raw_quantity", "variant": "declaration", "kind": 1024, @@ -37058,13 +37126,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 4025, + "id": 4067, "name": "fulfilled_quantity", "variant": "declaration", "kind": 1024, @@ -37083,7 +37151,7 @@ } }, { - "id": 4026, + "id": 4068, "name": "raw_fulfilled_quantity", "variant": "declaration", "kind": 1024, @@ -37098,13 +37166,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 4027, + "id": 4069, "name": "shipped_quantity", "variant": "declaration", "kind": 1024, @@ -37123,7 +37191,7 @@ } }, { - "id": 4028, + "id": 4070, "name": "raw_shipped_quantity", "variant": "declaration", "kind": 1024, @@ -37138,13 +37206,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 4029, + "id": 4071, "name": "return_requested_quantity", "variant": "declaration", "kind": 1024, @@ -37163,7 +37231,7 @@ } }, { - "id": 4030, + "id": 4072, "name": "raw_return_requested_quantity", "variant": "declaration", "kind": 1024, @@ -37178,13 +37246,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 4031, + "id": 4073, "name": "return_received_quantity", "variant": "declaration", "kind": 1024, @@ -37203,7 +37271,7 @@ } }, { - "id": 4032, + "id": 4074, "name": "raw_return_received_quantity", "variant": "declaration", "kind": 1024, @@ -37218,13 +37286,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 4033, + "id": 4075, "name": "return_dismissed_quantity", "variant": "declaration", "kind": 1024, @@ -37243,7 +37311,7 @@ } }, { - "id": 4034, + "id": 4076, "name": "raw_return_dismissed_quantity", "variant": "declaration", "kind": 1024, @@ -37258,13 +37326,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 4035, + "id": 4077, "name": "written_off_quantity", "variant": "declaration", "kind": 1024, @@ -37283,7 +37351,7 @@ } }, { - "id": 4036, + "id": 4078, "name": "raw_written_off_quantity", "variant": "declaration", "kind": 1024, @@ -37298,13 +37366,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 4037, + "id": 4079, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -37347,7 +37415,7 @@ } }, { - "id": 4038, + "id": 4080, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -37371,7 +37439,7 @@ } }, { - "id": 4039, + "id": 4081, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -37399,32 +37467,32 @@ { "title": "Properties", "children": [ - 4020, - 4021, - 4022, - 4023, - 4024, - 4025, - 4026, - 4027, - 4028, - 4029, - 4030, - 4031, - 4032, - 4033, - 4034, - 4035, - 4036, - 4037, - 4038, - 4039 + 4062, + 4063, + 4064, + 4065, + 4066, + 4067, + 4068, + 4069, + 4070, + 4071, + 4072, + 4073, + 4074, + 4075, + 4076, + 4077, + 4078, + 4079, + 4080, + 4081 ] } ] }, { - "id": 3789, + "id": 3621, "name": "OrderStatus", "variant": "declaration", "kind": 2097152, @@ -37460,14 +37528,14 @@ } }, { - "id": 3668, + "id": 3473, "name": "OrderDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3669, + "id": 3474, "name": "id", "variant": "declaration", "kind": 1024, @@ -37486,7 +37554,7 @@ } }, { - "id": 3670, + "id": 3475, "name": "version", "variant": "declaration", "kind": 1024, @@ -37505,7 +37573,30 @@ } }, { - "id": 3671, + "id": 3476, + "name": "order_change", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The active order change, if any." + } + ] + }, + "type": { + "type": "reference", + "target": 3595, + "name": "OrderChangeDTO", + "package": "@medusajs/types" + } + }, + { + "id": 3477, "name": "status", "variant": "declaration", "kind": 1024, @@ -37520,13 +37611,13 @@ }, "type": { "type": "reference", - "target": 3789, + "target": 3621, "name": "OrderStatus", "package": "@medusajs/types" } }, { - "id": 3672, + "id": 3478, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -37547,7 +37638,7 @@ } }, { - "id": 3673, + "id": 3479, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -37568,7 +37659,7 @@ } }, { - "id": 3674, + "id": 3480, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -37589,7 +37680,7 @@ } }, { - "id": 3675, + "id": 3481, "name": "email", "variant": "declaration", "kind": 1024, @@ -37610,7 +37701,7 @@ } }, { - "id": 3676, + "id": 3482, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -37629,7 +37720,7 @@ } }, { - "id": 3677, + "id": 3483, "name": "shipping_address", "variant": "declaration", "kind": 1024, @@ -37649,13 +37740,13 @@ }, "type": { "type": "reference", - "target": 3790, + "target": 3622, "name": "OrderAddressDTO", "package": "@medusajs/types" } }, { - "id": 3678, + "id": 3484, "name": "billing_address", "variant": "declaration", "kind": 1024, @@ -37675,13 +37766,13 @@ }, "type": { "type": "reference", - "target": 3790, + "target": 3622, "name": "OrderAddressDTO", "package": "@medusajs/types" } }, { - "id": 3679, + "id": 3485, "name": "items", "variant": "declaration", "kind": 1024, @@ -37703,14 +37794,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3806, + "target": 3638, "name": "OrderLineItemDTO", "package": "@medusajs/types" } } }, { - "id": 3680, + "id": 3486, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -37732,14 +37823,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3864, + "target": 3696, "name": "OrderShippingMethodDTO", "package": "@medusajs/types" } } }, { - "id": 3681, + "id": 3487, "name": "transactions", "variant": "declaration", "kind": 1024, @@ -37761,14 +37852,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 3895, + "target": 3727, "name": "OrderTransactionDTO", "package": "@medusajs/types" } } }, { - "id": 3682, + "id": 3488, "name": "summary", "variant": "declaration", "kind": 1024, @@ -37785,13 +37876,13 @@ }, "type": { "type": "reference", - "target": 3907, + "target": 3739, "name": "OrderSummaryDTO", "package": "@medusajs/types" } }, { - "id": 3683, + "id": 3489, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -37836,7 +37927,7 @@ } }, { - "id": 3684, + "id": 3490, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -37871,7 +37962,7 @@ } }, { - "id": 3685, + "id": 3491, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -37906,7 +37997,7 @@ } }, { - "id": 3686, + "id": 3492, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -37941,7 +38032,7 @@ } }, { - "id": 3687, + "id": 3493, "name": "original_item_total", "variant": "declaration", "kind": 1024, @@ -37956,13 +38047,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3688, + "id": 3494, "name": "original_item_subtotal", "variant": "declaration", "kind": 1024, @@ -37977,13 +38068,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3689, + "id": 3495, "name": "original_item_tax_total", "variant": "declaration", "kind": 1024, @@ -37998,13 +38089,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3690, + "id": 3496, "name": "item_total", "variant": "declaration", "kind": 1024, @@ -38019,13 +38110,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3691, + "id": 3497, "name": "item_subtotal", "variant": "declaration", "kind": 1024, @@ -38040,13 +38131,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3692, + "id": 3498, "name": "item_tax_total", "variant": "declaration", "kind": 1024, @@ -38061,13 +38152,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3693, + "id": 3499, "name": "original_total", "variant": "declaration", "kind": 1024, @@ -38082,13 +38173,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3694, + "id": 3500, "name": "original_subtotal", "variant": "declaration", "kind": 1024, @@ -38103,13 +38194,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3695, + "id": 3501, "name": "original_tax_total", "variant": "declaration", "kind": 1024, @@ -38124,13 +38215,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3696, + "id": 3502, "name": "total", "variant": "declaration", "kind": 1024, @@ -38145,13 +38236,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3697, + "id": 3503, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -38166,13 +38257,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3698, + "id": 3504, "name": "tax_total", "variant": "declaration", "kind": 1024, @@ -38187,13 +38278,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3699, + "id": 3505, "name": "discount_total", "variant": "declaration", "kind": 1024, @@ -38208,13 +38299,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3700, + "id": 3506, "name": "discount_tax_total", "variant": "declaration", "kind": 1024, @@ -38229,13 +38320,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3701, + "id": 3507, "name": "gift_card_total", "variant": "declaration", "kind": 1024, @@ -38250,13 +38341,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3702, + "id": 3508, "name": "gift_card_tax_total", "variant": "declaration", "kind": 1024, @@ -38271,13 +38362,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3703, + "id": 3509, "name": "shipping_total", "variant": "declaration", "kind": 1024, @@ -38292,13 +38383,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3704, + "id": 3510, "name": "shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -38313,13 +38404,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3705, + "id": 3511, "name": "shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -38334,13 +38425,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3706, + "id": 3512, "name": "original_shipping_total", "variant": "declaration", "kind": 1024, @@ -38355,13 +38446,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3707, + "id": 3513, "name": "original_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -38376,13 +38467,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3708, + "id": 3514, "name": "original_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -38397,13 +38488,13 @@ }, "type": { "type": "reference", - "target": 3929, + "target": 3761, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 3709, + "id": 3515, "name": "raw_original_item_total", "variant": "declaration", "kind": 1024, @@ -38418,13 +38509,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3710, + "id": 3516, "name": "raw_original_item_subtotal", "variant": "declaration", "kind": 1024, @@ -38439,13 +38530,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3711, + "id": 3517, "name": "raw_original_item_tax_total", "variant": "declaration", "kind": 1024, @@ -38460,13 +38551,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3712, + "id": 3518, "name": "raw_item_total", "variant": "declaration", "kind": 1024, @@ -38481,13 +38572,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3713, + "id": 3519, "name": "raw_item_subtotal", "variant": "declaration", "kind": 1024, @@ -38502,13 +38593,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3714, + "id": 3520, "name": "raw_item_tax_total", "variant": "declaration", "kind": 1024, @@ -38523,13 +38614,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3715, + "id": 3521, "name": "raw_original_total", "variant": "declaration", "kind": 1024, @@ -38544,13 +38635,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3716, + "id": 3522, "name": "raw_original_subtotal", "variant": "declaration", "kind": 1024, @@ -38565,13 +38656,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3717, + "id": 3523, "name": "raw_original_tax_total", "variant": "declaration", "kind": 1024, @@ -38586,13 +38677,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3718, + "id": 3524, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -38607,13 +38698,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3719, + "id": 3525, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -38628,13 +38719,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3720, + "id": 3526, "name": "raw_tax_total", "variant": "declaration", "kind": 1024, @@ -38649,13 +38740,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3721, + "id": 3527, "name": "raw_discount_total", "variant": "declaration", "kind": 1024, @@ -38670,13 +38761,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3722, + "id": 3528, "name": "raw_discount_tax_total", "variant": "declaration", "kind": 1024, @@ -38691,13 +38782,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3723, + "id": 3529, "name": "raw_gift_card_total", "variant": "declaration", "kind": 1024, @@ -38712,13 +38803,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3724, + "id": 3530, "name": "raw_gift_card_tax_total", "variant": "declaration", "kind": 1024, @@ -38733,13 +38824,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3725, + "id": 3531, "name": "raw_shipping_total", "variant": "declaration", "kind": 1024, @@ -38754,13 +38845,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3726, + "id": 3532, "name": "raw_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -38775,13 +38866,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3727, + "id": 3533, "name": "raw_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -38796,13 +38887,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3728, + "id": 3534, "name": "raw_original_shipping_total", "variant": "declaration", "kind": 1024, @@ -38817,13 +38908,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3729, + "id": 3535, "name": "raw_original_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -38838,13 +38929,13 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 3730, + "id": 3536, "name": "raw_original_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -38859,7 +38950,7 @@ }, "type": { "type": "reference", - "target": 3930, + "target": 3762, "name": "BigNumberRawValue", "package": "@medusajs/types" } @@ -38869,128 +38960,311 @@ { "title": "Properties", "children": [ - 3669, - 3670, - 3671, - 3672, - 3673, - 3674, - 3675, - 3676, - 3677, - 3678, - 3679, - 3680, - 3681, - 3682, - 3683, - 3684, - 3685, - 3686, - 3687, - 3688, - 3689, - 3690, - 3691, - 3692, - 3693, - 3694, - 3695, - 3696, - 3697, - 3698, - 3699, - 3700, - 3701, - 3702, - 3703, - 3704, - 3705, - 3706, - 3707, - 3708, - 3709, - 3710, - 3711, - 3712, - 3713, - 3714, - 3715, - 3716, - 3717, - 3718, - 3719, - 3720, - 3721, - 3722, - 3723, - 3724, - 3725, - 3726, - 3727, - 3728, - 3729, - 3730 + 3474, + 3475, + 3476, + 3477, + 3478, + 3479, + 3480, + 3481, + 3482, + 3483, + 3484, + 3485, + 3486, + 3487, + 3488, + 3489, + 3490, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, + 3498, + 3499, + 3500, + 3501, + 3502, + 3503, + 3504, + 3505, + 3506, + 3507, + 3508, + 3509, + 3510, + 3511, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3518, + 3519, + 3520, + 3521, + 3522, + 3523, + 3524, + 3525, + 3526, + 3527, + 3528, + 3529, + 3530, + 3531, + 3532, + 3533, + 3534, + 3535, + 3536 ] } ] }, { - "id": 3895, - "name": "OrderTransactionDTO", + "id": 4115, + "name": "ReturnStatus", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "requested" + }, + { + "type": "literal", + "value": "received" + }, + { + "type": "literal", + "value": "partially_received" + }, + { + "type": "literal", + "value": "canceled" + } + ] + } + }, + { + "id": 3797, + "name": "ReturnDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3896, + "id": 3808, "name": "id", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The ID of the transaction" + "text": "The ID of the order." } ] }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.id" } }, { - "id": 3897, - "name": "order_id", + "id": 3818, + "name": "order_change", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The ID of the associated order" + "text": "The active order change, if any." + } + ] + }, + "type": { + "type": "reference", + "target": 3595, + "name": "OrderChangeDTO", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.order_change" + } + }, + { + "id": 3813, + "name": "region_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the region the order belongs to." } ] }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.region_id" } }, { - "id": 3898, - "name": "order", + "id": 3812, + "name": "customer_id", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The associated order" + "text": "The ID of the customer on the order." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.customer_id" + } + }, + { + "id": 3811, + "name": "sales_channel_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the sales channel the order belongs to." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.sales_channel_id" + } + }, + { + "id": 3815, + "name": "email", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The email of the order." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.email" + } + }, + { + "id": 3817, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The currency of the order" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.currency_code" + } + }, + { + "id": 3819, + "name": "shipping_address", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated shipping address." } ], "modifierTags": [ @@ -38999,121 +39273,196 @@ }, "type": { "type": "reference", - "target": 3668, - "name": "OrderDTO", + "target": 3622, + "name": "OrderAddressDTO", "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_address" } }, { - "id": 3899, - "name": "amount", + "id": 3820, + "name": "billing_address", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The amount of the transaction" + "text": "The associated billing address." } + ], + "modifierTags": [ + "@expandable" ] }, "type": { "type": "reference", - "target": 3929, - "name": "BigNumberValue", + "target": 3622, + "name": "OrderAddressDTO", "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.billing_address" } }, { - "id": 3900, - "name": "raw_amount", + "id": 3821, + "name": "items", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The raw amount of the transaction" + "text": "The associated order details / line items." } + ], + "modifierTags": [ + "@expandable" ] }, "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 3638, + "name": "OrderLineItemDTO", + "package": "@medusajs/types" + } + }, + "inheritedFrom": { "type": "reference", - "target": 3930, - "name": "BigNumberRawValue", - "package": "@medusajs/types" + "target": -1, + "name": "Omit.items" } }, { - "id": 3901, - "name": "currency_code", + "id": 3822, + "name": "shipping_methods", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The currency code of the transaction" + "text": "The associated shipping methods" } + ], + "modifierTags": [ + "@expandable" ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "target": 3696, + "name": "OrderShippingMethodDTO", + "package": "@medusajs/types" + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_methods" } }, { - "id": 3902, - "name": "reference", + "id": 3823, + "name": "transactions", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The reference of the transaction" + "text": "The tramsactions associated with the order" } + ], + "modifierTags": [ + "@expandable" ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "target": 3727, + "name": "OrderTransactionDTO", + "package": "@medusajs/types" + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.transactions" } }, { - "id": 3903, - "name": "reference_id", + "id": 3824, + "name": "summary", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The ID of the reference" + "text": "The summary of the order totals." } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 3739, + "name": "OrderSummaryDTO", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.summary" } }, { - "id": 3904, - "name": "created_at", + "id": 3814, + "name": "metadata", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "When the transaction was created" + "text": "Holds custom data in key-value pairs." } ] }, @@ -39121,32 +39470,50 @@ "type": "union", "types": [ { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": null }, { "type": "reference", "target": { "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" + "qualifiedName": "Record" }, - "name": "Date", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", "package": "typescript" } ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.metadata" } }, { - "id": 3905, - "name": "updated_at", + "id": 3816, + "name": "canceled_at", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "When the transaction was updated" + "text": "When the order was canceled." } ] }, @@ -39167,19 +39534,27 @@ "package": "typescript" } ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.canceled_at" } }, { - "id": 3906, - "name": "metadata", + "id": 3809, + "name": "created_at", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The metadata of the transaction" + "text": "When the order was created." } ] }, @@ -39187,100 +39562,6778 @@ "type": "union", "types": [ { - "type": "literal", - "value": null + "type": "intrinsic", + "name": "string" }, { "type": "reference", "target": { "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" + "qualifiedName": "Date" }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", + "name": "Date", "package": "typescript" } ] - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3896, - 3897, - 3898, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, - 3906 - ] - } - ] - }, - { - "id": 3758, - "name": "MessageAggregatorFormat", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 3759, - "name": "groupBy", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.created_at" } }, { - "id": 3760, - "name": "sortBy", + "id": 3810, + "name": "updated_at", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order was updated." + } + ] }, "type": { - "type": "reflection", - "declaration": { - "id": 3761, + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.updated_at" + } + }, + { + "id": 3825, + "name": "original_item_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original item total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_item_total" + } + }, + { + "id": 3826, + "name": "original_item_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original item subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_item_subtotal" + } + }, + { + "id": 3827, + "name": "original_item_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original item tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_item_tax_total" + } + }, + { + "id": 3828, + "name": "item_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The item total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.item_total" + } + }, + { + "id": 3829, + "name": "item_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The item subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.item_subtotal" + } + }, + { + "id": 3830, + "name": "item_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The item tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.item_tax_total" + } + }, + { + "id": 3831, + "name": "original_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_total" + } + }, + { + "id": 3832, + "name": "original_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_subtotal" + } + }, + { + "id": 3833, + "name": "original_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_tax_total" + } + }, + { + "id": 3804, + "name": "total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.total" + } + }, + { + "id": 3805, + "name": "subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The subtotal of the order. (Excluding taxes)" + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.subtotal" + } + }, + { + "id": 3803, + "name": "tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.tax_total" + } + }, + { + "id": 3802, + "name": "discount_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The discount total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.discount_total" + } + }, + { + "id": 3834, + "name": "discount_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The discount tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.discount_tax_total" + } + }, + { + "id": 3806, + "name": "gift_card_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The gift card total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.gift_card_total" + } + }, + { + "id": 3807, + "name": "gift_card_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The gift card tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.gift_card_tax_total" + } + }, + { + "id": 3801, + "name": "shipping_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The shipping total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_total" + } + }, + { + "id": 3835, + "name": "shipping_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The shipping subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_subtotal" + } + }, + { + "id": 3836, + "name": "shipping_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The shipping tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_tax_total" + } + }, + { + "id": 3837, + "name": "original_shipping_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original shipping total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_shipping_total" + } + }, + { + "id": 3838, + "name": "original_shipping_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original shipping subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_shipping_subtotal" + } + }, + { + "id": 3839, + "name": "original_shipping_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original shipping tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_shipping_tax_total" + } + }, + { + "id": 3840, + "name": "raw_original_item_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original item total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_item_total" + } + }, + { + "id": 3841, + "name": "raw_original_item_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original item subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_item_subtotal" + } + }, + { + "id": 3842, + "name": "raw_original_item_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original item tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_item_tax_total" + } + }, + { + "id": 3843, + "name": "raw_item_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw item total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_item_total" + } + }, + { + "id": 3844, + "name": "raw_item_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw item subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_item_subtotal" + } + }, + { + "id": 3845, + "name": "raw_item_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw item tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_item_tax_total" + } + }, + { + "id": 3846, + "name": "raw_original_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_total" + } + }, + { + "id": 3847, + "name": "raw_original_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_subtotal" + } + }, + { + "id": 3848, + "name": "raw_original_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_tax_total" + } + }, + { + "id": 3849, + "name": "raw_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_total" + } + }, + { + "id": 3850, + "name": "raw_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw subtotal of the order. (Excluding taxes)" + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_subtotal" + } + }, + { + "id": 3851, + "name": "raw_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_tax_total" + } + }, + { + "id": 3852, + "name": "raw_discount_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw discount total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_discount_total" + } + }, + { + "id": 3853, + "name": "raw_discount_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw discount tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_discount_tax_total" + } + }, + { + "id": 3854, + "name": "raw_gift_card_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw gift card total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_gift_card_total" + } + }, + { + "id": 3855, + "name": "raw_gift_card_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw gift card tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_gift_card_tax_total" + } + }, + { + "id": 3856, + "name": "raw_shipping_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw shipping total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_shipping_total" + } + }, + { + "id": 3857, + "name": "raw_shipping_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw shipping subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_shipping_subtotal" + } + }, + { + "id": 3858, + "name": "raw_shipping_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw shipping tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_shipping_tax_total" + } + }, + { + "id": 3859, + "name": "raw_original_shipping_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original shipping total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_shipping_total" + } + }, + { + "id": 3860, + "name": "raw_original_shipping_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original shipping subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_shipping_subtotal" + } + }, + { + "id": 3861, + "name": "raw_original_shipping_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original shipping tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_shipping_tax_total" + } + }, + { + "id": 3798, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 4115, + "name": "ReturnStatus", + "package": "@medusajs/types" + } + }, + { + "id": 3799, + "name": "refund_amount", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + } + }, + { + "id": 3800, + "name": "order_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3808, + 3818, + 3813, + 3812, + 3811, + 3815, + 3817, + 3819, + 3820, + 3821, + 3822, + 3823, + 3824, + 3814, + 3816, + 3809, + 3810, + 3825, + 3826, + 3827, + 3828, + 3829, + 3830, + 3831, + 3832, + 3833, + 3804, + 3805, + 3803, + 3802, + 3834, + 3806, + 3807, + 3801, + 3835, + 3836, + 3837, + 3838, + 3839, + 3840, + 3841, + 3842, + 3843, + 3844, + 3845, + 3846, + 3847, + 3848, + 3849, + 3850, + 3851, + 3852, + 3853, + 3854, + 3855, + 3856, + 3857, + 3858, + 3859, + 3860, + 3861, + 3798, + 3799, + 3800 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3473, + "name": "OrderDTO", + "package": "@medusajs/types" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "status" + }, + { + "type": "literal", + "value": "version" + } + ] + } + ], + "name": "Omit", + "package": "typescript" + } + ] + }, + { + "id": 3928, + "name": "OrderClaimDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3941, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the order." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.id" + } + }, + { + "id": 3951, + "name": "order_change", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The active order change, if any." + } + ] + }, + "type": { + "type": "reference", + "target": 3595, + "name": "OrderChangeDTO", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.order_change" + } + }, + { + "id": 3946, + "name": "region_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the region the order belongs to." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.region_id" + } + }, + { + "id": 3945, + "name": "customer_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the customer on the order." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.customer_id" + } + }, + { + "id": 3944, + "name": "sales_channel_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the sales channel the order belongs to." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.sales_channel_id" + } + }, + { + "id": 3948, + "name": "email", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The email of the order." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.email" + } + }, + { + "id": 3950, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The currency of the order" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.currency_code" + } + }, + { + "id": 3952, + "name": "shipping_address", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated shipping address." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 3622, + "name": "OrderAddressDTO", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_address" + } + }, + { + "id": 3953, + "name": "billing_address", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated billing address." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 3622, + "name": "OrderAddressDTO", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.billing_address" + } + }, + { + "id": 3954, + "name": "shipping_methods", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated shipping methods" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 3696, + "name": "OrderShippingMethodDTO", + "package": "@medusajs/types" + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_methods" + } + }, + { + "id": 3955, + "name": "transactions", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The tramsactions associated with the order" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 3727, + "name": "OrderTransactionDTO", + "package": "@medusajs/types" + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.transactions" + } + }, + { + "id": 3956, + "name": "summary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The summary of the order totals." + } + ] + }, + "type": { + "type": "reference", + "target": 3739, + "name": "OrderSummaryDTO", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.summary" + } + }, + { + "id": 3947, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Holds custom data in key-value pairs." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.metadata" + } + }, + { + "id": 3949, + "name": "canceled_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order was canceled." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.canceled_at" + } + }, + { + "id": 3942, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order was created." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.created_at" + } + }, + { + "id": 3943, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order was updated." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.updated_at" + } + }, + { + "id": 3957, + "name": "original_item_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original item total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_item_total" + } + }, + { + "id": 3958, + "name": "original_item_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original item subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_item_subtotal" + } + }, + { + "id": 3959, + "name": "original_item_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original item tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_item_tax_total" + } + }, + { + "id": 3960, + "name": "item_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The item total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.item_total" + } + }, + { + "id": 3961, + "name": "item_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The item subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.item_subtotal" + } + }, + { + "id": 3962, + "name": "item_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The item tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.item_tax_total" + } + }, + { + "id": 3963, + "name": "original_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_total" + } + }, + { + "id": 3964, + "name": "original_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_subtotal" + } + }, + { + "id": 3965, + "name": "original_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_tax_total" + } + }, + { + "id": 3937, + "name": "total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.total" + } + }, + { + "id": 3938, + "name": "subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The subtotal of the order. (Excluding taxes)" + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.subtotal" + } + }, + { + "id": 3936, + "name": "tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.tax_total" + } + }, + { + "id": 3935, + "name": "discount_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The discount total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.discount_total" + } + }, + { + "id": 3966, + "name": "discount_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The discount tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.discount_tax_total" + } + }, + { + "id": 3939, + "name": "gift_card_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The gift card total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.gift_card_total" + } + }, + { + "id": 3940, + "name": "gift_card_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The gift card tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.gift_card_tax_total" + } + }, + { + "id": 3934, + "name": "shipping_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The shipping total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_total" + } + }, + { + "id": 3967, + "name": "shipping_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The shipping subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_subtotal" + } + }, + { + "id": 3968, + "name": "shipping_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The shipping tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_tax_total" + } + }, + { + "id": 3969, + "name": "original_shipping_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original shipping total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_shipping_total" + } + }, + { + "id": 3970, + "name": "original_shipping_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original shipping subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_shipping_subtotal" + } + }, + { + "id": 3971, + "name": "original_shipping_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original shipping tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_shipping_tax_total" + } + }, + { + "id": 3972, + "name": "raw_original_item_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original item total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_item_total" + } + }, + { + "id": 3973, + "name": "raw_original_item_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original item subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_item_subtotal" + } + }, + { + "id": 3974, + "name": "raw_original_item_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original item tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_item_tax_total" + } + }, + { + "id": 3975, + "name": "raw_item_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw item total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_item_total" + } + }, + { + "id": 3976, + "name": "raw_item_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw item subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_item_subtotal" + } + }, + { + "id": 3977, + "name": "raw_item_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw item tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_item_tax_total" + } + }, + { + "id": 3978, + "name": "raw_original_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_total" + } + }, + { + "id": 3979, + "name": "raw_original_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_subtotal" + } + }, + { + "id": 3980, + "name": "raw_original_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_tax_total" + } + }, + { + "id": 3981, + "name": "raw_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_total" + } + }, + { + "id": 3982, + "name": "raw_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw subtotal of the order. (Excluding taxes)" + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_subtotal" + } + }, + { + "id": 3983, + "name": "raw_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_tax_total" + } + }, + { + "id": 3984, + "name": "raw_discount_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw discount total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_discount_total" + } + }, + { + "id": 3985, + "name": "raw_discount_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw discount tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_discount_tax_total" + } + }, + { + "id": 3986, + "name": "raw_gift_card_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw gift card total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_gift_card_total" + } + }, + { + "id": 3987, + "name": "raw_gift_card_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw gift card tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_gift_card_tax_total" + } + }, + { + "id": 3988, + "name": "raw_shipping_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw shipping total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_shipping_total" + } + }, + { + "id": 3989, + "name": "raw_shipping_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw shipping subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_shipping_subtotal" + } + }, + { + "id": 3990, + "name": "raw_shipping_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw shipping tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_shipping_tax_total" + } + }, + { + "id": 3991, + "name": "raw_original_shipping_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original shipping total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_shipping_total" + } + }, + { + "id": 3992, + "name": "raw_original_shipping_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original shipping subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_shipping_subtotal" + } + }, + { + "id": 3993, + "name": "raw_original_shipping_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original shipping tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_shipping_tax_total" + } + }, + { + "id": 3929, + "name": "claim_items", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + }, + { + "id": 3930, + "name": "additional_items", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + }, + { + "id": 3931, + "name": "return", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 3797, + "name": "ReturnDTO", + "package": "@medusajs/types" + } + }, + { + "id": 3932, + "name": "no_notification", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 3933, + "name": "refund_amount", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3941, + 3951, + 3946, + 3945, + 3944, + 3948, + 3950, + 3952, + 3953, + 3954, + 3955, + 3956, + 3947, + 3949, + 3942, + 3943, + 3957, + 3958, + 3959, + 3960, + 3961, + 3962, + 3963, + 3964, + 3965, + 3937, + 3938, + 3936, + 3935, + 3966, + 3939, + 3940, + 3934, + 3967, + 3968, + 3969, + 3970, + 3971, + 3972, + 3973, + 3974, + 3975, + 3976, + 3977, + 3978, + 3979, + 3980, + 3981, + 3982, + 3983, + 3984, + 3985, + 3986, + 3987, + 3988, + 3989, + 3990, + 3991, + 3992, + 3993, + 3929, + 3930, + 3931, + 3932, + 3933 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3473, + "name": "OrderDTO", + "package": "@medusajs/types" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "status" + }, + { + "type": "literal", + "value": "version" + }, + { + "type": "literal", + "value": "items" + } + ] + } + ], + "name": "Omit", + "package": "typescript" + } + ] + }, + { + "id": 3862, + "name": "OrderExchangeDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3875, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the order." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.id" + } + }, + { + "id": 3885, + "name": "order_change", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The active order change, if any." + } + ] + }, + "type": { + "type": "reference", + "target": 3595, + "name": "OrderChangeDTO", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.order_change" + } + }, + { + "id": 3880, + "name": "region_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the region the order belongs to." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.region_id" + } + }, + { + "id": 3879, + "name": "customer_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the customer on the order." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.customer_id" + } + }, + { + "id": 3878, + "name": "sales_channel_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the sales channel the order belongs to." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.sales_channel_id" + } + }, + { + "id": 3882, + "name": "email", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The email of the order." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.email" + } + }, + { + "id": 3884, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The currency of the order" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.currency_code" + } + }, + { + "id": 3886, + "name": "shipping_address", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated shipping address." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 3622, + "name": "OrderAddressDTO", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_address" + } + }, + { + "id": 3887, + "name": "billing_address", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated billing address." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 3622, + "name": "OrderAddressDTO", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.billing_address" + } + }, + { + "id": 3888, + "name": "shipping_methods", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated shipping methods" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 3696, + "name": "OrderShippingMethodDTO", + "package": "@medusajs/types" + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_methods" + } + }, + { + "id": 3889, + "name": "transactions", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The tramsactions associated with the order" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 3727, + "name": "OrderTransactionDTO", + "package": "@medusajs/types" + } + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.transactions" + } + }, + { + "id": 3890, + "name": "summary", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The summary of the order totals." + } + ] + }, + "type": { + "type": "reference", + "target": 3739, + "name": "OrderSummaryDTO", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.summary" + } + }, + { + "id": 3881, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Holds custom data in key-value pairs." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.metadata" + } + }, + { + "id": 3883, + "name": "canceled_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order was canceled." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.canceled_at" + } + }, + { + "id": 3876, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order was created." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.created_at" + } + }, + { + "id": 3877, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order was updated." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.updated_at" + } + }, + { + "id": 3891, + "name": "original_item_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original item total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_item_total" + } + }, + { + "id": 3892, + "name": "original_item_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original item subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_item_subtotal" + } + }, + { + "id": 3893, + "name": "original_item_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original item tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_item_tax_total" + } + }, + { + "id": 3894, + "name": "item_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The item total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.item_total" + } + }, + { + "id": 3895, + "name": "item_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The item subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.item_subtotal" + } + }, + { + "id": 3896, + "name": "item_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The item tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.item_tax_total" + } + }, + { + "id": 3897, + "name": "original_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_total" + } + }, + { + "id": 3898, + "name": "original_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_subtotal" + } + }, + { + "id": 3899, + "name": "original_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_tax_total" + } + }, + { + "id": 3871, + "name": "total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.total" + } + }, + { + "id": 3872, + "name": "subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The subtotal of the order. (Excluding taxes)" + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.subtotal" + } + }, + { + "id": 3870, + "name": "tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.tax_total" + } + }, + { + "id": 3869, + "name": "discount_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The discount total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.discount_total" + } + }, + { + "id": 3900, + "name": "discount_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The discount tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.discount_tax_total" + } + }, + { + "id": 3873, + "name": "gift_card_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The gift card total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.gift_card_total" + } + }, + { + "id": 3874, + "name": "gift_card_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The gift card tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.gift_card_tax_total" + } + }, + { + "id": 3868, + "name": "shipping_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The shipping total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_total" + } + }, + { + "id": 3901, + "name": "shipping_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The shipping subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_subtotal" + } + }, + { + "id": 3902, + "name": "shipping_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The shipping tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.shipping_tax_total" + } + }, + { + "id": 3903, + "name": "original_shipping_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original shipping total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_shipping_total" + } + }, + { + "id": 3904, + "name": "original_shipping_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original shipping subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_shipping_subtotal" + } + }, + { + "id": 3905, + "name": "original_shipping_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The original shipping tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.original_shipping_tax_total" + } + }, + { + "id": 3906, + "name": "raw_original_item_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original item total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_item_total" + } + }, + { + "id": 3907, + "name": "raw_original_item_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original item subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_item_subtotal" + } + }, + { + "id": 3908, + "name": "raw_original_item_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original item tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_item_tax_total" + } + }, + { + "id": 3909, + "name": "raw_item_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw item total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_item_total" + } + }, + { + "id": 3910, + "name": "raw_item_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw item subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_item_subtotal" + } + }, + { + "id": 3911, + "name": "raw_item_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw item tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_item_tax_total" + } + }, + { + "id": 3912, + "name": "raw_original_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_total" + } + }, + { + "id": 3913, + "name": "raw_original_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_subtotal" + } + }, + { + "id": 3914, + "name": "raw_original_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_tax_total" + } + }, + { + "id": 3915, + "name": "raw_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_total" + } + }, + { + "id": 3916, + "name": "raw_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw subtotal of the order. (Excluding taxes)" + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_subtotal" + } + }, + { + "id": 3917, + "name": "raw_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_tax_total" + } + }, + { + "id": 3918, + "name": "raw_discount_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw discount total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_discount_total" + } + }, + { + "id": 3919, + "name": "raw_discount_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw discount tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_discount_tax_total" + } + }, + { + "id": 3920, + "name": "raw_gift_card_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw gift card total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_gift_card_total" + } + }, + { + "id": 3921, + "name": "raw_gift_card_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw gift card tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_gift_card_tax_total" + } + }, + { + "id": 3922, + "name": "raw_shipping_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw shipping total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_shipping_total" + } + }, + { + "id": 3923, + "name": "raw_shipping_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw shipping subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_shipping_subtotal" + } + }, + { + "id": 3924, + "name": "raw_shipping_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw shipping tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_shipping_tax_total" + } + }, + { + "id": 3925, + "name": "raw_original_shipping_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original shipping total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_shipping_total" + } + }, + { + "id": 3926, + "name": "raw_original_shipping_subtotal", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original shipping subtotal of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_shipping_subtotal" + } + }, + { + "id": 3927, + "name": "raw_original_shipping_tax_total", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw original shipping tax total of the order." + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.raw_original_shipping_tax_total" + } + }, + { + "id": 3863, + "name": "return_items", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + }, + { + "id": 3864, + "name": "additional_items", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + }, + { + "id": 3865, + "name": "no_notification", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 3866, + "name": "difference_due", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + } + }, + { + "id": 3867, + "name": "return", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 3797, + "name": "ReturnDTO", + "package": "@medusajs/types" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3875, + 3885, + 3880, + 3879, + 3878, + 3882, + 3884, + 3886, + 3887, + 3888, + 3889, + 3890, + 3881, + 3883, + 3876, + 3877, + 3891, + 3892, + 3893, + 3894, + 3895, + 3896, + 3897, + 3898, + 3899, + 3871, + 3872, + 3870, + 3869, + 3900, + 3873, + 3874, + 3868, + 3901, + 3902, + 3903, + 3904, + 3905, + 3906, + 3907, + 3908, + 3909, + 3910, + 3911, + 3912, + 3913, + 3914, + 3915, + 3916, + 3917, + 3918, + 3919, + 3920, + 3921, + 3922, + 3923, + 3924, + 3925, + 3926, + 3927, + 3863, + 3864, + 3865, + 3866, + 3867 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 3473, + "name": "OrderDTO", + "package": "@medusajs/types" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "status" + }, + { + "type": "literal", + "value": "version" + }, + { + "type": "literal", + "value": "items" + } + ] + } + ], + "name": "Omit", + "package": "typescript" + } + ] + }, + { + "id": 3595, + "name": "OrderChangeDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3596, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the order change" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3597, + "name": "version", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The version of the order change" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3598, + "name": "change_type", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The type of the order change" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "return" + }, + { + "type": "literal", + "value": "exchange" + }, + { + "type": "literal", + "value": "claim" + }, + { + "type": "literal", + "value": "edit" + } + ] + } + }, + { + "id": 3599, + "name": "order_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated order" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3600, + "name": "return_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated return order" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3601, + "name": "exchange_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated exchange order" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3602, + "name": "claim_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated claim order" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3603, + "name": "order", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated order" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 3473, + "name": "OrderDTO", + "package": "@medusajs/types" + } + }, + { + "id": 3604, + "name": "return_order", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated return order" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 3797, + "name": "ReturnDTO", + "package": "@medusajs/types" + } + }, + { + "id": 3605, + "name": "exchange", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated exchange order" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 3862, + "name": "OrderExchangeDTO", + "package": "@medusajs/types" + } + }, + { + "id": 3606, + "name": "claim", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated claim order" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 3928, + "name": "OrderClaimDTO", + "package": "@medusajs/types" + } + }, + { + "id": 3607, + "name": "actions", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The actions of the order change" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 3994, + "name": "OrderChangeActionDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 3608, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The status of the order change" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3609, + "name": "requested_by", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The requested by of the order change" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 3610, + "name": "requested_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order change was requested" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 3611, + "name": "confirmed_by", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The confirmed by of the order change" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 3612, + "name": "confirmed_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order change was confirmed" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 3613, + "name": "declined_by", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The declined by of the order change" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 3614, + "name": "declined_reason", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The declined reason of the order change" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 3615, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The metadata of the order change" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + }, + { + "id": 3616, + "name": "declined_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order change was declined" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 3617, + "name": "canceled_by", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The canceled by of the order change" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 3618, + "name": "canceled_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order change was canceled" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 3619, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order change was created" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 3620, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order change was updated" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3596, + 3597, + 3598, + 3599, + 3600, + 3601, + 3602, + 3603, + 3604, + 3605, + 3606, + 3607, + 3608, + 3609, + 3610, + 3611, + 3612, + 3613, + 3614, + 3615, + 3616, + 3617, + 3618, + 3619, + 3620 + ] + } + ] + }, + { + "id": 3994, + "name": "OrderChangeActionDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3995, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the order change action" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3996, + "name": "order_change_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated order change" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 3997, + "name": "order_change", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated order change" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 3595, + "name": "OrderChangeDTO", + "package": "@medusajs/types" + } + ] + } + }, + { + "id": 3998, + "name": "order_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated order" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 3999, + "name": "order", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated order" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 3473, + "name": "OrderDTO", + "package": "@medusajs/types" + } + ] + } + }, + { + "id": 4000, + "name": "reference", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The reference of the order change action" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 4001, + "name": "reference_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the reference" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 4002, + "name": "action", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The action of the order change action" + } + ] + }, + "type": { + "type": "reference", + "target": 4116, + "name": "ChangeActionType", + "package": "@medusajs/types" + } + }, + { + "id": 4003, + "name": "details", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The details of the order change action" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + }, + { + "id": 4004, + "name": "internal_note", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The internal note of the order change action" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 4005, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order change action was created" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 4006, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the order change action was updated" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3995, + 3996, + 3997, + 3998, + 3999, + 4000, + 4001, + 4002, + 4003, + 4004, + 4005, + 4006 + ] + } + ] + }, + { + "id": 3727, + "name": "OrderTransactionDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3728, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the transaction" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3729, + "name": "order_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated order" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3730, + "name": "order", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated order" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 3473, + "name": "OrderDTO", + "package": "@medusajs/types" + } + }, + { + "id": 3731, + "name": "amount", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The amount of the transaction" + } + ] + }, + "type": { + "type": "reference", + "target": 3761, + "name": "BigNumberValue", + "package": "@medusajs/types" + } + }, + { + "id": 3732, + "name": "raw_amount", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The raw amount of the transaction" + } + ] + }, + "type": { + "type": "reference", + "target": 3762, + "name": "BigNumberRawValue", + "package": "@medusajs/types" + } + }, + { + "id": 3733, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The currency code of the transaction" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3734, + "name": "reference", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The reference of the transaction" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3735, + "name": "reference_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the reference" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3736, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the transaction was created" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 3737, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the transaction was updated" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 3738, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The metadata of the transaction" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3728, + 3729, + 3730, + 3731, + 3732, + 3733, + 3734, + 3735, + 3736, + 3737, + 3738 + ] + } + ] + }, + { + "id": 3564, + "name": "MessageAggregatorFormat", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 3565, + "name": "groupBy", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 3566, + "name": "sortBy", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 3567, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 3762, + "id": 3568, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 3763, + "id": 3569, "name": "key", "variant": "param", "kind": 32768, @@ -39321,35 +46374,35 @@ { "title": "Properties", "children": [ - 3759, - 3760 + 3565, + 3566 ] } ] }, { - "id": 3498, + "id": 3303, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 3499, + "id": 3304, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3500, + "id": 3305, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3501, + "id": 3306, "name": "msg", "variant": "param", "kind": 32768, @@ -39359,7 +46412,7 @@ "types": [ { "type": "reference", - "target": 3754, + "target": 3560, "name": "Message", "package": "@medusajs/types" }, @@ -39367,7 +46420,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3754, + "target": 3560, "name": "Message", "package": "@medusajs/types" } @@ -39384,21 +46437,21 @@ ] }, { - "id": 3502, + "id": 3307, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3503, + "id": 3308, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 3504, + "id": 3309, "name": "format", "variant": "param", "kind": 32768, @@ -39407,7 +46460,7 @@ }, "type": { "type": "reference", - "target": 3758, + "target": 3564, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -39428,7 +46481,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 3754, + "target": 3560, "name": "Message", "package": "@medusajs/types" } @@ -39441,14 +46494,14 @@ ] }, { - "id": 3505, + "id": 3310, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3506, + "id": 3311, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -39461,21 +46514,21 @@ ] }, { - "id": 3507, + "id": 3312, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 3508, + "id": 3313, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 3509, + "id": 3314, "name": "T", "variant": "typeParam", "kind": 131072, @@ -39484,7 +46537,7 @@ ], "parameters": [ { - "id": 3510, + "id": 3315, "name": "messageData", "variant": "param", "kind": 32768, @@ -39494,11 +46547,11 @@ "types": [ { "type": "reference", - "target": 3764, + "target": 3570, "typeArguments": [ { "type": "reference", - "target": 3509, + "target": 3314, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -39511,11 +46564,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 3764, + "target": 3570, "typeArguments": [ { "type": "reference", - "target": 3509, + "target": 3314, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -39529,7 +46582,7 @@ } }, { - "id": 3511, + "id": 3316, "name": "options", "variant": "param", "kind": 32768, @@ -39569,16 +46622,16 @@ { "title": "Methods", "children": [ - 3499, - 3502, - 3505, - 3507 + 3304, + 3307, + 3310, + 3312 ] } ] }, { - "id": 3154, + "id": 2959, "name": "Context", "variant": "declaration", "kind": 256, @@ -39593,7 +46646,7 @@ }, "children": [ { - "id": 3155, + "id": 2960, "name": "__type", "variant": "declaration", "kind": 1024, @@ -39606,7 +46659,7 @@ } }, { - "id": 3156, + "id": 2961, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -39639,14 +46692,14 @@ }, "type": { "type": "reference", - "target": 3165, + "target": 2970, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 3157, + "id": 2962, "name": "manager", "variant": "declaration", "kind": 1024, @@ -39679,14 +46732,14 @@ }, "type": { "type": "reference", - "target": 3165, + "target": 2970, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 3158, + "id": 2963, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -39739,7 +46792,7 @@ } }, { - "id": 3159, + "id": 2964, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -39760,7 +46813,7 @@ } }, { - "id": 3160, + "id": 2965, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -39781,7 +46834,7 @@ } }, { - "id": 3161, + "id": 2966, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -39802,7 +46855,7 @@ } }, { - "id": 3162, + "id": 2967, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -39819,13 +46872,13 @@ }, "type": { "type": "reference", - "target": 3498, + "target": 3303, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 3163, + "id": 2968, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -39846,7 +46899,7 @@ } }, { - "id": 3164, + "id": 2969, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -39871,22 +46924,22 @@ { "title": "Properties", "children": [ - 3155, - 3156, - 3157, - 3158, - 3159, - 3160, - 3161, - 3162, - 3163, - 3164 + 2960, + 2961, + 2962, + 2963, + 2964, + 2965, + 2966, + 2967, + 2968, + 2969 ] } ], "typeParameters": [ { - "id": 3165, + "id": 2970, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -39898,249 +46951,1036 @@ } ] }, - { - "id": 3930, - "name": "BigNumberRawValue", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 3931, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 3932, - "name": "value", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 3932 - ] - } - ], - "indexSignatures": [ - { - "id": 3933, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "parameters": [ - { - "id": 3934, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "unknown" - } - } - ] - } - } + { + "id": 3762, + "name": "BigNumberRawValue", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 3763, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 3764, + "name": "value", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 3764 + ] + } + ], + "indexSignatures": [ + { + "id": 3765, + "name": "__index", + "variant": "signature", + "kind": 8192, + "flags": {}, + "parameters": [ + { + "id": 3766, + "name": "key", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "unknown" + } + } + ] + } + } + }, + { + "id": 3761, + "name": "BigNumberValue", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../node_modules/bignumber.js/bignumber.d.ts", + "qualifiedName": "BigNumber" + }, + "name": "BigNumberJS", + "package": "bignumber.js", + "qualifiedName": "BigNumber" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "groups": [ + { + "title": "Interfaces", + "children": [ + 2937, + 3317, + 2989, + 2992, + 3407, + 3424, + 3437, + 3271, + 3267, + 2950, + 2971, + 3211, + 3230, + 3029, + 3040, + 2995, + 3005, + 3164, + 3176, + 3194, + 3204, + 3050, + 3088, + 3069, + 3135, + 3144, + 3447, + 3460, + 3468, + 2978, + 2982, + 3243, + 3257, + 3584, + 3343, + 3348, + 3354, + 3361, + 3589, + 3369, + 3375, + 3382, + 3390, + 3013, + 3017, + 3023, + 3183, + 3188, + 3401, + 3098, + 3107, + 3121, + 3151, + 3155, + 3159, + 2531, + 3767, + 3537, + 2923, + 4126, + 4097, + 4049, + 4117, + 4082, + 4034, + 3622, + 3696, + 4007, + 3638, + 4061, + 3473, + 3797, + 3928, + 3862, + 3595, + 3994, + 3727, + 3564, + 3303, + 2959 + ] + }, + { + "title": "Type Aliases", + "children": [ + 3406, + 3580, + 3582, + 3785, + 4146, + 4136, + 3321, + 4113, + 3795, + 4112, + 3789, + 4109, + 3779, + 3560, + 3570, + 3399, + 3400, + 3048, + 3049, + 3770, + 3554, + 3279, + 3551, + 4116, + 3739, + 3621, + 4115, + 3762, + 3761 + ] + } + ], + "packageName": "@medusajs/types", + "symbolIdMap": { + "2530": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "" + }, + "2531": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService" + }, + "2532": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.retrieveFulfillmentSet" + }, + "2533": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.retrieveFulfillmentSet" + }, + "2534": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "id" + }, + "2535": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2536": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2537": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listFulfillmentSets" + }, + "2538": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listFulfillmentSets" + }, + "2539": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "filters" + }, + "2540": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2541": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2542": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listAndCountFulfillmentSets" + }, + "2543": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listAndCountFulfillmentSets" + }, + "2544": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "filters" + }, + "2545": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2546": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2547": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.createFulfillmentSets" + }, + "2548": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.createFulfillmentSets" + }, + "2549": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2550": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2551": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.createFulfillmentSets" + }, + "2552": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2553": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2554": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.updateFulfillmentSets" + }, + "2555": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.updateFulfillmentSets" + }, + "2556": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2557": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2558": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.updateFulfillmentSets" + }, + "2559": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2560": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2561": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.deleteFulfillmentSets" + }, + "2562": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.deleteFulfillmentSets" + }, + "2563": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "ids" + }, + "2564": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2565": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.deleteFulfillmentSets" + }, + "2566": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "id" + }, + "2567": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2568": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.softDeleteFulfillmentSets" + }, + "2569": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.softDeleteFulfillmentSets" + }, + "2570": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "TReturnableLinkableKeys" + }, + "2571": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "fulfillmentIds" + }, + "2572": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2573": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2574": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.restoreFulfillmentSets" + }, + "2575": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.restoreFulfillmentSets" + }, + "2576": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "TReturnableLinkableKeys" + }, + "2577": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "fulfillmentIds" + }, + "2578": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2579": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2580": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.retrieveServiceZone" + }, + "2581": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.retrieveServiceZone" + }, + "2582": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "id" + }, + "2583": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2584": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2585": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listServiceZones" + }, + "2586": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listServiceZones" + }, + "2587": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "filters" + }, + "2588": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2589": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2590": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listAndCountServiceZones" + }, + "2591": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listAndCountServiceZones" + }, + "2592": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "filters" + }, + "2593": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2594": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2595": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.createServiceZones" + }, + "2596": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.createServiceZones" + }, + "2597": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2598": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2599": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.createServiceZones" + }, + "2600": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2601": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2602": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.updateServiceZones" + }, + "2603": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.updateServiceZones" + }, + "2604": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "id" + }, + "2605": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2606": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2607": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.updateServiceZones" + }, + "2608": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "selector" + }, + "2609": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2610": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2611": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.upsertServiceZones" + }, + "2612": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.upsertServiceZones" + }, + "2613": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2614": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2615": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.upsertServiceZones" + }, + "2616": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2617": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2618": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.deleteServiceZones" + }, + "2619": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.deleteServiceZones" + }, + "2620": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "ids" + }, + "2621": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2622": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.deleteServiceZones" + }, + "2623": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "id" + }, + "2624": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2625": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.softDeleteServiceZones" + }, + "2626": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.softDeleteServiceZones" + }, + "2627": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "TReturnableLinkableKeys" + }, + "2628": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "serviceZoneIds" + }, + "2629": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2630": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2631": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.restoreServiceZones" + }, + "2632": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.restoreServiceZones" + }, + "2633": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "TReturnableLinkableKeys" + }, + "2634": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "serviceZoneIds" + }, + "2635": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2636": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2637": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.retrieveGeoZone" + }, + "2638": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.retrieveGeoZone" + }, + "2639": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "id" + }, + "2640": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2641": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2642": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listGeoZones" + }, + "2643": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listGeoZones" + }, + "2644": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "filters" + }, + "2645": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2646": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2647": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listAndCountGeoZones" + }, + "2648": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listAndCountGeoZones" + }, + "2649": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "filters" + }, + "2650": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2651": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2652": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.createGeoZones" }, - { - "id": 3929, - "name": "BigNumberValue", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../../../node_modules/bignumber.js/bignumber.d.ts", - "qualifiedName": "BigNumber" - }, - "name": "BigNumberJS", - "package": "bignumber.js", - "qualifiedName": "BigNumber" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "string" - } - ] - } - } - ], - "groups": [ - { - "title": "Interfaces", - "children": [ - 3132, - 3512, - 3184, - 3187, - 3602, - 3619, - 3632, - 3466, - 3462, - 3145, - 3166, - 3406, - 3425, - 3224, - 3235, - 3190, - 3200, - 3359, - 3371, - 3389, - 3399, - 3245, - 3283, - 3264, - 3330, - 3339, - 3642, - 3655, - 3663, - 3173, - 3177, - 3438, - 3452, - 3778, - 3538, - 3543, - 3549, - 3556, - 3783, - 3564, - 3570, - 3577, - 3585, - 3208, - 3212, - 3218, - 3378, - 3383, - 3596, - 3293, - 3302, - 3316, - 3346, - 3350, - 3354, - 2726, - 3935, - 3731, - 3118, - 4082, - 4055, - 4007, - 4073, - 4040, - 3992, - 3790, - 3864, - 3965, - 3806, - 4019, - 3668, - 3895, - 3758, - 3498, - 3154 - ] + "2653": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.createGeoZones" + }, + "2654": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2655": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2656": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.createGeoZones" + }, + "2657": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2658": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2659": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.updateGeoZones" + }, + "2660": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.updateGeoZones" + }, + "2661": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2662": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2663": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.updateGeoZones" + }, + "2664": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2665": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2666": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.deleteGeoZones" + }, + "2667": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.deleteGeoZones" + }, + "2668": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "ids" + }, + "2669": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2670": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.deleteGeoZones" + }, + "2671": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "id" + }, + "2672": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2673": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.softDeleteGeoZones" + }, + "2674": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.softDeleteGeoZones" + }, + "2675": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "TReturnableLinkableKeys" + }, + "2676": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "geoZoneIds" + }, + "2677": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2678": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2679": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.restoreGeoZones" + }, + "2680": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.restoreGeoZones" + }, + "2681": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "TReturnableLinkableKeys" + }, + "2682": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "geoZoneIds" + }, + "2683": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2684": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2685": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.retrieveShippingOption" + }, + "2686": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.retrieveShippingOption" + }, + "2687": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "id" + }, + "2688": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2689": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2690": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listShippingOptions" + }, + "2691": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listShippingOptions" + }, + "2692": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "filters" + }, + "2693": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2694": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2695": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listShippingOptionsForContext" + }, + "2696": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listShippingOptionsForContext" + }, + "2697": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "filters" + }, + "2698": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2699": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2700": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listAndCountShippingOptions" + }, + "2701": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.listAndCountShippingOptions" + }, + "2702": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "filters" + }, + "2703": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "config" + }, + "2704": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2705": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.createShippingOptions" + }, + "2706": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.createShippingOptions" + }, + "2707": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2708": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2709": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.createShippingOptions" + }, + "2710": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2711": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2712": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.updateShippingOptions" + }, + "2713": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.updateShippingOptions" + }, + "2714": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "id" + }, + "2715": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2716": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2717": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.updateShippingOptions" + }, + "2718": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "selector" + }, + "2719": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2720": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" + }, + "2721": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.upsertShippingOptions" + }, + "2722": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "IFulfillmentModuleService.upsertShippingOptions" + }, + "2723": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "data" + }, + "2724": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", + "qualifiedName": "sharedContext" }, - { - "title": "Type Aliases", - "children": [ - 3601, - 3774, - 3776, - 3953, - 4102, - 4092, - 3516, - 4071, - 3963, - 4070, - 3957, - 4067, - 3947, - 3754, - 3764, - 3594, - 3595, - 3243, - 3244, - 3938, - 3748, - 3474, - 3745, - 3907, - 3789, - 3930, - 3929 - ] - } - ], - "packageName": "@medusajs/types", - "symbolIdMap": { "2725": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "" + "qualifiedName": "IFulfillmentModuleService.upsertShippingOptions" }, "2726": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService" + "qualifiedName": "data" }, "2727": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveFulfillmentSet" + "qualifiedName": "sharedContext" }, "2728": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveFulfillmentSet" + "qualifiedName": "IFulfillmentModuleService.deleteShippingOptions" }, "2729": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "qualifiedName": "IFulfillmentModuleService.deleteShippingOptions" }, "2730": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "ids" }, "2731": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", @@ -40148,147 +47988,147 @@ }, "2732": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listFulfillmentSets" + "qualifiedName": "IFulfillmentModuleService.deleteShippingOptions" }, "2733": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listFulfillmentSets" + "qualifiedName": "id" }, "2734": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "qualifiedName": "sharedContext" }, "2735": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "IFulfillmentModuleService.softDeleteShippingOptions" }, "2736": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.softDeleteShippingOptions" }, "2737": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountFulfillmentSets" + "qualifiedName": "TReturnableLinkableKeys" }, "2738": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountFulfillmentSets" + "qualifiedName": "shippingOptionIds" }, "2739": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "qualifiedName": "config" }, "2740": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "sharedContext" }, "2741": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.restoreShippingOptions" }, "2742": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createFulfillmentSets" + "qualifiedName": "IFulfillmentModuleService.restoreShippingOptions" }, "2743": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createFulfillmentSets" + "qualifiedName": "TReturnableLinkableKeys" }, "2744": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "shippingOptionIds" }, "2745": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "config" }, "2746": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createFulfillmentSets" + "qualifiedName": "sharedContext" }, "2747": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "IFulfillmentModuleService.retrieveShippingProfile" }, "2748": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.retrieveShippingProfile" }, "2749": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateFulfillmentSets" + "qualifiedName": "id" }, "2750": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateFulfillmentSets" + "qualifiedName": "config" }, "2751": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "sharedContext" }, "2752": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.listShippingProfiles" }, "2753": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateFulfillmentSets" + "qualifiedName": "IFulfillmentModuleService.listShippingProfiles" }, "2754": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "filters" }, "2755": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "config" }, "2756": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteFulfillmentSets" + "qualifiedName": "sharedContext" }, "2757": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteFulfillmentSets" + "qualifiedName": "IFulfillmentModuleService.listAndCountShippingProfiles" }, "2758": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "ids" + "qualifiedName": "IFulfillmentModuleService.listAndCountShippingProfiles" }, "2759": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "filters" }, "2760": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteFulfillmentSets" + "qualifiedName": "config" }, "2761": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "qualifiedName": "sharedContext" }, "2762": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.createShippingProfiles" }, "2763": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.softDeleteFulfillmentSets" + "qualifiedName": "IFulfillmentModuleService.createShippingProfiles" }, "2764": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.softDeleteFulfillmentSets" + "qualifiedName": "data" }, "2765": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "sharedContext" }, "2766": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "fulfillmentIds" + "qualifiedName": "IFulfillmentModuleService.createShippingProfiles" }, "2767": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "data" }, "2768": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", @@ -40296,63 +48136,63 @@ }, "2769": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.restoreFulfillmentSets" + "qualifiedName": "IFulfillmentModuleService.updateShippingProfiles" }, "2770": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.restoreFulfillmentSets" + "qualifiedName": "IFulfillmentModuleService.updateShippingProfiles" }, "2771": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "selector" }, "2772": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "fulfillmentIds" + "qualifiedName": "data" }, "2773": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "sharedContext" }, "2774": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.updateShippingProfiles" }, "2775": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveServiceZone" + "qualifiedName": "id" }, "2776": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveServiceZone" + "qualifiedName": "data" }, "2777": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "qualifiedName": "sharedContext" }, "2778": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "IFulfillmentModuleService.deleteShippingProfiles" }, "2779": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.deleteShippingProfiles" }, "2780": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listServiceZones" + "qualifiedName": "ids" }, "2781": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listServiceZones" + "qualifiedName": "sharedContext" }, "2782": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "qualifiedName": "IFulfillmentModuleService.deleteShippingProfiles" }, "2783": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "id" }, "2784": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", @@ -40360,163 +48200,163 @@ }, "2785": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountServiceZones" + "qualifiedName": "IFulfillmentModuleService.upsertShippingProfiles" }, "2786": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountServiceZones" + "qualifiedName": "IFulfillmentModuleService.upsertShippingProfiles" }, "2787": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "qualifiedName": "data" }, "2788": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "sharedContext" }, "2789": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.upsertShippingProfiles" }, "2790": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createServiceZones" + "qualifiedName": "data" }, "2791": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createServiceZones" + "qualifiedName": "sharedContext" }, "2792": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "IFulfillmentModuleService.softDeleteShippingProfiles" }, "2793": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.softDeleteShippingProfiles" }, "2794": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createServiceZones" + "qualifiedName": "TReturnableLinkableKeys" }, "2795": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "shippingProfileIds" }, "2796": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "config" }, "2797": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateServiceZones" + "qualifiedName": "sharedContext" }, "2798": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateServiceZones" + "qualifiedName": "IFulfillmentModuleService.restoreShippingProfiles" }, "2799": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "qualifiedName": "IFulfillmentModuleService.restoreShippingProfiles" }, "2800": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "TReturnableLinkableKeys" }, "2801": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "shippingProfileIds" }, "2802": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateServiceZones" + "qualifiedName": "config" }, "2803": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "selector" + "qualifiedName": "sharedContext" }, "2804": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "IFulfillmentModuleService.retrieveShippingOptionRule" }, "2805": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.retrieveShippingOptionRule" }, "2806": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.upsertServiceZones" + "qualifiedName": "id" }, "2807": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.upsertServiceZones" + "qualifiedName": "config" }, "2808": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "sharedContext" }, "2809": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.listShippingOptionRules" }, "2810": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.upsertServiceZones" + "qualifiedName": "IFulfillmentModuleService.listShippingOptionRules" }, "2811": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "filters" }, "2812": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "config" }, "2813": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteServiceZones" + "qualifiedName": "sharedContext" }, "2814": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteServiceZones" + "qualifiedName": "IFulfillmentModuleService.listAndCountShippingOptionRules" }, "2815": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "ids" + "qualifiedName": "IFulfillmentModuleService.listAndCountShippingOptionRules" }, "2816": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "filters" }, "2817": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteServiceZones" + "qualifiedName": "config" }, "2818": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "qualifiedName": "sharedContext" }, "2819": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.createShippingOptionRules" }, "2820": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.softDeleteServiceZones" + "qualifiedName": "IFulfillmentModuleService.createShippingOptionRules" }, "2821": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.softDeleteServiceZones" + "qualifiedName": "data" }, "2822": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "sharedContext" }, "2823": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "serviceZoneIds" + "qualifiedName": "IFulfillmentModuleService.createShippingOptionRules" }, "2824": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "data" }, "2825": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", @@ -40524,43 +48364,43 @@ }, "2826": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.restoreServiceZones" + "qualifiedName": "IFulfillmentModuleService.updateShippingOptionRules" }, "2827": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.restoreServiceZones" + "qualifiedName": "IFulfillmentModuleService.updateShippingOptionRules" }, "2828": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "data" }, "2829": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "serviceZoneIds" + "qualifiedName": "sharedContext" }, "2830": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "IFulfillmentModuleService.updateShippingOptionRules" }, "2831": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "data" }, "2832": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveGeoZone" + "qualifiedName": "sharedContext" }, "2833": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveGeoZone" + "qualifiedName": "IFulfillmentModuleService.deleteShippingOptionRules" }, "2834": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "qualifiedName": "IFulfillmentModuleService.deleteShippingOptionRules" }, "2835": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "ids" }, "2836": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", @@ -40568,191 +48408,191 @@ }, "2837": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listGeoZones" + "qualifiedName": "IFulfillmentModuleService.deleteShippingOptionRules" }, "2838": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listGeoZones" + "qualifiedName": "id" }, "2839": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "qualifiedName": "sharedContext" }, "2840": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "IFulfillmentModuleService.retrieveShippingOptionType" }, "2841": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.retrieveShippingOptionType" }, "2842": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountGeoZones" + "qualifiedName": "id" }, "2843": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountGeoZones" + "qualifiedName": "config" }, "2844": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "qualifiedName": "sharedContext" }, "2845": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "IFulfillmentModuleService.listShippingOptionTypes" }, "2846": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.listShippingOptionTypes" }, "2847": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createGeoZones" + "qualifiedName": "filters" }, "2848": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createGeoZones" + "qualifiedName": "config" }, "2849": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "sharedContext" }, "2850": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.listAndCountShippingOptionTypes" }, "2851": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createGeoZones" + "qualifiedName": "IFulfillmentModuleService.listAndCountShippingOptionTypes" }, "2852": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "filters" }, "2853": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "config" }, "2854": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateGeoZones" + "qualifiedName": "sharedContext" }, "2855": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateGeoZones" + "qualifiedName": "IFulfillmentModuleService.deleteShippingOptionTypes" }, "2856": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "IFulfillmentModuleService.deleteShippingOptionTypes" }, "2857": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "ids" }, "2858": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateGeoZones" + "qualifiedName": "sharedContext" }, "2859": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "IFulfillmentModuleService.deleteShippingOptionTypes" }, "2860": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "id" }, "2861": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteGeoZones" + "qualifiedName": "sharedContext" }, "2862": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteGeoZones" + "qualifiedName": "IFulfillmentModuleService.retrieveFulfillment" }, "2863": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "ids" + "qualifiedName": "IFulfillmentModuleService.retrieveFulfillment" }, "2864": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "id" }, "2865": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteGeoZones" + "qualifiedName": "config" }, "2866": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "qualifiedName": "sharedContext" }, "2867": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.listFulfillments" }, "2868": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.softDeleteGeoZones" + "qualifiedName": "IFulfillmentModuleService.listFulfillments" }, "2869": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.softDeleteGeoZones" + "qualifiedName": "filters" }, "2870": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "config" }, "2871": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "geoZoneIds" + "qualifiedName": "sharedContext" }, "2872": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "IFulfillmentModuleService.listAndCountFulfillments" }, "2873": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.listAndCountFulfillments" }, "2874": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.restoreGeoZones" + "qualifiedName": "filters" }, "2875": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.restoreGeoZones" + "qualifiedName": "config" }, "2876": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "sharedContext" }, "2877": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "geoZoneIds" + "qualifiedName": "IFulfillmentModuleService.createFulfillment" }, "2878": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "IFulfillmentModuleService.createFulfillment" }, "2879": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "data" }, "2880": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveShippingOption" + "qualifiedName": "sharedContext" }, "2881": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveShippingOption" + "qualifiedName": "IFulfillmentModuleService.createReturnFulfillment" }, "2882": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "qualifiedName": "IFulfillmentModuleService.createReturnFulfillment" }, "2883": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "data" }, "2884": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", @@ -40760,19 +48600,19 @@ }, "2885": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listShippingOptions" + "qualifiedName": "IFulfillmentModuleService.updateFulfillment" }, "2886": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listShippingOptions" + "qualifiedName": "IFulfillmentModuleService.updateFulfillment" }, "2887": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "qualifiedName": "id" }, "2888": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "data" }, "2889": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", @@ -40780,1295 +48620,1295 @@ }, "2890": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listShippingOptionsForContext" + "qualifiedName": "IFulfillmentModuleService.cancelFulfillment" }, "2891": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listShippingOptionsForContext" + "qualifiedName": "IFulfillmentModuleService.cancelFulfillment" }, "2892": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "qualifiedName": "id" }, "2893": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "sharedContext" }, "2894": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.retrieveFulfillmentOptions" }, "2895": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountShippingOptions" + "qualifiedName": "IFulfillmentModuleService.retrieveFulfillmentOptions" }, "2896": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountShippingOptions" + "qualifiedName": "providerId" }, "2897": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "qualifiedName": "IFulfillmentModuleService.validateFulfillmentOption" }, "2898": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "qualifiedName": "IFulfillmentModuleService.validateFulfillmentOption" }, "2899": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "providerId" }, "2900": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createShippingOptions" + "qualifiedName": "data" }, "2901": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createShippingOptions" + "qualifiedName": "IFulfillmentModuleService.validateShippingOption" }, "2902": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "IFulfillmentModuleService.validateShippingOption" }, "2903": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "shippingOptionId" }, "2904": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createShippingOptions" + "qualifiedName": "context" }, "2905": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "qualifiedName": "IFulfillmentModuleService.listFulfillmentProviders" }, "2906": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IFulfillmentModuleService.listFulfillmentProviders" }, "2907": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateShippingOptions" + "qualifiedName": "filters" }, "2908": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateShippingOptions" + "qualifiedName": "config" }, "2909": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" - }, - "2910": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" - }, - "2911": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" - }, - "2912": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateShippingOptions" - }, - "2913": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "selector" - }, - "2914": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" - }, - "2915": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" - }, - "2916": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.upsertShippingOptions" - }, - "2917": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.upsertShippingOptions" - }, - "2918": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" - }, - "2919": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" - }, - "2920": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.upsertShippingOptions" - }, - "2921": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" - }, - "2922": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", "qualifiedName": "sharedContext" }, "2923": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteShippingOptions" - }, - "2924": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteShippingOptions" - }, - "2925": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "ids" - }, - "2926": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" - }, - "2927": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteShippingOptions" - }, - "2928": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" - }, - "2929": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" - }, - "2930": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.softDeleteShippingOptions" - }, - "2931": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.softDeleteShippingOptions" - }, - "2932": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "TReturnableLinkableKeys" - }, - "2933": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "shippingOptionIds" - }, - "2934": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" - }, - "2935": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" - }, - "2936": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.restoreShippingOptions" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "IModuleService" }, "2937": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.restoreShippingOptions" + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "FindConfig" }, "2938": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "FindConfig.select" }, "2939": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "shippingOptionIds" + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "FindConfig.skip" }, "2940": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "FindConfig.take" }, "2941": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "FindConfig.relations" }, "2942": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveShippingProfile" + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "FindConfig.order" }, "2943": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveShippingProfile" + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "__type" }, "2944": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" - }, - "2945": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "__type.__index" }, "2946": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "FindConfig.withDeleted" }, "2947": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "FindConfig.filters" }, "2948": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "FindConfig.options" }, "2949": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "sourceFileName": "../../../../packages/core/types/src/common/common.ts", + "qualifiedName": "FindConfig.Entity" }, "2950": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FulfillmentSetDTO" }, "2951": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FulfillmentSetDTO.id" }, "2952": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FulfillmentSetDTO.name" }, "2953": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FulfillmentSetDTO.type" }, "2954": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FulfillmentSetDTO.metadata" }, "2955": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FulfillmentSetDTO.service_zones" }, "2956": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FulfillmentSetDTO.created_at" }, "2957": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FulfillmentSetDTO.updated_at" }, "2958": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FulfillmentSetDTO.deleted_at" }, "2959": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "Context" }, "2960": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "__type.__type" }, "2961": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "__type.transactionManager" }, "2962": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "__type.manager" }, "2963": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "__type.isolationLevel" }, "2964": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "__type.enableNestedTransactions" }, "2965": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "__type.eventGroupId" }, "2966": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "selector" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "__type.transactionId" }, "2967": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "__type.messageAggregator" }, "2968": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "__type.requestId" }, "2969": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "__type.idempotencyKey" }, "2970": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "TManager" }, "2971": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FilterableFulfillmentSetProps" }, "2972": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FilterableFulfillmentSetProps.id" }, "2973": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FilterableFulfillmentSetProps.name" }, "2974": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FilterableFulfillmentSetProps.type" }, "2975": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "ids" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", + "qualifiedName": "FilterableFulfillmentSetProps.service_zones" }, "2976": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" }, "2977": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" }, "2978": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", + "qualifiedName": "CreateFulfillmentSetDTO" }, "2979": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", + "qualifiedName": "CreateFulfillmentSetDTO.name" }, "2980": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.upsertShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", + "qualifiedName": "CreateFulfillmentSetDTO.type" }, "2981": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.upsertShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", + "qualifiedName": "CreateFulfillmentSetDTO.service_zones" }, "2982": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", + "qualifiedName": "UpdateFulfillmentSetDTO" }, "2983": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", + "qualifiedName": "UpdateFulfillmentSetDTO.id" }, "2984": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.upsertShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", + "qualifiedName": "UpdateFulfillmentSetDTO.name" }, "2985": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", + "qualifiedName": "UpdateFulfillmentSetDTO.type" }, "2986": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", + "qualifiedName": "UpdateFulfillmentSetDTO.service_zones" }, "2987": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.softDeleteShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", + "qualifiedName": "__type" }, "2988": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.softDeleteShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", + "qualifiedName": "__type.id" }, "2989": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", + "qualifiedName": "SoftDeleteReturn" }, "2990": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "shippingProfileIds" + "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", + "qualifiedName": "__type.returnLinkableKeys" }, "2991": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", + "qualifiedName": "TReturnableLinkableKeys" }, "2992": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", + "qualifiedName": "RestoreReturn" }, "2993": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.restoreShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", + "qualifiedName": "__type.returnLinkableKeys" }, "2994": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.restoreShippingProfiles" + "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", + "qualifiedName": "TReturnableLinkableKeys" }, "2995": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "ServiceZoneDTO" }, "2996": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "shippingProfileIds" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "ServiceZoneDTO.id" }, "2997": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "ServiceZoneDTO.name" }, "2998": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "ServiceZoneDTO.metadata" }, "2999": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveShippingOptionRule" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "ServiceZoneDTO.fulfillment_sets" }, "3000": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveShippingOptionRule" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "ServiceZoneDTO.geo_zones" }, "3001": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "ServiceZoneDTO.shipping_options" }, "3002": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "ServiceZoneDTO.created_at" }, "3003": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "ServiceZoneDTO.updated_at" }, "3004": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listShippingOptionRules" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "ServiceZoneDTO.deleted_at" }, "3005": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listShippingOptionRules" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "FilterableServiceZoneProps" }, "3006": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "FilterableServiceZoneProps.id" }, "3007": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "FilterableServiceZoneProps.name" }, "3008": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "FilterableServiceZoneProps.geo_zones" }, "3009": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountShippingOptionRules" - }, - "3010": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountShippingOptionRules" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", + "qualifiedName": "FilterableServiceZoneProps.fulfillment_set" }, "3011": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" }, "3012": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" }, "3013": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "CreateServiceZoneDTO" }, "3014": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createShippingOptionRules" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "CreateServiceZoneDTO.name" }, "3015": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createShippingOptionRules" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "CreateServiceZoneDTO.fulfillment_set_id" }, "3016": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "CreateServiceZoneDTO.geo_zones" }, "3017": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "UpdateServiceZoneDTO" }, "3018": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createShippingOptionRules" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "UpdateServiceZoneDTO.id" }, "3019": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "UpdateServiceZoneDTO.name" }, "3020": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "UpdateServiceZoneDTO.geo_zones" }, "3021": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateShippingOptionRules" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "__type" }, "3022": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateShippingOptionRules" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "__type.id" }, "3023": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "UpsertServiceZoneDTO" }, "3024": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "UpdateServiceZoneDTO.id" }, "3025": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateShippingOptionRules" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "UpdateServiceZoneDTO.name" }, "3026": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "UpdateServiceZoneDTO.geo_zones" }, "3027": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "__type" }, "3028": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteShippingOptionRules" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", + "qualifiedName": "__type.id" }, "3029": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteShippingOptionRules" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "GeoZoneDTO" }, "3030": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "ids" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "GeoZoneDTO.id" }, "3031": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "GeoZoneDTO.type" }, "3032": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteShippingOptionRules" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "GeoZoneDTO.country_code" }, "3033": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "GeoZoneDTO.province_code" }, "3034": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "GeoZoneDTO.city" }, "3035": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveShippingOptionType" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "GeoZoneDTO.postal_expression" }, "3036": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveShippingOptionType" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "GeoZoneDTO.metadata" }, "3037": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "GeoZoneDTO.created_at" }, "3038": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "GeoZoneDTO.updated_at" }, "3039": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "GeoZoneDTO.deleted_at" }, "3040": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listShippingOptionTypes" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "FilterableGeoZoneProps" }, "3041": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listShippingOptionTypes" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "FilterableGeoZoneProps.id" }, "3042": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "FilterableGeoZoneProps.type" }, "3043": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "FilterableGeoZoneProps.country_code" }, "3044": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "FilterableGeoZoneProps.province_code" }, "3045": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountShippingOptionTypes" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "FilterableGeoZoneProps.city" }, "3046": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountShippingOptionTypes" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" }, "3047": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" }, "3048": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateGeoZoneDTO" }, "3049": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateGeoZoneDTO" }, "3050": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteShippingOptionTypes" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO" }, "3051": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteShippingOptionTypes" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.id" }, "3052": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "ids" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.name" }, "3053": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.price_type" }, "3054": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.deleteShippingOptionTypes" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.service_zone_id" }, "3055": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.shipping_profile_id" }, "3056": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.provider_id" }, "3057": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveFulfillment" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.shipping_option_type_id" }, "3058": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveFulfillment" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.data" }, "3059": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.metadata" }, "3060": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.service_zone" }, "3061": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.shipping_profile" }, "3062": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listFulfillments" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.fulfillment_provider" }, "3063": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listFulfillments" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.type" }, "3064": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.rules" }, "3065": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.fulfillments" }, "3066": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.created_at" }, "3067": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountFulfillments" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.updated_at" }, "3068": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listAndCountFulfillments" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionDTO.deleted_at" }, "3069": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionForContextProps" }, "3070": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionForContextProps.fulfillment_set_id" }, "3071": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionForContextProps.fulfillment_set_type" }, "3072": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createFulfillment" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionForContextProps.address" }, "3073": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createFulfillment" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "__type" }, "3074": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "__type.country_code" }, "3075": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "__type.province_code" }, "3076": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createReturnFulfillment" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "__type.city" }, "3077": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.createReturnFulfillment" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "__type.postal_expression" }, "3078": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionForContextProps.context" }, "3079": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.id" }, "3080": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateFulfillment" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.name" }, "3081": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.updateFulfillment" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.shipping_profile_id" }, "3082": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.price_type" }, "3083": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.service_zone" }, "3084": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.shipping_option_type" }, "3085": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.cancelFulfillment" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.rules" }, "3086": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.cancelFulfillment" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" }, "3087": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "id" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" }, "3088": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps" }, "3089": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveFulfillmentOptions" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.id" }, "3090": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.retrieveFulfillmentOptions" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.name" }, "3091": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "providerId" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.shipping_profile_id" }, "3092": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.validateFulfillmentOption" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.price_type" }, "3093": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.validateFulfillmentOption" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.service_zone" }, "3094": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "providerId" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.shipping_option_type" }, "3095": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "FilterableShippingOptionProps.rules" }, "3096": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.validateShippingOption" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" }, "3097": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.validateShippingOption" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" }, "3098": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "shippingOptionId" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "CreateShippingOptionDTO" }, "3099": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "context" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "CreateShippingOptionDTO.name" }, "3100": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listFulfillmentProviders" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "CreateShippingOptionDTO.price_type" }, "3101": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "IFulfillmentModuleService.listFulfillmentProviders" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "CreateShippingOptionDTO.service_zone_id" }, "3102": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "filters" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "CreateShippingOptionDTO.shipping_profile_id" }, "3103": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "config" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "CreateShippingOptionDTO.provider_id" }, "3104": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/service.ts", - "qualifiedName": "sharedContext" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "CreateShippingOptionDTO.type" + }, + "3105": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "CreateShippingOptionDTO.data" + }, + "3106": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "CreateShippingOptionDTO.rules" + }, + "3107": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO" + }, + "3108": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.id" + }, + "3109": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.name" + }, + "3110": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.price_type" + }, + "3111": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.service_zone_id" + }, + "3112": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.shipping_profile_id" + }, + "3113": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.provider_id" + }, + "3114": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.type" + }, + "3115": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "__type" + }, + "3116": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "__type.id" + }, + "3117": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.data" }, "3118": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "IModuleService" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.rules" + }, + "3119": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "__type" + }, + "3120": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "__type.id" + }, + "3121": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpsertShippingOptionDTO" + }, + "3122": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.id" + }, + "3123": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.name" + }, + "3124": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.price_type" + }, + "3125": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.service_zone_id" + }, + "3126": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.shipping_profile_id" + }, + "3127": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.provider_id" + }, + "3128": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.type" + }, + "3129": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "__type" + }, + "3130": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "__type.id" + }, + "3131": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.data" }, "3132": { - "sourceFileName": "../../../../packages/core/types/src/common/common.ts", - "qualifiedName": "FindConfig" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "UpdateShippingOptionDTO.rules" }, "3133": { - "sourceFileName": "../../../../packages/core/types/src/common/common.ts", - "qualifiedName": "FindConfig.select" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "__type" }, - "3134": { - "sourceFileName": "../../../../packages/core/types/src/common/common.ts", - "qualifiedName": "FindConfig.skip" + "3134": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", + "qualifiedName": "__type.id" }, "3135": { - "sourceFileName": "../../../../packages/core/types/src/common/common.ts", - "qualifiedName": "FindConfig.take" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "ShippingProfileDTO" }, "3136": { - "sourceFileName": "../../../../packages/core/types/src/common/common.ts", - "qualifiedName": "FindConfig.relations" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "ShippingProfileDTO.id" }, "3137": { - "sourceFileName": "../../../../packages/core/types/src/common/common.ts", - "qualifiedName": "FindConfig.order" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "ShippingProfileDTO.name" }, "3138": { - "sourceFileName": "../../../../packages/core/types/src/common/common.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "ShippingProfileDTO.type" }, "3139": { - "sourceFileName": "../../../../packages/core/types/src/common/common.ts", - "qualifiedName": "__type.__index" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "ShippingProfileDTO.metadata" + }, + "3140": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "ShippingProfileDTO.shipping_options" }, "3141": { - "sourceFileName": "../../../../packages/core/types/src/common/common.ts", - "qualifiedName": "FindConfig.withDeleted" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "ShippingProfileDTO.created_at" }, "3142": { - "sourceFileName": "../../../../packages/core/types/src/common/common.ts", - "qualifiedName": "FindConfig.filters" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "ShippingProfileDTO.updated_at" }, "3143": { - "sourceFileName": "../../../../packages/core/types/src/common/common.ts", - "qualifiedName": "FindConfig.options" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "ShippingProfileDTO.deleted_at" }, "3144": { - "sourceFileName": "../../../../packages/core/types/src/common/common.ts", - "qualifiedName": "FindConfig.Entity" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "FilterableShippingProfileProps" }, "3145": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FulfillmentSetDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "FilterableShippingProfileProps.id" }, "3146": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FulfillmentSetDTO.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "FilterableShippingProfileProps.name" }, "3147": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FulfillmentSetDTO.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "FilterableShippingProfileProps.type" }, "3148": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FulfillmentSetDTO.type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", + "qualifiedName": "FilterableShippingProfileProps.shipping_options" }, "3149": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FulfillmentSetDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" }, "3150": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FulfillmentSetDTO.service_zones" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" }, "3151": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FulfillmentSetDTO.created_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", + "qualifiedName": "CreateShippingProfileDTO" }, "3152": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FulfillmentSetDTO.updated_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", + "qualifiedName": "CreateShippingProfileDTO.name" }, "3153": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FulfillmentSetDTO.deleted_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", + "qualifiedName": "CreateShippingProfileDTO.type" }, "3154": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "Context" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", + "qualifiedName": "CreateShippingProfileDTO.metadata" }, "3155": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "__type.__type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", + "qualifiedName": "UpdateShippingProfileDTO" }, "3156": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "__type.transactionManager" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", + "qualifiedName": "UpdateShippingProfileDTO.name" }, "3157": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "__type.manager" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", + "qualifiedName": "UpdateShippingProfileDTO.type" }, "3158": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "__type.isolationLevel" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", + "qualifiedName": "UpdateShippingProfileDTO.metadata" }, "3159": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "__type.enableNestedTransactions" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", + "qualifiedName": "UpsertShippingProfileDTO" }, "3160": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "__type.eventGroupId" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", + "qualifiedName": "UpsertShippingProfileDTO.id" }, "3161": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "__type.transactionId" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", + "qualifiedName": "UpdateShippingProfileDTO.name" }, "3162": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "__type.messageAggregator" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", + "qualifiedName": "UpdateShippingProfileDTO.type" }, "3163": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "__type.requestId" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", + "qualifiedName": "UpdateShippingProfileDTO.metadata" }, "3164": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "__type.idempotencyKey" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "ShippingOptionRuleDTO" }, "3165": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "TManager" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "ShippingOptionRuleDTO.id" }, "3166": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FilterableFulfillmentSetProps" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "ShippingOptionRuleDTO.attribute" }, "3167": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FilterableFulfillmentSetProps.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "ShippingOptionRuleDTO.operator" }, "3168": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FilterableFulfillmentSetProps.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "ShippingOptionRuleDTO.value" }, "3169": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FilterableFulfillmentSetProps.type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "__type" }, "3170": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", - "qualifiedName": "FilterableFulfillmentSetProps.service_zones" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "__type.value" }, "3171": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$and" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "ShippingOptionRuleDTO.shipping_option_id" }, "3172": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$or" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "ShippingOptionRuleDTO.shipping_option" }, "3173": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", - "qualifiedName": "CreateFulfillmentSetDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "ShippingOptionRuleDTO.created_at" }, "3174": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", - "qualifiedName": "CreateFulfillmentSetDTO.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "ShippingOptionRuleDTO.updated_at" }, "3175": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", - "qualifiedName": "CreateFulfillmentSetDTO.type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "ShippingOptionRuleDTO.deleted_at" }, "3176": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", - "qualifiedName": "CreateFulfillmentSetDTO.service_zones" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "FilterableShippingOptionRuleProps" }, "3177": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", - "qualifiedName": "UpdateFulfillmentSetDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "FilterableShippingOptionRuleProps.id" }, "3178": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", - "qualifiedName": "UpdateFulfillmentSetDTO.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "FilterableShippingOptionRuleProps.attribute" }, "3179": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", - "qualifiedName": "UpdateFulfillmentSetDTO.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "FilterableShippingOptionRuleProps.operator" }, "3180": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", - "qualifiedName": "UpdateFulfillmentSetDTO.type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", + "qualifiedName": "FilterableShippingOptionRuleProps.value" }, "3181": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", - "qualifiedName": "UpdateFulfillmentSetDTO.service_zones" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" }, "3182": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" }, "3183": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-set.ts", - "qualifiedName": "__type.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", + "qualifiedName": "CreateShippingOptionRuleDTO" }, "3184": { - "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", - "qualifiedName": "SoftDeleteReturn" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", + "qualifiedName": "CreateShippingOptionRuleDTO.attribute" }, "3185": { - "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", - "qualifiedName": "__type.returnLinkableKeys" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", + "qualifiedName": "CreateShippingOptionRuleDTO.operator" }, "3186": { - "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", + "qualifiedName": "CreateShippingOptionRuleDTO.value" }, "3187": { - "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", - "qualifiedName": "RestoreReturn" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", + "qualifiedName": "CreateShippingOptionRuleDTO.shipping_option_id" }, "3188": { - "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", - "qualifiedName": "__type.returnLinkableKeys" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", + "qualifiedName": "UpdateShippingOptionRuleDTO" }, "3189": { - "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", + "qualifiedName": "UpdateShippingOptionRuleDTO.id" }, "3190": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "ServiceZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", + "qualifiedName": "attribute" }, "3191": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "ServiceZoneDTO.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", + "qualifiedName": "operator" }, "3192": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "ServiceZoneDTO.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", + "qualifiedName": "value" }, "3193": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "ServiceZoneDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", + "qualifiedName": "shipping_option_id" }, "3194": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "ServiceZoneDTO.fulfillment_sets" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "ShippingOptionTypeDTO" }, "3195": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "ServiceZoneDTO.geo_zones" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "ShippingOptionTypeDTO.id" }, "3196": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "ServiceZoneDTO.shipping_options" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "ShippingOptionTypeDTO.label" }, "3197": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "ServiceZoneDTO.created_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "ShippingOptionTypeDTO.description" }, "3198": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "ServiceZoneDTO.updated_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "ShippingOptionTypeDTO.code" }, "3199": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "ServiceZoneDTO.deleted_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "ShippingOptionTypeDTO.shipping_option_id" }, "3200": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "FilterableServiceZoneProps" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "ShippingOptionTypeDTO.shipping_option" }, "3201": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "FilterableServiceZoneProps.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "ShippingOptionTypeDTO.created_at" }, "3202": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "FilterableServiceZoneProps.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "ShippingOptionTypeDTO.updated_at" }, "3203": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "FilterableServiceZoneProps.geo_zones" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "ShippingOptionTypeDTO.deleted_at" }, "3204": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", - "qualifiedName": "FilterableServiceZoneProps.fulfillment_set" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "FilterableShippingOptionTypeProps" + }, + "3205": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "FilterableShippingOptionTypeProps.id" }, "3206": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$and" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "FilterableShippingOptionTypeProps.label" }, "3207": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$or" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "FilterableShippingOptionTypeProps.description" }, "3208": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "CreateServiceZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", + "qualifiedName": "FilterableShippingOptionTypeProps.code" }, "3209": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "CreateServiceZoneDTO.name" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" }, "3210": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "CreateServiceZoneDTO.fulfillment_set_id" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" }, "3211": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "CreateServiceZoneDTO.geo_zones" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO" }, "3212": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "UpdateServiceZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.id" }, "3213": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "UpdateServiceZoneDTO.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.location_id" }, "3214": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "UpdateServiceZoneDTO.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.packed_at" }, "3215": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "UpdateServiceZoneDTO.geo_zones" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.shipped_at" }, "3216": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.delivered_at" }, "3217": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "__type.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.canceled_at" }, "3218": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "UpsertServiceZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.data" }, "3219": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "UpdateServiceZoneDTO.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.provider_id" }, "3220": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "UpdateServiceZoneDTO.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.shipping_option_id" }, "3221": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "UpdateServiceZoneDTO.geo_zones" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.metadata" }, "3222": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.shipping_option" }, "3223": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/service-zone.ts", - "qualifiedName": "__type.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.provider" }, "3224": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "GeoZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.delivery_address" }, "3225": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "GeoZoneDTO.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.items" }, "3226": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "GeoZoneDTO.type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.labels" }, "3227": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "GeoZoneDTO.country_code" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.created_at" }, "3228": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "GeoZoneDTO.province_code" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.updated_at" }, "3229": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "GeoZoneDTO.city" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FulfillmentDTO.deleted_at" }, "3230": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "GeoZoneDTO.postal_expression" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FilterableFulfillmentProps" }, "3231": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "GeoZoneDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FilterableFulfillmentProps.id" }, "3232": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "GeoZoneDTO.created_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FilterableFulfillmentProps.location_id" }, "3233": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "GeoZoneDTO.updated_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FilterableFulfillmentProps.packed_at" }, "3234": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "GeoZoneDTO.deleted_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FilterableFulfillmentProps.shipped_at" }, "3235": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "FilterableGeoZoneProps" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FilterableFulfillmentProps.delivered_at" }, "3236": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "FilterableGeoZoneProps.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FilterableFulfillmentProps.canceled_at" }, "3237": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "FilterableGeoZoneProps.type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FilterableFulfillmentProps.provider_id" }, "3238": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "FilterableGeoZoneProps.country_code" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FilterableFulfillmentProps.shipping_option_id" }, "3239": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "FilterableGeoZoneProps.province_code" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FilterableFulfillmentProps.created_at" }, "3240": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "FilterableGeoZoneProps.city" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", + "qualifiedName": "FilterableFulfillmentProps.updated_at" }, "3241": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", @@ -42079,1392 +49919,1388 @@ "qualifiedName": "BaseFilterable.$or" }, "3243": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO" }, "3244": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateGeoZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO.location_id" }, "3245": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO.packed_at" }, "3246": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO.shipped_at" }, "3247": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO.delivered_at" }, "3248": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.price_type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO.canceled_at" }, "3249": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.service_zone_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO.data" }, "3250": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.shipping_profile_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO.provider_id" }, "3251": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.provider_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO.shipping_option_id" }, "3252": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.shipping_option_type_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO.metadata" }, "3253": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO.delivery_address" }, "3254": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO.items" }, "3255": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.service_zone" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO.labels" }, "3256": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.shipping_profile" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "CreateFulfillmentDTO.order" }, "3257": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.fulfillment_provider" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "UpdateFulfillmentDTO" }, "3258": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "UpdateFulfillmentDTO.location_id" }, "3259": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.rules" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "UpdateFulfillmentDTO.packed_at" }, "3260": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.fulfillments" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "UpdateFulfillmentDTO.shipped_at" }, "3261": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.created_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "UpdateFulfillmentDTO.delivered_at" }, "3262": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.updated_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "UpdateFulfillmentDTO.data" }, "3263": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionDTO.deleted_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "UpdateFulfillmentDTO.metadata" }, "3264": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionForContextProps" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "UpdateFulfillmentDTO.labels" }, "3265": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionForContextProps.fulfillment_set_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "__type" }, "3266": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionForContextProps.fulfillment_set_type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", + "qualifiedName": "__type.id" }, "3267": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionForContextProps.address" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", + "qualifiedName": "FilterableFulfillmentProviderProps" }, "3268": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", + "qualifiedName": "FilterableFulfillmentProviderProps.id" }, "3269": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "__type.country_code" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" }, "3270": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "__type.province_code" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" }, "3271": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "__type.city" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", + "qualifiedName": "FulfillmentProviderDTO" }, "3272": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "__type.postal_expression" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", + "qualifiedName": "FulfillmentProviderDTO.id" }, "3273": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionForContextProps.context" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", + "qualifiedName": "FulfillmentProviderDTO.name" }, "3274": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", + "qualifiedName": "FulfillmentProviderDTO.metadata" }, "3275": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", + "qualifiedName": "FulfillmentProviderDTO.shipping_options" }, "3276": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.shipping_profile_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", + "qualifiedName": "FulfillmentProviderDTO.created_at" }, "3277": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.price_type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", + "qualifiedName": "FulfillmentProviderDTO.updated_at" }, "3278": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.service_zone" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", + "qualifiedName": "FulfillmentProviderDTO.deleted_at" }, "3279": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.shipping_option_type" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "ModuleJoinerConfig" }, "3280": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.rules" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type" }, "3281": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$and" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.schema" }, "3282": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$or" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.relationships" }, "3283": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.extends" }, "3284": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.id" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type" }, "3285": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.name" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.serviceName" }, "3286": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.shipping_profile_id" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.fieldAlias" }, "3287": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.price_type" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type" }, "3288": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.service_zone" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.path" }, "3289": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.shipping_option_type" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.forwardArgumentsOnPath" }, "3290": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "FilterableShippingOptionProps.rules" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.isList" }, "3291": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$and" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.relationship" }, "3292": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$or" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.serviceName" }, "3293": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "CreateShippingOptionDTO" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.primaryKeys" }, "3294": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "CreateShippingOptionDTO.name" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.isLink" }, "3295": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "CreateShippingOptionDTO.price_type" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.linkableKeys" }, "3296": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "CreateShippingOptionDTO.service_zone_id" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.isReadOnlyLink" }, "3297": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "CreateShippingOptionDTO.shipping_profile_id" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.extraDataFields" }, "3298": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "CreateShippingOptionDTO.provider_id" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.databaseConfig" }, "3299": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "CreateShippingOptionDTO.type" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type" }, "3300": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "CreateShippingOptionDTO.data" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.tableName" }, "3301": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "CreateShippingOptionDTO.rules" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.idPrefix" }, "3302": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.extraFields" }, "3303": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.id" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "IMessageAggregator" }, "3304": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.name" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "IMessageAggregator.save" }, "3305": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.price_type" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "IMessageAggregator.save" }, "3306": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.service_zone_id" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "msg" }, "3307": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.shipping_profile_id" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "IMessageAggregator.getMessages" }, "3308": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.provider_id" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "IMessageAggregator.getMessages" }, "3309": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.type" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "format" }, "3310": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "IMessageAggregator.clearMessages" }, "3311": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "__type.id" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "IMessageAggregator.clearMessages" }, "3312": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.data" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "IMessageAggregator.saveRawMessageData" }, "3313": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.rules" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "IMessageAggregator.saveRawMessageData" }, "3314": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "T" }, "3315": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "__type.id" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "messageData" }, "3316": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpsertShippingOptionDTO" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "options" }, "3317": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.id" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable" }, "3318": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.name" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" }, "3319": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.price_type" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" }, "3320": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.service_zone_id" + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.T" }, "3321": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.shipping_profile_id" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "OperatorMap" }, "3322": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.provider_id" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type" }, "3323": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.type" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$and" }, "3324": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$or" }, "3325": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "__type.id" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$eq" }, "3326": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.data" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$ne" }, "3327": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "UpdateShippingOptionDTO.rules" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$in" }, "3328": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$nin" }, "3329": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option.ts", - "qualifiedName": "__type.id" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$not" }, "3330": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "ShippingProfileDTO" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$gt" }, "3331": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "ShippingProfileDTO.id" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$gte" }, "3332": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "ShippingProfileDTO.name" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$lt" }, "3333": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "ShippingProfileDTO.type" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$lte" }, "3334": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "ShippingProfileDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$like" }, "3335": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "ShippingProfileDTO.shipping_options" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$re" }, "3336": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "ShippingProfileDTO.created_at" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$ilike" }, "3337": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "ShippingProfileDTO.updated_at" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$fulltext" }, "3338": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "ShippingProfileDTO.deleted_at" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$overlap" }, "3339": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "FilterableShippingProfileProps" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$contains" }, "3340": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "FilterableShippingProfileProps.id" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$contained" }, "3341": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "FilterableShippingProfileProps.name" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.$exists" }, "3342": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "FilterableShippingProfileProps.type" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "T" }, "3343": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", - "qualifiedName": "FilterableShippingProfileProps.shipping_options" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateCountryGeoZoneDTO" }, "3344": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$and" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateCountryGeoZoneDTO.type" }, "3345": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$or" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateGeoZoneBaseDTO.service_zone_id" }, "3346": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", - "qualifiedName": "CreateShippingProfileDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateGeoZoneBaseDTO.country_code" }, "3347": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", - "qualifiedName": "CreateShippingProfileDTO.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateGeoZoneBaseDTO.metadata" }, "3348": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", - "qualifiedName": "CreateShippingProfileDTO.type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateProvinceGeoZoneDTO" }, "3349": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", - "qualifiedName": "CreateShippingProfileDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateProvinceGeoZoneDTO.type" }, "3350": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", - "qualifiedName": "UpdateShippingProfileDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateProvinceGeoZoneDTO.province_code" }, "3351": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", - "qualifiedName": "UpdateShippingProfileDTO.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateGeoZoneBaseDTO.service_zone_id" }, "3352": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", - "qualifiedName": "UpdateShippingProfileDTO.type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateGeoZoneBaseDTO.country_code" }, "3353": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", - "qualifiedName": "UpdateShippingProfileDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateGeoZoneBaseDTO.metadata" }, "3354": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", - "qualifiedName": "UpsertShippingProfileDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateCityGeoZoneDTO" }, "3355": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", - "qualifiedName": "UpsertShippingProfileDTO.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateCityGeoZoneDTO.type" }, "3356": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", - "qualifiedName": "UpdateShippingProfileDTO.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateCityGeoZoneDTO.province_code" }, "3357": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", - "qualifiedName": "UpdateShippingProfileDTO.type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateCityGeoZoneDTO.city" }, "3358": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-profile.ts", - "qualifiedName": "UpdateShippingProfileDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateGeoZoneBaseDTO.service_zone_id" }, "3359": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "ShippingOptionRuleDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateGeoZoneBaseDTO.country_code" }, "3360": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "ShippingOptionRuleDTO.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateGeoZoneBaseDTO.metadata" }, "3361": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "ShippingOptionRuleDTO.attribute" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateZipGeoZoneDTO" }, "3362": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "ShippingOptionRuleDTO.operator" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateZipGeoZoneDTO.type" }, "3363": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "ShippingOptionRuleDTO.value" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateZipGeoZoneDTO.province_code" }, "3364": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateZipGeoZoneDTO.city" }, "3365": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "__type.value" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateZipGeoZoneDTO.postal_expression" }, "3366": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "ShippingOptionRuleDTO.shipping_option_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateGeoZoneBaseDTO.service_zone_id" }, "3367": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "ShippingOptionRuleDTO.shipping_option" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateGeoZoneBaseDTO.country_code" }, "3368": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "ShippingOptionRuleDTO.created_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "CreateGeoZoneBaseDTO.metadata" }, "3369": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "ShippingOptionRuleDTO.updated_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateCountryGeoZoneDTO" }, "3370": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "ShippingOptionRuleDTO.deleted_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateCountryGeoZoneDTO.type" }, "3371": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "FilterableShippingOptionRuleProps" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateGeoZoneBaseDTO.id" }, "3372": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "FilterableShippingOptionRuleProps.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "service_zone_id" }, "3373": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "FilterableShippingOptionRuleProps.attribute" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "country_code" }, "3374": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "FilterableShippingOptionRuleProps.operator" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "metadata" }, "3375": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", - "qualifiedName": "FilterableShippingOptionRuleProps.value" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateProvinceGeoZoneDTO" }, "3376": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$and" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateProvinceGeoZoneDTO.type" }, "3377": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$or" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateProvinceGeoZoneDTO.province_code" }, "3378": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", - "qualifiedName": "CreateShippingOptionRuleDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateGeoZoneBaseDTO.id" }, "3379": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", - "qualifiedName": "CreateShippingOptionRuleDTO.attribute" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "service_zone_id" }, "3380": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", - "qualifiedName": "CreateShippingOptionRuleDTO.operator" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "country_code" }, "3381": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", - "qualifiedName": "CreateShippingOptionRuleDTO.value" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "metadata" }, "3382": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", - "qualifiedName": "CreateShippingOptionRuleDTO.shipping_option_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateCityGeoZoneDTO" }, "3383": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", - "qualifiedName": "UpdateShippingOptionRuleDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateCityGeoZoneDTO.type" }, "3384": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", - "qualifiedName": "UpdateShippingOptionRuleDTO.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateCityGeoZoneDTO.province_code" }, "3385": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", - "qualifiedName": "attribute" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateCityGeoZoneDTO.city" }, "3386": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", - "qualifiedName": "operator" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateGeoZoneBaseDTO.id" }, "3387": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", - "qualifiedName": "value" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "service_zone_id" }, "3388": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-rule.ts", - "qualifiedName": "shipping_option_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "country_code" }, "3389": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "ShippingOptionTypeDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "metadata" }, "3390": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "ShippingOptionTypeDTO.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateZipGeoZoneDTO" }, "3391": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "ShippingOptionTypeDTO.label" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateZipGeoZoneDTO.type" }, - "3392": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "ShippingOptionTypeDTO.description" + "3392": { + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateZipGeoZoneDTO.province_code" }, "3393": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "ShippingOptionTypeDTO.code" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateZipGeoZoneDTO.city" }, "3394": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "ShippingOptionTypeDTO.shipping_option_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateZipGeoZoneDTO.postal_expression" }, "3395": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "ShippingOptionTypeDTO.shipping_option" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "UpdateGeoZoneBaseDTO.id" }, "3396": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "ShippingOptionTypeDTO.created_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "service_zone_id" }, "3397": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "ShippingOptionTypeDTO.updated_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "country_code" }, "3398": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "ShippingOptionTypeDTO.deleted_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "metadata" }, "3399": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "FilterableShippingOptionTypeProps" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", + "qualifiedName": "GeoZoneType" }, "3400": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "FilterableShippingOptionTypeProps.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", + "qualifiedName": "ShippingOptionPriceType" }, "3401": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "FilterableShippingOptionTypeProps.label" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-type.ts", + "qualifiedName": "CreateShippingOptionTypeDTO" }, "3402": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "FilterableShippingOptionTypeProps.description" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-type.ts", + "qualifiedName": "CreateShippingOptionTypeDTO.label" }, "3403": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", - "qualifiedName": "FilterableShippingOptionTypeProps.code" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-type.ts", + "qualifiedName": "CreateShippingOptionTypeDTO.description" }, "3404": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$and" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-type.ts", + "qualifiedName": "CreateShippingOptionTypeDTO.code" }, "3405": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$or" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-type.ts", + "qualifiedName": "CreateShippingOptionTypeDTO.shipping_option_id" }, "3406": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO" + "sourceFileName": "../../../../packages/core/types/src/common/rule.ts", + "qualifiedName": "RuleOperatorType" }, "3407": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO" }, "3408": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.location_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.id" }, "3409": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.packed_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.fulfillment_id" }, "3410": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.shipped_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.company" }, "3411": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.delivered_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.first_name" }, "3412": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.canceled_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.last_name" }, "3413": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.address_1" }, "3414": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.provider_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.address_2" }, "3415": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.shipping_option_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.city" }, "3416": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.country_code" }, "3417": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.shipping_option" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.province" }, "3418": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.provider" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.postal_code" }, "3419": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.delivery_address" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.phone" }, "3420": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.items" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.metadata" }, "3421": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.labels" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.created_at" }, "3422": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.created_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.updated_at" }, "3423": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.updated_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", + "qualifiedName": "FulfillmentAddressDTO.deleted_at" }, "3424": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FulfillmentDTO.deleted_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", + "qualifiedName": "FulfillmentItemDTO" }, "3425": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FilterableFulfillmentProps" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", + "qualifiedName": "FulfillmentItemDTO.id" }, "3426": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FilterableFulfillmentProps.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", + "qualifiedName": "FulfillmentItemDTO.title" }, "3427": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FilterableFulfillmentProps.location_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", + "qualifiedName": "FulfillmentItemDTO.quantity" }, "3428": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FilterableFulfillmentProps.packed_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", + "qualifiedName": "FulfillmentItemDTO.sku" }, "3429": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FilterableFulfillmentProps.shipped_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", + "qualifiedName": "FulfillmentItemDTO.barcode" }, "3430": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FilterableFulfillmentProps.delivered_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", + "qualifiedName": "FulfillmentItemDTO.line_item_id" }, "3431": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FilterableFulfillmentProps.canceled_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", + "qualifiedName": "FulfillmentItemDTO.inventory_item_id" }, "3432": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FilterableFulfillmentProps.provider_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", + "qualifiedName": "FulfillmentItemDTO.fulfillment_id" }, "3433": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FilterableFulfillmentProps.shipping_option_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", + "qualifiedName": "FulfillmentItemDTO.fulfillment" }, "3434": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FilterableFulfillmentProps.created_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", + "qualifiedName": "FulfillmentItemDTO.created_at" }, "3435": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", - "qualifiedName": "FilterableFulfillmentProps.updated_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", + "qualifiedName": "FulfillmentItemDTO.updated_at" }, "3436": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$and" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", + "qualifiedName": "FulfillmentItemDTO.deleted_at" }, "3437": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$or" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", + "qualifiedName": "FulfillmentLabelDTO" }, "3438": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", + "qualifiedName": "FulfillmentLabelDTO.id" }, "3439": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO.location_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", + "qualifiedName": "FulfillmentLabelDTO.tracking_number" }, "3440": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO.packed_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", + "qualifiedName": "FulfillmentLabelDTO.tracking_url" }, "3441": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO.shipped_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", + "qualifiedName": "FulfillmentLabelDTO.label_url" }, "3442": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO.delivered_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", + "qualifiedName": "FulfillmentLabelDTO.fulfillment_id" }, "3443": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO.canceled_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", + "qualifiedName": "FulfillmentLabelDTO.fulfillment" }, "3444": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO.data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", + "qualifiedName": "FulfillmentLabelDTO.created_at" }, "3445": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO.provider_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", + "qualifiedName": "FulfillmentLabelDTO.updated_at" }, "3446": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO.shipping_option_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", + "qualifiedName": "FulfillmentLabelDTO.deleted_at" }, "3447": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", + "qualifiedName": "CreateFulfillmentAddressDTO" }, "3448": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO.delivery_address" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", + "qualifiedName": "CreateFulfillmentAddressDTO.fulfillment_id" }, "3449": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO.items" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", + "qualifiedName": "CreateFulfillmentAddressDTO.company" }, "3450": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO.labels" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", + "qualifiedName": "CreateFulfillmentAddressDTO.first_name" }, "3451": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "CreateFulfillmentDTO.order" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", + "qualifiedName": "CreateFulfillmentAddressDTO.last_name" }, "3452": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "UpdateFulfillmentDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", + "qualifiedName": "CreateFulfillmentAddressDTO.address_1" }, "3453": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "UpdateFulfillmentDTO.location_id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", + "qualifiedName": "CreateFulfillmentAddressDTO.address_2" }, "3454": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "UpdateFulfillmentDTO.packed_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", + "qualifiedName": "CreateFulfillmentAddressDTO.city" }, "3455": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "UpdateFulfillmentDTO.shipped_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", + "qualifiedName": "CreateFulfillmentAddressDTO.country_code" }, "3456": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "UpdateFulfillmentDTO.delivered_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", + "qualifiedName": "CreateFulfillmentAddressDTO.province" }, "3457": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "UpdateFulfillmentDTO.data" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", + "qualifiedName": "CreateFulfillmentAddressDTO.postal_code" }, "3458": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "UpdateFulfillmentDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", + "qualifiedName": "CreateFulfillmentAddressDTO.phone" }, "3459": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "UpdateFulfillmentDTO.labels" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", + "qualifiedName": "CreateFulfillmentAddressDTO.metadata" }, "3460": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", + "qualifiedName": "CreateFulfillmentItemDTO" }, "3461": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment.ts", - "qualifiedName": "__type.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", + "qualifiedName": "CreateFulfillmentItemDTO.fulfillment_id" }, "3462": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", - "qualifiedName": "FilterableFulfillmentProviderProps" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", + "qualifiedName": "CreateFulfillmentItemDTO.title" }, "3463": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", - "qualifiedName": "FilterableFulfillmentProviderProps.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", + "qualifiedName": "CreateFulfillmentItemDTO.sku" }, "3464": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$and" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", + "qualifiedName": "CreateFulfillmentItemDTO.quantity" }, "3465": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$or" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", + "qualifiedName": "CreateFulfillmentItemDTO.barcode" }, "3466": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", - "qualifiedName": "FulfillmentProviderDTO" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", + "qualifiedName": "CreateFulfillmentItemDTO.line_item_id" }, "3467": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", - "qualifiedName": "FulfillmentProviderDTO.id" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", + "qualifiedName": "CreateFulfillmentItemDTO.inventory_item_id" }, "3468": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", - "qualifiedName": "FulfillmentProviderDTO.name" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-label.ts", + "qualifiedName": "CreateFulfillmentLabelDTO" }, "3469": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", - "qualifiedName": "FulfillmentProviderDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-label.ts", + "qualifiedName": "CreateFulfillmentLabelDTO.tracking_number" }, "3470": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", - "qualifiedName": "FulfillmentProviderDTO.shipping_options" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-label.ts", + "qualifiedName": "CreateFulfillmentLabelDTO.tracking_url" }, "3471": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", - "qualifiedName": "FulfillmentProviderDTO.created_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-label.ts", + "qualifiedName": "CreateFulfillmentLabelDTO.label_url" }, "3472": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", - "qualifiedName": "FulfillmentProviderDTO.updated_at" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-label.ts", + "qualifiedName": "CreateFulfillmentLabelDTO.fulfillment_id" }, "3473": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", - "qualifiedName": "FulfillmentProviderDTO.deleted_at" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO" }, "3474": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "ModuleJoinerConfig" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.id" }, "3475": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.version" }, "3476": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.schema" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.order_change" }, "3477": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.relationships" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.status" }, "3478": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.extends" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.region_id" }, "3479": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.customer_id" }, "3480": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.serviceName" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.sales_channel_id" }, "3481": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.fieldAlias" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.email" }, "3482": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.currency_code" }, "3483": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.path" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.shipping_address" }, "3484": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.forwardArgumentsOnPath" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.billing_address" }, "3485": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.isList" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.items" }, "3486": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.relationship" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.shipping_methods" }, "3487": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.serviceName" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.transactions" }, "3488": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.primaryKeys" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.summary" }, "3489": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.isLink" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.metadata" }, "3490": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.linkableKeys" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.canceled_at" }, "3491": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.isReadOnlyLink" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.created_at" }, "3492": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.extraDataFields" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.updated_at" }, "3493": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.databaseConfig" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.original_item_total" }, "3494": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.original_item_subtotal" }, "3495": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.tableName" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.original_item_tax_total" }, "3496": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.idPrefix" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.item_total" }, "3497": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.extraFields" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.item_subtotal" }, "3498": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "IMessageAggregator" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.item_tax_total" }, "3499": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "IMessageAggregator.save" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.original_total" }, "3500": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "IMessageAggregator.save" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.original_subtotal" }, "3501": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "msg" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.original_tax_total" }, "3502": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "IMessageAggregator.getMessages" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.total" }, "3503": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "IMessageAggregator.getMessages" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.subtotal" }, "3504": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "format" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.tax_total" }, "3505": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "IMessageAggregator.clearMessages" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.discount_total" }, "3506": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "IMessageAggregator.clearMessages" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.discount_tax_total" }, "3507": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "IMessageAggregator.saveRawMessageData" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.gift_card_total" }, "3508": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "IMessageAggregator.saveRawMessageData" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.gift_card_tax_total" }, "3509": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "T" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.shipping_total" }, "3510": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "messageData" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.shipping_subtotal" }, "3511": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "options" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.shipping_tax_total" }, "3512": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.original_shipping_total" }, "3513": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$and" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.original_shipping_subtotal" }, "3514": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.$or" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.original_shipping_tax_total" }, "3515": { - "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", - "qualifiedName": "BaseFilterable.T" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_original_item_total" }, "3516": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "OperatorMap" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_original_item_subtotal" }, "3517": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_original_item_tax_total" }, "3518": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$and" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_item_total" }, "3519": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$or" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_item_subtotal" }, "3520": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$eq" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_item_tax_total" }, "3521": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$ne" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_original_total" }, "3522": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$in" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_original_subtotal" }, "3523": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$nin" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_original_tax_total" }, "3524": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$not" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_total" }, "3525": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$gt" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_subtotal" }, "3526": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$gte" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_tax_total" }, "3527": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$lt" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_discount_total" }, "3528": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$lte" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_discount_tax_total" }, "3529": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$like" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_gift_card_total" }, "3530": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$re" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_gift_card_tax_total" }, "3531": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$ilike" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_shipping_total" }, "3532": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$fulltext" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_shipping_subtotal" }, "3533": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$overlap" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_shipping_tax_total" }, "3534": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$contains" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_original_shipping_total" }, "3535": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$contained" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_original_shipping_subtotal" }, "3536": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.$exists" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.raw_original_shipping_tax_total" }, "3537": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "T" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "JoinerServiceConfig" }, "3538": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateCountryGeoZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "JoinerServiceConfig.serviceName" }, "3539": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateCountryGeoZoneDTO.type" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "JoinerServiceConfig.alias" }, "3540": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.service_zone_id" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "JoinerServiceConfig.fieldAlias" }, "3541": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.country_code" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type" }, "3542": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type.path" }, "3543": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateProvinceGeoZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type.forwardArgumentsOnPath" }, "3544": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateProvinceGeoZoneDTO.type" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "JoinerServiceConfig.primaryKeys" }, "3545": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateProvinceGeoZoneDTO.province_code" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "JoinerServiceConfig.relationships" }, "3546": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.service_zone_id" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "JoinerServiceConfig.extends" }, "3547": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.country_code" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type" }, "3548": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type.serviceName" }, "3549": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateCityGeoZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type.relationship" }, "3550": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateCityGeoZoneDTO.type" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "JoinerServiceConfig.args" }, "3551": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateCityGeoZoneDTO.province_code" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "ModuleJoinerRelationship" }, "3552": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateCityGeoZoneDTO.city" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type" }, "3553": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.service_zone_id" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.deleteCascade" }, "3554": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.country_code" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "LinkModulesExtraFields" }, "3555": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type" }, "3556": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateZipGeoZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.type" }, "3557": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateZipGeoZoneDTO.type" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.defaultValue" }, "3558": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateZipGeoZoneDTO.province_code" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.nullable" }, "3559": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateZipGeoZoneDTO.city" + "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", + "qualifiedName": "__type.options" }, "3560": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateZipGeoZoneDTO.postal_expression" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "Message" }, "3561": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.service_zone_id" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type" }, "3562": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.country_code" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type.options" }, "3563": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "TData" }, "3564": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateCountryGeoZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "MessageAggregatorFormat" }, "3565": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateCountryGeoZoneDTO.type" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "MessageAggregatorFormat.groupBy" }, "3566": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateGeoZoneBaseDTO.id" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "MessageAggregatorFormat.sortBy" }, "3567": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "service_zone_id" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "__type" }, "3568": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "country_code" - }, - "3569": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "metadata" + "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", + "qualifiedName": "__type.__index" }, "3570": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateProvinceGeoZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "RawMessageFormat" }, "3571": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateProvinceGeoZoneDTO.type" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type" }, "3572": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateProvinceGeoZoneDTO.province_code" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type.eventName" }, "3573": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateGeoZoneBaseDTO.id" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type.data" }, "3574": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "service_zone_id" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type.source" }, "3575": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "country_code" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type.object" }, "3576": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "metadata" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type.action" }, "3577": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateCityGeoZoneDTO" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type.context" }, "3578": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateCityGeoZoneDTO.type" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type.options" }, "3579": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateCityGeoZoneDTO.province_code" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "TData" }, "3580": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateCityGeoZoneDTO.city" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "Query" }, "3581": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateGeoZoneBaseDTO.id" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "T" }, "3582": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "service_zone_id" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "ExpandScalar" }, "3583": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "country_code" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "T" }, "3584": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "metadata" + "qualifiedName": "CreateGeoZoneBaseDTO" }, "3585": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateZipGeoZoneDTO" + "qualifiedName": "CreateGeoZoneBaseDTO.type" }, "3586": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateZipGeoZoneDTO.type" + "qualifiedName": "CreateGeoZoneBaseDTO.service_zone_id" }, "3587": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateZipGeoZoneDTO.province_code" + "qualifiedName": "CreateGeoZoneBaseDTO.country_code" }, "3588": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateZipGeoZoneDTO.city" + "qualifiedName": "CreateGeoZoneBaseDTO.metadata" }, "3589": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateZipGeoZoneDTO.postal_expression" + "qualifiedName": "UpdateGeoZoneBaseDTO" }, "3590": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", @@ -43472,2041 +51308,2221 @@ }, "3591": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "service_zone_id" + "qualifiedName": "type" }, "3592": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "country_code" + "qualifiedName": "service_zone_id" }, "3593": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "metadata" + "qualifiedName": "country_code" }, "3594": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", - "qualifiedName": "GeoZoneType" + "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", + "qualifiedName": "metadata" }, "3595": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", - "qualifiedName": "ShippingOptionPriceType" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO" }, "3596": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-type.ts", - "qualifiedName": "CreateShippingOptionTypeDTO" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.id" }, "3597": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-type.ts", - "qualifiedName": "CreateShippingOptionTypeDTO.label" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.version" }, "3598": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-type.ts", - "qualifiedName": "CreateShippingOptionTypeDTO.description" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.change_type" }, "3599": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-type.ts", - "qualifiedName": "CreateShippingOptionTypeDTO.code" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.order_id" }, "3600": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/shipping-option-type.ts", - "qualifiedName": "CreateShippingOptionTypeDTO.shipping_option_id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.return_id" }, "3601": { - "sourceFileName": "../../../../packages/core/types/src/common/rule.ts", - "qualifiedName": "RuleOperatorType" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.exchange_id" }, "3602": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.claim_id" }, "3603": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.order" }, "3604": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.fulfillment_id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.return_order" }, "3605": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.company" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.exchange" }, "3606": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.first_name" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.claim" }, "3607": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.last_name" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.actions" }, "3608": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.address_1" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.status" }, "3609": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.address_2" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.requested_by" }, "3610": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.city" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.requested_at" }, "3611": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.country_code" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.confirmed_by" }, "3612": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.province" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.confirmed_at" }, "3613": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.postal_code" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.declined_by" }, "3614": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.phone" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.declined_reason" }, "3615": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.metadata" }, "3616": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.created_at" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.declined_at" }, "3617": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.updated_at" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.canceled_by" }, "3618": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", - "qualifiedName": "FulfillmentAddressDTO.deleted_at" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.canceled_at" }, "3619": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", - "qualifiedName": "FulfillmentItemDTO" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.created_at" }, "3620": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", - "qualifiedName": "FulfillmentItemDTO.id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.updated_at" }, "3621": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", - "qualifiedName": "FulfillmentItemDTO.title" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderStatus" }, "3622": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", - "qualifiedName": "FulfillmentItemDTO.quantity" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO" }, "3623": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", - "qualifiedName": "FulfillmentItemDTO.sku" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.id" }, "3624": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", - "qualifiedName": "FulfillmentItemDTO.barcode" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.customer_id" }, "3625": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", - "qualifiedName": "FulfillmentItemDTO.line_item_id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.first_name" }, "3626": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", - "qualifiedName": "FulfillmentItemDTO.inventory_item_id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.last_name" }, "3627": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", - "qualifiedName": "FulfillmentItemDTO.fulfillment_id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.phone" }, "3628": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", - "qualifiedName": "FulfillmentItemDTO.fulfillment" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.company" }, "3629": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", - "qualifiedName": "FulfillmentItemDTO.created_at" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.address_1" }, "3630": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", - "qualifiedName": "FulfillmentItemDTO.updated_at" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.address_2" }, "3631": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", - "qualifiedName": "FulfillmentItemDTO.deleted_at" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.city" }, "3632": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", - "qualifiedName": "FulfillmentLabelDTO" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.country_code" }, "3633": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", - "qualifiedName": "FulfillmentLabelDTO.id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.province" }, "3634": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", - "qualifiedName": "FulfillmentLabelDTO.tracking_number" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.postal_code" }, "3635": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", - "qualifiedName": "FulfillmentLabelDTO.tracking_url" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.metadata" }, "3636": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", - "qualifiedName": "FulfillmentLabelDTO.label_url" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.created_at" }, "3637": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", - "qualifiedName": "FulfillmentLabelDTO.fulfillment_id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAddressDTO.updated_at" }, "3638": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", - "qualifiedName": "FulfillmentLabelDTO.fulfillment" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO" }, "3639": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", - "qualifiedName": "FulfillmentLabelDTO.created_at" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.id" }, "3640": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", - "qualifiedName": "FulfillmentLabelDTO.updated_at" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.title" }, "3641": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", - "qualifiedName": "FulfillmentLabelDTO.deleted_at" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.subtitle" }, "3642": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", - "qualifiedName": "CreateFulfillmentAddressDTO" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.thumbnail" }, "3643": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", - "qualifiedName": "CreateFulfillmentAddressDTO.fulfillment_id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.variant_id" }, "3644": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", - "qualifiedName": "CreateFulfillmentAddressDTO.company" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.product_id" }, "3645": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", - "qualifiedName": "CreateFulfillmentAddressDTO.first_name" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.product_title" }, "3646": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", - "qualifiedName": "CreateFulfillmentAddressDTO.last_name" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.product_description" }, "3647": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", - "qualifiedName": "CreateFulfillmentAddressDTO.address_1" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.product_subtitle" }, "3648": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", - "qualifiedName": "CreateFulfillmentAddressDTO.address_2" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.product_type" }, "3649": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", - "qualifiedName": "CreateFulfillmentAddressDTO.city" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.product_collection" }, "3650": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", - "qualifiedName": "CreateFulfillmentAddressDTO.country_code" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.product_handle" }, "3651": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", - "qualifiedName": "CreateFulfillmentAddressDTO.province" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.variant_sku" }, "3652": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", - "qualifiedName": "CreateFulfillmentAddressDTO.postal_code" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.variant_barcode" }, "3653": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", - "qualifiedName": "CreateFulfillmentAddressDTO.phone" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.variant_title" }, "3654": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-address.ts", - "qualifiedName": "CreateFulfillmentAddressDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.variant_option_values" }, "3655": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", - "qualifiedName": "CreateFulfillmentItemDTO" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.requires_shipping" }, "3656": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", - "qualifiedName": "CreateFulfillmentItemDTO.fulfillment_id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.is_discountable" }, "3657": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", - "qualifiedName": "CreateFulfillmentItemDTO.title" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.is_tax_inclusive" }, "3658": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", - "qualifiedName": "CreateFulfillmentItemDTO.sku" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.compare_at_unit_price" }, "3659": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", - "qualifiedName": "CreateFulfillmentItemDTO.quantity" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.raw_compare_at_unit_price" }, "3660": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", - "qualifiedName": "CreateFulfillmentItemDTO.barcode" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.unit_price" }, "3661": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", - "qualifiedName": "CreateFulfillmentItemDTO.line_item_id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.raw_unit_price" }, "3662": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-item.ts", - "qualifiedName": "CreateFulfillmentItemDTO.inventory_item_id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.quantity" }, "3663": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-label.ts", - "qualifiedName": "CreateFulfillmentLabelDTO" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.raw_quantity" }, "3664": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-label.ts", - "qualifiedName": "CreateFulfillmentLabelDTO.tracking_number" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.tax_lines" }, "3665": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-label.ts", - "qualifiedName": "CreateFulfillmentLabelDTO.tracking_url" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.adjustments" }, "3666": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-label.ts", - "qualifiedName": "CreateFulfillmentLabelDTO.label_url" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.detail" }, "3667": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/fulfillment-label.ts", - "qualifiedName": "CreateFulfillmentLabelDTO.fulfillment_id" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderLineItemDTO.created_at" }, "3668": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO" + "qualifiedName": "OrderLineItemDTO.updated_at" }, "3669": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.id" + "qualifiedName": "OrderLineItemDTO.metadata" }, "3670": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.version" + "qualifiedName": "OrderLineItemTotalsDTO.original_total" }, "3671": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.status" + "qualifiedName": "OrderLineItemTotalsDTO.original_subtotal" }, "3672": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.region_id" + "qualifiedName": "OrderLineItemTotalsDTO.original_tax_total" }, "3673": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.customer_id" + "qualifiedName": "OrderLineItemTotalsDTO.item_total" }, "3674": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.sales_channel_id" + "qualifiedName": "OrderLineItemTotalsDTO.item_subtotal" }, "3675": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.email" + "qualifiedName": "OrderLineItemTotalsDTO.item_tax_total" }, "3676": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.currency_code" + "qualifiedName": "OrderLineItemTotalsDTO.total" }, "3677": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.shipping_address" + "qualifiedName": "OrderLineItemTotalsDTO.subtotal" }, "3678": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.billing_address" + "qualifiedName": "OrderLineItemTotalsDTO.tax_total" }, "3679": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.items" + "qualifiedName": "OrderLineItemTotalsDTO.discount_total" }, "3680": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.shipping_methods" + "qualifiedName": "OrderLineItemTotalsDTO.discount_tax_total" }, "3681": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.transactions" + "qualifiedName": "OrderLineItemTotalsDTO.refundable_total" }, "3682": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.summary" + "qualifiedName": "OrderLineItemTotalsDTO.refundable_total_per_unit" }, "3683": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.metadata" + "qualifiedName": "OrderLineItemTotalsDTO.raw_original_total" }, "3684": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.canceled_at" + "qualifiedName": "OrderLineItemTotalsDTO.raw_original_subtotal" }, "3685": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.created_at" + "qualifiedName": "OrderLineItemTotalsDTO.raw_original_tax_total" }, "3686": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.updated_at" + "qualifiedName": "OrderLineItemTotalsDTO.raw_item_total" }, "3687": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.original_item_total" + "qualifiedName": "OrderLineItemTotalsDTO.raw_item_subtotal" }, "3688": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.original_item_subtotal" + "qualifiedName": "OrderLineItemTotalsDTO.raw_item_tax_total" }, "3689": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.original_item_tax_total" + "qualifiedName": "OrderLineItemTotalsDTO.raw_total" }, "3690": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.item_total" + "qualifiedName": "OrderLineItemTotalsDTO.raw_subtotal" }, "3691": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.item_subtotal" + "qualifiedName": "OrderLineItemTotalsDTO.raw_tax_total" }, "3692": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.item_tax_total" + "qualifiedName": "OrderLineItemTotalsDTO.raw_discount_total" }, "3693": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.original_total" + "qualifiedName": "OrderLineItemTotalsDTO.raw_discount_tax_total" }, "3694": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.original_subtotal" + "qualifiedName": "OrderLineItemTotalsDTO.raw_refundable_total" }, "3695": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.original_tax_total" + "qualifiedName": "OrderLineItemTotalsDTO.raw_refundable_total_per_unit" }, "3696": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.total" + "qualifiedName": "OrderShippingMethodDTO" }, "3697": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.subtotal" + "qualifiedName": "OrderShippingMethodDTO.id" }, "3698": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.tax_total" + "qualifiedName": "OrderShippingMethodDTO.order_id" }, "3699": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.discount_total" + "qualifiedName": "OrderShippingMethodDTO.name" }, "3700": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.discount_tax_total" + "qualifiedName": "OrderShippingMethodDTO.description" }, "3701": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.gift_card_total" + "qualifiedName": "OrderShippingMethodDTO.amount" }, "3702": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.gift_card_tax_total" + "qualifiedName": "OrderShippingMethodDTO.raw_amount" }, "3703": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.shipping_total" + "qualifiedName": "OrderShippingMethodDTO.is_tax_inclusive" }, "3704": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.shipping_subtotal" + "qualifiedName": "OrderShippingMethodDTO.shipping_option_id" }, "3705": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.shipping_tax_total" + "qualifiedName": "OrderShippingMethodDTO.data" }, "3706": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.original_shipping_total" + "qualifiedName": "OrderShippingMethodDTO.metadata" }, "3707": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.original_shipping_subtotal" + "qualifiedName": "OrderShippingMethodDTO.tax_lines" }, "3708": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.original_shipping_tax_total" + "qualifiedName": "OrderShippingMethodDTO.adjustments" }, "3709": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_original_item_total" + "qualifiedName": "OrderShippingMethodDTO.created_at" }, "3710": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_original_item_subtotal" + "qualifiedName": "OrderShippingMethodDTO.updated_at" }, "3711": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_original_item_tax_total" + "qualifiedName": "OrderShippingMethodDTO.original_total" }, "3712": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_item_total" + "qualifiedName": "OrderShippingMethodDTO.original_subtotal" }, "3713": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_item_subtotal" + "qualifiedName": "OrderShippingMethodDTO.original_tax_total" }, "3714": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_item_tax_total" + "qualifiedName": "OrderShippingMethodDTO.total" }, "3715": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_original_total" + "qualifiedName": "OrderShippingMethodDTO.subtotal" }, "3716": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_original_subtotal" + "qualifiedName": "OrderShippingMethodDTO.tax_total" }, "3717": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_original_tax_total" + "qualifiedName": "OrderShippingMethodDTO.discount_total" }, "3718": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_total" + "qualifiedName": "OrderShippingMethodDTO.discount_tax_total" }, "3719": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_subtotal" + "qualifiedName": "OrderShippingMethodDTO.raw_original_total" }, "3720": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_tax_total" + "qualifiedName": "OrderShippingMethodDTO.raw_original_subtotal" }, "3721": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_discount_total" + "qualifiedName": "OrderShippingMethodDTO.raw_original_tax_total" }, "3722": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_discount_tax_total" + "qualifiedName": "OrderShippingMethodDTO.raw_total" }, "3723": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_gift_card_total" + "qualifiedName": "OrderShippingMethodDTO.raw_subtotal" }, "3724": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_gift_card_tax_total" + "qualifiedName": "OrderShippingMethodDTO.raw_tax_total" }, "3725": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_shipping_total" + "qualifiedName": "OrderShippingMethodDTO.raw_discount_total" }, "3726": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_shipping_subtotal" + "qualifiedName": "OrderShippingMethodDTO.raw_discount_tax_total" }, "3727": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_shipping_tax_total" + "qualifiedName": "OrderTransactionDTO" }, "3728": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_original_shipping_total" + "qualifiedName": "OrderTransactionDTO.id" }, "3729": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_original_shipping_subtotal" + "qualifiedName": "OrderTransactionDTO.order_id" }, "3730": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderDTO.raw_original_shipping_tax_total" + "qualifiedName": "OrderTransactionDTO.order" }, "3731": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "JoinerServiceConfig" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTransactionDTO.amount" }, "3732": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "JoinerServiceConfig.serviceName" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTransactionDTO.raw_amount" }, "3733": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "JoinerServiceConfig.alias" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTransactionDTO.currency_code" }, "3734": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "JoinerServiceConfig.fieldAlias" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTransactionDTO.reference" }, "3735": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTransactionDTO.reference_id" }, "3736": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type.path" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTransactionDTO.created_at" }, "3737": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type.forwardArgumentsOnPath" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTransactionDTO.updated_at" }, "3738": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "JoinerServiceConfig.primaryKeys" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTransactionDTO.metadata" }, "3739": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "JoinerServiceConfig.relationships" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderSummaryDTO" }, "3740": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "JoinerServiceConfig.extends" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type" }, "3741": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.total" }, "3742": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type.serviceName" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.subtotal" }, "3743": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type.relationship" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.total_tax" }, "3744": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "JoinerServiceConfig.args" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.ordered_total" }, "3745": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "ModuleJoinerRelationship" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.fulfilled_total" }, "3746": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.returned_total" }, "3747": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.deleteCascade" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.return_request_total" }, "3748": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "LinkModulesExtraFields" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.write_off_total" }, "3749": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.projected_total" }, "3750": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.net_total" }, "3751": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.defaultValue" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.net_subtotal" }, "3752": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.nullable" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.net_total_tax" }, "3753": { - "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", - "qualifiedName": "__type.options" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.future_total" }, "3754": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "Message" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.future_subtotal" }, "3755": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.future_total_tax" }, "3756": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type.options" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.future_projected_total" }, "3757": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "TData" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.balance" }, "3758": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "MessageAggregatorFormat" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.future_balance" }, "3759": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "MessageAggregatorFormat.groupBy" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.paid_total" }, "3760": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "MessageAggregatorFormat.sortBy" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "__type.refunded_total" }, "3761": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", + "qualifiedName": "BigNumberValue" }, "3762": { - "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", - "qualifiedName": "__type.__index" + "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", + "qualifiedName": "BigNumberRawValue" + }, + "3763": { + "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", + "qualifiedName": "__type" }, "3764": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "RawMessageFormat" + "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", + "qualifiedName": "__type.value" }, "3765": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type" - }, - "3766": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type.eventName" + "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", + "qualifiedName": "__type.__index" }, "3767": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type.data" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "JoinerServiceConfigAlias" }, "3768": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type.source" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "JoinerServiceConfigAlias.name" }, "3769": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type.object" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "JoinerServiceConfigAlias.args" }, "3770": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type.action" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "JoinerRelationship" }, "3771": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type.context" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type" }, "3772": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type.options" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type.alias" }, "3773": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "TData" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type.foreignKey" }, "3774": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "Query" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type.primaryKey" }, "3775": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "T" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type.serviceName" }, "3776": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "ExpandScalar" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type.inverse" }, "3777": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "T" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type.isList" }, "3778": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO" + "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", + "qualifiedName": "__type.args" }, "3779": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.type" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "MessageBody" }, "3780": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.service_zone_id" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type" }, "3781": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.country_code" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type.eventName" }, "3782": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "CreateGeoZoneBaseDTO.metadata" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type.metadata" }, "3783": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateGeoZoneBaseDTO" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "__type.data" }, "3784": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "UpdateGeoZoneBaseDTO.id" + "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", + "qualifiedName": "TData" }, "3785": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "type" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "Scalar" }, "3786": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "service_zone_id" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type" }, "3787": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "country_code" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.toHexString" }, "3788": { - "sourceFileName": "../../../../packages/core/types/src/fulfillment/mutations/geo-zone.ts", - "qualifiedName": "metadata" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.toHexString" }, "3789": { - "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderStatus" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "FilterQuery" }, "3790": { - "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type" }, "3791": { - "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.id" - }, - "3792": { - "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.customer_id" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "__type.__index" }, "3793": { - "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.first_name" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "T" }, "3794": { - "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.last_name" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "Prev" }, "3795": { - "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.phone" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "FilterValue" }, "3796": { - "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.company" + "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", + "qualifiedName": "T" }, "3797": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.address_1" + "qualifiedName": "ReturnDTO" }, "3798": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.address_2" + "qualifiedName": "ReturnDTO.status" }, "3799": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.city" + "qualifiedName": "ReturnDTO.refund_amount" }, "3800": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.country_code" + "qualifiedName": "ReturnDTO.order_id" }, "3801": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.province" + "qualifiedName": "shipping_total" }, "3802": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.postal_code" + "qualifiedName": "discount_total" }, "3803": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.metadata" + "qualifiedName": "tax_total" }, "3804": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.created_at" + "qualifiedName": "total" }, "3805": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAddressDTO.updated_at" + "qualifiedName": "subtotal" }, "3806": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO" + "qualifiedName": "gift_card_total" }, "3807": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.id" + "qualifiedName": "gift_card_tax_total" }, "3808": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.title" + "qualifiedName": "id" }, "3809": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.subtitle" + "qualifiedName": "created_at" }, "3810": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.thumbnail" + "qualifiedName": "updated_at" }, "3811": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.variant_id" + "qualifiedName": "sales_channel_id" }, "3812": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.product_id" + "qualifiedName": "customer_id" }, "3813": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.product_title" + "qualifiedName": "region_id" }, "3814": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.product_description" + "qualifiedName": "metadata" }, "3815": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.product_subtitle" + "qualifiedName": "email" }, "3816": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.product_type" + "qualifiedName": "canceled_at" }, "3817": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.product_collection" + "qualifiedName": "currency_code" }, "3818": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.product_handle" + "qualifiedName": "order_change" }, "3819": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.variant_sku" + "qualifiedName": "shipping_address" }, "3820": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.variant_barcode" + "qualifiedName": "billing_address" }, "3821": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.variant_title" + "qualifiedName": "items" }, "3822": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.variant_option_values" + "qualifiedName": "shipping_methods" }, "3823": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.requires_shipping" + "qualifiedName": "transactions" }, "3824": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.is_discountable" + "qualifiedName": "summary" }, "3825": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.is_tax_inclusive" + "qualifiedName": "original_item_total" }, "3826": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.compare_at_unit_price" + "qualifiedName": "original_item_subtotal" }, "3827": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.raw_compare_at_unit_price" + "qualifiedName": "original_item_tax_total" }, "3828": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.unit_price" + "qualifiedName": "item_total" }, "3829": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.raw_unit_price" + "qualifiedName": "item_subtotal" }, "3830": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.quantity" + "qualifiedName": "item_tax_total" }, "3831": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.raw_quantity" + "qualifiedName": "original_total" }, "3832": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.tax_lines" + "qualifiedName": "original_subtotal" }, "3833": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.adjustments" + "qualifiedName": "original_tax_total" }, "3834": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.detail" + "qualifiedName": "discount_tax_total" }, "3835": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.created_at" + "qualifiedName": "shipping_subtotal" }, "3836": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.updated_at" + "qualifiedName": "shipping_tax_total" }, "3837": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemDTO.metadata" + "qualifiedName": "original_shipping_total" }, "3838": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.original_total" + "qualifiedName": "original_shipping_subtotal" }, "3839": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.original_subtotal" + "qualifiedName": "original_shipping_tax_total" }, "3840": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.original_tax_total" + "qualifiedName": "raw_original_item_total" }, "3841": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.item_total" + "qualifiedName": "raw_original_item_subtotal" }, "3842": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.item_subtotal" + "qualifiedName": "raw_original_item_tax_total" }, "3843": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.item_tax_total" + "qualifiedName": "raw_item_total" }, "3844": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.total" + "qualifiedName": "raw_item_subtotal" }, "3845": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.subtotal" + "qualifiedName": "raw_item_tax_total" }, "3846": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.tax_total" + "qualifiedName": "raw_original_total" }, "3847": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.discount_total" + "qualifiedName": "raw_original_subtotal" }, "3848": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.discount_tax_total" + "qualifiedName": "raw_original_tax_total" }, "3849": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.refundable_total" + "qualifiedName": "raw_total" }, "3850": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.refundable_total_per_unit" + "qualifiedName": "raw_subtotal" }, "3851": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_original_total" + "qualifiedName": "raw_tax_total" }, "3852": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_original_subtotal" + "qualifiedName": "raw_discount_total" }, "3853": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_original_tax_total" + "qualifiedName": "raw_discount_tax_total" }, "3854": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_item_total" + "qualifiedName": "raw_gift_card_total" }, "3855": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_item_subtotal" + "qualifiedName": "raw_gift_card_tax_total" }, "3856": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_item_tax_total" + "qualifiedName": "raw_shipping_total" }, "3857": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_total" + "qualifiedName": "raw_shipping_subtotal" }, "3858": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_subtotal" + "qualifiedName": "raw_shipping_tax_total" }, "3859": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_tax_total" + "qualifiedName": "raw_original_shipping_total" }, "3860": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_discount_total" + "qualifiedName": "raw_original_shipping_subtotal" }, "3861": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_discount_tax_total" + "qualifiedName": "raw_original_shipping_tax_total" }, "3862": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_refundable_total" + "qualifiedName": "OrderExchangeDTO" }, "3863": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_refundable_total_per_unit" + "qualifiedName": "OrderExchangeDTO.return_items" }, "3864": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO" + "qualifiedName": "OrderExchangeDTO.additional_items" }, "3865": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.id" + "qualifiedName": "OrderExchangeDTO.no_notification" }, "3866": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.order_id" + "qualifiedName": "OrderExchangeDTO.difference_due" }, "3867": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.name" + "qualifiedName": "OrderExchangeDTO.return" }, "3868": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.description" + "qualifiedName": "shipping_total" }, "3869": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.amount" + "qualifiedName": "discount_total" }, "3870": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.raw_amount" + "qualifiedName": "tax_total" }, "3871": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.is_tax_inclusive" + "qualifiedName": "total" }, "3872": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.shipping_option_id" + "qualifiedName": "subtotal" }, "3873": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.data" + "qualifiedName": "gift_card_total" }, "3874": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.metadata" + "qualifiedName": "gift_card_tax_total" }, "3875": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.tax_lines" + "qualifiedName": "id" }, "3876": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.adjustments" + "qualifiedName": "created_at" }, "3877": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.created_at" + "qualifiedName": "updated_at" }, "3878": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.updated_at" + "qualifiedName": "sales_channel_id" }, "3879": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.original_total" + "qualifiedName": "customer_id" }, "3880": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.original_subtotal" + "qualifiedName": "region_id" }, "3881": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.original_tax_total" + "qualifiedName": "metadata" }, "3882": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.total" + "qualifiedName": "email" }, "3883": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.subtotal" + "qualifiedName": "canceled_at" }, "3884": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.tax_total" + "qualifiedName": "currency_code" }, "3885": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.discount_total" + "qualifiedName": "order_change" }, "3886": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.discount_tax_total" + "qualifiedName": "shipping_address" }, "3887": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.raw_original_total" + "qualifiedName": "billing_address" }, "3888": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.raw_original_subtotal" + "qualifiedName": "shipping_methods" }, "3889": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.raw_original_tax_total" + "qualifiedName": "transactions" }, "3890": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.raw_total" + "qualifiedName": "summary" }, "3891": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.raw_subtotal" + "qualifiedName": "original_item_total" }, "3892": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.raw_tax_total" + "qualifiedName": "original_item_subtotal" }, "3893": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.raw_discount_total" + "qualifiedName": "original_item_tax_total" }, "3894": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodDTO.raw_discount_tax_total" + "qualifiedName": "item_total" }, "3895": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTransactionDTO" + "qualifiedName": "item_subtotal" }, "3896": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTransactionDTO.id" + "qualifiedName": "item_tax_total" }, "3897": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTransactionDTO.order_id" + "qualifiedName": "original_total" }, "3898": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTransactionDTO.order" + "qualifiedName": "original_subtotal" }, "3899": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTransactionDTO.amount" + "qualifiedName": "original_tax_total" }, "3900": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTransactionDTO.raw_amount" + "qualifiedName": "discount_tax_total" }, "3901": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTransactionDTO.currency_code" + "qualifiedName": "shipping_subtotal" }, "3902": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTransactionDTO.reference" + "qualifiedName": "shipping_tax_total" }, "3903": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTransactionDTO.reference_id" + "qualifiedName": "original_shipping_total" }, "3904": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTransactionDTO.created_at" + "qualifiedName": "original_shipping_subtotal" }, "3905": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTransactionDTO.updated_at" + "qualifiedName": "original_shipping_tax_total" }, "3906": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTransactionDTO.metadata" + "qualifiedName": "raw_original_item_total" }, "3907": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderSummaryDTO" + "qualifiedName": "raw_original_item_subtotal" }, "3908": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type" + "qualifiedName": "raw_original_item_tax_total" }, "3909": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.total" + "qualifiedName": "raw_item_total" }, "3910": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.subtotal" + "qualifiedName": "raw_item_subtotal" }, "3911": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.total_tax" + "qualifiedName": "raw_item_tax_total" }, "3912": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.ordered_total" + "qualifiedName": "raw_original_total" }, "3913": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.fulfilled_total" + "qualifiedName": "raw_original_subtotal" }, "3914": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.returned_total" + "qualifiedName": "raw_original_tax_total" }, "3915": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.return_request_total" + "qualifiedName": "raw_total" }, "3916": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.write_off_total" + "qualifiedName": "raw_subtotal" }, "3917": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.projected_total" + "qualifiedName": "raw_tax_total" }, "3918": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.net_total" + "qualifiedName": "raw_discount_total" }, "3919": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.net_subtotal" + "qualifiedName": "raw_discount_tax_total" }, "3920": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.net_total_tax" + "qualifiedName": "raw_gift_card_total" }, "3921": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.future_total" + "qualifiedName": "raw_gift_card_tax_total" }, "3922": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.future_subtotal" + "qualifiedName": "raw_shipping_total" }, "3923": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.future_total_tax" + "qualifiedName": "raw_shipping_subtotal" }, "3924": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.future_projected_total" + "qualifiedName": "raw_shipping_tax_total" }, "3925": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.balance" + "qualifiedName": "raw_original_shipping_total" }, "3926": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.future_balance" + "qualifiedName": "raw_original_shipping_subtotal" }, "3927": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.paid_total" + "qualifiedName": "raw_original_shipping_tax_total" }, "3928": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "__type.refunded_total" + "qualifiedName": "OrderClaimDTO" }, "3929": { - "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", - "qualifiedName": "BigNumberValue" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderClaimDTO.claim_items" }, "3930": { - "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", - "qualifiedName": "BigNumberRawValue" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderClaimDTO.additional_items" }, "3931": { - "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderClaimDTO.return" }, "3932": { - "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", - "qualifiedName": "__type.value" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderClaimDTO.no_notification" }, "3933": { - "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", - "qualifiedName": "__type.__index" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderClaimDTO.refund_amount" + }, + "3934": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "shipping_total" }, "3935": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "JoinerServiceConfigAlias" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "discount_total" }, "3936": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "JoinerServiceConfigAlias.name" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "tax_total" }, "3937": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "JoinerServiceConfigAlias.args" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "total" }, "3938": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "JoinerRelationship" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "subtotal" }, "3939": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "gift_card_total" }, "3940": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type.alias" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "gift_card_tax_total" }, "3941": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type.foreignKey" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "id" }, "3942": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type.primaryKey" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "created_at" }, "3943": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type.serviceName" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "updated_at" }, "3944": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type.inverse" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "sales_channel_id" }, "3945": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type.isList" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "customer_id" }, "3946": { - "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", - "qualifiedName": "__type.args" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "region_id" }, "3947": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "MessageBody" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "metadata" }, "3948": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "email" }, "3949": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type.eventName" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "canceled_at" }, "3950": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type.metadata" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "currency_code" }, "3951": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "__type.data" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "order_change" }, "3952": { - "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", - "qualifiedName": "TData" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "shipping_address" }, "3953": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "Scalar" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "billing_address" }, "3954": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "shipping_methods" }, "3955": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.toHexString" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "transactions" }, "3956": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.toHexString" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "summary" }, "3957": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "FilterQuery" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "original_item_total" }, "3958": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "original_item_subtotal" }, "3959": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "__type.__index" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "original_item_tax_total" + }, + "3960": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "item_total" }, "3961": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "T" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "item_subtotal" }, "3962": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "Prev" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "item_tax_total" }, "3963": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "FilterValue" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "original_total" }, "3964": { - "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", - "qualifiedName": "T" + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "original_subtotal" }, "3965": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO" + "qualifiedName": "original_tax_total" }, "3966": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.original_total" + "qualifiedName": "discount_tax_total" }, "3967": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.original_subtotal" + "qualifiedName": "shipping_subtotal" }, "3968": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.original_tax_total" + "qualifiedName": "shipping_tax_total" }, "3969": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.item_total" + "qualifiedName": "original_shipping_total" }, "3970": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.item_subtotal" + "qualifiedName": "original_shipping_subtotal" }, "3971": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.item_tax_total" + "qualifiedName": "original_shipping_tax_total" }, "3972": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.total" + "qualifiedName": "raw_original_item_total" }, "3973": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.subtotal" + "qualifiedName": "raw_original_item_subtotal" }, "3974": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.tax_total" + "qualifiedName": "raw_original_item_tax_total" }, "3975": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.discount_total" + "qualifiedName": "raw_item_total" }, "3976": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.discount_tax_total" + "qualifiedName": "raw_item_subtotal" }, "3977": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.refundable_total" + "qualifiedName": "raw_item_tax_total" }, "3978": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.refundable_total_per_unit" + "qualifiedName": "raw_original_total" }, "3979": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_original_total" + "qualifiedName": "raw_original_subtotal" }, "3980": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_original_subtotal" + "qualifiedName": "raw_original_tax_total" }, "3981": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_original_tax_total" + "qualifiedName": "raw_total" }, "3982": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_item_total" + "qualifiedName": "raw_subtotal" }, "3983": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_item_subtotal" + "qualifiedName": "raw_tax_total" }, "3984": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_item_tax_total" + "qualifiedName": "raw_discount_total" }, "3985": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_total" + "qualifiedName": "raw_discount_tax_total" }, "3986": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_subtotal" + "qualifiedName": "raw_gift_card_total" }, "3987": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_tax_total" + "qualifiedName": "raw_gift_card_tax_total" }, "3988": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_discount_total" + "qualifiedName": "raw_shipping_total" }, "3989": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_discount_tax_total" + "qualifiedName": "raw_shipping_subtotal" }, "3990": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_refundable_total" + "qualifiedName": "raw_shipping_tax_total" }, "3991": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTotalsDTO.raw_refundable_total_per_unit" + "qualifiedName": "raw_original_shipping_total" }, "3992": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTaxLineDTO" + "qualifiedName": "raw_original_shipping_subtotal" }, "3993": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTaxLineDTO.item" + "qualifiedName": "raw_original_shipping_tax_total" }, "3994": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTaxLineDTO.item_id" + "qualifiedName": "OrderChangeActionDTO" }, "3995": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTaxLineDTO.total" + "qualifiedName": "OrderChangeActionDTO.id" }, "3996": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTaxLineDTO.subtotal" + "qualifiedName": "OrderChangeActionDTO.order_change_id" }, "3997": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTaxLineDTO.raw_total" + "qualifiedName": "OrderChangeActionDTO.order_change" }, "3998": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemTaxLineDTO.raw_subtotal" + "qualifiedName": "OrderChangeActionDTO.order_id" }, "3999": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.id" + "qualifiedName": "OrderChangeActionDTO.order" }, "4000": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.description" + "qualifiedName": "OrderChangeActionDTO.reference" }, "4001": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.tax_rate_id" + "qualifiedName": "OrderChangeActionDTO.reference_id" }, "4002": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.code" + "qualifiedName": "OrderChangeActionDTO.action" }, "4003": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.rate" + "qualifiedName": "OrderChangeActionDTO.details" }, "4004": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.provider_id" + "qualifiedName": "OrderChangeActionDTO.internal_note" }, "4005": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.created_at" + "qualifiedName": "OrderChangeActionDTO.created_at" }, "4006": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.updated_at" + "qualifiedName": "OrderChangeActionDTO.updated_at" }, "4007": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemAdjustmentDTO" + "qualifiedName": "OrderLineItemTotalsDTO" }, "4008": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemAdjustmentDTO.item" + "qualifiedName": "OrderLineItemTotalsDTO.original_total" }, "4009": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderLineItemAdjustmentDTO.item_id" + "qualifiedName": "OrderLineItemTotalsDTO.original_subtotal" }, "4010": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.id" + "qualifiedName": "OrderLineItemTotalsDTO.original_tax_total" }, "4011": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.code" + "qualifiedName": "OrderLineItemTotalsDTO.item_total" }, "4012": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.amount" + "qualifiedName": "OrderLineItemTotalsDTO.item_subtotal" }, "4013": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.order_id" + "qualifiedName": "OrderLineItemTotalsDTO.item_tax_total" }, "4014": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.description" + "qualifiedName": "OrderLineItemTotalsDTO.total" }, "4015": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.promotion_id" + "qualifiedName": "OrderLineItemTotalsDTO.subtotal" }, "4016": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.provider_id" + "qualifiedName": "OrderLineItemTotalsDTO.tax_total" }, "4017": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.created_at" + "qualifiedName": "OrderLineItemTotalsDTO.discount_total" }, "4018": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.updated_at" + "qualifiedName": "OrderLineItemTotalsDTO.discount_tax_total" }, "4019": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO" + "qualifiedName": "OrderLineItemTotalsDTO.refundable_total" }, "4020": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.id" + "qualifiedName": "OrderLineItemTotalsDTO.refundable_total_per_unit" }, "4021": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.item_id" + "qualifiedName": "OrderLineItemTotalsDTO.raw_original_total" }, "4022": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.item" + "qualifiedName": "OrderLineItemTotalsDTO.raw_original_subtotal" }, "4023": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.quantity" + "qualifiedName": "OrderLineItemTotalsDTO.raw_original_tax_total" }, "4024": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.raw_quantity" + "qualifiedName": "OrderLineItemTotalsDTO.raw_item_total" }, "4025": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.fulfilled_quantity" + "qualifiedName": "OrderLineItemTotalsDTO.raw_item_subtotal" }, "4026": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.raw_fulfilled_quantity" + "qualifiedName": "OrderLineItemTotalsDTO.raw_item_tax_total" }, "4027": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.shipped_quantity" + "qualifiedName": "OrderLineItemTotalsDTO.raw_total" }, "4028": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.raw_shipped_quantity" + "qualifiedName": "OrderLineItemTotalsDTO.raw_subtotal" }, "4029": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.return_requested_quantity" + "qualifiedName": "OrderLineItemTotalsDTO.raw_tax_total" }, "4030": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.raw_return_requested_quantity" + "qualifiedName": "OrderLineItemTotalsDTO.raw_discount_total" }, "4031": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.return_received_quantity" + "qualifiedName": "OrderLineItemTotalsDTO.raw_discount_tax_total" }, "4032": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.raw_return_received_quantity" + "qualifiedName": "OrderLineItemTotalsDTO.raw_refundable_total" }, "4033": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.return_dismissed_quantity" + "qualifiedName": "OrderLineItemTotalsDTO.raw_refundable_total_per_unit" }, "4034": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.raw_return_dismissed_quantity" + "qualifiedName": "OrderLineItemTaxLineDTO" }, "4035": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.written_off_quantity" + "qualifiedName": "OrderLineItemTaxLineDTO.item" }, "4036": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.raw_written_off_quantity" + "qualifiedName": "OrderLineItemTaxLineDTO.item_id" }, "4037": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.metadata" + "qualifiedName": "OrderLineItemTaxLineDTO.total" }, "4038": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.created_at" + "qualifiedName": "OrderLineItemTaxLineDTO.subtotal" }, "4039": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderItemDTO.updated_at" + "qualifiedName": "OrderLineItemTaxLineDTO.raw_total" }, "4040": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodTaxLineDTO" + "qualifiedName": "OrderLineItemTaxLineDTO.raw_subtotal" }, "4041": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodTaxLineDTO.shipping_method" + "qualifiedName": "OrderTaxLineDTO.id" }, "4042": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodTaxLineDTO.shipping_method_id" + "qualifiedName": "OrderTaxLineDTO.description" }, "4043": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodTaxLineDTO.total" + "qualifiedName": "OrderTaxLineDTO.tax_rate_id" }, "4044": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodTaxLineDTO.subtotal" + "qualifiedName": "OrderTaxLineDTO.code" }, "4045": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodTaxLineDTO.raw_total" + "qualifiedName": "OrderTaxLineDTO.rate" }, "4046": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodTaxLineDTO.raw_subtotal" + "qualifiedName": "OrderTaxLineDTO.provider_id" }, "4047": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.id" + "qualifiedName": "OrderTaxLineDTO.created_at" }, "4048": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.description" + "qualifiedName": "OrderTaxLineDTO.updated_at" }, "4049": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.tax_rate_id" + "qualifiedName": "OrderLineItemAdjustmentDTO" }, "4050": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.code" + "qualifiedName": "OrderLineItemAdjustmentDTO.item" }, "4051": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.rate" + "qualifiedName": "OrderLineItemAdjustmentDTO.item_id" }, "4052": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.provider_id" + "qualifiedName": "OrderAdjustmentLineDTO.id" }, "4053": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.created_at" + "qualifiedName": "OrderAdjustmentLineDTO.code" }, "4054": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderTaxLineDTO.updated_at" + "qualifiedName": "OrderAdjustmentLineDTO.amount" }, "4055": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodAdjustmentDTO" + "qualifiedName": "OrderAdjustmentLineDTO.order_id" }, "4056": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodAdjustmentDTO.shipping_method" + "qualifiedName": "OrderAdjustmentLineDTO.description" }, "4057": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderShippingMethodAdjustmentDTO.shipping_method_id" + "qualifiedName": "OrderAdjustmentLineDTO.promotion_id" }, "4058": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.id" + "qualifiedName": "OrderAdjustmentLineDTO.provider_id" }, "4059": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.code" + "qualifiedName": "OrderAdjustmentLineDTO.created_at" }, "4060": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.amount" + "qualifiedName": "OrderAdjustmentLineDTO.updated_at" }, "4061": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.order_id" + "qualifiedName": "OrderItemDTO" }, "4062": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.description" + "qualifiedName": "OrderItemDTO.id" }, "4063": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.promotion_id" + "qualifiedName": "OrderItemDTO.item_id" }, "4064": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.provider_id" + "qualifiedName": "OrderItemDTO.item" }, "4065": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.created_at" + "qualifiedName": "OrderItemDTO.quantity" }, "4066": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderAdjustmentLineDTO.updated_at" + "qualifiedName": "OrderItemDTO.raw_quantity" }, "4067": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.fulfilled_quantity" + }, + "4068": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.raw_fulfilled_quantity" + }, + "4069": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.shipped_quantity" + }, + "4070": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.raw_shipped_quantity" + }, + "4071": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.return_requested_quantity" + }, + "4072": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.raw_return_requested_quantity" + }, + "4073": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.return_received_quantity" + }, + "4074": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.raw_return_received_quantity" + }, + "4075": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.return_dismissed_quantity" + }, + "4076": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.raw_return_dismissed_quantity" + }, + "4077": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.written_off_quantity" + }, + "4078": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.raw_written_off_quantity" + }, + "4079": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.metadata" + }, + "4080": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.created_at" + }, + "4081": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderItemDTO.updated_at" + }, + "4082": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderShippingMethodTaxLineDTO" + }, + "4083": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderShippingMethodTaxLineDTO.shipping_method" + }, + "4084": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderShippingMethodTaxLineDTO.shipping_method_id" + }, + "4085": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderShippingMethodTaxLineDTO.total" + }, + "4086": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderShippingMethodTaxLineDTO.subtotal" + }, + "4087": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderShippingMethodTaxLineDTO.raw_total" + }, + "4088": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderShippingMethodTaxLineDTO.raw_subtotal" + }, + "4089": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTaxLineDTO.id" + }, + "4090": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTaxLineDTO.description" + }, + "4091": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTaxLineDTO.tax_rate_id" + }, + "4092": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTaxLineDTO.code" + }, + "4093": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTaxLineDTO.rate" + }, + "4094": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTaxLineDTO.provider_id" + }, + "4095": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTaxLineDTO.created_at" + }, + "4096": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderTaxLineDTO.updated_at" + }, + "4097": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderShippingMethodAdjustmentDTO" + }, + "4098": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderShippingMethodAdjustmentDTO.shipping_method" + }, + "4099": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderShippingMethodAdjustmentDTO.shipping_method_id" + }, + "4100": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAdjustmentLineDTO.id" + }, + "4101": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAdjustmentLineDTO.code" + }, + "4102": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAdjustmentLineDTO.amount" + }, + "4103": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAdjustmentLineDTO.order_id" + }, + "4104": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAdjustmentLineDTO.description" + }, + "4105": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAdjustmentLineDTO.promotion_id" + }, + "4106": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAdjustmentLineDTO.provider_id" + }, + "4107": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAdjustmentLineDTO.created_at" + }, + "4108": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderAdjustmentLineDTO.updated_at" + }, + "4109": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "4068": { + "4110": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "4069": { + "4111": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" }, - "4070": { + "4112": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "PrevLimit" }, - "4071": { + "4113": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue2" }, - "4072": { + "4114": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "4073": { + "4115": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "ReturnStatus" + }, + "4116": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "ChangeActionType" + }, + "4117": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO" }, - "4074": { + "4118": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.id" }, - "4075": { + "4119": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.description" }, - "4076": { + "4120": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.tax_rate_id" }, - "4077": { + "4121": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.code" }, - "4078": { + "4122": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.rate" }, - "4079": { + "4123": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.provider_id" }, - "4080": { + "4124": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.created_at" }, - "4081": { + "4125": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.updated_at" }, - "4082": { + "4126": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO" }, - "4083": { + "4127": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.id" }, - "4084": { + "4128": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.code" }, - "4085": { + "4129": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.amount" }, - "4086": { + "4130": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.order_id" }, - "4087": { + "4131": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.description" }, - "4088": { + "4132": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.promotion_id" }, - "4089": { + "4133": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.provider_id" }, - "4090": { + "4134": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.created_at" }, - "4091": { + "4135": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.updated_at" }, - "4092": { + "4136": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Primary" }, - "4093": { + "4137": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "4094": { + "4138": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.[PrimaryKeyType]" }, - "4095": { + "4139": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "4096": { + "4140": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type._id" }, - "4097": { + "4141": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "4098": { + "4142": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.uuid" }, - "4099": { + "4143": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "4100": { + "4144": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.id" }, - "4101": { + "4145": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "4102": { + "4146": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ReadonlyPrimary" }, - "4103": { + "4147": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" } @@ -45516,7 +53532,7 @@ "1": "../../../../packages/core/types/src/fulfillment/service.ts" }, "reflections": { - "1": 2725 + "1": 2530 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/inventory-next-models.json b/www/utils/generated/typedoc-json-output/inventory-next-models.json index 26c432d92ed24..b4c951714f761 100644 --- a/www/utils/generated/typedoc-json-output/inventory-next-models.json +++ b/www/utils/generated/typedoc-json-output/inventory-next-models.json @@ -1,5 +1,5 @@ { - "id": 4885, + "id": 4929, "name": "inventory-next-models", "variant": "project", "kind": 1, @@ -18,28 +18,28 @@ }, "children": [ { - "id": 4907, + "id": 4951, "name": "InventoryItem", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4908, + "id": 4952, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4909, + "id": 4953, "name": "new InventoryItem", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4907, + "target": 4951, "name": "InventoryItem", "package": "@medusajs/inventory-next" } @@ -47,7 +47,7 @@ ] }, { - "id": 4936, + "id": 4980, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -56,14 +56,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 4910, + "id": 4954, "name": "id", "variant": "declaration", "kind": 1024, @@ -74,7 +74,7 @@ } }, { - "id": 4911, + "id": 4955, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -90,7 +90,7 @@ } }, { - "id": 4912, + "id": 4956, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -106,7 +106,7 @@ } }, { - "id": 4913, + "id": 4957, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -132,7 +132,7 @@ "defaultValue": "null" }, { - "id": 4914, + "id": 4958, "name": "sku", "variant": "declaration", "kind": 1024, @@ -153,7 +153,7 @@ "defaultValue": "null" }, { - "id": 4915, + "id": 4959, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -174,7 +174,7 @@ "defaultValue": "null" }, { - "id": 4916, + "id": 4960, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -195,7 +195,7 @@ "defaultValue": "null" }, { - "id": 4917, + "id": 4961, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -216,7 +216,7 @@ "defaultValue": "null" }, { - "id": 4918, + "id": 4962, "name": "material", "variant": "declaration", "kind": 1024, @@ -237,7 +237,7 @@ "defaultValue": "null" }, { - "id": 4919, + "id": 4963, "name": "weight", "variant": "declaration", "kind": 1024, @@ -258,7 +258,7 @@ "defaultValue": "null" }, { - "id": 4920, + "id": 4964, "name": "length", "variant": "declaration", "kind": 1024, @@ -279,7 +279,7 @@ "defaultValue": "null" }, { - "id": 4921, + "id": 4965, "name": "height", "variant": "declaration", "kind": 1024, @@ -300,7 +300,7 @@ "defaultValue": "null" }, { - "id": 4922, + "id": 4966, "name": "width", "variant": "declaration", "kind": 1024, @@ -321,7 +321,7 @@ "defaultValue": "null" }, { - "id": 4923, + "id": 4967, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -333,7 +333,7 @@ "defaultValue": "true" }, { - "id": 4924, + "id": 4968, "name": "description", "variant": "declaration", "kind": 1024, @@ -354,7 +354,7 @@ "defaultValue": "null" }, { - "id": 4925, + "id": 4969, "name": "title", "variant": "declaration", "kind": 1024, @@ -375,7 +375,7 @@ "defaultValue": "null" }, { - "id": 4926, + "id": 4970, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -396,7 +396,7 @@ "defaultValue": "null" }, { - "id": 4927, + "id": 4971, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -432,7 +432,7 @@ "defaultValue": "null" }, { - "id": 4928, + "id": 4972, "name": "location_levels", "variant": "declaration", "kind": 1024, @@ -446,7 +446,7 @@ "typeArguments": [ { "type": "reference", - "target": 4937, + "target": 4981, "name": "InventoryLevel", "package": "@medusajs/inventory-next" }, @@ -461,7 +461,7 @@ "defaultValue": "..." }, { - "id": 4929, + "id": 4973, "name": "reservation_items", "variant": "declaration", "kind": 1024, @@ -475,7 +475,7 @@ "typeArguments": [ { "type": "reference", - "target": 4886, + "target": 4930, "name": "ReservationItem", "package": "@medusajs/inventory-next" }, @@ -490,7 +490,7 @@ "defaultValue": "..." }, { - "id": 4930, + "id": 4974, "name": "reserved_quantity", "variant": "declaration", "kind": 1024, @@ -501,7 +501,7 @@ } }, { - "id": 4931, + "id": 4975, "name": "stocked_quantity", "variant": "declaration", "kind": 1024, @@ -516,62 +516,62 @@ { "title": "Constructors", "children": [ - 4908 + 4952 ] }, { "title": "Properties", "children": [ - 4936, - 4910, - 4911, - 4912, - 4913, - 4914, - 4915, - 4916, - 4917, - 4918, - 4919, - 4920, - 4921, - 4922, - 4923, - 4924, - 4925, - 4926, - 4927, - 4928, - 4929, - 4930, - 4931 + 4980, + 4954, + 4955, + 4956, + 4957, + 4958, + 4959, + 4960, + 4961, + 4962, + 4963, + 4964, + 4965, + 4966, + 4967, + 4968, + 4969, + 4970, + 4971, + 4972, + 4973, + 4974, + 4975 ] } ] }, { - "id": 4937, + "id": 4981, "name": "InventoryLevel", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4938, + "id": 4982, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4939, + "id": 4983, "name": "new InventoryLevel", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4937, + "target": 4981, "name": "InventoryLevel", "package": "@medusajs/inventory-next" } @@ -579,7 +579,7 @@ ] }, { - "id": 4940, + "id": 4984, "name": "id", "variant": "declaration", "kind": 1024, @@ -590,7 +590,7 @@ } }, { - "id": 4941, + "id": 4985, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -606,7 +606,7 @@ } }, { - "id": 4942, + "id": 4986, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -622,7 +622,7 @@ } }, { - "id": 4943, + "id": 4987, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -648,7 +648,7 @@ "defaultValue": "null" }, { - "id": 4944, + "id": 4988, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -659,7 +659,7 @@ } }, { - "id": 4945, + "id": 4989, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -670,7 +670,7 @@ } }, { - "id": 4946, + "id": 4990, "name": "stocked_quantity", "variant": "declaration", "kind": 1024, @@ -682,7 +682,7 @@ "defaultValue": "0" }, { - "id": 4947, + "id": 4991, "name": "reserved_quantity", "variant": "declaration", "kind": 1024, @@ -694,7 +694,7 @@ "defaultValue": "0" }, { - "id": 4948, + "id": 4992, "name": "incoming_quantity", "variant": "declaration", "kind": 1024, @@ -706,7 +706,7 @@ "defaultValue": "0" }, { - "id": 4949, + "id": 4993, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -741,20 +741,20 @@ } }, { - "id": 4950, + "id": 4994, "name": "inventory_item", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4907, + "target": 4951, "name": "InventoryItem", "package": "@medusajs/inventory-next" } }, { - "id": 4951, + "id": 4995, "name": "available_quantity", "variant": "declaration", "kind": 1024, @@ -779,51 +779,51 @@ { "title": "Constructors", "children": [ - 4938 + 4982 ] }, { "title": "Properties", "children": [ - 4940, - 4941, - 4942, - 4943, - 4944, - 4945, - 4946, - 4947, - 4948, - 4949, - 4950, - 4951 + 4984, + 4985, + 4986, + 4987, + 4988, + 4989, + 4990, + 4991, + 4992, + 4993, + 4994, + 4995 ] } ] }, { - "id": 4886, + "id": 4930, "name": "ReservationItem", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 4887, + "id": 4931, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 4888, + "id": 4932, "name": "new ReservationItem", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 4886, + "target": 4930, "name": "ReservationItem", "package": "@medusajs/inventory-next" } @@ -831,7 +831,7 @@ ] }, { - "id": 4889, + "id": 4933, "name": "id", "variant": "declaration", "kind": 1024, @@ -842,7 +842,7 @@ } }, { - "id": 4890, + "id": 4934, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -858,7 +858,7 @@ } }, { - "id": 4891, + "id": 4935, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -874,7 +874,7 @@ } }, { - "id": 4892, + "id": 4936, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -900,7 +900,7 @@ "defaultValue": "null" }, { - "id": 4893, + "id": 4937, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -921,7 +921,7 @@ "defaultValue": "null" }, { - "id": 4894, + "id": 4938, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -933,7 +933,7 @@ "defaultValue": "false" }, { - "id": 4895, + "id": 4939, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -944,7 +944,7 @@ } }, { - "id": 4896, + "id": 4940, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -955,7 +955,7 @@ } }, { - "id": 4897, + "id": 4941, "name": "external_id", "variant": "declaration", "kind": 1024, @@ -976,7 +976,7 @@ "defaultValue": "null" }, { - "id": 4898, + "id": 4942, "name": "description", "variant": "declaration", "kind": 1024, @@ -997,7 +997,7 @@ "defaultValue": "null" }, { - "id": 4899, + "id": 4943, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -1018,7 +1018,7 @@ "defaultValue": "null" }, { - "id": 4900, + "id": 4944, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1054,7 +1054,7 @@ "defaultValue": "null" }, { - "id": 4901, + "id": 4945, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -1065,14 +1065,14 @@ } }, { - "id": 4902, + "id": 4946, "name": "inventory_item", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4907, + "target": 4951, "name": "InventoryItem", "package": "@medusajs/inventory-next" } @@ -1082,26 +1082,26 @@ { "title": "Constructors", "children": [ - 4887 + 4931 ] }, { "title": "Properties", "children": [ - 4889, - 4890, - 4891, - 4892, - 4893, - 4894, - 4895, - 4896, - 4897, - 4898, - 4899, - 4900, - 4901, - 4902 + 4933, + 4934, + 4935, + 4936, + 4937, + 4938, + 4939, + 4940, + 4941, + 4942, + 4943, + 4944, + 4945, + 4946 ] } ] @@ -1111,223 +1111,223 @@ { "title": "Classes", "children": [ - 4907, - 4937, - 4886 + 4951, + 4981, + 4930 ] } ], "packageName": "@medusajs/inventory-next", "symbolIdMap": { - "4885": { + "4929": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/index.ts", "qualifiedName": "" }, - "4886": { + "4930": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem" }, - "4889": { + "4933": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.id" }, - "4890": { + "4934": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.created_at" }, - "4891": { + "4935": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.updated_at" }, - "4892": { + "4936": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.deleted_at" }, - "4893": { + "4937": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.line_item_id" }, - "4894": { + "4938": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.allow_backorder" }, - "4895": { + "4939": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.location_id" }, - "4896": { + "4940": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.quantity" }, - "4897": { + "4941": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.external_id" }, - "4898": { + "4942": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.description" }, - "4899": { + "4943": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.created_by" }, - "4900": { + "4944": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.metadata" }, - "4901": { + "4945": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.inventory_item_id" }, - "4902": { + "4946": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/reservation-item.ts", "qualifiedName": "ReservationItem.inventory_item" }, - "4907": { + "4951": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem" }, - "4910": { + "4954": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.id" }, - "4911": { + "4955": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.created_at" }, - "4912": { + "4956": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.updated_at" }, - "4913": { + "4957": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.deleted_at" }, - "4914": { + "4958": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.sku" }, - "4915": { + "4959": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.origin_country" }, - "4916": { + "4960": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.hs_code" }, - "4917": { + "4961": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.mid_code" }, - "4918": { + "4962": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.material" }, - "4919": { + "4963": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.weight" }, - "4920": { + "4964": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.length" }, - "4921": { + "4965": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.height" }, - "4922": { + "4966": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.width" }, - "4923": { + "4967": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.requires_shipping" }, - "4924": { + "4968": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.description" }, - "4925": { + "4969": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.title" }, - "4926": { + "4970": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.thumbnail" }, - "4927": { + "4971": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.metadata" }, - "4928": { + "4972": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.location_levels" }, - "4929": { + "4973": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.reservation_items" }, - "4930": { + "4974": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.reserved_quantity" }, - "4931": { + "4975": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.stocked_quantity" }, - "4936": { + "4980": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-item.ts", "qualifiedName": "InventoryItem.[OptionalProps]" }, - "4937": { + "4981": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts", "qualifiedName": "InventoryLevel" }, - "4940": { + "4984": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts", "qualifiedName": "InventoryLevel.id" }, - "4941": { + "4985": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts", "qualifiedName": "InventoryLevel.created_at" }, - "4942": { + "4986": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts", "qualifiedName": "InventoryLevel.updated_at" }, - "4943": { + "4987": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts", "qualifiedName": "InventoryLevel.deleted_at" }, - "4944": { + "4988": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts", "qualifiedName": "InventoryLevel.inventory_item_id" }, - "4945": { + "4989": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts", "qualifiedName": "InventoryLevel.location_id" }, - "4946": { + "4990": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts", "qualifiedName": "InventoryLevel.stocked_quantity" }, - "4947": { + "4991": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts", "qualifiedName": "InventoryLevel.reserved_quantity" }, - "4948": { + "4992": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts", "qualifiedName": "InventoryLevel.incoming_quantity" }, - "4949": { + "4993": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts", "qualifiedName": "InventoryLevel.metadata" }, - "4950": { + "4994": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts", "qualifiedName": "InventoryLevel.inventory_item" }, - "4951": { + "4995": { "sourceFileName": "../../../../packages/modules/inventory-next/src/models/inventory-level.ts", "qualifiedName": "InventoryLevel.available_quantity" } @@ -1337,7 +1337,7 @@ "1": "../../../../packages/modules/inventory-next/src/models/index.ts" }, "reflections": { - "1": 4885 + "1": 4929 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/inventory-next.json b/www/utils/generated/typedoc-json-output/inventory-next.json index 642b3cd38bcc0..f2b20bea26c7c 100644 --- a/www/utils/generated/typedoc-json-output/inventory-next.json +++ b/www/utils/generated/typedoc-json-output/inventory-next.json @@ -1,12 +1,12 @@ { - "id": 4330, + "id": 4374, "name": "inventory-next", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 4562, + "id": 4606, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 4563, + "id": 4607, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 4574, + "target": 4618, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 4564, + "id": 4608, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 4565, + "id": 4609, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 4566, + "id": 4610, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 4567, + "id": 4611, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 4568, + "id": 4612, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 4569, + "id": 4613, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 4570, + "id": 4614, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 4571, + "id": 4615, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 4572, + "id": 4616, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 4573, + "id": 4617, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 4563, - 4564, - 4565, - 4566, - 4567, - 4571, - 4572, - 4573 + 4607, + 4608, + 4609, + 4610, + 4611, + 4615, + 4616, + 4617 ] } ], "typeParameters": [ { - "id": 4574, + "id": 4618, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 4737, + "id": 4781, "name": "StringComparisonOperator", "variant": "declaration", "kind": 256, @@ -374,7 +374,7 @@ }, "children": [ { - "id": 4738, + "id": 4782, "name": "lt", "variant": "declaration", "kind": 1024, @@ -395,7 +395,7 @@ } }, { - "id": 4739, + "id": 4783, "name": "gt", "variant": "declaration", "kind": 1024, @@ -416,7 +416,7 @@ } }, { - "id": 4740, + "id": 4784, "name": "gte", "variant": "declaration", "kind": 1024, @@ -437,7 +437,7 @@ } }, { - "id": 4741, + "id": 4785, "name": "lte", "variant": "declaration", "kind": 1024, @@ -458,7 +458,7 @@ } }, { - "id": 4742, + "id": 4786, "name": "contains", "variant": "declaration", "kind": 1024, @@ -479,7 +479,7 @@ } }, { - "id": 4743, + "id": 4787, "name": "starts_with", "variant": "declaration", "kind": 1024, @@ -500,7 +500,7 @@ } }, { - "id": 4744, + "id": 4788, "name": "ends_with", "variant": "declaration", "kind": 1024, @@ -525,19 +525,19 @@ { "title": "Properties", "children": [ - 4738, - 4739, - 4740, - 4741, - 4742, - 4743, - 4744 + 4782, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788 ] } ] }, { - "id": 4759, + "id": 4803, "name": "NumericalComparisonOperator", "variant": "declaration", "kind": 256, @@ -552,7 +552,7 @@ }, "children": [ { - "id": 4760, + "id": 4804, "name": "lt", "variant": "declaration", "kind": 1024, @@ -573,7 +573,7 @@ } }, { - "id": 4761, + "id": 4805, "name": "gt", "variant": "declaration", "kind": 1024, @@ -594,7 +594,7 @@ } }, { - "id": 4762, + "id": 4806, "name": "gte", "variant": "declaration", "kind": 1024, @@ -615,7 +615,7 @@ } }, { - "id": 4763, + "id": 4807, "name": "lte", "variant": "declaration", "kind": 1024, @@ -640,16 +640,16 @@ { "title": "Properties", "children": [ - 4760, - 4761, - 4762, - 4763 + 4804, + 4805, + 4806, + 4807 ] } ] }, { - "id": 4764, + "id": 4808, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -664,7 +664,7 @@ }, "children": [ { - "id": 4765, + "id": 4809, "name": "$and", "variant": "declaration", "kind": 1024, @@ -686,11 +686,11 @@ "types": [ { "type": "reference", - "target": 4764, + "target": 4808, "typeArguments": [ { "type": "reference", - "target": 4767, + "target": 4811, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -702,7 +702,7 @@ }, { "type": "reference", - "target": 4767, + "target": 4811, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -713,7 +713,7 @@ } }, { - "id": 4766, + "id": 4810, "name": "$or", "variant": "declaration", "kind": 1024, @@ -735,11 +735,11 @@ "types": [ { "type": "reference", - "target": 4764, + "target": 4808, "typeArguments": [ { "type": "reference", - "target": 4767, + "target": 4811, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -751,7 +751,7 @@ }, { "type": "reference", - "target": 4767, + "target": 4811, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -766,14 +766,14 @@ { "title": "Properties", "children": [ - 4765, - 4766 + 4809, + 4810 ] } ], "typeParameters": [ { - "id": 4767, + "id": 4811, "name": "T", "variant": "typeParam", "kind": 131072, @@ -783,13 +783,13 @@ "extendedBy": [ { "type": "reference", - "target": 4628, + "target": 4672, "name": "FilterableInventoryLevelProps" } ] }, { - "id": 4707, + "id": 4751, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -804,7 +804,7 @@ }, "children": [ { - "id": 4708, + "id": 4752, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -823,7 +823,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4709, + "target": 4753, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -835,13 +835,13 @@ { "title": "Properties", "children": [ - 4708 + 4752 ] } ], "typeParameters": [ { - "id": 4709, + "id": 4753, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -854,7 +854,7 @@ ] }, { - "id": 4710, + "id": 4754, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -869,7 +869,7 @@ }, "children": [ { - "id": 4711, + "id": 4755, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -888,7 +888,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4712, + "target": 4756, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -900,13 +900,13 @@ { "title": "Properties", "children": [ - 4711 + 4755 ] } ], "typeParameters": [ { - "id": 4712, + "id": 4756, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -919,14 +919,14 @@ ] }, { - "id": 4833, + "id": 4877, "name": "Query", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4834, + "id": 4878, "name": "T", "variant": "typeParam", "kind": 131072, @@ -937,7 +937,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4834, + "target": 4878, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -950,14 +950,14 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4834, + "target": 4878, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 4855, + "target": 4899, "name": "Scalar", "package": "@medusajs/types" }, @@ -967,11 +967,11 @@ }, "falseType": { "type": "reference", - "target": 4859, + "target": 4903, "typeArguments": [ { "type": "reference", - "target": 4834, + "target": 4878, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -983,11 +983,11 @@ }, "falseType": { "type": "reference", - "target": 4865, + "target": 4909, "typeArguments": [ { "type": "reference", - "target": 4834, + "target": 4878, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -999,14 +999,14 @@ } }, { - "id": 4835, + "id": 4879, "name": "ExpandScalar", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4836, + "id": 4880, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1024,7 +1024,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4836, + "target": 4880, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1055,7 +1055,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4836, + "target": 4880, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1089,7 +1089,7 @@ }, "falseType": { "type": "reference", - "target": 4836, + "target": 4880, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1100,7 +1100,7 @@ } }, { - "id": 4855, + "id": 4899, "name": "Scalar", "variant": "declaration", "kind": 2097152, @@ -1159,21 +1159,21 @@ { "type": "reflection", "declaration": { - "id": 4856, + "id": 4900, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4857, + "id": 4901, "name": "toHexString", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4858, + "id": 4902, "name": "toHexString", "variant": "signature", "kind": 4096, @@ -1190,7 +1190,7 @@ { "title": "Methods", "children": [ - 4857 + 4901 ] } ] @@ -1200,14 +1200,14 @@ } }, { - "id": 4883, + "id": 4927, "name": "ReadonlyPrimary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4884, + "id": 4928, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1218,7 +1218,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4884, + "target": 4928, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1239,7 +1239,7 @@ "typeArguments": [ { "type": "reference", - "target": 4884, + "target": 4928, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1250,7 +1250,7 @@ }, "falseType": { "type": "reference", - "target": 4884, + "target": 4928, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1258,14 +1258,14 @@ } }, { - "id": 4873, + "id": 4917, "name": "Primary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4882, + "id": 4926, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1276,7 +1276,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4882, + "target": 4926, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1284,14 +1284,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 4874, + "id": 4918, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4875, + "id": 4919, "name": "[PrimaryKeyType]", "variant": "declaration", "kind": 1024, @@ -1308,7 +1308,7 @@ { "title": "Properties", "children": [ - 4875 + 4919 ] } ] @@ -1316,7 +1316,7 @@ }, "trueType": { "type": "reference", - "target": 4883, + "target": 4927, "typeArguments": [ { "type": "reference", @@ -1336,7 +1336,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4882, + "target": 4926, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1344,14 +1344,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 4876, + "id": 4920, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4877, + "id": 4921, "name": "_id", "variant": "declaration", "kind": 1024, @@ -1368,7 +1368,7 @@ { "title": "Properties", "children": [ - 4877 + 4921 ] } ] @@ -1379,7 +1379,7 @@ "types": [ { "type": "reference", - "target": 4883, + "target": 4927, "typeArguments": [ { "type": "reference", @@ -1405,7 +1405,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4882, + "target": 4926, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1413,14 +1413,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 4878, + "id": 4922, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4879, + "id": 4923, "name": "uuid", "variant": "declaration", "kind": 1024, @@ -1437,7 +1437,7 @@ { "title": "Properties", "children": [ - 4879 + 4923 ] } ] @@ -1445,7 +1445,7 @@ }, "trueType": { "type": "reference", - "target": 4883, + "target": 4927, "typeArguments": [ { "type": "reference", @@ -1465,7 +1465,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4882, + "target": 4926, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1473,14 +1473,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 4880, + "id": 4924, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4881, + "id": 4925, "name": "id", "variant": "declaration", "kind": 1024, @@ -1497,7 +1497,7 @@ { "title": "Properties", "children": [ - 4881 + 4925 ] } ] @@ -1505,7 +1505,7 @@ }, "trueType": { "type": "reference", - "target": 4883, + "target": 4927, "typeArguments": [ { "type": "reference", @@ -1531,14 +1531,14 @@ } }, { - "id": 4768, + "id": 4812, "name": "OperatorMap", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4789, + "id": 4833, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1548,14 +1548,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4769, + "id": 4813, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4770, + "id": 4814, "name": "$and", "variant": "declaration", "kind": 1024, @@ -1566,11 +1566,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 4833, + "target": 4877, "typeArguments": [ { "type": "reference", - "target": 4789, + "target": 4833, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1582,7 +1582,7 @@ } }, { - "id": 4771, + "id": 4815, "name": "$or", "variant": "declaration", "kind": 1024, @@ -1593,11 +1593,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 4833, + "target": 4877, "typeArguments": [ { "type": "reference", - "target": 4789, + "target": 4833, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1609,7 +1609,7 @@ } }, { - "id": 4772, + "id": 4816, "name": "$eq", "variant": "declaration", "kind": 1024, @@ -1621,11 +1621,11 @@ "types": [ { "type": "reference", - "target": 4835, + "target": 4879, "typeArguments": [ { "type": "reference", - "target": 4789, + "target": 4833, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1638,11 +1638,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 4835, + "target": 4879, "typeArguments": [ { "type": "reference", - "target": 4789, + "target": 4833, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1656,7 +1656,7 @@ } }, { - "id": 4773, + "id": 4817, "name": "$ne", "variant": "declaration", "kind": 1024, @@ -1665,11 +1665,11 @@ }, "type": { "type": "reference", - "target": 4835, + "target": 4879, "typeArguments": [ { "type": "reference", - "target": 4789, + "target": 4833, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1680,7 +1680,7 @@ } }, { - "id": 4774, + "id": 4818, "name": "$in", "variant": "declaration", "kind": 1024, @@ -1691,11 +1691,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 4835, + "target": 4879, "typeArguments": [ { "type": "reference", - "target": 4789, + "target": 4833, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1707,7 +1707,7 @@ } }, { - "id": 4775, + "id": 4819, "name": "$nin", "variant": "declaration", "kind": 1024, @@ -1718,11 +1718,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 4835, + "target": 4879, "typeArguments": [ { "type": "reference", - "target": 4789, + "target": 4833, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1734,7 +1734,7 @@ } }, { - "id": 4776, + "id": 4820, "name": "$not", "variant": "declaration", "kind": 1024, @@ -1743,11 +1743,11 @@ }, "type": { "type": "reference", - "target": 4833, + "target": 4877, "typeArguments": [ { "type": "reference", - "target": 4789, + "target": 4833, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1758,7 +1758,7 @@ } }, { - "id": 4777, + "id": 4821, "name": "$gt", "variant": "declaration", "kind": 1024, @@ -1767,11 +1767,11 @@ }, "type": { "type": "reference", - "target": 4835, + "target": 4879, "typeArguments": [ { "type": "reference", - "target": 4789, + "target": 4833, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1782,7 +1782,7 @@ } }, { - "id": 4778, + "id": 4822, "name": "$gte", "variant": "declaration", "kind": 1024, @@ -1791,11 +1791,11 @@ }, "type": { "type": "reference", - "target": 4835, + "target": 4879, "typeArguments": [ { "type": "reference", - "target": 4789, + "target": 4833, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1806,7 +1806,7 @@ } }, { - "id": 4779, + "id": 4823, "name": "$lt", "variant": "declaration", "kind": 1024, @@ -1815,11 +1815,11 @@ }, "type": { "type": "reference", - "target": 4835, + "target": 4879, "typeArguments": [ { "type": "reference", - "target": 4789, + "target": 4833, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1830,7 +1830,7 @@ } }, { - "id": 4780, + "id": 4824, "name": "$lte", "variant": "declaration", "kind": 1024, @@ -1839,11 +1839,11 @@ }, "type": { "type": "reference", - "target": 4835, + "target": 4879, "typeArguments": [ { "type": "reference", - "target": 4789, + "target": 4833, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1854,7 +1854,7 @@ } }, { - "id": 4781, + "id": 4825, "name": "$like", "variant": "declaration", "kind": 1024, @@ -1867,7 +1867,7 @@ } }, { - "id": 4782, + "id": 4826, "name": "$re", "variant": "declaration", "kind": 1024, @@ -1880,7 +1880,7 @@ } }, { - "id": 4783, + "id": 4827, "name": "$ilike", "variant": "declaration", "kind": 1024, @@ -1893,7 +1893,7 @@ } }, { - "id": 4784, + "id": 4828, "name": "$fulltext", "variant": "declaration", "kind": 1024, @@ -1906,7 +1906,7 @@ } }, { - "id": 4785, + "id": 4829, "name": "$overlap", "variant": "declaration", "kind": 1024, @@ -1922,7 +1922,7 @@ } }, { - "id": 4786, + "id": 4830, "name": "$contains", "variant": "declaration", "kind": 1024, @@ -1938,7 +1938,7 @@ } }, { - "id": 4787, + "id": 4831, "name": "$contained", "variant": "declaration", "kind": 1024, @@ -1954,7 +1954,7 @@ } }, { - "id": 4788, + "id": 4832, "name": "$exists", "variant": "declaration", "kind": 1024, @@ -1971,25 +1971,25 @@ { "title": "Properties", "children": [ - 4770, - 4771, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4781, - 4782, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788 + 4814, + 4815, + 4816, + 4817, + 4818, + 4819, + 4820, + 4821, + 4822, + 4823, + 4824, + 4825, + 4826, + 4827, + 4828, + 4829, + 4830, + 4831, + 4832 ] } ] @@ -1997,14 +1997,14 @@ } }, { - "id": 4871, + "id": 4915, "name": "FilterValue2", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4872, + "id": 4916, "name": "T", "variant": "typeParam", "kind": 131072, @@ -2016,18 +2016,18 @@ "types": [ { "type": "reference", - "target": 4872, + "target": 4916, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, { "type": "reference", - "target": 4835, + "target": 4879, "typeArguments": [ { "type": "reference", - "target": 4872, + "target": 4916, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2038,11 +2038,11 @@ }, { "type": "reference", - "target": 4873, + "target": 4917, "typeArguments": [ { "type": "reference", - "target": 4872, + "target": 4916, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2055,14 +2055,14 @@ } }, { - "id": 4865, + "id": 4909, "name": "FilterValue", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4866, + "id": 4910, "name": "T", "variant": "typeParam", "kind": 131072, @@ -2074,15 +2074,15 @@ "types": [ { "type": "reference", - "target": 4768, + "target": 4812, "typeArguments": [ { "type": "reference", - "target": 4871, + "target": 4915, "typeArguments": [ { "type": "reference", - "target": 4866, + "target": 4910, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2097,11 +2097,11 @@ }, { "type": "reference", - "target": 4871, + "target": 4915, "typeArguments": [ { "type": "reference", - "target": 4866, + "target": 4910, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2114,11 +2114,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 4871, + "target": 4915, "typeArguments": [ { "type": "reference", - "target": 4866, + "target": 4910, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2136,7 +2136,7 @@ } }, { - "id": 4870, + "id": 4914, "name": "PrevLimit", "variant": "declaration", "kind": 2097152, @@ -2164,14 +2164,14 @@ } }, { - "id": 4859, + "id": 4903, "name": "FilterQuery", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4863, + "id": 4907, "name": "T", "variant": "typeParam", "kind": 131072, @@ -2182,7 +2182,7 @@ } }, { - "id": 4864, + "id": 4908, "name": "Prev", "variant": "typeParam", "kind": 131072, @@ -2201,7 +2201,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 4864, + "target": 4908, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2222,7 +2222,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 4863, + "target": 4907, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2244,7 +2244,7 @@ }, "objectType": { "type": "reference", - "target": 4863, + "target": 4907, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2301,7 +2301,7 @@ }, "objectType": { "type": "reference", - "target": 4863, + "target": 4907, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2309,7 +2309,7 @@ }, { "type": "reference", - "target": 4768, + "target": 4812, "typeArguments": [ { "type": "indexedAccess", @@ -2325,7 +2325,7 @@ }, "objectType": { "type": "reference", - "target": 4863, + "target": 4907, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2353,7 +2353,7 @@ }, "objectType": { "type": "reference", - "target": 4863, + "target": 4907, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2378,21 +2378,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 4860, + "id": 4904, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 4861, + "id": 4905, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 4862, + "id": 4906, "name": "x", "variant": "param", "kind": 32768, @@ -2429,7 +2429,7 @@ }, "trueType": { "type": "reference", - "target": 4859, + "target": 4903, "typeArguments": [ { "type": "reference", @@ -2456,14 +2456,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 4864, + "target": 4908, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 4870, + "target": 4914, "name": "PrevLimit", "package": "@medusajs/types" } @@ -2493,7 +2493,7 @@ } }, { - "id": 4867, + "id": 4911, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -2523,14 +2523,14 @@ { "type": "reflection", "declaration": { - "id": 4868, + "id": 4912, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4869, + "id": 4913, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -2547,7 +2547,7 @@ { "title": "Properties", "children": [ - 4869 + 4913 ] } ] @@ -2557,14 +2557,14 @@ } }, { - "id": 4849, + "id": 4893, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4854, + "id": 4898, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2578,14 +2578,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4850, + "id": 4894, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4851, + "id": 4895, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2596,7 +2596,7 @@ } }, { - "id": 4852, + "id": 4896, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2605,20 +2605,20 @@ }, "type": { "type": "reference", - "target": 4867, + "target": 4911, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 4853, + "id": 4897, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4854, + "target": 4898, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2629,9 +2629,9 @@ { "title": "Properties", "children": [ - 4851, - 4852, - 4853 + 4895, + 4896, + 4897 ] } ] @@ -2639,14 +2639,14 @@ } }, { - "id": 4813, + "id": 4857, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4816, + "id": 4860, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2662,11 +2662,11 @@ "types": [ { "type": "reference", - "target": 4849, + "target": 4893, "typeArguments": [ { "type": "reference", - "target": 4816, + "target": 4860, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2678,14 +2678,14 @@ { "type": "reflection", "declaration": { - "id": 4814, + "id": 4858, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4815, + "id": 4859, "name": "options", "variant": "declaration", "kind": 1024, @@ -2717,7 +2717,7 @@ { "title": "Properties", "children": [ - 4815 + 4859 ] } ] @@ -2727,14 +2727,14 @@ } }, { - "id": 4823, + "id": 4867, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 4832, + "id": 4876, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2748,14 +2748,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4824, + "id": 4868, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4825, + "id": 4869, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2766,21 +2766,21 @@ } }, { - "id": 4826, + "id": 4870, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4832, + "target": 4876, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 4827, + "id": 4871, "name": "source", "variant": "declaration", "kind": 1024, @@ -2791,7 +2791,7 @@ } }, { - "id": 4828, + "id": 4872, "name": "object", "variant": "declaration", "kind": 1024, @@ -2802,7 +2802,7 @@ } }, { - "id": 4829, + "id": 4873, "name": "action", "variant": "declaration", "kind": 1024, @@ -2815,7 +2815,7 @@ } }, { - "id": 4830, + "id": 4874, "name": "context", "variant": "declaration", "kind": 1024, @@ -2831,7 +2831,7 @@ "typeArguments": [ { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" }, @@ -2845,7 +2845,7 @@ } }, { - "id": 4831, + "id": 4875, "name": "options", "variant": "declaration", "kind": 1024, @@ -2877,13 +2877,13 @@ { "title": "Properties", "children": [ - 4825, - 4826, - 4827, - 4828, - 4829, - 4830, - 4831 + 4869, + 4870, + 4871, + 4872, + 4873, + 4874, + 4875 ] } ] @@ -2891,7 +2891,7 @@ } }, { - "id": 4575, + "id": 4619, "name": "InventoryItemDTO", "variant": "declaration", "kind": 256, @@ -2906,7 +2906,7 @@ }, "children": [ { - "id": 4576, + "id": 4620, "name": "id", "variant": "declaration", "kind": 1024, @@ -2925,7 +2925,7 @@ } }, { - "id": 4577, + "id": 4621, "name": "sku", "variant": "declaration", "kind": 1024, @@ -2955,7 +2955,7 @@ } }, { - "id": 4578, + "id": 4622, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -2985,7 +2985,7 @@ } }, { - "id": 4579, + "id": 4623, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -3015,7 +3015,7 @@ } }, { - "id": 4580, + "id": 4624, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -3034,7 +3034,7 @@ } }, { - "id": 4581, + "id": 4625, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -3064,7 +3064,7 @@ } }, { - "id": 4582, + "id": 4626, "name": "material", "variant": "declaration", "kind": 1024, @@ -3094,7 +3094,7 @@ } }, { - "id": 4583, + "id": 4627, "name": "weight", "variant": "declaration", "kind": 1024, @@ -3124,7 +3124,7 @@ } }, { - "id": 4584, + "id": 4628, "name": "length", "variant": "declaration", "kind": 1024, @@ -3154,7 +3154,7 @@ } }, { - "id": 4585, + "id": 4629, "name": "height", "variant": "declaration", "kind": 1024, @@ -3184,7 +3184,7 @@ } }, { - "id": 4586, + "id": 4630, "name": "width", "variant": "declaration", "kind": 1024, @@ -3214,7 +3214,7 @@ } }, { - "id": 4587, + "id": 4631, "name": "title", "variant": "declaration", "kind": 1024, @@ -3244,7 +3244,7 @@ } }, { - "id": 4588, + "id": 4632, "name": "description", "variant": "declaration", "kind": 1024, @@ -3274,7 +3274,7 @@ } }, { - "id": 4589, + "id": 4633, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -3304,7 +3304,7 @@ } }, { - "id": 4590, + "id": 4634, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3349,7 +3349,7 @@ } }, { - "id": 4591, + "id": 4635, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3382,7 +3382,7 @@ } }, { - "id": 4592, + "id": 4636, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3415,7 +3415,7 @@ } }, { - "id": 4593, + "id": 4637, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3456,30 +3456,30 @@ { "title": "Properties", "children": [ - 4576, - 4577, - 4578, - 4579, - 4580, - 4581, - 4582, - 4583, - 4584, - 4585, - 4586, - 4587, - 4588, - 4589, - 4590, - 4591, - 4592, - 4593 + 4620, + 4621, + 4622, + 4623, + 4624, + 4625, + 4626, + 4627, + 4628, + 4629, + 4630, + 4631, + 4632, + 4633, + 4634, + 4635, + 4636, + 4637 ] } ] }, { - "id": 4554, + "id": 4598, "name": "FilterableInventoryItemProps", "variant": "declaration", "kind": 256, @@ -3494,7 +3494,7 @@ }, "children": [ { - "id": 4555, + "id": 4599, "name": "q", "variant": "declaration", "kind": 1024, @@ -3515,7 +3515,7 @@ } }, { - "id": 4556, + "id": 4600, "name": "id", "variant": "declaration", "kind": 1024, @@ -3548,7 +3548,7 @@ } }, { - "id": 4557, + "id": 4601, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -3581,7 +3581,7 @@ } }, { - "id": 4558, + "id": 4602, "name": "sku", "variant": "declaration", "kind": 1024, @@ -3612,7 +3612,7 @@ }, { "type": "reference", - "target": 4737, + "target": 4781, "name": "StringComparisonOperator", "package": "@medusajs/types" } @@ -3620,7 +3620,7 @@ } }, { - "id": 4559, + "id": 4603, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -3653,7 +3653,7 @@ } }, { - "id": 4560, + "id": 4604, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -3684,7 +3684,7 @@ }, { "type": "reference", - "target": 4737, + "target": 4781, "name": "StringComparisonOperator", "package": "@medusajs/types" } @@ -3692,7 +3692,7 @@ } }, { - "id": 4561, + "id": 4605, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -3717,19 +3717,19 @@ { "title": "Properties", "children": [ - 4555, - 4556, - 4557, - 4558, - 4559, - 4560, - 4561 + 4599, + 4600, + 4601, + 4602, + 4603, + 4604, + 4605 ] } ] }, { - "id": 4636, + "id": 4680, "name": "InventoryLevelDTO", "variant": "declaration", "kind": 256, @@ -3744,7 +3744,7 @@ }, "children": [ { - "id": 4637, + "id": 4681, "name": "id", "variant": "declaration", "kind": 1024, @@ -3763,7 +3763,7 @@ } }, { - "id": 4638, + "id": 4682, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -3782,7 +3782,7 @@ } }, { - "id": 4639, + "id": 4683, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -3801,7 +3801,7 @@ } }, { - "id": 4640, + "id": 4684, "name": "stocked_quantity", "variant": "declaration", "kind": 1024, @@ -3820,7 +3820,7 @@ } }, { - "id": 4641, + "id": 4685, "name": "reserved_quantity", "variant": "declaration", "kind": 1024, @@ -3839,7 +3839,7 @@ } }, { - "id": 4642, + "id": 4686, "name": "incoming_quantity", "variant": "declaration", "kind": 1024, @@ -3858,7 +3858,7 @@ } }, { - "id": 4643, + "id": 4687, "name": "available_quantity", "variant": "declaration", "kind": 1024, @@ -3877,7 +3877,7 @@ } }, { - "id": 4644, + "id": 4688, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3920,7 +3920,7 @@ } }, { - "id": 4645, + "id": 4689, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3953,7 +3953,7 @@ } }, { - "id": 4646, + "id": 4690, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3986,7 +3986,7 @@ } }, { - "id": 4647, + "id": 4691, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -4027,23 +4027,23 @@ { "title": "Properties", "children": [ - 4637, - 4638, - 4639, - 4640, - 4641, - 4642, - 4643, - 4644, - 4645, - 4646, - 4647 + 4681, + 4682, + 4683, + 4684, + 4685, + 4686, + 4687, + 4688, + 4689, + 4690, + 4691 ] } ] }, { - "id": 4628, + "id": 4672, "name": "FilterableInventoryLevelProps", "variant": "declaration", "kind": 256, @@ -4058,7 +4058,7 @@ }, "children": [ { - "id": 4634, + "id": 4678, "name": "$and", "variant": "declaration", "kind": 1024, @@ -4081,17 +4081,17 @@ "types": [ { "type": "reference", - "target": 4628, + "target": 4672, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 4764, + "target": 4808, "typeArguments": [ { "type": "reference", - "target": 4628, + "target": 4672, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" } @@ -4104,12 +4104,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4765, + "target": 4809, "name": "BaseFilterable.$and" } }, { - "id": 4635, + "id": 4679, "name": "$or", "variant": "declaration", "kind": 1024, @@ -4132,17 +4132,17 @@ "types": [ { "type": "reference", - "target": 4628, + "target": 4672, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 4764, + "target": 4808, "typeArguments": [ { "type": "reference", - "target": 4628, + "target": 4672, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" } @@ -4155,12 +4155,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 4766, + "target": 4810, "name": "BaseFilterable.$or" } }, { - "id": 4629, + "id": 4673, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -4193,7 +4193,7 @@ } }, { - "id": 4630, + "id": 4674, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -4226,7 +4226,7 @@ } }, { - "id": 4631, + "id": 4675, "name": "stocked_quantity", "variant": "declaration", "kind": 1024, @@ -4258,7 +4258,7 @@ }, { "type": "reference", - "target": 4768, + "target": 4812, "typeArguments": [ { "type": "reference", @@ -4277,7 +4277,7 @@ } }, { - "id": 4632, + "id": 4676, "name": "reserved_quantity", "variant": "declaration", "kind": 1024, @@ -4309,7 +4309,7 @@ }, { "type": "reference", - "target": 4768, + "target": 4812, "typeArguments": [ { "type": "reference", @@ -4328,7 +4328,7 @@ } }, { - "id": 4633, + "id": 4677, "name": "incoming_quantity", "variant": "declaration", "kind": 1024, @@ -4360,7 +4360,7 @@ }, { "type": "reference", - "target": 4768, + "target": 4812, "typeArguments": [ { "type": "reference", @@ -4383,24 +4383,24 @@ { "title": "Properties", "children": [ - 4634, - 4635, - 4629, - 4630, - 4631, - 4632, - 4633 + 4678, + 4679, + 4673, + 4674, + 4675, + 4676, + 4677 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4764, + "target": 4808, "typeArguments": [ { "type": "reference", - "target": 4628, + "target": 4672, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" } @@ -4411,7 +4411,7 @@ ] }, { - "id": 4615, + "id": 4659, "name": "ReservationItemDTO", "variant": "declaration", "kind": 256, @@ -4426,7 +4426,7 @@ }, "children": [ { - "id": 4616, + "id": 4660, "name": "id", "variant": "declaration", "kind": 1024, @@ -4445,7 +4445,7 @@ } }, { - "id": 4617, + "id": 4661, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -4464,7 +4464,7 @@ } }, { - "id": 4618, + "id": 4662, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -4483,7 +4483,7 @@ } }, { - "id": 4619, + "id": 4663, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -4502,7 +4502,7 @@ } }, { - "id": 4620, + "id": 4664, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -4532,7 +4532,7 @@ } }, { - "id": 4621, + "id": 4665, "name": "description", "variant": "declaration", "kind": 1024, @@ -4562,7 +4562,7 @@ } }, { - "id": 4622, + "id": 4666, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -4583,7 +4583,7 @@ } }, { - "id": 4623, + "id": 4667, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -4613,7 +4613,7 @@ } }, { - "id": 4624, + "id": 4668, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4656,7 +4656,7 @@ } }, { - "id": 4625, + "id": 4669, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4689,7 +4689,7 @@ } }, { - "id": 4626, + "id": 4670, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4722,7 +4722,7 @@ } }, { - "id": 4627, + "id": 4671, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -4763,24 +4763,24 @@ { "title": "Properties", "children": [ - 4616, - 4617, - 4618, - 4619, - 4620, - 4621, - 4622, - 4623, - 4624, - 4625, - 4626, - 4627 + 4660, + 4661, + 4662, + 4663, + 4664, + 4665, + 4666, + 4667, + 4668, + 4669, + 4670, + 4671 ] } ] }, { - "id": 4606, + "id": 4650, "name": "FilterableReservationItemProps", "variant": "declaration", "kind": 256, @@ -4795,7 +4795,7 @@ }, "children": [ { - "id": 4607, + "id": 4651, "name": "id", "variant": "declaration", "kind": 1024, @@ -4828,7 +4828,7 @@ } }, { - "id": 4609, + "id": 4653, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -4861,7 +4861,7 @@ } }, { - "id": 4610, + "id": 4654, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -4894,7 +4894,7 @@ } }, { - "id": 4611, + "id": 4655, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -4927,7 +4927,7 @@ } }, { - "id": 4612, + "id": 4656, "name": "description", "variant": "declaration", "kind": 1024, @@ -4959,7 +4959,7 @@ }, { "type": "reference", - "target": 4737, + "target": 4781, "name": "StringComparisonOperator", "package": "@medusajs/types" } @@ -4967,7 +4967,7 @@ } }, { - "id": 4613, + "id": 4657, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -5000,7 +5000,7 @@ } }, { - "id": 4614, + "id": 4658, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -5032,7 +5032,7 @@ }, { "type": "reference", - "target": 4759, + "target": 4803, "name": "NumericalComparisonOperator", "package": "@medusajs/types" } @@ -5044,26 +5044,26 @@ { "title": "Properties", "children": [ - 4607, - 4609, - 4610, - 4611, - 4612, - 4613, - 4614 + 4651, + 4653, + 4654, + 4655, + 4656, + 4657, + 4658 ] } ] }, { - "id": 4684, + "id": 4728, "name": "UpdateInventoryItemInput", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4685, + "id": 4729, "name": "id", "variant": "declaration", "kind": 1024, @@ -5074,7 +5074,7 @@ } }, { - "id": 4686, + "id": 4730, "name": "sku", "variant": "declaration", "kind": 1024, @@ -5110,7 +5110,7 @@ } }, { - "id": 4687, + "id": 4731, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -5146,7 +5146,7 @@ } }, { - "id": 4688, + "id": 4732, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -5182,7 +5182,7 @@ } }, { - "id": 4689, + "id": 4733, "name": "material", "variant": "declaration", "kind": 1024, @@ -5218,7 +5218,7 @@ } }, { - "id": 4690, + "id": 4734, "name": "weight", "variant": "declaration", "kind": 1024, @@ -5254,7 +5254,7 @@ } }, { - "id": 4691, + "id": 4735, "name": "length", "variant": "declaration", "kind": 1024, @@ -5290,7 +5290,7 @@ } }, { - "id": 4692, + "id": 4736, "name": "height", "variant": "declaration", "kind": 1024, @@ -5326,7 +5326,7 @@ } }, { - "id": 4693, + "id": 4737, "name": "width", "variant": "declaration", "kind": 1024, @@ -5362,7 +5362,7 @@ } }, { - "id": 4694, + "id": 4738, "name": "title", "variant": "declaration", "kind": 1024, @@ -5398,7 +5398,7 @@ } }, { - "id": 4695, + "id": 4739, "name": "description", "variant": "declaration", "kind": 1024, @@ -5434,7 +5434,7 @@ } }, { - "id": 4696, + "id": 4740, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -5470,7 +5470,7 @@ } }, { - "id": 4697, + "id": 4741, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5521,7 +5521,7 @@ } }, { - "id": 4698, + "id": 4742, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -5557,7 +5557,7 @@ } }, { - "id": 4699, + "id": 4743, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -5588,21 +5588,21 @@ { "title": "Properties", "children": [ - 4685, - 4686, - 4687, - 4688, - 4689, - 4690, - 4691, - 4692, - 4693, - 4694, - 4695, - 4696, - 4697, - 4698, - 4699 + 4729, + 4730, + 4731, + 4732, + 4733, + 4734, + 4735, + 4736, + 4737, + 4738, + 4739, + 4740, + 4741, + 4742, + 4743 ] } ], @@ -5616,7 +5616,7 @@ "typeArguments": [ { "type": "reference", - "target": 4658, + "target": 4702, "name": "CreateInventoryItemInput", "package": "@medusajs/types" } @@ -5627,7 +5627,7 @@ ] }, { - "id": 4658, + "id": 4702, "name": "CreateInventoryItemInput", "variant": "declaration", "kind": 256, @@ -5642,7 +5642,7 @@ }, "children": [ { - "id": 4659, + "id": 4703, "name": "sku", "variant": "declaration", "kind": 1024, @@ -5672,7 +5672,7 @@ } }, { - "id": 4660, + "id": 4704, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -5702,7 +5702,7 @@ } }, { - "id": 4661, + "id": 4705, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -5732,7 +5732,7 @@ } }, { - "id": 4662, + "id": 4706, "name": "material", "variant": "declaration", "kind": 1024, @@ -5762,7 +5762,7 @@ } }, { - "id": 4663, + "id": 4707, "name": "weight", "variant": "declaration", "kind": 1024, @@ -5792,7 +5792,7 @@ } }, { - "id": 4664, + "id": 4708, "name": "length", "variant": "declaration", "kind": 1024, @@ -5822,7 +5822,7 @@ } }, { - "id": 4665, + "id": 4709, "name": "height", "variant": "declaration", "kind": 1024, @@ -5852,7 +5852,7 @@ } }, { - "id": 4666, + "id": 4710, "name": "width", "variant": "declaration", "kind": 1024, @@ -5882,7 +5882,7 @@ } }, { - "id": 4667, + "id": 4711, "name": "title", "variant": "declaration", "kind": 1024, @@ -5912,7 +5912,7 @@ } }, { - "id": 4668, + "id": 4712, "name": "description", "variant": "declaration", "kind": 1024, @@ -5942,7 +5942,7 @@ } }, { - "id": 4669, + "id": 4713, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -5972,7 +5972,7 @@ } }, { - "id": 4670, + "id": 4714, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6017,7 +6017,7 @@ } }, { - "id": 4671, + "id": 4715, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -6047,7 +6047,7 @@ } }, { - "id": 4672, + "id": 4716, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -6072,33 +6072,33 @@ { "title": "Properties", "children": [ - 4659, - 4660, - 4661, - 4662, - 4663, - 4664, - 4665, - 4666, - 4667, - 4668, - 4669, - 4670, - 4671, - 4672 + 4703, + 4704, + 4705, + 4706, + 4707, + 4708, + 4709, + 4710, + 4711, + 4712, + 4713, + 4714, + 4715, + 4716 ] } ] }, { - "id": 4673, + "id": 4717, "name": "CreateInventoryLevelInput", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4674, + "id": 4718, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -6117,7 +6117,7 @@ } }, { - "id": 4675, + "id": 4719, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -6136,7 +6136,7 @@ } }, { - "id": 4676, + "id": 4720, "name": "stocked_quantity", "variant": "declaration", "kind": 1024, @@ -6157,7 +6157,7 @@ } }, { - "id": 4677, + "id": 4721, "name": "incoming_quantity", "variant": "declaration", "kind": 1024, @@ -6182,16 +6182,16 @@ { "title": "Properties", "children": [ - 4674, - 4675, - 4676, - 4677 + 4718, + 4719, + 4720, + 4721 ] } ] }, { - "id": 4678, + "id": 4722, "name": "BulkUpdateInventoryLevelInput", "variant": "declaration", "kind": 256, @@ -6206,7 +6206,7 @@ }, "children": [ { - "id": 4681, + "id": 4725, "name": "id", "variant": "declaration", "kind": 1024, @@ -6227,7 +6227,7 @@ } }, { - "id": 4682, + "id": 4726, "name": "stocked_quantity", "variant": "declaration", "kind": 1024, @@ -6248,7 +6248,7 @@ } }, { - "id": 4683, + "id": 4727, "name": "incoming_quantity", "variant": "declaration", "kind": 1024, @@ -6269,7 +6269,7 @@ } }, { - "id": 4679, + "id": 4723, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -6288,7 +6288,7 @@ } }, { - "id": 4680, + "id": 4724, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -6311,17 +6311,17 @@ { "title": "Properties", "children": [ - 4681, - 4682, - 4683, - 4679, - 4680 + 4725, + 4726, + 4727, + 4723, + 4724 ] } ] }, { - "id": 4700, + "id": 4744, "name": "UpdateReservationItemInput", "variant": "declaration", "kind": 256, @@ -6336,7 +6336,7 @@ }, "children": [ { - "id": 4701, + "id": 4745, "name": "id", "variant": "declaration", "kind": 1024, @@ -6347,7 +6347,7 @@ } }, { - "id": 4702, + "id": 4746, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -6368,7 +6368,7 @@ } }, { - "id": 4703, + "id": 4747, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -6389,7 +6389,7 @@ } }, { - "id": 4704, + "id": 4748, "name": "description", "variant": "declaration", "kind": 1024, @@ -6419,7 +6419,7 @@ } }, { - "id": 4705, + "id": 4749, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -6440,7 +6440,7 @@ } }, { - "id": 4706, + "id": 4750, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6489,18 +6489,18 @@ { "title": "Properties", "children": [ - 4701, - 4702, - 4703, - 4704, - 4705, - 4706 + 4745, + 4746, + 4747, + 4748, + 4749, + 4750 ] } ] }, { - "id": 4648, + "id": 4692, "name": "CreateReservationItemInput", "variant": "declaration", "kind": 256, @@ -6515,7 +6515,7 @@ }, "children": [ { - "id": 4649, + "id": 4693, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -6545,7 +6545,7 @@ } }, { - "id": 4650, + "id": 4694, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -6564,7 +6564,7 @@ } }, { - "id": 4651, + "id": 4695, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -6583,7 +6583,7 @@ } }, { - "id": 4652, + "id": 4696, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -6602,7 +6602,7 @@ } }, { - "id": 4653, + "id": 4697, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -6623,7 +6623,7 @@ } }, { - "id": 4654, + "id": 4698, "name": "description", "variant": "declaration", "kind": 1024, @@ -6653,7 +6653,7 @@ } }, { - "id": 4655, + "id": 4699, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -6683,7 +6683,7 @@ } }, { - "id": 4656, + "id": 4700, "name": "external_id", "variant": "declaration", "kind": 1024, @@ -6713,7 +6713,7 @@ } }, { - "id": 4657, + "id": 4701, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6762,21 +6762,21 @@ { "title": "Properties", "children": [ - 4649, - 4650, - 4651, - 4652, - 4653, - 4654, - 4655, - 4656, - 4657 + 4693, + 4694, + 4695, + 4696, + 4697, + 4698, + 4699, + 4700, + 4701 ] } ] }, { - "id": 4331, + "id": 4375, "name": "IInventoryService", "variant": "declaration", "kind": 256, @@ -6791,14 +6791,14 @@ }, "children": [ { - "id": 4332, + "id": 4376, "name": "listInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4333, + "id": 4377, "name": "listInventoryItems", "variant": "signature", "kind": 4096, @@ -6885,7 +6885,7 @@ }, "parameters": [ { - "id": 4334, + "id": 4378, "name": "selector", "variant": "param", "kind": 32768, @@ -6900,13 +6900,13 @@ }, "type": { "type": "reference", - "target": 4554, + "target": 4598, "name": "FilterableInventoryItemProps", "package": "@medusajs/types" } }, { - "id": 4335, + "id": 4379, "name": "config", "variant": "param", "kind": 32768, @@ -6939,11 +6939,11 @@ }, "type": { "type": "reference", - "target": 4562, + "target": 4606, "typeArguments": [ { "type": "reference", - "target": 4575, + "target": 4619, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -6953,7 +6953,7 @@ } }, { - "id": 4336, + "id": 4380, "name": "context", "variant": "param", "kind": 32768, @@ -6970,7 +6970,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -6987,7 +6987,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4575, + "target": 4619, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -7000,14 +7000,14 @@ ] }, { - "id": 4337, + "id": 4381, "name": "listAndCountInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4338, + "id": 4382, "name": "listAndCountInventoryItems", "variant": "signature", "kind": 4096, @@ -7094,7 +7094,7 @@ }, "parameters": [ { - "id": 4339, + "id": 4383, "name": "selector", "variant": "param", "kind": 32768, @@ -7109,13 +7109,13 @@ }, "type": { "type": "reference", - "target": 4554, + "target": 4598, "name": "FilterableInventoryItemProps", "package": "@medusajs/types" } }, { - "id": 4340, + "id": 4384, "name": "config", "variant": "param", "kind": 32768, @@ -7148,11 +7148,11 @@ }, "type": { "type": "reference", - "target": 4562, + "target": 4606, "typeArguments": [ { "type": "reference", - "target": 4575, + "target": 4619, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -7162,7 +7162,7 @@ } }, { - "id": 4341, + "id": 4385, "name": "context", "variant": "param", "kind": 32768, @@ -7179,7 +7179,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -7199,7 +7199,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4575, + "target": 4619, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -7218,14 +7218,14 @@ ] }, { - "id": 4342, + "id": 4386, "name": "listReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4343, + "id": 4387, "name": "listReservationItems", "variant": "signature", "kind": 4096, @@ -7312,7 +7312,7 @@ }, "parameters": [ { - "id": 4344, + "id": 4388, "name": "selector", "variant": "param", "kind": 32768, @@ -7327,13 +7327,13 @@ }, "type": { "type": "reference", - "target": 4606, + "target": 4650, "name": "FilterableReservationItemProps", "package": "@medusajs/types" } }, { - "id": 4345, + "id": 4389, "name": "config", "variant": "param", "kind": 32768, @@ -7366,11 +7366,11 @@ }, "type": { "type": "reference", - "target": 4562, + "target": 4606, "typeArguments": [ { "type": "reference", - "target": 4615, + "target": 4659, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -7380,7 +7380,7 @@ } }, { - "id": 4346, + "id": 4390, "name": "context", "variant": "param", "kind": 32768, @@ -7397,7 +7397,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -7414,7 +7414,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4615, + "target": 4659, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -7427,14 +7427,14 @@ ] }, { - "id": 4347, + "id": 4391, "name": "listAndCountReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4348, + "id": 4392, "name": "listAndCountReservationItems", "variant": "signature", "kind": 4096, @@ -7521,7 +7521,7 @@ }, "parameters": [ { - "id": 4349, + "id": 4393, "name": "selector", "variant": "param", "kind": 32768, @@ -7536,13 +7536,13 @@ }, "type": { "type": "reference", - "target": 4606, + "target": 4650, "name": "FilterableReservationItemProps", "package": "@medusajs/types" } }, { - "id": 4350, + "id": 4394, "name": "config", "variant": "param", "kind": 32768, @@ -7575,11 +7575,11 @@ }, "type": { "type": "reference", - "target": 4562, + "target": 4606, "typeArguments": [ { "type": "reference", - "target": 4615, + "target": 4659, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -7589,7 +7589,7 @@ } }, { - "id": 4351, + "id": 4395, "name": "context", "variant": "param", "kind": 32768, @@ -7606,7 +7606,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -7626,7 +7626,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4615, + "target": 4659, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -7645,14 +7645,14 @@ ] }, { - "id": 4352, + "id": 4396, "name": "listInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4353, + "id": 4397, "name": "listInventoryLevels", "variant": "signature", "kind": 4096, @@ -7739,7 +7739,7 @@ }, "parameters": [ { - "id": 4354, + "id": 4398, "name": "selector", "variant": "param", "kind": 32768, @@ -7754,13 +7754,13 @@ }, "type": { "type": "reference", - "target": 4628, + "target": 4672, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" } }, { - "id": 4355, + "id": 4399, "name": "config", "variant": "param", "kind": 32768, @@ -7793,11 +7793,11 @@ }, "type": { "type": "reference", - "target": 4562, + "target": 4606, "typeArguments": [ { "type": "reference", - "target": 4636, + "target": 4680, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -7807,7 +7807,7 @@ } }, { - "id": 4356, + "id": 4400, "name": "context", "variant": "param", "kind": 32768, @@ -7824,7 +7824,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -7841,7 +7841,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4636, + "target": 4680, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -7854,14 +7854,14 @@ ] }, { - "id": 4357, + "id": 4401, "name": "listAndCountInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4358, + "id": 4402, "name": "listAndCountInventoryLevels", "variant": "signature", "kind": 4096, @@ -7948,7 +7948,7 @@ }, "parameters": [ { - "id": 4359, + "id": 4403, "name": "selector", "variant": "param", "kind": 32768, @@ -7963,13 +7963,13 @@ }, "type": { "type": "reference", - "target": 4628, + "target": 4672, "name": "FilterableInventoryLevelProps", "package": "@medusajs/types" } }, { - "id": 4360, + "id": 4404, "name": "config", "variant": "param", "kind": 32768, @@ -8002,11 +8002,11 @@ }, "type": { "type": "reference", - "target": 4562, + "target": 4606, "typeArguments": [ { "type": "reference", - "target": 4636, + "target": 4680, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -8016,7 +8016,7 @@ } }, { - "id": 4361, + "id": 4405, "name": "context", "variant": "param", "kind": 32768, @@ -8033,7 +8033,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -8053,7 +8053,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4636, + "target": 4680, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -8072,14 +8072,14 @@ ] }, { - "id": 4362, + "id": 4406, "name": "retrieveInventoryItem", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4363, + "id": 4407, "name": "retrieveInventoryItem", "variant": "signature", "kind": 4096, @@ -8126,7 +8126,7 @@ }, "parameters": [ { - "id": 4364, + "id": 4408, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -8145,7 +8145,7 @@ } }, { - "id": 4365, + "id": 4409, "name": "config", "variant": "param", "kind": 32768, @@ -8178,11 +8178,11 @@ }, "type": { "type": "reference", - "target": 4562, + "target": 4606, "typeArguments": [ { "type": "reference", - "target": 4575, + "target": 4619, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -8192,7 +8192,7 @@ } }, { - "id": 4366, + "id": 4410, "name": "context", "variant": "param", "kind": 32768, @@ -8209,7 +8209,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -8224,7 +8224,7 @@ "typeArguments": [ { "type": "reference", - "target": 4575, + "target": 4619, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -8236,14 +8236,14 @@ ] }, { - "id": 4367, + "id": 4411, "name": "retrieveInventoryLevelByItemAndLocation", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4368, + "id": 4412, "name": "retrieveInventoryLevelByItemAndLocation", "variant": "signature", "kind": 4096, @@ -8278,7 +8278,7 @@ }, "parameters": [ { - "id": 4369, + "id": 4413, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -8297,7 +8297,7 @@ } }, { - "id": 4370, + "id": 4414, "name": "locationId", "variant": "param", "kind": 32768, @@ -8316,7 +8316,7 @@ } }, { - "id": 4371, + "id": 4415, "name": "context", "variant": "param", "kind": 32768, @@ -8333,7 +8333,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -8348,7 +8348,7 @@ "typeArguments": [ { "type": "reference", - "target": 4636, + "target": 4680, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -8360,14 +8360,14 @@ ] }, { - "id": 4372, + "id": 4416, "name": "retrieveInventoryLevel", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4373, + "id": 4417, "name": "retrieveInventoryLevel", "variant": "signature", "kind": 4096, @@ -8414,7 +8414,7 @@ }, "parameters": [ { - "id": 4374, + "id": 4418, "name": "inventoryLevelId", "variant": "param", "kind": 32768, @@ -8433,7 +8433,7 @@ } }, { - "id": 4375, + "id": 4419, "name": "config", "variant": "param", "kind": 32768, @@ -8466,11 +8466,11 @@ }, "type": { "type": "reference", - "target": 4562, + "target": 4606, "typeArguments": [ { "type": "reference", - "target": 4636, + "target": 4680, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -8480,7 +8480,7 @@ } }, { - "id": 4376, + "id": 4420, "name": "context", "variant": "param", "kind": 32768, @@ -8497,7 +8497,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -8512,7 +8512,7 @@ "typeArguments": [ { "type": "reference", - "target": 4636, + "target": 4680, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -8524,14 +8524,14 @@ ] }, { - "id": 4377, + "id": 4421, "name": "retrieveReservationItem", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4378, + "id": 4422, "name": "retrieveReservationItem", "variant": "signature", "kind": 4096, @@ -8578,7 +8578,7 @@ }, "parameters": [ { - "id": 4379, + "id": 4423, "name": "reservationId", "variant": "param", "kind": 32768, @@ -8597,7 +8597,7 @@ } }, { - "id": 4380, + "id": 4424, "name": "config", "variant": "param", "kind": 32768, @@ -8630,11 +8630,11 @@ }, "type": { "type": "reference", - "target": 4562, + "target": 4606, "typeArguments": [ { "type": "reference", - "target": 4615, + "target": 4659, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -8644,7 +8644,7 @@ } }, { - "id": 4381, + "id": 4425, "name": "context", "variant": "param", "kind": 32768, @@ -8661,7 +8661,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -8676,7 +8676,7 @@ "typeArguments": [ { "type": "reference", - "target": 4615, + "target": 4659, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -8688,14 +8688,14 @@ ] }, { - "id": 4382, + "id": 4426, "name": "createReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4383, + "id": 4427, "name": "createReservationItems", "variant": "signature", "kind": 4096, @@ -8730,7 +8730,7 @@ }, "parameters": [ { - "id": 4384, + "id": 4428, "name": "input", "variant": "param", "kind": 32768, @@ -8747,14 +8747,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4648, + "target": 4692, "name": "CreateReservationItemInput", "package": "@medusajs/types" } } }, { - "id": 4385, + "id": 4429, "name": "context", "variant": "param", "kind": 32768, @@ -8771,7 +8771,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -8788,7 +8788,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4615, + "target": 4659, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -8799,7 +8799,7 @@ } }, { - "id": 4386, + "id": 4430, "name": "createReservationItems", "variant": "signature", "kind": 4096, @@ -8834,7 +8834,7 @@ }, "parameters": [ { - "id": 4387, + "id": 4431, "name": "input", "variant": "param", "kind": 32768, @@ -8849,13 +8849,13 @@ }, "type": { "type": "reference", - "target": 4648, + "target": 4692, "name": "CreateReservationItemInput", "package": "@medusajs/types" } }, { - "id": 4388, + "id": 4432, "name": "context", "variant": "param", "kind": 32768, @@ -8872,7 +8872,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -8887,7 +8887,7 @@ "typeArguments": [ { "type": "reference", - "target": 4615, + "target": 4659, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -8899,14 +8899,14 @@ ] }, { - "id": 4389, + "id": 4433, "name": "createInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4390, + "id": 4434, "name": "createInventoryItems", "variant": "signature", "kind": 4096, @@ -8941,7 +8941,7 @@ }, "parameters": [ { - "id": 4391, + "id": 4435, "name": "input", "variant": "param", "kind": 32768, @@ -8958,14 +8958,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4658, + "target": 4702, "name": "CreateInventoryItemInput", "package": "@medusajs/types" } } }, { - "id": 4392, + "id": 4436, "name": "context", "variant": "param", "kind": 32768, @@ -8982,7 +8982,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -8999,7 +8999,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4575, + "target": 4619, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -9010,7 +9010,7 @@ } }, { - "id": 4393, + "id": 4437, "name": "createInventoryItems", "variant": "signature", "kind": 4096, @@ -9045,7 +9045,7 @@ }, "parameters": [ { - "id": 4394, + "id": 4438, "name": "input", "variant": "param", "kind": 32768, @@ -9060,13 +9060,13 @@ }, "type": { "type": "reference", - "target": 4658, + "target": 4702, "name": "CreateInventoryItemInput", "package": "@medusajs/types" } }, { - "id": 4395, + "id": 4439, "name": "context", "variant": "param", "kind": 32768, @@ -9083,7 +9083,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -9098,7 +9098,7 @@ "typeArguments": [ { "type": "reference", - "target": 4575, + "target": 4619, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -9110,14 +9110,14 @@ ] }, { - "id": 4396, + "id": 4440, "name": "createInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4397, + "id": 4441, "name": "createInventoryLevels", "variant": "signature", "kind": 4096, @@ -9152,7 +9152,7 @@ }, "parameters": [ { - "id": 4398, + "id": 4442, "name": "data", "variant": "param", "kind": 32768, @@ -9169,14 +9169,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4673, + "target": 4717, "name": "CreateInventoryLevelInput", "package": "@medusajs/types" } } }, { - "id": 4399, + "id": 4443, "name": "context", "variant": "param", "kind": 32768, @@ -9193,7 +9193,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -9210,7 +9210,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4636, + "target": 4680, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -9221,7 +9221,7 @@ } }, { - "id": 4400, + "id": 4444, "name": "createInventoryLevels", "variant": "signature", "kind": 4096, @@ -9256,7 +9256,7 @@ }, "parameters": [ { - "id": 4401, + "id": 4445, "name": "data", "variant": "param", "kind": 32768, @@ -9271,13 +9271,13 @@ }, "type": { "type": "reference", - "target": 4673, + "target": 4717, "name": "CreateInventoryLevelInput", "package": "@medusajs/types" } }, { - "id": 4402, + "id": 4446, "name": "context", "variant": "param", "kind": 32768, @@ -9294,7 +9294,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -9309,7 +9309,7 @@ "typeArguments": [ { "type": "reference", - "target": 4636, + "target": 4680, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -9321,14 +9321,14 @@ ] }, { - "id": 4403, + "id": 4447, "name": "updateInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4404, + "id": 4448, "name": "updateInventoryLevels", "variant": "signature", "kind": 4096, @@ -9363,7 +9363,7 @@ }, "parameters": [ { - "id": 4405, + "id": 4449, "name": "updates", "variant": "param", "kind": 32768, @@ -9380,14 +9380,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4678, + "target": 4722, "name": "BulkUpdateInventoryLevelInput", "package": "@medusajs/types" } } }, { - "id": 4406, + "id": 4450, "name": "context", "variant": "param", "kind": 32768, @@ -9404,7 +9404,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -9421,7 +9421,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4636, + "target": 4680, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -9432,7 +9432,7 @@ } }, { - "id": 4407, + "id": 4451, "name": "updateInventoryLevels", "variant": "signature", "kind": 4096, @@ -9467,7 +9467,7 @@ }, "parameters": [ { - "id": 4408, + "id": 4452, "name": "updates", "variant": "param", "kind": 32768, @@ -9482,13 +9482,13 @@ }, "type": { "type": "reference", - "target": 4678, + "target": 4722, "name": "BulkUpdateInventoryLevelInput", "package": "@medusajs/types" } }, { - "id": 4409, + "id": 4453, "name": "context", "variant": "param", "kind": 32768, @@ -9505,7 +9505,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -9520,7 +9520,7 @@ "typeArguments": [ { "type": "reference", - "target": 4636, + "target": 4680, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -9532,14 +9532,14 @@ ] }, { - "id": 4410, + "id": 4454, "name": "updateInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4411, + "id": 4455, "name": "updateInventoryItems", "variant": "signature", "kind": 4096, @@ -9574,7 +9574,7 @@ }, "parameters": [ { - "id": 4412, + "id": 4456, "name": "input", "variant": "param", "kind": 32768, @@ -9589,13 +9589,13 @@ }, "type": { "type": "reference", - "target": 4684, + "target": 4728, "name": "UpdateInventoryItemInput", "package": "@medusajs/types" } }, { - "id": 4413, + "id": 4457, "name": "context", "variant": "param", "kind": 32768, @@ -9612,7 +9612,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -9627,7 +9627,7 @@ "typeArguments": [ { "type": "reference", - "target": 4575, + "target": 4619, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -9637,7 +9637,7 @@ } }, { - "id": 4414, + "id": 4458, "name": "updateInventoryItems", "variant": "signature", "kind": 4096, @@ -9672,7 +9672,7 @@ }, "parameters": [ { - "id": 4415, + "id": 4459, "name": "input", "variant": "param", "kind": 32768, @@ -9689,14 +9689,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4684, + "target": 4728, "name": "UpdateInventoryItemInput", "package": "@medusajs/types" } } }, { - "id": 4416, + "id": 4460, "name": "context", "variant": "param", "kind": 32768, @@ -9713,7 +9713,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -9730,7 +9730,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4575, + "target": 4619, "name": "InventoryItemDTO", "package": "@medusajs/types" } @@ -9743,14 +9743,14 @@ ] }, { - "id": 4417, + "id": 4461, "name": "updateReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4418, + "id": 4462, "name": "updateReservationItems", "variant": "signature", "kind": 4096, @@ -9785,7 +9785,7 @@ }, "parameters": [ { - "id": 4419, + "id": 4463, "name": "input", "variant": "param", "kind": 32768, @@ -9800,13 +9800,13 @@ }, "type": { "type": "reference", - "target": 4700, + "target": 4744, "name": "UpdateReservationItemInput", "package": "@medusajs/types" } }, { - "id": 4420, + "id": 4464, "name": "context", "variant": "param", "kind": 32768, @@ -9823,7 +9823,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -9838,7 +9838,7 @@ "typeArguments": [ { "type": "reference", - "target": 4615, + "target": 4659, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -9848,7 +9848,7 @@ } }, { - "id": 4421, + "id": 4465, "name": "updateReservationItems", "variant": "signature", "kind": 4096, @@ -9883,7 +9883,7 @@ }, "parameters": [ { - "id": 4422, + "id": 4466, "name": "input", "variant": "param", "kind": 32768, @@ -9900,14 +9900,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4700, + "target": 4744, "name": "UpdateReservationItemInput", "package": "@medusajs/types" } } }, { - "id": 4423, + "id": 4467, "name": "context", "variant": "param", "kind": 32768, @@ -9924,7 +9924,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -9941,7 +9941,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4615, + "target": 4659, "name": "ReservationItemDTO", "package": "@medusajs/types" } @@ -9954,14 +9954,14 @@ ] }, { - "id": 4424, + "id": 4468, "name": "deleteReservationItemsByLineItem", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4425, + "id": 4469, "name": "deleteReservationItemsByLineItem", "variant": "signature", "kind": 4096, @@ -9996,7 +9996,7 @@ }, "parameters": [ { - "id": 4426, + "id": 4470, "name": "lineItemId", "variant": "param", "kind": 32768, @@ -10027,7 +10027,7 @@ } }, { - "id": 4427, + "id": 4471, "name": "context", "variant": "param", "kind": 32768, @@ -10044,7 +10044,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -10069,14 +10069,14 @@ ] }, { - "id": 4428, + "id": 4472, "name": "restoreReservationItemsByLineItem", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4429, + "id": 4473, "name": "restoreReservationItemsByLineItem", "variant": "signature", "kind": 4096, @@ -10111,7 +10111,7 @@ }, "parameters": [ { - "id": 4430, + "id": 4474, "name": "lineItemId", "variant": "param", "kind": 32768, @@ -10142,7 +10142,7 @@ } }, { - "id": 4431, + "id": 4475, "name": "context", "variant": "param", "kind": 32768, @@ -10159,7 +10159,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -10184,14 +10184,14 @@ ] }, { - "id": 4432, + "id": 4476, "name": "deleteReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4433, + "id": 4477, "name": "deleteReservationItems", "variant": "signature", "kind": 4096, @@ -10226,7 +10226,7 @@ }, "parameters": [ { - "id": 4434, + "id": 4478, "name": "reservationItemId", "variant": "param", "kind": 32768, @@ -10257,7 +10257,7 @@ } }, { - "id": 4435, + "id": 4479, "name": "context", "variant": "param", "kind": 32768, @@ -10274,7 +10274,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -10299,14 +10299,14 @@ ] }, { - "id": 4436, + "id": 4480, "name": "softDeleteReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4437, + "id": 4481, "name": "softDeleteReservationItems", "variant": "signature", "kind": 4096, @@ -10349,7 +10349,7 @@ }, "typeParameters": [ { - "id": 4438, + "id": 4482, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -10366,7 +10366,7 @@ ], "parameters": [ { - "id": 4439, + "id": 4483, "name": "ReservationItemIds", "variant": "param", "kind": 32768, @@ -10380,7 +10380,7 @@ } }, { - "id": 4440, + "id": 4484, "name": "config", "variant": "param", "kind": 32768, @@ -10397,11 +10397,11 @@ }, "type": { "type": "reference", - "target": 4707, + "target": 4751, "typeArguments": [ { "type": "reference", - "target": 4438, + "target": 4482, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10412,7 +10412,7 @@ } }, { - "id": 4441, + "id": 4485, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10429,7 +10429,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -10481,14 +10481,14 @@ ] }, { - "id": 4442, + "id": 4486, "name": "restoreReservationItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4443, + "id": 4487, "name": "restoreReservationItems", "variant": "signature", "kind": 4096, @@ -10531,7 +10531,7 @@ }, "typeParameters": [ { - "id": 4444, + "id": 4488, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -10548,7 +10548,7 @@ ], "parameters": [ { - "id": 4445, + "id": 4489, "name": "ReservationItemIds", "variant": "param", "kind": 32768, @@ -10570,7 +10570,7 @@ } }, { - "id": 4446, + "id": 4490, "name": "config", "variant": "param", "kind": 32768, @@ -10603,11 +10603,11 @@ }, "type": { "type": "reference", - "target": 4710, + "target": 4754, "typeArguments": [ { "type": "reference", - "target": 4444, + "target": 4488, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10618,7 +10618,7 @@ } }, { - "id": 4447, + "id": 4491, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10635,7 +10635,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -10687,14 +10687,14 @@ ] }, { - "id": 4448, + "id": 4492, "name": "deleteInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4449, + "id": 4493, "name": "deleteInventoryItems", "variant": "signature", "kind": 4096, @@ -10729,7 +10729,7 @@ }, "parameters": [ { - "id": 4450, + "id": 4494, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -10760,7 +10760,7 @@ } }, { - "id": 4451, + "id": 4495, "name": "context", "variant": "param", "kind": 32768, @@ -10777,7 +10777,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -10802,14 +10802,14 @@ ] }, { - "id": 4452, + "id": 4496, "name": "softDeleteInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4453, + "id": 4497, "name": "softDeleteInventoryItems", "variant": "signature", "kind": 4096, @@ -10860,7 +10860,7 @@ }, "typeParameters": [ { - "id": 4454, + "id": 4498, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -10877,7 +10877,7 @@ ], "parameters": [ { - "id": 4455, + "id": 4499, "name": "inventoryItemIds", "variant": "param", "kind": 32768, @@ -10899,7 +10899,7 @@ } }, { - "id": 4456, + "id": 4500, "name": "config", "variant": "param", "kind": 32768, @@ -10916,11 +10916,11 @@ }, "type": { "type": "reference", - "target": 4707, + "target": 4751, "typeArguments": [ { "type": "reference", - "target": 4454, + "target": 4498, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10931,7 +10931,7 @@ } }, { - "id": 4457, + "id": 4501, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10948,7 +10948,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -11000,14 +11000,14 @@ ] }, { - "id": 4458, + "id": 4502, "name": "restoreInventoryItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4459, + "id": 4503, "name": "restoreInventoryItems", "variant": "signature", "kind": 4096, @@ -11058,7 +11058,7 @@ }, "typeParameters": [ { - "id": 4460, + "id": 4504, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -11075,7 +11075,7 @@ ], "parameters": [ { - "id": 4461, + "id": 4505, "name": "inventoryItemIds", "variant": "param", "kind": 32768, @@ -11097,7 +11097,7 @@ } }, { - "id": 4462, + "id": 4506, "name": "config", "variant": "param", "kind": 32768, @@ -11130,11 +11130,11 @@ }, "type": { "type": "reference", - "target": 4710, + "target": 4754, "typeArguments": [ { "type": "reference", - "target": 4460, + "target": 4504, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11145,7 +11145,7 @@ } }, { - "id": 4463, + "id": 4507, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11162,7 +11162,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -11214,14 +11214,14 @@ ] }, { - "id": 4464, + "id": 4508, "name": "deleteInventoryItemLevelByLocationId", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4465, + "id": 4509, "name": "deleteInventoryItemLevelByLocationId", "variant": "signature", "kind": 4096, @@ -11256,7 +11256,7 @@ }, "parameters": [ { - "id": 4466, + "id": 4510, "name": "locationId", "variant": "param", "kind": 32768, @@ -11287,7 +11287,7 @@ } }, { - "id": 4467, + "id": 4511, "name": "context", "variant": "param", "kind": 32768, @@ -11304,7 +11304,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -11359,14 +11359,14 @@ ] }, { - "id": 4468, + "id": 4512, "name": "deleteReservationItemByLocationId", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4469, + "id": 4513, "name": "deleteReservationItemByLocationId", "variant": "signature", "kind": 4096, @@ -11401,7 +11401,7 @@ }, "parameters": [ { - "id": 4470, + "id": 4514, "name": "locationId", "variant": "param", "kind": 32768, @@ -11432,7 +11432,7 @@ } }, { - "id": 4471, + "id": 4515, "name": "context", "variant": "param", "kind": 32768, @@ -11449,7 +11449,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -11474,14 +11474,14 @@ ] }, { - "id": 4472, + "id": 4516, "name": "deleteInventoryLevel", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4473, + "id": 4517, "name": "deleteInventoryLevel", "variant": "signature", "kind": 4096, @@ -11516,7 +11516,7 @@ }, "parameters": [ { - "id": 4474, + "id": 4518, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -11535,7 +11535,7 @@ } }, { - "id": 4475, + "id": 4519, "name": "locationId", "variant": "param", "kind": 32768, @@ -11554,7 +11554,7 @@ } }, { - "id": 4476, + "id": 4520, "name": "context", "variant": "param", "kind": 32768, @@ -11571,7 +11571,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -11596,14 +11596,14 @@ ] }, { - "id": 4477, + "id": 4521, "name": "deleteInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4478, + "id": 4522, "name": "deleteInventoryLevels", "variant": "signature", "kind": 4096, @@ -11638,7 +11638,7 @@ }, "parameters": [ { - "id": 4479, + "id": 4523, "name": "inventoryLevelIds", "variant": "param", "kind": 32768, @@ -11669,7 +11669,7 @@ } }, { - "id": 4480, + "id": 4524, "name": "context", "variant": "param", "kind": 32768, @@ -11686,7 +11686,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -11711,14 +11711,14 @@ ] }, { - "id": 4481, + "id": 4525, "name": "softDeleteInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4482, + "id": 4526, "name": "softDeleteInventoryLevels", "variant": "signature", "kind": 4096, @@ -11761,7 +11761,7 @@ }, "typeParameters": [ { - "id": 4483, + "id": 4527, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -11778,7 +11778,7 @@ ], "parameters": [ { - "id": 4484, + "id": 4528, "name": "inventoryLevelIds", "variant": "param", "kind": 32768, @@ -11800,7 +11800,7 @@ } }, { - "id": 4485, + "id": 4529, "name": "config", "variant": "param", "kind": 32768, @@ -11817,11 +11817,11 @@ }, "type": { "type": "reference", - "target": 4707, + "target": 4751, "typeArguments": [ { "type": "reference", - "target": 4483, + "target": 4527, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11832,7 +11832,7 @@ } }, { - "id": 4486, + "id": 4530, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11849,7 +11849,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -11901,14 +11901,14 @@ ] }, { - "id": 4487, + "id": 4531, "name": "restoreInventoryLevels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4488, + "id": 4532, "name": "restoreInventoryLevels", "variant": "signature", "kind": 4096, @@ -11951,7 +11951,7 @@ }, "typeParameters": [ { - "id": 4489, + "id": 4533, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -11968,7 +11968,7 @@ ], "parameters": [ { - "id": 4490, + "id": 4534, "name": "inventoryLevelIds", "variant": "param", "kind": 32768, @@ -11990,7 +11990,7 @@ } }, { - "id": 4491, + "id": 4535, "name": "config", "variant": "param", "kind": 32768, @@ -12023,11 +12023,11 @@ }, "type": { "type": "reference", - "target": 4710, + "target": 4754, "typeArguments": [ { "type": "reference", - "target": 4489, + "target": 4533, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12038,7 +12038,7 @@ } }, { - "id": 4492, + "id": 4536, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12055,7 +12055,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -12107,14 +12107,14 @@ ] }, { - "id": 4493, + "id": 4537, "name": "adjustInventory", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4494, + "id": 4538, "name": "adjustInventory", "variant": "signature", "kind": 4096, @@ -12149,7 +12149,7 @@ }, "parameters": [ { - "id": 4495, + "id": 4539, "name": "data", "variant": "param", "kind": 32768, @@ -12159,14 +12159,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 4496, + "id": 4540, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4497, + "id": 4541, "name": "inventoryItemId", "variant": "declaration", "kind": 1024, @@ -12177,7 +12177,7 @@ } }, { - "id": 4498, + "id": 4542, "name": "locationId", "variant": "declaration", "kind": 1024, @@ -12188,7 +12188,7 @@ } }, { - "id": 4499, + "id": 4543, "name": "adjustment", "variant": "declaration", "kind": 1024, @@ -12203,9 +12203,9 @@ { "title": "Properties", "children": [ - 4497, - 4498, - 4499 + 4541, + 4542, + 4543 ] } ] @@ -12214,7 +12214,7 @@ } }, { - "id": 4500, + "id": 4544, "name": "context", "variant": "param", "kind": 32768, @@ -12231,7 +12231,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -12248,7 +12248,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4636, + "target": 4680, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -12259,14 +12259,14 @@ } }, { - "id": 4501, + "id": 4545, "name": "adjustInventory", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4502, + "id": 4546, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -12277,7 +12277,7 @@ } }, { - "id": 4503, + "id": 4547, "name": "locationId", "variant": "param", "kind": 32768, @@ -12288,7 +12288,7 @@ } }, { - "id": 4504, + "id": 4548, "name": "adjustment", "variant": "param", "kind": 32768, @@ -12299,7 +12299,7 @@ } }, { - "id": 4505, + "id": 4549, "name": "context", "variant": "param", "kind": 32768, @@ -12308,7 +12308,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -12323,7 +12323,7 @@ "typeArguments": [ { "type": "reference", - "target": 4636, + "target": 4680, "name": "InventoryLevelDTO", "package": "@medusajs/types" } @@ -12335,14 +12335,14 @@ ] }, { - "id": 4506, + "id": 4550, "name": "confirmInventory", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4507, + "id": 4551, "name": "confirmInventory", "variant": "signature", "kind": 4096, @@ -12377,7 +12377,7 @@ }, "parameters": [ { - "id": 4508, + "id": 4552, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -12396,7 +12396,7 @@ } }, { - "id": 4509, + "id": 4553, "name": "locationIds", "variant": "param", "kind": 32768, @@ -12418,7 +12418,7 @@ } }, { - "id": 4510, + "id": 4554, "name": "quantity", "variant": "param", "kind": 32768, @@ -12437,7 +12437,7 @@ } }, { - "id": 4511, + "id": 4555, "name": "context", "variant": "param", "kind": 32768, @@ -12454,7 +12454,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -12479,14 +12479,14 @@ ] }, { - "id": 4512, + "id": 4556, "name": "retrieveAvailableQuantity", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4513, + "id": 4557, "name": "retrieveAvailableQuantity", "variant": "signature", "kind": 4096, @@ -12521,7 +12521,7 @@ }, "parameters": [ { - "id": 4514, + "id": 4558, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -12540,7 +12540,7 @@ } }, { - "id": 4515, + "id": 4559, "name": "locationIds", "variant": "param", "kind": 32768, @@ -12562,7 +12562,7 @@ } }, { - "id": 4516, + "id": 4560, "name": "context", "variant": "param", "kind": 32768, @@ -12579,7 +12579,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -12604,14 +12604,14 @@ ] }, { - "id": 4517, + "id": 4561, "name": "retrieveStockedQuantity", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4518, + "id": 4562, "name": "retrieveStockedQuantity", "variant": "signature", "kind": 4096, @@ -12646,7 +12646,7 @@ }, "parameters": [ { - "id": 4519, + "id": 4563, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -12665,7 +12665,7 @@ } }, { - "id": 4520, + "id": 4564, "name": "locationIds", "variant": "param", "kind": 32768, @@ -12687,7 +12687,7 @@ } }, { - "id": 4521, + "id": 4565, "name": "context", "variant": "param", "kind": 32768, @@ -12704,7 +12704,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -12729,14 +12729,14 @@ ] }, { - "id": 4522, + "id": 4566, "name": "retrieveReservedQuantity", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4523, + "id": 4567, "name": "retrieveReservedQuantity", "variant": "signature", "kind": 4096, @@ -12771,7 +12771,7 @@ }, "parameters": [ { - "id": 4524, + "id": 4568, "name": "inventoryItemId", "variant": "param", "kind": 32768, @@ -12790,7 +12790,7 @@ } }, { - "id": 4525, + "id": 4569, "name": "locationIds", "variant": "param", "kind": 32768, @@ -12812,7 +12812,7 @@ } }, { - "id": 4526, + "id": 4570, "name": "context", "variant": "param", "kind": 32768, @@ -12829,7 +12829,7 @@ }, "type": { "type": "reference", - "target": 4594, + "target": 4638, "name": "Context", "package": "@medusajs/types" } @@ -12858,55 +12858,55 @@ { "title": "Methods", "children": [ - 4332, - 4337, - 4342, - 4347, - 4352, - 4357, - 4362, - 4367, - 4372, - 4377, - 4382, - 4389, + 4376, + 4381, + 4386, + 4391, 4396, - 4403, - 4410, - 4417, - 4424, - 4428, - 4432, - 4436, - 4442, - 4448, - 4452, - 4458, - 4464, + 4401, + 4406, + 4411, + 4416, + 4421, + 4426, + 4433, + 4440, + 4447, + 4454, + 4461, 4468, 4472, - 4477, - 4481, - 4487, - 4493, - 4506, + 4476, + 4480, + 4486, + 4492, + 4496, + 4502, + 4508, 4512, - 4517, - 4522 + 4516, + 4521, + 4525, + 4531, + 4537, + 4550, + 4556, + 4561, + 4566 ] } ], "extendedTypes": [ { "type": "reference", - "target": 4540, + "target": 4584, "name": "IModuleService", "package": "@medusajs/types" } ] }, { - "id": 4840, + "id": 4884, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -12914,14 +12914,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4841, + "id": 4885, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4842, + "id": 4886, "name": "alias", "variant": "declaration", "kind": 1024, @@ -12932,7 +12932,7 @@ } }, { - "id": 4843, + "id": 4887, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -12943,7 +12943,7 @@ } }, { - "id": 4844, + "id": 4888, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -12954,7 +12954,7 @@ } }, { - "id": 4845, + "id": 4889, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -12965,7 +12965,7 @@ } }, { - "id": 4846, + "id": 4890, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -12986,7 +12986,7 @@ } }, { - "id": 4847, + "id": 4891, "name": "isList", "variant": "declaration", "kind": 1024, @@ -13007,7 +13007,7 @@ } }, { - "id": 4848, + "id": 4892, "name": "args", "variant": "declaration", "kind": 1024, @@ -13047,13 +13047,13 @@ { "title": "Properties", "children": [ - 4842, - 4843, - 4844, - 4845, - 4846, - 4847, - 4848 + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892 ] } ] @@ -13061,14 +13061,14 @@ } }, { - "id": 4837, + "id": 4881, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4838, + "id": 4882, "name": "name", "variant": "declaration", "kind": 1024, @@ -13091,7 +13091,7 @@ } }, { - "id": 4839, + "id": 4883, "name": "args", "variant": "declaration", "kind": 1024, @@ -13131,21 +13131,21 @@ { "title": "Properties", "children": [ - 4838, - 4839 + 4882, + 4883 ] } ] }, { - "id": 4790, + "id": 4834, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4791, + "id": 4835, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -13156,7 +13156,7 @@ } }, { - "id": 4792, + "id": 4836, "name": "alias", "variant": "declaration", "kind": 1024, @@ -13176,7 +13176,7 @@ "types": [ { "type": "reference", - "target": 4837, + "target": 4881, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -13184,7 +13184,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4837, + "target": 4881, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -13193,7 +13193,7 @@ } }, { - "id": 4793, + "id": 4837, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -13229,14 +13229,14 @@ { "type": "reflection", "declaration": { - "id": 4794, + "id": 4838, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4795, + "id": 4839, "name": "path", "variant": "declaration", "kind": 1024, @@ -13247,7 +13247,7 @@ } }, { - "id": 4796, + "id": 4840, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -13265,8 +13265,8 @@ { "title": "Properties", "children": [ - 4795, - 4796 + 4839, + 4840 ] } ] @@ -13280,7 +13280,7 @@ } }, { - "id": 4797, + "id": 4841, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -13294,7 +13294,7 @@ } }, { - "id": 4798, + "id": 4842, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -13305,14 +13305,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4840, + "target": 4884, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 4799, + "id": 4843, "name": "extends", "variant": "declaration", "kind": 1024, @@ -13324,14 +13324,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 4800, + "id": 4844, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4801, + "id": 4845, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -13342,14 +13342,14 @@ } }, { - "id": 4802, + "id": 4846, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4840, + "target": 4884, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -13359,8 +13359,8 @@ { "title": "Properties", "children": [ - 4801, - 4802 + 4845, + 4846 ] } ] @@ -13369,7 +13369,7 @@ } }, { - "id": 4803, + "id": 4847, "name": "args", "variant": "declaration", "kind": 1024, @@ -13409,19 +13409,19 @@ { "title": "Properties", "children": [ - 4791, - 4792, - 4793, - 4797, - 4798, - 4799, - 4803 + 4835, + 4836, + 4837, + 4841, + 4842, + 4843, + 4847 ] } ] }, { - "id": 4807, + "id": 4851, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -13440,14 +13440,14 @@ { "type": "reflection", "declaration": { - "id": 4808, + "id": 4852, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4809, + "id": 4853, "name": "type", "variant": "declaration", "kind": 1024, @@ -13543,7 +13543,7 @@ } }, { - "id": 4810, + "id": 4854, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -13556,7 +13556,7 @@ } }, { - "id": 4811, + "id": 4855, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -13569,7 +13569,7 @@ } }, { - "id": 4812, + "id": 4856, "name": "options", "variant": "declaration", "kind": 1024, @@ -13609,10 +13609,10 @@ { "title": "Properties", "children": [ - 4809, - 4810, - 4811, - 4812 + 4853, + 4854, + 4855, + 4856 ] } ] @@ -13624,7 +13624,7 @@ } }, { - "id": 4713, + "id": 4757, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -13641,7 +13641,7 @@ "typeArguments": [ { "type": "reference", - "target": 4790, + "target": 4834, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -13673,14 +13673,14 @@ { "type": "reflection", "declaration": { - "id": 4714, + "id": 4758, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4715, + "id": 4759, "name": "schema", "variant": "declaration", "kind": 1024, @@ -13701,7 +13701,7 @@ } }, { - "id": 4716, + "id": 4760, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -13712,14 +13712,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 4804, + "target": 4848, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 4717, + "id": 4761, "name": "extends", "variant": "declaration", "kind": 1024, @@ -13731,14 +13731,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 4718, + "id": 4762, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4719, + "id": 4763, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -13749,7 +13749,7 @@ } }, { - "id": 4720, + "id": 4764, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -13777,14 +13777,14 @@ { "type": "reflection", "declaration": { - "id": 4721, + "id": 4765, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4722, + "id": 4766, "name": "path", "variant": "declaration", "kind": 1024, @@ -13795,7 +13795,7 @@ } }, { - "id": 4723, + "id": 4767, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -13811,7 +13811,7 @@ } }, { - "id": 4724, + "id": 4768, "name": "isList", "variant": "declaration", "kind": 1024, @@ -13828,9 +13828,9 @@ { "title": "Properties", "children": [ - 4722, - 4723, - 4724 + 4766, + 4767, + 4768 ] } ] @@ -13844,14 +13844,14 @@ } }, { - "id": 4725, + "id": 4769, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 4804, + "target": 4848, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -13861,9 +13861,9 @@ { "title": "Properties", "children": [ - 4719, - 4720, - 4725 + 4763, + 4764, + 4769 ] } ] @@ -13872,7 +13872,7 @@ } }, { - "id": 4726, + "id": 4770, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -13885,7 +13885,7 @@ } }, { - "id": 4727, + "id": 4771, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -13901,7 +13901,7 @@ } }, { - "id": 4728, + "id": 4772, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -13922,7 +13922,7 @@ } }, { - "id": 4729, + "id": 4773, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -13958,7 +13958,7 @@ } }, { - "id": 4730, + "id": 4774, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -13979,7 +13979,7 @@ } }, { - "id": 4731, + "id": 4775, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -14003,7 +14003,7 @@ } }, { - "id": 4732, + "id": 4776, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -14013,14 +14013,14 @@ "type": { "type": "reflection", "declaration": { - "id": 4733, + "id": 4777, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4734, + "id": 4778, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -14041,7 +14041,7 @@ } }, { - "id": 4735, + "id": 4779, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -14062,7 +14062,7 @@ } }, { - "id": 4736, + "id": 4780, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -14071,7 +14071,7 @@ }, "type": { "type": "reference", - "target": 4807, + "target": 4851, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -14081,9 +14081,9 @@ { "title": "Properties", "children": [ - 4734, - 4735, - 4736 + 4778, + 4779, + 4780 ] } ] @@ -14095,16 +14095,16 @@ { "title": "Properties", "children": [ - 4715, - 4716, - 4717, - 4726, - 4727, - 4728, - 4729, - 4730, - 4731, - 4732 + 4759, + 4760, + 4761, + 4770, + 4771, + 4772, + 4773, + 4774, + 4775, + 4776 ] } ] @@ -14114,7 +14114,7 @@ } }, { - "id": 4804, + "id": 4848, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -14124,21 +14124,21 @@ "types": [ { "type": "reference", - "target": 4840, + "target": 4884, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 4805, + "id": 4849, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 4806, + "id": 4850, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -14163,7 +14163,7 @@ { "title": "Properties", "children": [ - 4806 + 4850 ] } ] @@ -14173,7 +14173,7 @@ } }, { - "id": 4540, + "id": 4584, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -14181,20 +14181,20 @@ "extendedBy": [ { "type": "reference", - "target": 4331, + "target": 4375, "name": "IInventoryService" } ] }, { - "id": 4817, + "id": 4861, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4818, + "id": 4862, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -14210,7 +14210,7 @@ } }, { - "id": 4819, + "id": 4863, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -14220,21 +14220,21 @@ "type": { "type": "reflection", "declaration": { - "id": 4820, + "id": 4864, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 4821, + "id": 4865, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 4822, + "id": 4866, "name": "key", "variant": "param", "kind": 32768, @@ -14275,35 +14275,35 @@ { "title": "Properties", "children": [ - 4818, - 4819 + 4862, + 4863 ] } ] }, { - "id": 4745, + "id": 4789, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 4746, + "id": 4790, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4747, + "id": 4791, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4748, + "id": 4792, "name": "msg", "variant": "param", "kind": 32768, @@ -14313,7 +14313,7 @@ "types": [ { "type": "reference", - "target": 4813, + "target": 4857, "name": "Message", "package": "@medusajs/types" }, @@ -14321,7 +14321,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4813, + "target": 4857, "name": "Message", "package": "@medusajs/types" } @@ -14338,21 +14338,21 @@ ] }, { - "id": 4749, + "id": 4793, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4750, + "id": 4794, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4751, + "id": 4795, "name": "format", "variant": "param", "kind": 32768, @@ -14361,7 +14361,7 @@ }, "type": { "type": "reference", - "target": 4817, + "target": 4861, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -14382,7 +14382,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 4813, + "target": 4857, "name": "Message", "package": "@medusajs/types" } @@ -14395,14 +14395,14 @@ ] }, { - "id": 4752, + "id": 4796, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4753, + "id": 4797, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -14415,21 +14415,21 @@ ] }, { - "id": 4754, + "id": 4798, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4755, + "id": 4799, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 4756, + "id": 4800, "name": "T", "variant": "typeParam", "kind": 131072, @@ -14438,7 +14438,7 @@ ], "parameters": [ { - "id": 4757, + "id": 4801, "name": "messageData", "variant": "param", "kind": 32768, @@ -14448,11 +14448,11 @@ "types": [ { "type": "reference", - "target": 4823, + "target": 4867, "typeArguments": [ { "type": "reference", - "target": 4756, + "target": 4800, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -14465,11 +14465,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 4823, + "target": 4867, "typeArguments": [ { "type": "reference", - "target": 4756, + "target": 4800, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -14483,7 +14483,7 @@ } }, { - "id": 4758, + "id": 4802, "name": "options", "variant": "param", "kind": 32768, @@ -14523,16 +14523,16 @@ { "title": "Methods", "children": [ - 4746, - 4749, - 4752, - 4754 + 4790, + 4793, + 4796, + 4798 ] } ] }, { - "id": 4594, + "id": 4638, "name": "Context", "variant": "declaration", "kind": 256, @@ -14547,7 +14547,7 @@ }, "children": [ { - "id": 4595, + "id": 4639, "name": "__type", "variant": "declaration", "kind": 1024, @@ -14560,7 +14560,7 @@ } }, { - "id": 4596, + "id": 4640, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -14593,14 +14593,14 @@ }, "type": { "type": "reference", - "target": 4605, + "target": 4649, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 4597, + "id": 4641, "name": "manager", "variant": "declaration", "kind": 1024, @@ -14633,14 +14633,14 @@ }, "type": { "type": "reference", - "target": 4605, + "target": 4649, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 4598, + "id": 4642, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -14693,7 +14693,7 @@ } }, { - "id": 4599, + "id": 4643, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -14714,7 +14714,7 @@ } }, { - "id": 4600, + "id": 4644, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -14735,7 +14735,7 @@ } }, { - "id": 4601, + "id": 4645, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -14756,7 +14756,7 @@ } }, { - "id": 4602, + "id": 4646, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -14773,13 +14773,13 @@ }, "type": { "type": "reference", - "target": 4745, + "target": 4789, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 4603, + "id": 4647, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -14800,7 +14800,7 @@ } }, { - "id": 4604, + "id": 4648, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -14825,22 +14825,22 @@ { "title": "Properties", "children": [ - 4595, - 4596, - 4597, - 4598, - 4599, - 4600, - 4601, - 4602, - 4603, - 4604 + 4639, + 4640, + 4641, + 4642, + 4643, + 4644, + 4645, + 4646, + 4647, + 4648 ] } ], "typeParameters": [ { - "id": 4605, + "id": 4649, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -14857,2156 +14857,2156 @@ { "title": "Interfaces", "children": [ - 4562, - 4737, - 4759, - 4764, - 4707, - 4710, - 4575, - 4554, - 4636, - 4628, - 4615, 4606, - 4684, - 4658, - 4673, - 4678, - 4700, - 4648, - 4331, - 4837, - 4790, - 4540, - 4817, - 4745, - 4594 + 4781, + 4803, + 4808, + 4751, + 4754, + 4619, + 4598, + 4680, + 4672, + 4659, + 4650, + 4728, + 4702, + 4717, + 4722, + 4744, + 4692, + 4375, + 4881, + 4834, + 4584, + 4861, + 4789, + 4638 ] }, { "title": "Type Aliases", "children": [ - 4833, - 4835, - 4855, - 4883, - 4873, - 4768, - 4871, - 4865, - 4870, - 4859, + 4877, + 4879, + 4899, + 4927, + 4917, + 4812, + 4915, + 4909, + 4914, + 4903, + 4911, + 4893, + 4857, 4867, - 4849, - 4813, - 4823, - 4840, - 4807, - 4713, - 4804 + 4884, + 4851, + 4757, + 4848 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "4330": { + "4374": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "" }, - "4331": { + "4375": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService" }, - "4332": { + "4376": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listInventoryItems" }, - "4333": { + "4377": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listInventoryItems" }, - "4334": { + "4378": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "selector" }, - "4335": { + "4379": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4336": { + "4380": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4337": { + "4381": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listAndCountInventoryItems" }, - "4338": { + "4382": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listAndCountInventoryItems" }, - "4339": { + "4383": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "selector" }, - "4340": { + "4384": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4341": { + "4385": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4342": { + "4386": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listReservationItems" }, - "4343": { + "4387": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listReservationItems" }, - "4344": { + "4388": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "selector" }, - "4345": { + "4389": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4346": { + "4390": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4347": { + "4391": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listAndCountReservationItems" }, - "4348": { + "4392": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listAndCountReservationItems" }, - "4349": { + "4393": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "selector" }, - "4350": { + "4394": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4351": { + "4395": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4352": { + "4396": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listInventoryLevels" }, - "4353": { + "4397": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listInventoryLevels" }, - "4354": { + "4398": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "selector" }, - "4355": { + "4399": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4356": { + "4400": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4357": { + "4401": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listAndCountInventoryLevels" }, - "4358": { + "4402": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.listAndCountInventoryLevels" }, - "4359": { + "4403": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "selector" }, - "4360": { + "4404": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4361": { + "4405": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4362": { + "4406": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveInventoryItem" }, - "4363": { + "4407": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveInventoryItem" }, - "4364": { + "4408": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "4365": { + "4409": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4366": { + "4410": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4367": { + "4411": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveInventoryLevelByItemAndLocation" }, - "4368": { + "4412": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveInventoryLevelByItemAndLocation" }, - "4369": { + "4413": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "4370": { + "4414": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationId" }, - "4371": { + "4415": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4372": { + "4416": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveInventoryLevel" }, - "4373": { + "4417": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveInventoryLevel" }, - "4374": { + "4418": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryLevelId" }, - "4375": { + "4419": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4376": { + "4420": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4377": { + "4421": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveReservationItem" }, - "4378": { + "4422": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveReservationItem" }, - "4379": { + "4423": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "reservationId" }, - "4380": { + "4424": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4381": { + "4425": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4382": { + "4426": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createReservationItems" }, - "4383": { + "4427": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createReservationItems" }, - "4384": { + "4428": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "4385": { + "4429": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4386": { + "4430": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createReservationItems" }, - "4387": { + "4431": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "4388": { + "4432": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4389": { + "4433": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createInventoryItems" }, - "4390": { + "4434": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createInventoryItems" }, - "4391": { + "4435": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "4392": { + "4436": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4393": { + "4437": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createInventoryItems" }, - "4394": { + "4438": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "4395": { + "4439": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4396": { + "4440": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createInventoryLevels" }, - "4397": { + "4441": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createInventoryLevels" }, - "4398": { + "4442": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "data" }, - "4399": { + "4443": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4400": { + "4444": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.createInventoryLevels" }, - "4401": { + "4445": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "data" }, - "4402": { + "4446": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4403": { + "4447": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateInventoryLevels" }, - "4404": { + "4448": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateInventoryLevels" }, - "4405": { + "4449": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "updates" }, - "4406": { + "4450": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4407": { + "4451": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateInventoryLevels" }, - "4408": { + "4452": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "updates" }, - "4409": { + "4453": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4410": { + "4454": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateInventoryItems" }, - "4411": { + "4455": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateInventoryItems" }, - "4412": { + "4456": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "4413": { + "4457": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4414": { + "4458": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateInventoryItems" }, - "4415": { + "4459": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "4416": { + "4460": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4417": { + "4461": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateReservationItems" }, - "4418": { + "4462": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateReservationItems" }, - "4419": { + "4463": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "4420": { + "4464": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4421": { + "4465": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.updateReservationItems" }, - "4422": { + "4466": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "input" }, - "4423": { + "4467": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4424": { + "4468": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteReservationItemsByLineItem" }, - "4425": { + "4469": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteReservationItemsByLineItem" }, - "4426": { + "4470": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "lineItemId" }, - "4427": { + "4471": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4428": { + "4472": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreReservationItemsByLineItem" }, - "4429": { + "4473": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreReservationItemsByLineItem" }, - "4430": { + "4474": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "lineItemId" }, - "4431": { + "4475": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4432": { + "4476": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteReservationItems" }, - "4433": { + "4477": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteReservationItems" }, - "4434": { + "4478": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "reservationItemId" }, - "4435": { + "4479": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4436": { + "4480": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.softDeleteReservationItems" }, - "4437": { + "4481": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.softDeleteReservationItems" }, - "4438": { + "4482": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "4439": { + "4483": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "ReservationItemIds" }, - "4440": { + "4484": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4441": { + "4485": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "sharedContext" }, - "4442": { + "4486": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreReservationItems" }, - "4443": { + "4487": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreReservationItems" }, - "4444": { + "4488": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "4445": { + "4489": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "ReservationItemIds" }, - "4446": { + "4490": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4447": { + "4491": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "sharedContext" }, - "4448": { + "4492": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryItems" }, - "4449": { + "4493": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryItems" }, - "4450": { + "4494": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "4451": { + "4495": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4452": { + "4496": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.softDeleteInventoryItems" }, - "4453": { + "4497": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.softDeleteInventoryItems" }, - "4454": { + "4498": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "4455": { + "4499": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemIds" }, - "4456": { + "4500": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4457": { + "4501": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "sharedContext" }, - "4458": { + "4502": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreInventoryItems" }, - "4459": { + "4503": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreInventoryItems" }, - "4460": { + "4504": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "4461": { + "4505": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemIds" }, - "4462": { + "4506": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4463": { + "4507": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "sharedContext" }, - "4464": { + "4508": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryItemLevelByLocationId" }, - "4465": { + "4509": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryItemLevelByLocationId" }, - "4466": { + "4510": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationId" }, - "4467": { + "4511": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4468": { + "4512": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteReservationItemByLocationId" }, - "4469": { + "4513": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteReservationItemByLocationId" }, - "4470": { + "4514": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationId" }, - "4471": { + "4515": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4472": { + "4516": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryLevel" }, - "4473": { + "4517": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryLevel" }, - "4474": { + "4518": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "4475": { + "4519": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationId" }, - "4476": { + "4520": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4477": { + "4521": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryLevels" }, - "4478": { + "4522": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.deleteInventoryLevels" }, - "4479": { + "4523": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryLevelIds" }, - "4480": { + "4524": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4481": { + "4525": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.softDeleteInventoryLevels" }, - "4482": { + "4526": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.softDeleteInventoryLevels" }, - "4483": { + "4527": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "4484": { + "4528": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryLevelIds" }, - "4485": { + "4529": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4486": { + "4530": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "sharedContext" }, - "4487": { + "4531": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreInventoryLevels" }, - "4488": { + "4532": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.restoreInventoryLevels" }, - "4489": { + "4533": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "4490": { + "4534": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryLevelIds" }, - "4491": { + "4535": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "config" }, - "4492": { + "4536": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "sharedContext" }, - "4493": { + "4537": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.adjustInventory" }, - "4494": { + "4538": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.adjustInventory" }, - "4495": { + "4539": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "data" }, - "4496": { + "4540": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "__type" }, - "4497": { + "4541": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "__type.inventoryItemId" }, - "4498": { + "4542": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "__type.locationId" }, - "4499": { + "4543": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "__type.adjustment" }, - "4500": { + "4544": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4501": { + "4545": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.adjustInventory" }, - "4502": { + "4546": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "4503": { + "4547": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationId" }, - "4504": { + "4548": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "adjustment" }, - "4505": { + "4549": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4506": { + "4550": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.confirmInventory" }, - "4507": { + "4551": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.confirmInventory" }, - "4508": { + "4552": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "4509": { + "4553": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationIds" }, - "4510": { + "4554": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "quantity" }, - "4511": { + "4555": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4512": { + "4556": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveAvailableQuantity" }, - "4513": { + "4557": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveAvailableQuantity" }, - "4514": { + "4558": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "4515": { + "4559": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationIds" }, - "4516": { + "4560": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4517": { + "4561": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveStockedQuantity" }, - "4518": { + "4562": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveStockedQuantity" }, - "4519": { + "4563": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "4520": { + "4564": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationIds" }, - "4521": { + "4565": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4522": { + "4566": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveReservedQuantity" }, - "4523": { + "4567": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "IInventoryService.retrieveReservedQuantity" }, - "4524": { + "4568": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "inventoryItemId" }, - "4525": { + "4569": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "locationIds" }, - "4526": { + "4570": { "sourceFileName": "../../../../packages/core/types/src/inventory/service.ts", "qualifiedName": "context" }, - "4540": { + "4584": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "4554": { + "4598": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps" }, - "4555": { + "4599": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.q" }, - "4556": { + "4600": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.id" }, - "4557": { + "4601": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.location_id" }, - "4558": { + "4602": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.sku" }, - "4559": { + "4603": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.origin_country" }, - "4560": { + "4604": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.hs_code" }, - "4561": { + "4605": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "FilterableInventoryItemProps.requires_shipping" }, - "4562": { + "4606": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "4563": { + "4607": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "4564": { + "4608": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "4565": { + "4609": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "4566": { + "4610": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "4567": { + "4611": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "4568": { + "4612": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "4569": { + "4613": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "4571": { + "4615": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "4572": { + "4616": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "4573": { + "4617": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "4574": { + "4618": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "4575": { + "4619": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO" }, - "4576": { + "4620": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.id" }, - "4577": { + "4621": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.sku" }, - "4578": { + "4622": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.origin_country" }, - "4579": { + "4623": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.hs_code" }, - "4580": { + "4624": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.requires_shipping" }, - "4581": { + "4625": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.mid_code" }, - "4582": { + "4626": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.material" }, - "4583": { + "4627": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.weight" }, - "4584": { + "4628": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.length" }, - "4585": { + "4629": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.height" }, - "4586": { + "4630": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.width" }, - "4587": { + "4631": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.title" }, - "4588": { + "4632": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.description" }, - "4589": { + "4633": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.thumbnail" }, - "4590": { + "4634": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.metadata" }, - "4591": { + "4635": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.created_at" }, - "4592": { + "4636": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.updated_at" }, - "4593": { + "4637": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-item.ts", "qualifiedName": "InventoryItemDTO.deleted_at" }, - "4594": { + "4638": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "4595": { + "4639": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "4596": { + "4640": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "4597": { + "4641": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "4598": { + "4642": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "4599": { + "4643": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "4600": { + "4644": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "4601": { + "4645": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "4602": { + "4646": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "4603": { + "4647": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "4604": { + "4648": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "4605": { + "4649": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "4606": { + "4650": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps" }, - "4607": { + "4651": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.id" }, - "4609": { + "4653": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.line_item_id" }, - "4610": { + "4654": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.inventory_item_id" }, - "4611": { + "4655": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.location_id" }, - "4612": { + "4656": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.description" }, - "4613": { + "4657": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.created_by" }, - "4614": { + "4658": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "FilterableReservationItemProps.quantity" }, - "4615": { + "4659": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO" }, - "4616": { + "4660": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.id" }, - "4617": { + "4661": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.location_id" }, - "4618": { + "4662": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.inventory_item_id" }, - "4619": { + "4663": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.quantity" }, - "4620": { + "4664": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.line_item_id" }, - "4621": { + "4665": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.description" }, - "4622": { + "4666": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.allow_backorder" }, - "4623": { + "4667": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.created_by" }, - "4624": { + "4668": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.metadata" }, - "4625": { + "4669": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.created_at" }, - "4626": { + "4670": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.updated_at" }, - "4627": { + "4671": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/reservation-item.ts", "qualifiedName": "ReservationItemDTO.deleted_at" }, - "4628": { + "4672": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "FilterableInventoryLevelProps" }, - "4629": { + "4673": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "FilterableInventoryLevelProps.inventory_item_id" }, - "4630": { + "4674": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "FilterableInventoryLevelProps.location_id" }, - "4631": { + "4675": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "FilterableInventoryLevelProps.stocked_quantity" }, - "4632": { + "4676": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "FilterableInventoryLevelProps.reserved_quantity" }, - "4633": { + "4677": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "FilterableInventoryLevelProps.incoming_quantity" }, - "4634": { + "4678": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "4635": { + "4679": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "4636": { + "4680": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO" }, - "4637": { + "4681": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.id" }, - "4638": { + "4682": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.inventory_item_id" }, - "4639": { + "4683": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.location_id" }, - "4640": { + "4684": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.stocked_quantity" }, - "4641": { + "4685": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.reserved_quantity" }, - "4642": { + "4686": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.incoming_quantity" }, - "4643": { + "4687": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.available_quantity" }, - "4644": { + "4688": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.metadata" }, - "4645": { + "4689": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.created_at" }, - "4646": { + "4690": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.updated_at" }, - "4647": { + "4691": { "sourceFileName": "../../../../packages/core/types/src/inventory/common/inventory-level.ts", "qualifiedName": "InventoryLevelDTO.deleted_at" }, - "4648": { + "4692": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput" }, - "4649": { + "4693": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.line_item_id" }, - "4650": { + "4694": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.inventory_item_id" }, - "4651": { + "4695": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.location_id" }, - "4652": { + "4696": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.quantity" }, - "4653": { + "4697": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.allow_backorder" }, - "4654": { + "4698": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.description" }, - "4655": { + "4699": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.created_by" }, - "4656": { + "4700": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.external_id" }, - "4657": { + "4701": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "CreateReservationItemInput.metadata" }, - "4658": { + "4702": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput" }, - "4659": { + "4703": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.sku" }, - "4660": { + "4704": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.origin_country" }, - "4661": { + "4705": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.mid_code" }, - "4662": { + "4706": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.material" }, - "4663": { + "4707": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.weight" }, - "4664": { + "4708": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.length" }, - "4665": { + "4709": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.height" }, - "4666": { + "4710": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.width" }, - "4667": { + "4711": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.title" }, - "4668": { + "4712": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.description" }, - "4669": { + "4713": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.thumbnail" }, - "4670": { + "4714": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.metadata" }, - "4671": { + "4715": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.hs_code" }, - "4672": { + "4716": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "CreateInventoryItemInput.requires_shipping" }, - "4673": { + "4717": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "CreateInventoryLevelInput" }, - "4674": { + "4718": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "CreateInventoryLevelInput.inventory_item_id" }, - "4675": { + "4719": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "CreateInventoryLevelInput.location_id" }, - "4676": { + "4720": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "CreateInventoryLevelInput.stocked_quantity" }, - "4677": { + "4721": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "CreateInventoryLevelInput.incoming_quantity" }, - "4678": { + "4722": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "BulkUpdateInventoryLevelInput" }, - "4679": { + "4723": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "__type.inventory_item_id" }, - "4680": { + "4724": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "__type.location_id" }, - "4681": { + "4725": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "UpdateInventoryLevelInput.id" }, - "4682": { + "4726": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "UpdateInventoryLevelInput.stocked_quantity" }, - "4683": { + "4727": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-level.ts", "qualifiedName": "UpdateInventoryLevelInput.incoming_quantity" }, - "4684": { + "4728": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "UpdateInventoryItemInput" }, - "4685": { + "4729": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "UpdateInventoryItemInput.id" }, - "4686": { + "4730": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "sku" }, - "4687": { + "4731": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "origin_country" }, - "4688": { + "4732": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "mid_code" }, - "4689": { + "4733": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "material" }, - "4690": { + "4734": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "weight" }, - "4691": { + "4735": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "length" }, - "4692": { + "4736": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "height" }, - "4693": { + "4737": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "width" }, - "4694": { + "4738": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "title" }, - "4695": { + "4739": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "description" }, - "4696": { + "4740": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "thumbnail" }, - "4697": { + "4741": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "metadata" }, - "4698": { + "4742": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "hs_code" }, - "4699": { + "4743": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/inventory-item.ts", "qualifiedName": "requires_shipping" }, - "4700": { + "4744": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput" }, - "4701": { + "4745": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput.id" }, - "4702": { + "4746": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput.quantity" }, - "4703": { + "4747": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput.location_id" }, - "4704": { + "4748": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput.description" }, - "4705": { + "4749": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput.allow_backorder" }, - "4706": { + "4750": { "sourceFileName": "../../../../packages/core/types/src/inventory/mutations/reservation-item.ts", "qualifiedName": "UpdateReservationItemInput.metadata" }, - "4707": { + "4751": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "SoftDeleteReturn" }, - "4708": { + "4752": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "4709": { + "4753": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "4710": { + "4754": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RestoreReturn" }, - "4711": { + "4755": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "4712": { + "4756": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "4713": { + "4757": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "4714": { + "4758": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "4715": { + "4759": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "4716": { + "4760": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "4717": { + "4761": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "4718": { + "4762": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "4719": { + "4763": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "4720": { + "4764": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "4721": { + "4765": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "4722": { + "4766": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "4723": { + "4767": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "4724": { + "4768": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "4725": { + "4769": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "4726": { + "4770": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "4727": { + "4771": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "4728": { + "4772": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "4729": { + "4773": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "4730": { + "4774": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "4731": { + "4775": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "4732": { + "4776": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "4733": { + "4777": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "4734": { + "4778": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "4735": { + "4779": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "4736": { + "4780": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "4737": { + "4781": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator" }, - "4738": { + "4782": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.lt" }, - "4739": { + "4783": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.gt" }, - "4740": { + "4784": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.gte" }, - "4741": { + "4785": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.lte" }, - "4742": { + "4786": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.contains" }, - "4743": { + "4787": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.starts_with" }, - "4744": { + "4788": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "StringComparisonOperator.ends_with" }, - "4745": { + "4789": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "4746": { + "4790": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "4747": { + "4791": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "4748": { + "4792": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "4749": { + "4793": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "4750": { + "4794": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "4751": { + "4795": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "4752": { + "4796": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "4753": { + "4797": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "4754": { + "4798": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "4755": { + "4799": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "4756": { + "4800": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "4757": { + "4801": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "4758": { + "4802": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "4759": { + "4803": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "NumericalComparisonOperator" }, - "4760": { + "4804": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "NumericalComparisonOperator.lt" }, - "4761": { + "4805": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "NumericalComparisonOperator.gt" }, - "4762": { + "4806": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "NumericalComparisonOperator.gte" }, - "4763": { + "4807": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "NumericalComparisonOperator.lte" }, - "4764": { + "4808": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "4765": { + "4809": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "4766": { + "4810": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "4767": { + "4811": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "4768": { + "4812": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "OperatorMap" }, - "4769": { + "4813": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "4770": { + "4814": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$and" }, - "4771": { + "4815": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$or" }, - "4772": { + "4816": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$eq" }, - "4773": { + "4817": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ne" }, - "4774": { + "4818": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$in" }, - "4775": { + "4819": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$nin" }, - "4776": { + "4820": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$not" }, - "4777": { + "4821": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gt" }, - "4778": { + "4822": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gte" }, - "4779": { + "4823": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lt" }, - "4780": { + "4824": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lte" }, - "4781": { + "4825": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$like" }, - "4782": { + "4826": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$re" }, - "4783": { + "4827": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ilike" }, - "4784": { + "4828": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$fulltext" }, - "4785": { + "4829": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$overlap" }, - "4786": { + "4830": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contains" }, - "4787": { + "4831": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contained" }, - "4788": { + "4832": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$exists" }, - "4789": { + "4833": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "4790": { + "4834": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "4791": { + "4835": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "4792": { + "4836": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "4793": { + "4837": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "4794": { + "4838": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "4795": { + "4839": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "4796": { + "4840": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "4797": { + "4841": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "4798": { + "4842": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "4799": { + "4843": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "4800": { + "4844": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "4801": { + "4845": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "4802": { + "4846": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "4803": { + "4847": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "4804": { + "4848": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "4805": { + "4849": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "4806": { + "4850": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "4807": { + "4851": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "4808": { + "4852": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "4809": { + "4853": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "4810": { + "4854": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "4811": { + "4855": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "4812": { + "4856": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "4813": { + "4857": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "4814": { + "4858": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "4815": { + "4859": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "4816": { + "4860": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "4817": { + "4861": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "4818": { + "4862": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "4819": { + "4863": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "4820": { + "4864": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "4821": { + "4865": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "4823": { + "4867": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "4824": { + "4868": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "4825": { + "4869": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "4826": { + "4870": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "4827": { + "4871": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "4828": { + "4872": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "4829": { + "4873": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "4830": { + "4874": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "4831": { + "4875": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "4832": { + "4876": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "4833": { + "4877": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Query" }, - "4834": { + "4878": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "4835": { + "4879": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ExpandScalar" }, - "4836": { + "4880": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "4837": { + "4881": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "4838": { + "4882": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "4839": { + "4883": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "4840": { + "4884": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "4841": { + "4885": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "4842": { + "4886": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "4843": { + "4887": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "4844": { + "4888": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "4845": { + "4889": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "4846": { + "4890": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "4847": { + "4891": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "4848": { + "4892": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "4849": { + "4893": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "4850": { + "4894": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "4851": { + "4895": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "4852": { + "4896": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "4853": { + "4897": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "4854": { + "4898": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "4855": { + "4899": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Scalar" }, - "4856": { + "4900": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "4857": { + "4901": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "4858": { + "4902": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "4859": { + "4903": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterQuery" }, - "4860": { + "4904": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "4861": { + "4905": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "4863": { + "4907": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "4864": { + "4908": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Prev" }, - "4865": { + "4909": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue" }, - "4866": { + "4910": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "4867": { + "4911": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "4868": { + "4912": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "4869": { + "4913": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" }, - "4870": { + "4914": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "PrevLimit" }, - "4871": { + "4915": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue2" }, - "4872": { + "4916": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "4873": { + "4917": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Primary" }, - "4874": { + "4918": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "4875": { + "4919": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.[PrimaryKeyType]" }, - "4876": { + "4920": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "4877": { + "4921": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type._id" }, - "4878": { + "4922": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "4879": { + "4923": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.uuid" }, - "4880": { + "4924": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "4881": { + "4925": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.id" }, - "4882": { + "4926": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "4883": { + "4927": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ReadonlyPrimary" }, - "4884": { + "4928": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" } @@ -17016,7 +17016,7 @@ "1": "../../../../packages/core/types/src/inventory/service.ts" }, "reflections": { - "1": 4330 + "1": 4374 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/medusa-config.json b/www/utils/generated/typedoc-json-output/medusa-config.json index 689324d76e75b..8d42590219a3d 100644 --- a/www/utils/generated/typedoc-json-output/medusa-config.json +++ b/www/utils/generated/typedoc-json-output/medusa-config.json @@ -1,12 +1,12 @@ { - "id": 13476, + "id": 13477, "name": "medusa-config", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 13477, + "id": 13478, "name": "AdminOptions", "variant": "declaration", "kind": 256, @@ -21,7 +21,7 @@ }, "children": [ { - "id": 13478, + "id": 13479, "name": "disable", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ } }, { - "id": 13479, + "id": 13480, "name": "path", "variant": "declaration", "kind": 1024, @@ -124,7 +124,7 @@ } }, { - "id": 13480, + "id": 13481, "name": "outDir", "variant": "declaration", "kind": 1024, @@ -153,7 +153,7 @@ } }, { - "id": 13481, + "id": 13482, "name": "backendUrl", "variant": "declaration", "kind": 1024, @@ -174,7 +174,7 @@ } }, { - "id": 13482, + "id": 13483, "name": "vite", "variant": "declaration", "kind": 1024, @@ -200,21 +200,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13483, + "id": 13484, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 13484, + "id": 13485, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13485, + "id": 13486, "name": "config", "variant": "param", "kind": 32768, @@ -249,17 +249,17 @@ { "title": "Properties", "children": [ - 13478, 13479, 13480, 13481, - 13482 + 13482, + 13483 ] } ] }, { - "id": 13486, + "id": 13487, "name": "HttpCompressionOptions", "variant": "declaration", "kind": 256, @@ -274,7 +274,7 @@ }, "children": [ { - "id": 13487, + "id": 13488, "name": "enabled", "variant": "declaration", "kind": 1024, @@ -303,7 +303,7 @@ } }, { - "id": 13488, + "id": 13489, "name": "level", "variant": "declaration", "kind": 1024, @@ -332,7 +332,7 @@ } }, { - "id": 13489, + "id": 13490, "name": "memLevel", "variant": "declaration", "kind": 1024, @@ -361,7 +361,7 @@ } }, { - "id": 13490, + "id": 13491, "name": "threshold", "variant": "declaration", "kind": 1024, @@ -403,16 +403,16 @@ { "title": "Properties", "children": [ - 13487, 13488, 13489, - 13490 + 13490, + 13491 ] } ] }, { - "id": 13491, + "id": 13492, "name": "ProjectConfigOptions", "variant": "declaration", "kind": 256, @@ -427,7 +427,7 @@ }, "children": [ { - "id": 13492, + "id": 13493, "name": "databaseName", "variant": "declaration", "kind": 1024, @@ -455,7 +455,7 @@ "content": [ { "kind": "code", - "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n databaseName: process.env.DATABASE_NAME || \n \"medusa-store\",\n // ...\n },\n // ...\n})\n```" + "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n databaseName: process.env.DATABASE_NAME ||\n \"medusa-store\",\n // ...\n },\n // ...\n})\n```" } ] } @@ -467,7 +467,7 @@ } }, { - "id": 13493, + "id": 13494, "name": "databaseUrl", "variant": "declaration", "kind": 1024, @@ -607,7 +607,7 @@ } }, { - "id": 13494, + "id": 13495, "name": "databaseSchema", "variant": "declaration", "kind": 1024, @@ -640,7 +640,7 @@ } }, { - "id": 13495, + "id": 13496, "name": "databaseLogging", "variant": "declaration", "kind": 1024, @@ -749,165 +749,7 @@ } }, { - "id": 13497, - "name": "databaseExtra", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An object that includes additional configurations to pass to the database connection. You can pass any configuration. One defined configuration to pass is\n" - }, - { - "kind": "code", - "text": "`ssl`" - }, - { - "kind": "text", - "text": " which enables support for TLS/SSL connections.\n\nThis is useful for production databases, which can be supported by setting the " - }, - { - "kind": "code", - "text": "`rejectUnauthorized`" - }, - { - "kind": "text", - "text": " attribute of " - }, - { - "kind": "code", - "text": "`ssl`" - }, - { - "kind": "text", - "text": " object to " - }, - { - "kind": "code", - "text": "`false`" - }, - { - "kind": "text", - "text": ".\nDuring development, it’s recommended not to pass this option." - } - ], - "blockTags": [ - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n databaseExtra: process.env.NODE_ENV !== \"development\" ?\n { ssl: { rejectUnauthorized: false } } : {}\n // ...\n },\n // ...\n})\n```" - } - ] - } - ] - }, - "type": { - "type": "intersection", - "types": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" - }, - { - "type": "reflection", - "declaration": { - "id": 13498, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 13499, - "name": "ssl", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Configure support for TLS/SSL connection" - } - ] - }, - "type": { - "type": "reflection", - "declaration": { - "id": 13500, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 13501, - "name": "rejectUnauthorized", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Whether to fail connection if the server certificate is verified against the list of supplied CAs and the hostname and no match is found." - } - ] - }, - "type": { - "type": "literal", - "value": false - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 13501 - ] - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 13499 - ] - } - ] - } - } - ] - } - }, - { - "id": 13502, + "id": 13498, "name": "databaseDriverOptions", "variant": "declaration", "kind": 1024, @@ -990,14 +832,14 @@ { "type": "reflection", "declaration": { - "id": 13503, + "id": 13499, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13504, + "id": 13500, "name": "connection", "variant": "declaration", "kind": 1024, @@ -1007,14 +849,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13505, + "id": 13501, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13506, + "id": 13502, "name": "ssl", "variant": "declaration", "kind": 1024, @@ -1032,14 +874,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13507, + "id": 13503, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13508, + "id": 13504, "name": "rejectUnauthorized", "variant": "declaration", "kind": 1024, @@ -1064,7 +906,7 @@ { "title": "Properties", "children": [ - 13508 + 13504 ] } ] @@ -1076,7 +918,7 @@ { "title": "Properties", "children": [ - 13506 + 13502 ] } ] @@ -1088,7 +930,7 @@ { "title": "Properties", "children": [ - 13504 + 13500 ] } ] @@ -1098,7 +940,7 @@ } }, { - "id": 13509, + "id": 13505, "name": "redisUrl", "variant": "declaration", "kind": 1024, @@ -1134,7 +976,7 @@ "content": [ { "kind": "code", - "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n redisUrl: process.env.REDIS_URL || \n \"redis://localhost:6379\",\n // ...\n },\n // ...\n})\n```" + "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n redisUrl: process.env.REDIS_URL ||\n \"redis://localhost:6379\",\n // ...\n },\n // ...\n})\n```" } ] } @@ -1146,7 +988,7 @@ } }, { - "id": 13510, + "id": 13506, "name": "redisPrefix", "variant": "declaration", "kind": 1024, @@ -1194,7 +1036,7 @@ } }, { - "id": 13511, + "id": 13507, "name": "redisOptions", "variant": "declaration", "kind": 1024, @@ -1214,7 +1056,7 @@ "content": [ { "kind": "code", - "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n redisOptions: {\n connectionName: process.env.REDIS_CONNECTION_NAME || \n \"medusa\",\n }\n // ...\n },\n // ...\n})\n```" + "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n projectConfig: {\n redisOptions: {\n connectionName: process.env.REDIS_CONNECTION_NAME ||\n \"medusa\",\n }\n // ...\n },\n // ...\n})\n```" } ] } @@ -1231,7 +1073,7 @@ } }, { - "id": 13512, + "id": 13508, "name": "sessionOptions", "variant": "declaration", "kind": 1024, @@ -1268,7 +1110,7 @@ } }, { - "id": 13514, + "id": 13510, "name": "jobsBatchSize", "variant": "declaration", "kind": 1024, @@ -1308,7 +1150,7 @@ } }, { - "id": 13515, + "id": 13511, "name": "workerMode", "variant": "declaration", "kind": 1024, @@ -1385,7 +1227,7 @@ } }, { - "id": 13516, + "id": 13512, "name": "http", "variant": "declaration", "kind": 1024, @@ -1412,14 +1254,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13517, + "id": 13513, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13518, + "id": 13514, "name": "jwtSecret", "variant": "declaration", "kind": 1024, @@ -1459,7 +1301,7 @@ } }, { - "id": 13519, + "id": 13515, "name": "jwtExpiresIn", "variant": "declaration", "kind": 1024, @@ -1499,7 +1341,7 @@ } }, { - "id": 13520, + "id": 13516, "name": "cookieSecret", "variant": "declaration", "kind": 1024, @@ -1539,7 +1381,7 @@ } }, { - "id": 13521, + "id": 13517, "name": "authCors", "variant": "declaration", "kind": 1024, @@ -1653,7 +1495,7 @@ } }, { - "id": 13522, + "id": 13518, "name": "compression", "variant": "declaration", "kind": 1024, @@ -1689,13 +1531,13 @@ }, "type": { "type": "reference", - "target": 13486, + "target": 13487, "name": "HttpCompressionOptions", "package": "@medusajs/types" } }, { - "id": 13523, + "id": 13519, "name": "storeCors", "variant": "declaration", "kind": 1024, @@ -1801,7 +1643,7 @@ } }, { - "id": 13524, + "id": 13520, "name": "adminCors", "variant": "declaration", "kind": 1024, @@ -1907,7 +1749,7 @@ } }, { - "id": 13525, + "id": 13521, "name": "authMethodsPerActor", "variant": "declaration", "kind": 1024, @@ -1997,14 +1839,14 @@ { "title": "Properties", "children": [ + 13514, + 13515, + 13516, + 13517, 13518, 13519, 13520, - 13521, - 13522, - 13523, - 13524, - 13525 + 13521 ] } ] @@ -2016,25 +1858,24 @@ { "title": "Properties", "children": [ - 13492, 13493, 13494, 13495, - 13497, - 13502, - 13509, + 13496, + 13498, + 13505, + 13506, + 13507, + 13508, 13510, 13511, - 13512, - 13514, - 13515, - 13516 + 13512 ] } ] }, { - "id": 13526, + "id": 13522, "name": "ConfigModule", "variant": "declaration", "kind": 256, @@ -2065,7 +1906,7 @@ "kind": "inline-tag", "tag": "@link", "text": "projectConfig", - "target": 13527, + "target": 13523, "tsLinkText": "projectConfig" }, { @@ -2076,7 +1917,7 @@ "kind": "inline-tag", "tag": "@link", "text": "admin", - "target": 13528, + "target": 13524, "tsLinkText": "admin" }, { @@ -2101,7 +1942,7 @@ "kind": "inline-tag", "tag": "@link", "text": "modules", - "target": 13533, + "target": 13529, "tsLinkText": "modules" }, { @@ -2112,7 +1953,7 @@ "kind": "inline-tag", "tag": "@link", "text": "featureFlags", - "target": 13534, + "target": 13530, "tsLinkText": "featureFlags" }, { @@ -2147,7 +1988,7 @@ }, "children": [ { - "id": 13527, + "id": 13523, "name": "projectConfig", "variant": "declaration", "kind": 1024, @@ -2162,13 +2003,13 @@ }, "type": { "type": "reference", - "target": 13491, + "target": 13492, "name": "ProjectConfigOptions", "package": "@medusajs/types" } }, { - "id": 13528, + "id": 13524, "name": "admin", "variant": "declaration", "kind": 1024, @@ -2188,7 +2029,7 @@ "content": [ { "kind": "code", - "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n admin: {\n backendUrl: process.env.MEDUSA_BACKEND_URL || \n \"http://localhost:9000\"\n },\n // ...\n})\n```" + "text": "```js title=\"medusa-config.js\"\nmodule.exports = defineConfig({\n admin: {\n backendUrl: process.env.MEDUSA_BACKEND_URL ||\n \"http://localhost:9000\"\n },\n // ...\n})\n```" } ] } @@ -2196,13 +2037,13 @@ }, "type": { "type": "reference", - "target": 13477, + "target": 13478, "name": "AdminOptions", "package": "@medusajs/types" } }, { - "id": 13533, + "id": 13529, "name": "modules", "variant": "declaration", "kind": 1024, @@ -2344,7 +2185,7 @@ } }, { - "id": 13534, + "id": 13530, "name": "featureFlags", "variant": "declaration", "kind": 1024, @@ -2422,16 +2263,16 @@ { "title": "Properties", "children": [ - 13527, - 13528, - 13533, - 13534 + 13523, + 13524, + 13529, + 13530 ] } ] }, { - "id": 13535, + "id": 13531, "name": "PluginDetails", "variant": "declaration", "kind": 2097152, @@ -2439,14 +2280,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13536, + "id": 13532, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13537, + "id": 13533, "name": "resolve", "variant": "declaration", "kind": 1024, @@ -2457,7 +2298,7 @@ } }, { - "id": 13538, + "id": 13534, "name": "name", "variant": "declaration", "kind": 1024, @@ -2468,7 +2309,7 @@ } }, { - "id": 13539, + "id": 13535, "name": "id", "variant": "declaration", "kind": 1024, @@ -2479,7 +2320,7 @@ } }, { - "id": 13540, + "id": 13536, "name": "options", "variant": "declaration", "kind": 1024, @@ -2505,7 +2346,7 @@ } }, { - "id": 13541, + "id": 13537, "name": "version", "variant": "declaration", "kind": 1024, @@ -2520,11 +2361,11 @@ { "title": "Properties", "children": [ - 13537, - 13538, - 13539, - 13540, - 13541 + 13533, + 13534, + 13535, + 13536, + 13537 ] } ] @@ -2536,52 +2377,48 @@ { "title": "Interfaces", "children": [ - 13477, - 13486, - 13491, - 13526 + 13478, + 13487, + 13492, + 13522 ] }, { "title": "Type Aliases", "children": [ - 13535 + 13531 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "13476": { - "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "" - }, "13477": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "AdminOptions" + "qualifiedName": "" }, "13478": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.disable" + "qualifiedName": "AdminOptions" }, "13479": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.path" + "qualifiedName": "__type.disable" }, "13480": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.outDir" + "qualifiedName": "__type.path" }, "13481": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.backendUrl" + "qualifiedName": "__type.outDir" }, "13482": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.vite" + "qualifiedName": "__type.backendUrl" }, "13483": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.vite" }, "13484": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", @@ -2589,205 +2426,189 @@ }, "13485": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "config" + "qualifiedName": "__type" }, "13486": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "HttpCompressionOptions" + "qualifiedName": "config" }, "13487": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.enabled" + "qualifiedName": "HttpCompressionOptions" }, "13488": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.level" + "qualifiedName": "__type.enabled" }, "13489": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.memLevel" + "qualifiedName": "__type.level" }, "13490": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.threshold" + "qualifiedName": "__type.memLevel" }, "13491": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "ProjectConfigOptions" + "qualifiedName": "__type.threshold" }, "13492": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.databaseName" + "qualifiedName": "ProjectConfigOptions" }, "13493": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.databaseUrl" + "qualifiedName": "__type.databaseName" }, "13494": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.databaseSchema" + "qualifiedName": "__type.databaseUrl" }, "13495": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.databaseLogging" + "qualifiedName": "__type.databaseSchema" }, - "13497": { + "13496": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.databaseExtra" + "qualifiedName": "__type.databaseLogging" }, "13498": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.databaseDriverOptions" }, "13499": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.ssl" + "qualifiedName": "__type" }, "13500": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type" + "qualifiedName": "__type.connection" }, "13501": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.rejectUnauthorized" + "qualifiedName": "__type" }, "13502": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.databaseDriverOptions" + "qualifiedName": "__type.ssl" }, "13503": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type" }, "13504": { - "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.connection" - }, - "13505": { - "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type" - }, - "13506": { - "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type.ssl" - }, - "13507": { - "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", - "qualifiedName": "__type" - }, - "13508": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.rejectUnauthorized" }, - "13509": { + "13505": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.redisUrl" }, - "13510": { + "13506": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.redisPrefix" }, - "13511": { + "13507": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.redisOptions" }, - "13512": { + "13508": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.sessionOptions" }, - "13514": { + "13510": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.jobsBatchSize" }, - "13515": { + "13511": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.workerMode" }, - "13516": { + "13512": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.http" }, - "13517": { + "13513": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type" }, - "13518": { + "13514": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.jwtSecret" }, - "13519": { + "13515": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.jwtExpiresIn" }, - "13520": { + "13516": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.cookieSecret" }, - "13521": { + "13517": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.authCors" }, - "13522": { + "13518": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.compression" }, - "13523": { + "13519": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.storeCors" }, - "13524": { + "13520": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.adminCors" }, - "13525": { + "13521": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.authMethodsPerActor" }, - "13526": { + "13522": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "ConfigModule" }, - "13527": { + "13523": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.projectConfig" }, - "13528": { + "13524": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.admin" }, - "13533": { + "13529": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.modules" }, - "13534": { + "13530": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.featureFlags" }, - "13535": { + "13531": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "PluginDetails" }, - "13536": { + "13532": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type" }, - "13537": { + "13533": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.resolve" }, - "13538": { + "13534": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.name" }, - "13539": { + "13535": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.id" }, - "13540": { + "13536": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.options" }, - "13541": { + "13537": { "sourceFileName": "../../../../packages/core/types/src/common/config-module.ts", "qualifiedName": "__type.version" } @@ -2797,7 +2618,7 @@ "1": "../../../../packages/core/types/src/common/config-module.ts" }, "reflections": { - "1": 13476 + "1": 13477 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/order-models.json b/www/utils/generated/typedoc-json-output/order-models.json index 1c52ffe63f3da..4afdc569c44eb 100644 --- a/www/utils/generated/typedoc-json-output/order-models.json +++ b/www/utils/generated/typedoc-json-output/order-models.json @@ -1,5 +1,5 @@ { - "id": 6862, + "id": 7229, "name": "order-models", "variant": "project", "kind": 1, @@ -11,35 +11,35 @@ "kind": "text" }, { - "text": "```mermaid\nerDiagram\n\tOrderClaim }|--|{ Order : order\n\tOrderClaim ||--|| Return : return\n\tOrderClaim ||--|| ClaimItem : additional_items\n\tOrderClaim ||--|| OrderShippingMethod : shipping_methods\n\tOrderClaim ||--|| Transaction : transactions\n\tClaimItem ||--|| ClaimItemImage : images\n\tClaimItem }|--|{ LineItem : item\n\tOrderExchange }|--|{ Order : order\n\tOrderExchange ||--|| Return : return\n\tOrderExchange ||--|| ExchangeItem : additional_items\n\tOrderExchange ||--|| OrderShippingMethod : shipping_methods\n\tOrderExchange ||--|| Transaction : transactions\n\tExchangeItem }|--|{ LineItem : item\n\tLineItem ||--|| LineItemTaxLine : tax_lines\n\tLineItem ||--|| LineItemAdjustment : adjustments\n\tOrder }|--|{ Address : shipping_address\n\tOrder ||--|| OrderSummary : summary\n\tOrder ||--|| OrderItem : items\n\tOrder ||--|| OrderShippingMethod : shipping_methods\n\tOrder ||--|| Transaction : transactions\n\tOrderChange }|--|{ Order : order\n\tOrderChange }|--|{ Return : return\n\tOrderChange }|--|{ OrderClaim : claim\n\tOrderChange }|--|{ OrderExchange : exchange\n\tOrderChange ||--|| OrderChangeAction : actions\n\tOrderChangeAction }|--|{ Order : order\n\tOrderChangeAction }|--|{ Return : return\n\tOrderChangeAction }|--|{ OrderClaim : claim\n\tOrderChangeAction }|--|{ OrderExchange : exchange\n\tOrderItem }|--|{ LineItem : item\n\tOrderShippingMethod }|--|{ Return : return\n\tOrderShippingMethod }|--|{ ShippingMethod : shipping_method\n\tReturn }|--|{ Order : order\n\tReturn ||--|| OrderItem : items\n\tReturn ||--|| Transaction : transactions\n\tReturnItem }|--|{ ReturnReason : reason\n\tReturnItem }|--|{ Return : return\n\tReturnItem }|--|{ LineItem : item\n\tReturnReason }|--|{ ReturnReason : parent_return_reason\n\tShippingMethod ||--|| ShippingMethodTaxLine : tax_lines\n\tShippingMethod ||--|| ShippingMethodAdjustment : adjustments\n\n```", + "text": "```mermaid\nerDiagram\n\tOrderClaim }|--|{ Order : order\n\tOrderClaim ||--|| Return : return\n\tOrderClaim ||--|| ClaimItem : additional_items\n\tOrderClaim ||--|| OrderShippingMethod : shipping_methods\n\tOrderClaim ||--|| Transaction : transactions\n\tClaimItem ||--|| ClaimItemImage : images\n\tClaimItem }|--|{ LineItem : item\n\tOrderExchange }|--|{ Order : order\n\tOrderExchange ||--|| Return : return\n\tOrderExchange ||--|| ExchangeItem : additional_items\n\tOrderExchange ||--|| OrderShippingMethod : shipping_methods\n\tOrderExchange ||--|| Transaction : transactions\n\tExchangeItem }|--|{ LineItem : item\n\tLineItem ||--|| LineItemTaxLine : tax_lines\n\tLineItem ||--|| LineItemAdjustment : adjustments\n\tOrder }|--|{ Address : shipping_address\n\tOrder ||--|| OrderSummary : summary\n\tOrder ||--|| OrderItem : items\n\tOrder ||--|| OrderShippingMethod : shipping_methods\n\tOrder ||--|| Transaction : transactions\n\tOrderChange }|--|{ Order : order\n\tOrderChange }|--|{ Return : return\n\tOrderChange }|--|{ OrderClaim : claim\n\tOrderChange }|--|{ OrderExchange : exchange\n\tOrderChange ||--|| OrderChangeAction : actions\n\tOrderChangeAction }|--|{ Order : order\n\tOrderChangeAction }|--|{ Return : return\n\tOrderChangeAction }|--|{ OrderClaim : claim\n\tOrderChangeAction }|--|{ OrderExchange : exchange\n\tOrderItem }|--|{ LineItem : item\n\tOrderShippingMethod }|--|{ Return : return\n\tOrderShippingMethod }|--|{ ShippingMethod : shipping_method\n\tReturn }|--|{ Order : order\n\tReturn ||--|| ReturnItem : items\n\tReturn ||--|| Transaction : transactions\n\tReturnItem }|--|{ ReturnReason : reason\n\tReturnItem }|--|{ LineItem : item\n\tReturnReason }|--|{ ReturnReason : parent_return_reason\n\tShippingMethod ||--|| ShippingMethodTaxLine : tax_lines\n\tShippingMethod ||--|| ShippingMethodAdjustment : adjustments\n\n```", "kind": "code" } ] }, "children": [ { - "id": 6863, + "id": 7230, "name": "Address", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 6864, + "id": 7231, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 6865, + "id": 7232, "name": "new Address", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 6863, + "target": 7230, "name": "Address", "package": "@medusajs/order", "qualifiedName": "default" @@ -48,7 +48,7 @@ ] }, { - "id": 6885, + "id": 7252, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -57,14 +57,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 6866, + "id": 7233, "name": "id", "variant": "declaration", "kind": 1024, @@ -75,7 +75,7 @@ } }, { - "id": 6867, + "id": 7234, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -96,7 +96,7 @@ "defaultValue": "null" }, { - "id": 6868, + "id": 7235, "name": "company", "variant": "declaration", "kind": 1024, @@ -117,7 +117,7 @@ "defaultValue": "null" }, { - "id": 6869, + "id": 7236, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -138,7 +138,7 @@ "defaultValue": "null" }, { - "id": 6870, + "id": 7237, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -159,7 +159,7 @@ "defaultValue": "null" }, { - "id": 6871, + "id": 7238, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -180,7 +180,7 @@ "defaultValue": "null" }, { - "id": 6872, + "id": 7239, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -201,7 +201,7 @@ "defaultValue": "null" }, { - "id": 6873, + "id": 7240, "name": "city", "variant": "declaration", "kind": 1024, @@ -222,7 +222,7 @@ "defaultValue": "null" }, { - "id": 6874, + "id": 7241, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -243,7 +243,7 @@ "defaultValue": "null" }, { - "id": 6875, + "id": 7242, "name": "province", "variant": "declaration", "kind": 1024, @@ -264,7 +264,7 @@ "defaultValue": "null" }, { - "id": 6876, + "id": 7243, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -285,7 +285,7 @@ "defaultValue": "null" }, { - "id": 6877, + "id": 7244, "name": "phone", "variant": "declaration", "kind": 1024, @@ -306,7 +306,7 @@ "defaultValue": "null" }, { - "id": 6878, + "id": 7245, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -342,7 +342,7 @@ "defaultValue": "null" }, { - "id": 6879, + "id": 7246, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -358,7 +358,7 @@ } }, { - "id": 6880, + "id": 7247, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -374,14 +374,14 @@ } }, { - "id": 6881, + "id": 7248, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6882, + "id": 7249, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -394,14 +394,14 @@ ] }, { - "id": 6883, + "id": 7250, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6884, + "id": 7251, "name": "onInit", "variant": "signature", "kind": 4096, @@ -418,62 +418,62 @@ { "title": "Constructors", "children": [ - 6864 + 7231 ] }, { "title": "Properties", "children": [ - 6885, - 6866, - 6867, - 6868, - 6869, - 6870, - 6871, - 6872, - 6873, - 6874, - 6875, - 6876, - 6877, - 6878, - 6879, - 6880 + 7252, + 7233, + 7234, + 7235, + 7236, + 7237, + 7238, + 7239, + 7240, + 7241, + 7242, + 7243, + 7244, + 7245, + 7246, + 7247 ] }, { "title": "Methods", "children": [ - 6881, - 6883 + 7248, + 7250 ] } ] }, { - "id": 6937, + "id": 7304, "name": "ClaimItemImage", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 6938, + "id": 7305, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 6939, + "id": 7306, "name": "new ClaimItemImage", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 6937, + "target": 7304, "name": "ClaimItemImage", "package": "@medusajs/order", "qualifiedName": "default" @@ -482,7 +482,7 @@ ] }, { - "id": 6952, + "id": 7319, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -493,14 +493,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 6940, + "id": 7307, "name": "id", "variant": "declaration", "kind": 1024, @@ -511,7 +511,7 @@ } }, { - "id": 6941, + "id": 7308, "name": "claim_item_id", "variant": "declaration", "kind": 1024, @@ -522,21 +522,21 @@ } }, { - "id": 6942, + "id": 7309, "name": "item", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6914, + "target": 7281, "name": "OrderClaimItem", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 6943, + "id": 7310, "name": "url", "variant": "declaration", "kind": 1024, @@ -547,7 +547,7 @@ } }, { - "id": 6944, + "id": 7311, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -583,7 +583,7 @@ "defaultValue": "null" }, { - "id": 6945, + "id": 7312, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -599,7 +599,7 @@ } }, { - "id": 6946, + "id": 7313, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -615,7 +615,7 @@ } }, { - "id": 6947, + "id": 7314, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -641,14 +641,14 @@ "defaultValue": "null" }, { - "id": 6948, + "id": 7315, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6949, + "id": 7316, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -661,14 +661,14 @@ ] }, { - "id": 6950, + "id": 7317, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6951, + "id": 7318, "name": "onInit", "variant": "signature", "kind": 4096, @@ -685,55 +685,55 @@ { "title": "Constructors", "children": [ - 6938 + 7305 ] }, { "title": "Properties", "children": [ - 6952, - 6940, - 6941, - 6942, - 6943, - 6944, - 6945, - 6946, - 6947 + 7319, + 7307, + 7308, + 7309, + 7310, + 7311, + 7312, + 7313, + 7314 ] }, { "title": "Methods", "children": [ - 6948, - 6950 + 7315, + 7317 ] } ] }, { - "id": 6914, + "id": 7281, "name": "ClaimItem", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 6915, + "id": 7282, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 6916, + "id": 7283, "name": "new ClaimItem", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 6914, + "target": 7281, "name": "OrderClaimItem", "package": "@medusajs/order", "qualifiedName": "default" @@ -742,7 +742,7 @@ ] }, { - "id": 6936, + "id": 7303, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -753,14 +753,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 6917, + "id": 7284, "name": "id", "variant": "declaration", "kind": 1024, @@ -771,7 +771,7 @@ } }, { - "id": 6918, + "id": 7285, "name": "images", "variant": "declaration", "kind": 1024, @@ -785,7 +785,7 @@ "typeArguments": [ { "type": "reference", - "target": 6937, + "target": 7304, "name": "ClaimItemImage", "package": "@medusajs/order", "qualifiedName": "default" @@ -801,7 +801,7 @@ "defaultValue": "..." }, { - "id": 6919, + "id": 7286, "name": "reason", "variant": "declaration", "kind": 1024, @@ -827,7 +827,7 @@ "defaultValue": "null" }, { - "id": 6920, + "id": 7287, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -852,7 +852,7 @@ } }, { - "id": 6921, + "id": 7288, "name": "raw_quantity", "variant": "declaration", "kind": 1024, @@ -868,7 +868,7 @@ } }, { - "id": 6922, + "id": 7289, "name": "claim_id", "variant": "declaration", "kind": 1024, @@ -879,21 +879,21 @@ } }, { - "id": 6923, + "id": 7290, "name": "claim", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6886, + "target": 7253, "name": "OrderClaim", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 6924, + "id": 7291, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -904,21 +904,21 @@ } }, { - "id": 6925, + "id": 7292, "name": "item", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7000, + "target": 7367, "name": "LineItem", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 6926, + "id": 7293, "name": "is_additional_item", "variant": "declaration", "kind": 1024, @@ -930,7 +930,7 @@ "defaultValue": "false" }, { - "id": 6927, + "id": 7294, "name": "note", "variant": "declaration", "kind": 1024, @@ -941,7 +941,7 @@ } }, { - "id": 6928, + "id": 7295, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -977,7 +977,7 @@ "defaultValue": "null" }, { - "id": 6929, + "id": 7296, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -993,7 +993,7 @@ } }, { - "id": 6930, + "id": 7297, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1009,7 +1009,7 @@ } }, { - "id": 6931, + "id": 7298, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1035,14 +1035,14 @@ "defaultValue": "null" }, { - "id": 6932, + "id": 7299, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6933, + "id": 7300, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1055,14 +1055,14 @@ ] }, { - "id": 6934, + "id": 7301, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6935, + "id": 7302, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1079,62 +1079,62 @@ { "title": "Constructors", "children": [ - 6915 + 7282 ] }, { "title": "Properties", "children": [ - 6936, - 6917, - 6918, - 6919, - 6920, - 6921, - 6922, - 6923, - 6924, - 6925, - 6926, - 6927, - 6928, - 6929, - 6930, - 6931 + 7303, + 7284, + 7285, + 7286, + 7287, + 7288, + 7289, + 7290, + 7291, + 7292, + 7293, + 7294, + 7295, + 7296, + 7297, + 7298 ] }, { "title": "Methods", "children": [ - 6932, - 6934 + 7299, + 7301 ] } ] }, { - "id": 6886, + "id": 7253, "name": "OrderClaim", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 6887, + "id": 7254, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 6888, + "id": 7255, "name": "new OrderClaim", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 6886, + "target": 7253, "name": "OrderClaim", "package": "@medusajs/order", "qualifiedName": "default" @@ -1143,7 +1143,7 @@ ] }, { - "id": 6913, + "id": 7280, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -1154,14 +1154,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 6889, + "id": 7256, "name": "id", "variant": "declaration", "kind": 1024, @@ -1172,7 +1172,7 @@ } }, { - "id": 6890, + "id": 7257, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -1183,35 +1183,35 @@ } }, { - "id": 6891, + "id": 7258, "name": "order", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7073, + "target": 7440, "name": "Order", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 6892, + "id": 7259, "name": "return", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7244, + "target": 7611, "name": "Return", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 6893, + "id": 7260, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -1232,7 +1232,7 @@ "defaultValue": "null" }, { - "id": 6894, + "id": 7261, "name": "order_version", "variant": "declaration", "kind": 1024, @@ -1243,7 +1243,7 @@ } }, { - "id": 6895, + "id": 7262, "name": "display_id", "variant": "declaration", "kind": 1024, @@ -1254,7 +1254,7 @@ } }, { - "id": 6896, + "id": 7263, "name": "type", "variant": "declaration", "kind": 1024, @@ -1270,7 +1270,7 @@ } }, { - "id": 6897, + "id": 7264, "name": "no_notification", "variant": "declaration", "kind": 1024, @@ -1291,7 +1291,7 @@ "defaultValue": "null" }, { - "id": 6898, + "id": 7265, "name": "refund_amount", "variant": "declaration", "kind": 1024, @@ -1316,7 +1316,7 @@ } }, { - "id": 6899, + "id": 7266, "name": "raw_refund_amount", "variant": "declaration", "kind": 1024, @@ -1332,7 +1332,7 @@ } }, { - "id": 6900, + "id": 7267, "name": "additional_items", "variant": "declaration", "kind": 1024, @@ -1346,7 +1346,7 @@ "typeArguments": [ { "type": "reference", - "target": 6914, + "target": 7281, "name": "OrderClaimItem", "package": "@medusajs/order", "qualifiedName": "default" @@ -1362,7 +1362,7 @@ "defaultValue": "..." }, { - "id": 6901, + "id": 7268, "name": "claim_items", "variant": "declaration", "kind": 1024, @@ -1376,7 +1376,7 @@ "typeArguments": [ { "type": "reference", - "target": 6914, + "target": 7281, "name": "OrderClaimItem", "package": "@medusajs/order", "qualifiedName": "default" @@ -1392,7 +1392,7 @@ "defaultValue": "..." }, { - "id": 6902, + "id": 7269, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -1406,7 +1406,7 @@ "typeArguments": [ { "type": "reference", - "target": 7206, + "target": 7573, "name": "OrderShippingMethod", "package": "@medusajs/order", "qualifiedName": "default" @@ -1422,7 +1422,7 @@ "defaultValue": "..." }, { - "id": 6903, + "id": 7270, "name": "transactions", "variant": "declaration", "kind": 1024, @@ -1436,7 +1436,7 @@ "typeArguments": [ { "type": "reference", - "target": 7374, + "target": 7741, "name": "Transaction", "package": "@medusajs/order", "qualifiedName": "default" @@ -1452,7 +1452,7 @@ "defaultValue": "..." }, { - "id": 6904, + "id": 7271, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1488,7 +1488,7 @@ "defaultValue": "null" }, { - "id": 6905, + "id": 7272, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1504,7 +1504,7 @@ } }, { - "id": 6906, + "id": 7273, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1520,7 +1520,7 @@ } }, { - "id": 6907, + "id": 7274, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1546,7 +1546,7 @@ "defaultValue": "null" }, { - "id": 6908, + "id": 7275, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -1572,14 +1572,14 @@ "defaultValue": "null" }, { - "id": 6909, + "id": 7276, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6910, + "id": 7277, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1592,14 +1592,14 @@ ] }, { - "id": 6911, + "id": 7278, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6912, + "id": 7279, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1616,67 +1616,67 @@ { "title": "Constructors", "children": [ - 6887 + 7254 ] }, { "title": "Properties", "children": [ - 6913, - 6889, - 6890, - 6891, - 6892, - 6893, - 6894, - 6895, - 6896, - 6897, - 6898, - 6899, - 6900, - 6901, - 6902, - 6903, - 6904, - 6905, - 6906, - 6907, - 6908 + 7280, + 7256, + 7257, + 7258, + 7259, + 7260, + 7261, + 7262, + 7263, + 7264, + 7265, + 7266, + 7267, + 7268, + 7269, + 7270, + 7271, + 7272, + 7273, + 7274, + 7275 ] }, { "title": "Methods", "children": [ - 6909, - 6911 + 7276, + 7278 ] } ] }, { - "id": 6980, + "id": 7347, "name": "ExchangeItem", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 6981, + "id": 7348, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 6982, + "id": 7349, "name": "new ExchangeItem", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 6980, + "target": 7347, "name": "OrderExchangeItem", "package": "@medusajs/order", "qualifiedName": "default" @@ -1685,7 +1685,7 @@ ] }, { - "id": 6999, + "id": 7366, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -1696,14 +1696,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 6983, + "id": 7350, "name": "id", "variant": "declaration", "kind": 1024, @@ -1714,7 +1714,7 @@ } }, { - "id": 6984, + "id": 7351, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -1739,7 +1739,7 @@ } }, { - "id": 6985, + "id": 7352, "name": "raw_quantity", "variant": "declaration", "kind": 1024, @@ -1755,7 +1755,7 @@ } }, { - "id": 6986, + "id": 7353, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -1766,21 +1766,21 @@ } }, { - "id": 6987, + "id": 7354, "name": "exchange", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6953, + "target": 7320, "name": "OrderExchange", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 6988, + "id": 7355, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -1791,21 +1791,21 @@ } }, { - "id": 6989, + "id": 7356, "name": "item", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7000, + "target": 7367, "name": "LineItem", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 6990, + "id": 7357, "name": "note", "variant": "declaration", "kind": 1024, @@ -1816,7 +1816,7 @@ } }, { - "id": 6991, + "id": 7358, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1852,7 +1852,7 @@ "defaultValue": "null" }, { - "id": 6992, + "id": 7359, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1868,7 +1868,7 @@ } }, { - "id": 6993, + "id": 7360, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1884,7 +1884,7 @@ } }, { - "id": 6994, + "id": 7361, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1910,14 +1910,14 @@ "defaultValue": "null" }, { - "id": 6995, + "id": 7362, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6996, + "id": 7363, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1930,14 +1930,14 @@ ] }, { - "id": 6997, + "id": 7364, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6998, + "id": 7365, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1954,59 +1954,59 @@ { "title": "Constructors", "children": [ - 6981 + 7348 ] }, { "title": "Properties", "children": [ - 6999, - 6983, - 6984, - 6985, - 6986, - 6987, - 6988, - 6989, - 6990, - 6991, - 6992, - 6993, - 6994 + 7366, + 7350, + 7351, + 7352, + 7353, + 7354, + 7355, + 7356, + 7357, + 7358, + 7359, + 7360, + 7361 ] }, { "title": "Methods", "children": [ - 6995, - 6997 + 7362, + 7364 ] } ] }, { - "id": 6953, + "id": 7320, "name": "OrderExchange", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 6954, + "id": 7321, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 6955, + "id": 7322, "name": "new OrderExchange", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 6953, + "target": 7320, "name": "OrderExchange", "package": "@medusajs/order", "qualifiedName": "default" @@ -2015,7 +2015,7 @@ ] }, { - "id": 6979, + "id": 7346, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -2026,14 +2026,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 6956, + "id": 7323, "name": "id", "variant": "declaration", "kind": 1024, @@ -2044,7 +2044,7 @@ } }, { - "id": 6957, + "id": 7324, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -2055,35 +2055,35 @@ } }, { - "id": 6958, + "id": 7325, "name": "order", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7073, + "target": 7440, "name": "Order", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 6959, + "id": 7326, "name": "return", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7244, + "target": 7611, "name": "Return", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 6960, + "id": 7327, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -2104,7 +2104,7 @@ "defaultValue": "null" }, { - "id": 6961, + "id": 7328, "name": "order_version", "variant": "declaration", "kind": 1024, @@ -2115,7 +2115,7 @@ } }, { - "id": 6962, + "id": 7329, "name": "display_id", "variant": "declaration", "kind": 1024, @@ -2126,7 +2126,7 @@ } }, { - "id": 6963, + "id": 7330, "name": "no_notification", "variant": "declaration", "kind": 1024, @@ -2147,7 +2147,7 @@ "defaultValue": "null" }, { - "id": 6964, + "id": 7331, "name": "difference_due", "variant": "declaration", "kind": 1024, @@ -2172,7 +2172,7 @@ } }, { - "id": 6965, + "id": 7332, "name": "raw_difference_due", "variant": "declaration", "kind": 1024, @@ -2188,7 +2188,7 @@ } }, { - "id": 6966, + "id": 7333, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -2200,7 +2200,7 @@ "defaultValue": "false" }, { - "id": 6967, + "id": 7334, "name": "additional_items", "variant": "declaration", "kind": 1024, @@ -2214,7 +2214,7 @@ "typeArguments": [ { "type": "reference", - "target": 6980, + "target": 7347, "name": "OrderExchangeItem", "package": "@medusajs/order", "qualifiedName": "default" @@ -2230,7 +2230,7 @@ "defaultValue": "..." }, { - "id": 6968, + "id": 7335, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -2244,7 +2244,7 @@ "typeArguments": [ { "type": "reference", - "target": 7206, + "target": 7573, "name": "OrderShippingMethod", "package": "@medusajs/order", "qualifiedName": "default" @@ -2260,7 +2260,7 @@ "defaultValue": "..." }, { - "id": 6969, + "id": 7336, "name": "transactions", "variant": "declaration", "kind": 1024, @@ -2274,7 +2274,7 @@ "typeArguments": [ { "type": "reference", - "target": 7374, + "target": 7741, "name": "Transaction", "package": "@medusajs/order", "qualifiedName": "default" @@ -2290,7 +2290,7 @@ "defaultValue": "..." }, { - "id": 6970, + "id": 7337, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2326,7 +2326,7 @@ "defaultValue": "null" }, { - "id": 6971, + "id": 7338, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -2342,7 +2342,7 @@ } }, { - "id": 6972, + "id": 7339, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -2358,7 +2358,7 @@ } }, { - "id": 6973, + "id": 7340, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -2384,7 +2384,7 @@ "defaultValue": "null" }, { - "id": 6974, + "id": 7341, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -2410,14 +2410,14 @@ "defaultValue": "null" }, { - "id": 6975, + "id": 7342, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6976, + "id": 7343, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -2430,14 +2430,14 @@ ] }, { - "id": 6977, + "id": 7344, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6978, + "id": 7345, "name": "onInit", "variant": "signature", "kind": 4096, @@ -2454,66 +2454,66 @@ { "title": "Constructors", "children": [ - 6954 + 7321 ] }, { "title": "Properties", "children": [ - 6979, - 6956, - 6957, - 6958, - 6959, - 6960, - 6961, - 6962, - 6963, - 6964, - 6965, - 6966, - 6967, - 6968, - 6969, - 6970, - 6971, - 6972, - 6973, - 6974 + 7346, + 7323, + 7324, + 7325, + 7326, + 7327, + 7328, + 7329, + 7330, + 7331, + 7332, + 7333, + 7334, + 7335, + 7336, + 7337, + 7338, + 7339, + 7340, + 7341 ] }, { "title": "Methods", "children": [ - 6975, - 6977 + 7342, + 7344 ] } ] }, { - "id": 7036, + "id": 7403, "name": "LineItemAdjustment", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7037, + "id": 7404, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7038, + "id": 7405, "name": "new LineItemAdjustment", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7036, + "target": 7403, "name": "LineItemAdjustment", "package": "@medusajs/order", "qualifiedName": "default" @@ -2532,7 +2532,7 @@ } }, { - "id": 7054, + "id": 7421, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -2543,9 +2543,9 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" }, "inheritedFrom": { @@ -2555,7 +2555,7 @@ } }, { - "id": 7045, + "id": 7412, "name": "id", "variant": "declaration", "kind": 1024, @@ -2573,7 +2573,7 @@ } }, { - "id": 7046, + "id": 7413, "name": "description", "variant": "declaration", "kind": 1024, @@ -2601,7 +2601,7 @@ } }, { - "id": 7047, + "id": 7414, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -2629,7 +2629,7 @@ } }, { - "id": 7048, + "id": 7415, "name": "code", "variant": "declaration", "kind": 1024, @@ -2657,7 +2657,7 @@ } }, { - "id": 7049, + "id": 7416, "name": "amount", "variant": "declaration", "kind": 1024, @@ -2689,7 +2689,7 @@ } }, { - "id": 7050, + "id": 7417, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -2712,7 +2712,7 @@ } }, { - "id": 7051, + "id": 7418, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -2740,7 +2740,7 @@ } }, { - "id": 7052, + "id": 7419, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -2763,7 +2763,7 @@ } }, { - "id": 7053, + "id": 7420, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -2786,21 +2786,21 @@ } }, { - "id": 7039, + "id": 7406, "name": "item", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7000, + "target": 7367, "name": "LineItem", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7040, + "id": 7407, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -2811,14 +2811,14 @@ } }, { - "id": 7041, + "id": 7408, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7042, + "id": 7409, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -2831,14 +2831,14 @@ ] }, { - "id": 7043, + "id": 7410, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7044, + "id": 7411, "name": "onInit", "variant": "signature", "kind": 4096, @@ -2855,31 +2855,31 @@ { "title": "Constructors", "children": [ - 7037 + 7404 ] }, { "title": "Properties", "children": [ - 7054, - 7045, - 7046, - 7047, - 7048, - 7049, - 7050, - 7051, - 7052, - 7053, - 7039, - 7040 + 7421, + 7412, + 7413, + 7414, + 7415, + 7416, + 7417, + 7418, + 7419, + 7420, + 7406, + 7407 ] }, { "title": "Methods", "children": [ - 7041, - 7043 + 7408, + 7410 ] } ], @@ -2896,28 +2896,28 @@ ] }, { - "id": 7055, + "id": 7422, "name": "LineItemTaxLine", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7056, + "id": 7423, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7057, + "id": 7424, "name": "new LineItemTaxLine", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7055, + "target": 7422, "name": "LineItemTaxLine", "package": "@medusajs/order", "qualifiedName": "default" @@ -2936,21 +2936,21 @@ } }, { - "id": 7058, + "id": 7425, "name": "item", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7000, + "target": 7367, "name": "LineItem", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7059, + "id": 7426, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -2961,14 +2961,14 @@ } }, { - "id": 7060, + "id": 7427, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7061, + "id": 7428, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -2981,14 +2981,14 @@ ] }, { - "id": 7062, + "id": 7429, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7063, + "id": 7430, "name": "onInit", "variant": "signature", "kind": 4096, @@ -3001,7 +3001,7 @@ ] }, { - "id": 7064, + "id": 7431, "name": "id", "variant": "declaration", "kind": 1024, @@ -3019,7 +3019,7 @@ } }, { - "id": 7065, + "id": 7432, "name": "description", "variant": "declaration", "kind": 1024, @@ -3047,7 +3047,7 @@ } }, { - "id": 7066, + "id": 7433, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -3075,7 +3075,7 @@ } }, { - "id": 7067, + "id": 7434, "name": "code", "variant": "declaration", "kind": 1024, @@ -3093,7 +3093,7 @@ } }, { - "id": 7068, + "id": 7435, "name": "rate", "variant": "declaration", "kind": 1024, @@ -3125,7 +3125,7 @@ } }, { - "id": 7069, + "id": 7436, "name": "raw_rate", "variant": "declaration", "kind": 1024, @@ -3148,7 +3148,7 @@ } }, { - "id": 7070, + "id": 7437, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -3176,7 +3176,7 @@ } }, { - "id": 7071, + "id": 7438, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3199,7 +3199,7 @@ } }, { - "id": 7072, + "id": 7439, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3226,30 +3226,30 @@ { "title": "Constructors", "children": [ - 7056 + 7423 ] }, { "title": "Properties", "children": [ - 7058, - 7059, - 7064, - 7065, - 7066, - 7067, - 7068, - 7069, - 7070, - 7071, - 7072 + 7425, + 7426, + 7431, + 7432, + 7433, + 7434, + 7435, + 7436, + 7437, + 7438, + 7439 ] }, { "title": "Methods", "children": [ - 7060, - 7062 + 7427, + 7429 ] } ], @@ -3266,28 +3266,28 @@ ] }, { - "id": 7000, + "id": 7367, "name": "LineItem", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7001, + "id": 7368, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7002, + "id": 7369, "name": "new LineItem", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7000, + "target": 7367, "name": "LineItem", "package": "@medusajs/order", "qualifiedName": "default" @@ -3296,7 +3296,7 @@ ] }, { - "id": 7035, + "id": 7402, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -3307,14 +3307,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 7003, + "id": 7370, "name": "id", "variant": "declaration", "kind": 1024, @@ -3325,7 +3325,7 @@ } }, { - "id": 7004, + "id": 7371, "name": "title", "variant": "declaration", "kind": 1024, @@ -3336,7 +3336,7 @@ } }, { - "id": 7005, + "id": 7372, "name": "subtitle", "variant": "declaration", "kind": 1024, @@ -3357,7 +3357,7 @@ "defaultValue": "null" }, { - "id": 7006, + "id": 7373, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -3378,7 +3378,7 @@ "defaultValue": "null" }, { - "id": 7007, + "id": 7374, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -3399,7 +3399,7 @@ "defaultValue": "null" }, { - "id": 7008, + "id": 7375, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -3420,7 +3420,7 @@ "defaultValue": "null" }, { - "id": 7009, + "id": 7376, "name": "product_title", "variant": "declaration", "kind": 1024, @@ -3441,7 +3441,7 @@ "defaultValue": "null" }, { - "id": 7010, + "id": 7377, "name": "product_description", "variant": "declaration", "kind": 1024, @@ -3462,7 +3462,7 @@ "defaultValue": "null" }, { - "id": 7011, + "id": 7378, "name": "product_subtitle", "variant": "declaration", "kind": 1024, @@ -3483,7 +3483,7 @@ "defaultValue": "null" }, { - "id": 7012, + "id": 7379, "name": "product_type", "variant": "declaration", "kind": 1024, @@ -3504,7 +3504,7 @@ "defaultValue": "null" }, { - "id": 7013, + "id": 7380, "name": "product_collection", "variant": "declaration", "kind": 1024, @@ -3525,7 +3525,7 @@ "defaultValue": "null" }, { - "id": 7014, + "id": 7381, "name": "product_handle", "variant": "declaration", "kind": 1024, @@ -3546,7 +3546,7 @@ "defaultValue": "null" }, { - "id": 7015, + "id": 7382, "name": "variant_sku", "variant": "declaration", "kind": 1024, @@ -3567,7 +3567,7 @@ "defaultValue": "null" }, { - "id": 7016, + "id": 7383, "name": "variant_barcode", "variant": "declaration", "kind": 1024, @@ -3588,7 +3588,7 @@ "defaultValue": "null" }, { - "id": 7017, + "id": 7384, "name": "variant_title", "variant": "declaration", "kind": 1024, @@ -3609,7 +3609,7 @@ "defaultValue": "null" }, { - "id": 7018, + "id": 7385, "name": "variant_option_values", "variant": "declaration", "kind": 1024, @@ -3645,7 +3645,7 @@ "defaultValue": "null" }, { - "id": 7019, + "id": 7386, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -3657,7 +3657,7 @@ "defaultValue": "true" }, { - "id": 7020, + "id": 7387, "name": "is_discountable", "variant": "declaration", "kind": 1024, @@ -3669,7 +3669,7 @@ "defaultValue": "true" }, { - "id": 7021, + "id": 7388, "name": "is_tax_inclusive", "variant": "declaration", "kind": 1024, @@ -3681,7 +3681,7 @@ "defaultValue": "false" }, { - "id": 7022, + "id": 7389, "name": "compare_at_unit_price", "variant": "declaration", "kind": 1024, @@ -3713,7 +3713,7 @@ "defaultValue": "null" }, { - "id": 7023, + "id": 7390, "name": "raw_compare_at_unit_price", "variant": "declaration", "kind": 1024, @@ -3739,7 +3739,7 @@ "defaultValue": "null" }, { - "id": 7024, + "id": 7391, "name": "unit_price", "variant": "declaration", "kind": 1024, @@ -3764,7 +3764,7 @@ } }, { - "id": 7025, + "id": 7392, "name": "raw_unit_price", "variant": "declaration", "kind": 1024, @@ -3780,7 +3780,7 @@ } }, { - "id": 7026, + "id": 7393, "name": "tax_lines", "variant": "declaration", "kind": 1024, @@ -3794,7 +3794,7 @@ "typeArguments": [ { "type": "reference", - "target": 7055, + "target": 7422, "name": "LineItemTaxLine", "package": "@medusajs/order", "qualifiedName": "default" @@ -3810,7 +3810,7 @@ "defaultValue": "..." }, { - "id": 7027, + "id": 7394, "name": "adjustments", "variant": "declaration", "kind": 1024, @@ -3824,7 +3824,7 @@ "typeArguments": [ { "type": "reference", - "target": 7036, + "target": 7403, "name": "LineItemAdjustment", "package": "@medusajs/order", "qualifiedName": "default" @@ -3840,7 +3840,7 @@ "defaultValue": "..." }, { - "id": 7028, + "id": 7395, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3876,7 +3876,7 @@ "defaultValue": "null" }, { - "id": 7029, + "id": 7396, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3892,7 +3892,7 @@ } }, { - "id": 7030, + "id": 7397, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3908,14 +3908,14 @@ } }, { - "id": 7031, + "id": 7398, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7032, + "id": 7399, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -3928,14 +3928,14 @@ ] }, { - "id": 7033, + "id": 7400, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7034, + "id": 7401, "name": "onInit", "variant": "signature", "kind": 4096, @@ -3952,75 +3952,75 @@ { "title": "Constructors", "children": [ - 7001 + 7368 ] }, { "title": "Properties", "children": [ - 7035, - 7003, - 7004, - 7005, - 7006, - 7007, - 7008, - 7009, - 7010, - 7011, - 7012, - 7013, - 7014, - 7015, - 7016, - 7017, - 7018, - 7019, - 7020, - 7021, - 7022, - 7023, - 7024, - 7025, - 7026, - 7027, - 7028, - 7029, - 7030 + 7402, + 7370, + 7371, + 7372, + 7373, + 7374, + 7375, + 7376, + 7377, + 7378, + 7379, + 7380, + 7381, + 7382, + 7383, + 7384, + 7385, + 7386, + 7387, + 7388, + 7389, + 7390, + 7391, + 7392, + 7393, + 7394, + 7395, + 7396, + 7397 ] }, { "title": "Methods", "children": [ - 7031, - 7033 + 7398, + 7400 ] } ] }, { - "id": 7142, + "id": 7509, "name": "OrderChangeAction", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7143, + "id": 7510, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7144, + "id": 7511, "name": "new OrderChangeAction", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7142, + "target": 7509, "name": "OrderChangeAction", "package": "@medusajs/order", "qualifiedName": "default" @@ -4029,7 +4029,7 @@ ] }, { - "id": 7173, + "id": 7540, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -4040,14 +4040,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 7145, + "id": 7512, "name": "id", "variant": "declaration", "kind": 1024, @@ -4058,7 +4058,7 @@ } }, { - "id": 7146, + "id": 7513, "name": "ordering", "variant": "declaration", "kind": 1024, @@ -4069,7 +4069,7 @@ } }, { - "id": 7147, + "id": 7514, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -4090,7 +4090,7 @@ "defaultValue": "null" }, { - "id": 7148, + "id": 7515, "name": "order", "variant": "declaration", "kind": 1024, @@ -4104,7 +4104,7 @@ }, { "type": "reference", - "target": 7073, + "target": 7440, "name": "Order", "package": "@medusajs/order", "qualifiedName": "default" @@ -4114,7 +4114,7 @@ "defaultValue": "null" }, { - "id": 7149, + "id": 7516, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -4135,21 +4135,21 @@ "defaultValue": "null" }, { - "id": 7150, + "id": 7517, "name": "return", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7244, + "target": 7611, "name": "Return", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7151, + "id": 7518, "name": "claim_id", "variant": "declaration", "kind": 1024, @@ -4170,21 +4170,21 @@ "defaultValue": "null" }, { - "id": 7152, + "id": 7519, "name": "claim", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6886, + "target": 7253, "name": "OrderClaim", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7153, + "id": 7520, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -4205,21 +4205,21 @@ "defaultValue": "null" }, { - "id": 7154, + "id": 7521, "name": "exchange", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6953, + "target": 7320, "name": "OrderExchange", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7155, + "id": 7522, "name": "version", "variant": "declaration", "kind": 1024, @@ -4240,7 +4240,7 @@ "defaultValue": "null" }, { - "id": 7156, + "id": 7523, "name": "order_change_id", "variant": "declaration", "kind": 1024, @@ -4260,7 +4260,7 @@ } }, { - "id": 7157, + "id": 7524, "name": "order_change", "variant": "declaration", "kind": 1024, @@ -4274,7 +4274,7 @@ }, { "type": "reference", - "target": 7105, + "target": 7472, "name": "OrderChange", "package": "@medusajs/order", "qualifiedName": "default" @@ -4284,7 +4284,7 @@ "defaultValue": "null" }, { - "id": 7158, + "id": 7525, "name": "reference", "variant": "declaration", "kind": 1024, @@ -4305,7 +4305,7 @@ "defaultValue": "null" }, { - "id": 7159, + "id": 7526, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -4326,7 +4326,7 @@ "defaultValue": "null" }, { - "id": 7160, + "id": 7527, "name": "action", "variant": "declaration", "kind": 1024, @@ -4337,7 +4337,7 @@ } }, { - "id": 7161, + "id": 7528, "name": "details", "variant": "declaration", "kind": 1024, @@ -4364,7 +4364,7 @@ "defaultValue": "{}" }, { - "id": 7162, + "id": 7529, "name": "amount", "variant": "declaration", "kind": 1024, @@ -4394,7 +4394,7 @@ "defaultValue": "null" }, { - "id": 7163, + "id": 7530, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -4420,7 +4420,7 @@ "defaultValue": "null" }, { - "id": 7164, + "id": 7531, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -4441,7 +4441,7 @@ "defaultValue": "null" }, { - "id": 7165, + "id": 7532, "name": "applied", "variant": "declaration", "kind": 1024, @@ -4453,7 +4453,7 @@ "defaultValue": "false" }, { - "id": 7166, + "id": 7533, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4469,7 +4469,7 @@ } }, { - "id": 7167, + "id": 7534, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4485,7 +4485,7 @@ } }, { - "id": 7168, + "id": 7535, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -4511,14 +4511,14 @@ "defaultValue": "null" }, { - "id": 7169, + "id": 7536, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7170, + "id": 7537, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -4531,14 +4531,14 @@ ] }, { - "id": 7171, + "id": 7538, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7172, + "id": 7539, "name": "onInit", "variant": "signature", "kind": 4096, @@ -4555,71 +4555,71 @@ { "title": "Constructors", "children": [ - 7143 + 7510 ] }, { "title": "Properties", "children": [ - 7173, - 7145, - 7146, - 7147, - 7148, - 7149, - 7150, - 7151, - 7152, - 7153, - 7154, - 7155, - 7156, - 7157, - 7158, - 7159, - 7160, - 7161, - 7162, - 7163, - 7164, - 7165, - 7166, - 7167, - 7168 + 7540, + 7512, + 7513, + 7514, + 7515, + 7516, + 7517, + 7518, + 7519, + 7520, + 7521, + 7522, + 7523, + 7524, + 7525, + 7526, + 7527, + 7528, + 7529, + 7530, + 7531, + 7532, + 7533, + 7534, + 7535 ] }, { "title": "Methods", "children": [ - 7169, - 7171 + 7536, + 7538 ] } ] }, { - "id": 7105, + "id": 7472, "name": "OrderChange", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7106, + "id": 7473, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7107, + "id": 7474, "name": "new OrderChange", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7105, + "target": 7472, "name": "OrderChange", "package": "@medusajs/order", "qualifiedName": "default" @@ -4628,7 +4628,7 @@ ] }, { - "id": 7141, + "id": 7508, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -4639,14 +4639,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 7108, + "id": 7475, "name": "id", "variant": "declaration", "kind": 1024, @@ -4657,7 +4657,7 @@ } }, { - "id": 7109, + "id": 7476, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -4668,21 +4668,21 @@ } }, { - "id": 7110, + "id": 7477, "name": "order", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7073, + "target": 7440, "name": "Order", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7111, + "id": 7478, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -4703,21 +4703,21 @@ "defaultValue": "null" }, { - "id": 7112, + "id": 7479, "name": "return", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7244, + "target": 7611, "name": "Return", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7113, + "id": 7480, "name": "claim_id", "variant": "declaration", "kind": 1024, @@ -4738,21 +4738,21 @@ "defaultValue": "null" }, { - "id": 7114, + "id": 7481, "name": "claim", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6886, + "target": 7253, "name": "OrderClaim", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7115, + "id": 7482, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -4773,21 +4773,21 @@ "defaultValue": "null" }, { - "id": 7116, + "id": 7483, "name": "exchange", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6953, + "target": 7320, "name": "OrderExchange", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7117, + "id": 7484, "name": "version", "variant": "declaration", "kind": 1024, @@ -4798,7 +4798,7 @@ } }, { - "id": 7118, + "id": 7485, "name": "change_type", "variant": "declaration", "kind": 1024, @@ -4824,7 +4824,7 @@ "defaultValue": "null" }, { - "id": 7119, + "id": 7486, "name": "actions", "variant": "declaration", "kind": 1024, @@ -4838,7 +4838,7 @@ "typeArguments": [ { "type": "reference", - "target": 7142, + "target": 7509, "name": "OrderChangeAction", "package": "@medusajs/order", "qualifiedName": "default" @@ -4854,7 +4854,7 @@ "defaultValue": "..." }, { - "id": 7120, + "id": 7487, "name": "description", "variant": "declaration", "kind": 1024, @@ -4875,7 +4875,7 @@ "defaultValue": "null" }, { - "id": 7121, + "id": 7488, "name": "status", "variant": "declaration", "kind": 1024, @@ -4892,7 +4892,7 @@ "defaultValue": "OrderChangeStatus.PENDING" }, { - "id": 7122, + "id": 7489, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -4913,7 +4913,7 @@ "defaultValue": "null" }, { - "id": 7123, + "id": 7490, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -4924,7 +4924,7 @@ } }, { - "id": 7124, + "id": 7491, "name": "requested_by", "variant": "declaration", "kind": 1024, @@ -4945,7 +4945,7 @@ "defaultValue": "null" }, { - "id": 7125, + "id": 7492, "name": "requested_at", "variant": "declaration", "kind": 1024, @@ -4971,7 +4971,7 @@ "defaultValue": "null" }, { - "id": 7126, + "id": 7493, "name": "confirmed_by", "variant": "declaration", "kind": 1024, @@ -4992,7 +4992,7 @@ "defaultValue": "null" }, { - "id": 7127, + "id": 7494, "name": "confirmed_at", "variant": "declaration", "kind": 1024, @@ -5018,7 +5018,7 @@ "defaultValue": "null" }, { - "id": 7128, + "id": 7495, "name": "declined_by", "variant": "declaration", "kind": 1024, @@ -5039,7 +5039,7 @@ "defaultValue": "null" }, { - "id": 7129, + "id": 7496, "name": "declined_reason", "variant": "declaration", "kind": 1024, @@ -5060,7 +5060,7 @@ "defaultValue": "null" }, { - "id": 7130, + "id": 7497, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5096,7 +5096,7 @@ "defaultValue": "null" }, { - "id": 7131, + "id": 7498, "name": "declined_at", "variant": "declaration", "kind": 1024, @@ -5114,7 +5114,7 @@ } }, { - "id": 7132, + "id": 7499, "name": "canceled_by", "variant": "declaration", "kind": 1024, @@ -5135,7 +5135,7 @@ "defaultValue": "null" }, { - "id": 7133, + "id": 7500, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -5143,17 +5143,27 @@ "isOptional": true }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" - }, - "name": "Date", - "package": "typescript" - } + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + }, + "defaultValue": "null" }, { - "id": 7134, + "id": 7501, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5169,7 +5179,7 @@ } }, { - "id": 7135, + "id": 7502, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5185,7 +5195,7 @@ } }, { - "id": 7136, + "id": 7503, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -5211,14 +5221,14 @@ "defaultValue": "null" }, { - "id": 7137, + "id": 7504, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7138, + "id": 7505, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -5231,14 +5241,14 @@ ] }, { - "id": 7139, + "id": 7506, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7140, + "id": 7507, "name": "onInit", "variant": "signature", "kind": 4096, @@ -5255,76 +5265,76 @@ { "title": "Constructors", "children": [ - 7106 + 7473 ] }, { "title": "Properties", "children": [ - 7141, - 7108, - 7109, - 7110, - 7111, - 7112, - 7113, - 7114, - 7115, - 7116, - 7117, - 7118, - 7119, - 7120, - 7121, - 7122, - 7123, - 7124, - 7125, - 7126, - 7127, - 7128, - 7129, - 7130, - 7131, - 7132, - 7133, - 7134, - 7135, - 7136 + 7508, + 7475, + 7476, + 7477, + 7478, + 7479, + 7480, + 7481, + 7482, + 7483, + 7484, + 7485, + 7486, + 7487, + 7488, + 7489, + 7490, + 7491, + 7492, + 7493, + 7494, + 7495, + 7496, + 7497, + 7498, + 7499, + 7500, + 7501, + 7502, + 7503 ] }, { "title": "Methods", "children": [ - 7137, - 7139 + 7504, + 7506 ] } ] }, { - "id": 7174, + "id": 7541, "name": "OrderItem", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7175, + "id": 7542, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7176, + "id": 7543, "name": "new OrderItem", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7174, + "target": 7541, "name": "OrderItem", "package": "@medusajs/order", "qualifiedName": "default" @@ -5333,7 +5343,7 @@ ] }, { - "id": 7205, + "id": 7572, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -5344,14 +5354,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 7177, + "id": 7544, "name": "id", "variant": "declaration", "kind": 1024, @@ -5362,7 +5372,7 @@ } }, { - "id": 7178, + "id": 7545, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -5373,21 +5383,21 @@ } }, { - "id": 7179, + "id": 7546, "name": "order", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7073, + "target": 7440, "name": "Order", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7180, + "id": 7547, "name": "version", "variant": "declaration", "kind": 1024, @@ -5398,7 +5408,7 @@ } }, { - "id": 7181, + "id": 7548, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -5409,21 +5419,21 @@ } }, { - "id": 7182, + "id": 7549, "name": "item", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7000, + "target": 7367, "name": "LineItem", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7183, + "id": 7550, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -5448,7 +5458,7 @@ } }, { - "id": 7184, + "id": 7551, "name": "raw_quantity", "variant": "declaration", "kind": 1024, @@ -5464,7 +5474,7 @@ } }, { - "id": 7185, + "id": 7552, "name": "fulfilled_quantity", "variant": "declaration", "kind": 1024, @@ -5490,7 +5500,7 @@ "defaultValue": "0" }, { - "id": 7186, + "id": 7553, "name": "raw_fulfilled_quantity", "variant": "declaration", "kind": 1024, @@ -5506,7 +5516,7 @@ } }, { - "id": 7187, + "id": 7554, "name": "shipped_quantity", "variant": "declaration", "kind": 1024, @@ -5532,7 +5542,7 @@ "defaultValue": "0" }, { - "id": 7188, + "id": 7555, "name": "raw_shipped_quantity", "variant": "declaration", "kind": 1024, @@ -5548,7 +5558,7 @@ } }, { - "id": 7189, + "id": 7556, "name": "return_requested_quantity", "variant": "declaration", "kind": 1024, @@ -5574,7 +5584,7 @@ "defaultValue": "0" }, { - "id": 7190, + "id": 7557, "name": "raw_return_requested_quantity", "variant": "declaration", "kind": 1024, @@ -5590,7 +5600,7 @@ } }, { - "id": 7191, + "id": 7558, "name": "return_received_quantity", "variant": "declaration", "kind": 1024, @@ -5616,7 +5626,7 @@ "defaultValue": "0" }, { - "id": 7192, + "id": 7559, "name": "raw_return_received_quantity", "variant": "declaration", "kind": 1024, @@ -5632,7 +5642,7 @@ } }, { - "id": 7193, + "id": 7560, "name": "return_dismissed_quantity", "variant": "declaration", "kind": 1024, @@ -5658,7 +5668,7 @@ "defaultValue": "0" }, { - "id": 7194, + "id": 7561, "name": "raw_return_dismissed_quantity", "variant": "declaration", "kind": 1024, @@ -5674,7 +5684,7 @@ } }, { - "id": 7195, + "id": 7562, "name": "written_off_quantity", "variant": "declaration", "kind": 1024, @@ -5700,7 +5710,7 @@ "defaultValue": "0" }, { - "id": 7196, + "id": 7563, "name": "raw_written_off_quantity", "variant": "declaration", "kind": 1024, @@ -5716,7 +5726,7 @@ } }, { - "id": 7197, + "id": 7564, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5752,7 +5762,7 @@ "defaultValue": "null" }, { - "id": 7198, + "id": 7565, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5768,7 +5778,7 @@ } }, { - "id": 7199, + "id": 7566, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5784,7 +5794,7 @@ } }, { - "id": 7200, + "id": 7567, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -5810,14 +5820,14 @@ "defaultValue": "null" }, { - "id": 7201, + "id": 7568, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7202, + "id": 7569, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -5830,14 +5840,14 @@ ] }, { - "id": 7203, + "id": 7570, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7204, + "id": 7571, "name": "onInit", "variant": "signature", "kind": 4096, @@ -5854,71 +5864,71 @@ { "title": "Constructors", "children": [ - 7175 + 7542 ] }, { "title": "Properties", "children": [ - 7205, - 7177, - 7178, - 7179, - 7180, - 7181, - 7182, - 7183, - 7184, - 7185, - 7186, - 7187, - 7188, - 7189, - 7190, - 7191, - 7192, - 7193, - 7194, - 7195, - 7196, - 7197, - 7198, - 7199, - 7200 + 7572, + 7544, + 7545, + 7546, + 7547, + 7548, + 7549, + 7550, + 7551, + 7552, + 7553, + 7554, + 7555, + 7556, + 7557, + 7558, + 7559, + 7560, + 7561, + 7562, + 7563, + 7564, + 7565, + 7566, + 7567 ] }, { "title": "Methods", "children": [ - 7201, - 7203 + 7568, + 7570 ] } ] }, { - "id": 7206, + "id": 7573, "name": "OrderShippingMethod", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7207, + "id": 7574, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7208, + "id": 7575, "name": "new OrderShippingMethod", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7206, + "target": 7573, "name": "OrderShippingMethod", "package": "@medusajs/order", "qualifiedName": "default" @@ -5927,7 +5937,7 @@ ] }, { - "id": 7228, + "id": 7595, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -5938,14 +5948,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 7209, + "id": 7576, "name": "id", "variant": "declaration", "kind": 1024, @@ -5956,7 +5966,7 @@ } }, { - "id": 7210, + "id": 7577, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -5967,21 +5977,21 @@ } }, { - "id": 7211, + "id": 7578, "name": "order", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7073, + "target": 7440, "name": "Order", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7212, + "id": 7579, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -6002,21 +6012,21 @@ "defaultValue": "null" }, { - "id": 7213, + "id": 7580, "name": "return", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7244, + "target": 7611, "name": "Return", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7214, + "id": 7581, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -6036,21 +6046,21 @@ } }, { - "id": 7215, + "id": 7582, "name": "exchange", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6953, + "target": 7320, "name": "OrderExchange", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7216, + "id": 7583, "name": "claim_id", "variant": "declaration", "kind": 1024, @@ -6070,21 +6080,21 @@ } }, { - "id": 7217, + "id": 7584, "name": "claim", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6886, + "target": 7253, "name": "OrderClaim", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7218, + "id": 7585, "name": "version", "variant": "declaration", "kind": 1024, @@ -6095,7 +6105,7 @@ } }, { - "id": 7219, + "id": 7586, "name": "shipping_method_id", "variant": "declaration", "kind": 1024, @@ -6106,21 +6116,21 @@ } }, { - "id": 7220, + "id": 7587, "name": "shipping_method", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7317, + "target": 7684, "name": "ShippingMethod", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7221, + "id": 7588, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6136,7 +6146,7 @@ } }, { - "id": 7222, + "id": 7589, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6152,7 +6162,7 @@ } }, { - "id": 7223, + "id": 7590, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -6178,14 +6188,14 @@ "defaultValue": "null" }, { - "id": 7224, + "id": 7591, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7225, + "id": 7592, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -6198,14 +6208,14 @@ ] }, { - "id": 7226, + "id": 7593, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7227, + "id": 7594, "name": "onInit", "variant": "signature", "kind": 4096, @@ -6222,62 +6232,62 @@ { "title": "Constructors", "children": [ - 7207 + 7574 ] }, { "title": "Properties", "children": [ - 7228, - 7209, - 7210, - 7211, - 7212, - 7213, - 7214, - 7215, - 7216, - 7217, - 7218, - 7219, - 7220, - 7221, - 7222, - 7223 + 7595, + 7576, + 7577, + 7578, + 7579, + 7580, + 7581, + 7582, + 7583, + 7584, + 7585, + 7586, + 7587, + 7588, + 7589, + 7590 ] }, { "title": "Methods", "children": [ - 7224, - 7226 + 7591, + 7593 ] } ] }, { - "id": 7229, + "id": 7596, "name": "OrderSummary", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7230, + "id": 7597, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7231, + "id": 7598, "name": "new OrderSummary", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7229, + "target": 7596, "name": "OrderSummary", "package": "@medusajs/order", "qualifiedName": "default" @@ -6286,7 +6296,7 @@ ] }, { - "id": 7232, + "id": 7599, "name": "id", "variant": "declaration", "kind": 1024, @@ -6297,7 +6307,7 @@ } }, { - "id": 7233, + "id": 7600, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -6308,21 +6318,21 @@ } }, { - "id": 7234, + "id": 7601, "name": "order", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7073, + "target": 7440, "name": "Order", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7235, + "id": 7602, "name": "version", "variant": "declaration", "kind": 1024, @@ -6334,7 +6344,7 @@ "defaultValue": "1" }, { - "id": 7236, + "id": 7603, "name": "totals", "variant": "declaration", "kind": 1024, @@ -6360,7 +6370,7 @@ "defaultValue": "..." }, { - "id": 7237, + "id": 7604, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6376,7 +6386,7 @@ } }, { - "id": 7238, + "id": 7605, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6392,7 +6402,7 @@ } }, { - "id": 7239, + "id": 7606, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -6418,14 +6428,14 @@ "defaultValue": "null" }, { - "id": 7240, + "id": 7607, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7241, + "id": 7608, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -6438,14 +6448,14 @@ ] }, { - "id": 7242, + "id": 7609, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7243, + "id": 7610, "name": "onInit", "variant": "signature", "kind": 4096, @@ -6462,54 +6472,54 @@ { "title": "Constructors", "children": [ - 7230 + 7597 ] }, { "title": "Properties", "children": [ - 7232, - 7233, - 7234, - 7235, - 7236, - 7237, - 7238, - 7239 + 7599, + 7600, + 7601, + 7602, + 7603, + 7604, + 7605, + 7606 ] }, { "title": "Methods", "children": [ - 7240, - 7242 + 7607, + 7609 ] } ] }, { - "id": 7073, + "id": 7440, "name": "Order", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7074, + "id": 7441, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7075, + "id": 7442, "name": "new Order", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7073, + "target": 7440, "name": "Order", "package": "@medusajs/order", "qualifiedName": "default" @@ -6518,7 +6528,7 @@ ] }, { - "id": 7104, + "id": 7471, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -6536,7 +6546,7 @@ } }, { - "id": 7076, + "id": 7443, "name": "id", "variant": "declaration", "kind": 1024, @@ -6547,7 +6557,7 @@ } }, { - "id": 7077, + "id": 7444, "name": "display_id", "variant": "declaration", "kind": 1024, @@ -6558,7 +6568,7 @@ } }, { - "id": 7078, + "id": 7445, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -6579,7 +6589,7 @@ "defaultValue": "null" }, { - "id": 7079, + "id": 7446, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -6600,7 +6610,7 @@ "defaultValue": "null" }, { - "id": 7080, + "id": 7447, "name": "version", "variant": "declaration", "kind": 1024, @@ -6612,7 +6622,7 @@ "defaultValue": "1" }, { - "id": 7081, + "id": 7448, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -6633,7 +6643,7 @@ "defaultValue": "null" }, { - "id": 7082, + "id": 7449, "name": "status", "variant": "declaration", "kind": 1024, @@ -6649,7 +6659,7 @@ } }, { - "id": 7083, + "id": 7450, "name": "is_draft_order", "variant": "declaration", "kind": 1024, @@ -6661,7 +6671,7 @@ "defaultValue": "false" }, { - "id": 7084, + "id": 7451, "name": "email", "variant": "declaration", "kind": 1024, @@ -6682,7 +6692,7 @@ "defaultValue": "null" }, { - "id": 7085, + "id": 7452, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -6693,7 +6703,7 @@ } }, { - "id": 7086, + "id": 7453, "name": "shipping_address_id", "variant": "declaration", "kind": 1024, @@ -6715,7 +6725,7 @@ } }, { - "id": 7087, + "id": 7454, "name": "shipping_address", "variant": "declaration", "kind": 1024, @@ -6731,7 +6741,7 @@ }, { "type": "reference", - "target": 6863, + "target": 7230, "name": "Address", "package": "@medusajs/order", "qualifiedName": "default" @@ -6740,7 +6750,7 @@ } }, { - "id": 7088, + "id": 7455, "name": "billing_address_id", "variant": "declaration", "kind": 1024, @@ -6762,7 +6772,7 @@ } }, { - "id": 7089, + "id": 7456, "name": "billing_address", "variant": "declaration", "kind": 1024, @@ -6778,7 +6788,7 @@ }, { "type": "reference", - "target": 6863, + "target": 7230, "name": "Address", "package": "@medusajs/order", "qualifiedName": "default" @@ -6787,7 +6797,7 @@ } }, { - "id": 7090, + "id": 7457, "name": "no_notification", "variant": "declaration", "kind": 1024, @@ -6808,7 +6818,7 @@ "defaultValue": "null" }, { - "id": 7091, + "id": 7458, "name": "summary", "variant": "declaration", "kind": 1024, @@ -6822,7 +6832,7 @@ "typeArguments": [ { "type": "reference", - "target": 7229, + "target": 7596, "name": "OrderSummary", "package": "@medusajs/order", "qualifiedName": "default" @@ -6838,7 +6848,7 @@ "defaultValue": "..." }, { - "id": 7092, + "id": 7459, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6874,7 +6884,7 @@ "defaultValue": "null" }, { - "id": 7093, + "id": 7460, "name": "items", "variant": "declaration", "kind": 1024, @@ -6888,7 +6898,7 @@ "typeArguments": [ { "type": "reference", - "target": 7174, + "target": 7541, "name": "OrderItem", "package": "@medusajs/order", "qualifiedName": "default" @@ -6904,7 +6914,7 @@ "defaultValue": "..." }, { - "id": 7094, + "id": 7461, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -6918,7 +6928,7 @@ "typeArguments": [ { "type": "reference", - "target": 7206, + "target": 7573, "name": "OrderShippingMethod", "package": "@medusajs/order", "qualifiedName": "default" @@ -6934,7 +6944,7 @@ "defaultValue": "..." }, { - "id": 7095, + "id": 7462, "name": "transactions", "variant": "declaration", "kind": 1024, @@ -6948,7 +6958,7 @@ "typeArguments": [ { "type": "reference", - "target": 7374, + "target": 7741, "name": "Transaction", "package": "@medusajs/order", "qualifiedName": "default" @@ -6964,7 +6974,7 @@ "defaultValue": "..." }, { - "id": 7096, + "id": 7463, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6980,7 +6990,7 @@ } }, { - "id": 7097, + "id": 7464, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6996,7 +7006,7 @@ } }, { - "id": 7098, + "id": 7465, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -7022,7 +7032,7 @@ "defaultValue": "null" }, { - "id": 7099, + "id": 7466, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -7048,14 +7058,14 @@ "defaultValue": "null" }, { - "id": 7100, + "id": 7467, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7101, + "id": 7468, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -7068,14 +7078,14 @@ ] }, { - "id": 7102, + "id": 7469, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7103, + "id": 7470, "name": "onInit", "variant": "signature", "kind": 4096, @@ -7092,71 +7102,71 @@ { "title": "Constructors", "children": [ - 7074 + 7441 ] }, { "title": "Properties", "children": [ - 7104, - 7076, - 7077, - 7078, - 7079, - 7080, - 7081, - 7082, - 7083, - 7084, - 7085, - 7086, - 7087, - 7088, - 7089, - 7090, - 7091, - 7092, - 7093, - 7094, - 7095, - 7096, - 7097, - 7098, - 7099 + 7471, + 7443, + 7444, + 7445, + 7446, + 7447, + 7448, + 7449, + 7450, + 7451, + 7452, + 7453, + 7454, + 7455, + 7456, + 7457, + 7458, + 7459, + 7460, + 7461, + 7462, + 7463, + 7464, + 7465, + 7466 ] }, { "title": "Methods", "children": [ - 7100, - 7102 + 7467, + 7469 ] } ] }, { - "id": 7274, + "id": 7641, "name": "ReturnItem", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7275, + "id": 7642, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7276, + "id": 7643, "name": "new ReturnItem", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7274, + "target": 7641, "name": "ReturnItem", "package": "@medusajs/order", "qualifiedName": "default" @@ -7165,7 +7175,7 @@ ] }, { - "id": 7297, + "id": 7664, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -7176,14 +7186,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 7277, + "id": 7644, "name": "id", "variant": "declaration", "kind": 1024, @@ -7194,7 +7204,7 @@ } }, { - "id": 7278, + "id": 7645, "name": "reason_id", "variant": "declaration", "kind": 1024, @@ -7215,21 +7225,21 @@ "defaultValue": "null" }, { - "id": 7279, + "id": 7646, "name": "reason", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7298, + "target": 7665, "name": "ReturnReason", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7280, + "id": 7647, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -7254,7 +7264,7 @@ } }, { - "id": 7281, + "id": 7648, "name": "raw_quantity", "variant": "declaration", "kind": 1024, @@ -7270,7 +7280,7 @@ } }, { - "id": 7282, + "id": 7649, "name": "received_quantity", "variant": "declaration", "kind": 1024, @@ -7296,7 +7306,7 @@ "defaultValue": "0" }, { - "id": 7283, + "id": 7650, "name": "raw_received_quantity", "variant": "declaration", "kind": 1024, @@ -7312,7 +7322,7 @@ } }, { - "id": 7284, + "id": 7651, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -7323,21 +7333,21 @@ } }, { - "id": 7285, + "id": 7652, "name": "return", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7244, + "target": 7611, "name": "Return", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7286, + "id": 7653, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -7348,21 +7358,21 @@ } }, { - "id": 7287, + "id": 7654, "name": "item", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7000, + "target": 7367, "name": "LineItem", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7288, + "id": 7655, "name": "note", "variant": "declaration", "kind": 1024, @@ -7373,7 +7383,7 @@ } }, { - "id": 7289, + "id": 7656, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -7409,7 +7419,7 @@ "defaultValue": "null" }, { - "id": 7290, + "id": 7657, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -7425,7 +7435,7 @@ } }, { - "id": 7291, + "id": 7658, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -7441,7 +7451,7 @@ } }, { - "id": 7292, + "id": 7659, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -7467,14 +7477,14 @@ "defaultValue": "null" }, { - "id": 7293, + "id": 7660, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7294, + "id": 7661, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -7487,14 +7497,14 @@ ] }, { - "id": 7295, + "id": 7662, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7296, + "id": 7663, "name": "onInit", "variant": "signature", "kind": 4096, @@ -7511,63 +7521,63 @@ { "title": "Constructors", "children": [ - 7275 + 7642 ] }, { "title": "Properties", "children": [ - 7297, - 7277, - 7278, - 7279, - 7280, - 7281, - 7282, - 7283, - 7284, - 7285, - 7286, - 7287, - 7288, - 7289, - 7290, - 7291, - 7292 + 7664, + 7644, + 7645, + 7646, + 7647, + 7648, + 7649, + 7650, + 7651, + 7652, + 7653, + 7654, + 7655, + 7656, + 7657, + 7658, + 7659 ] }, { "title": "Methods", "children": [ - 7293, - 7295 + 7660, + 7662 ] } ] }, { - "id": 7298, + "id": 7665, "name": "ReturnReason", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7299, + "id": 7666, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7300, + "id": 7667, "name": "new ReturnReason", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7298, + "target": 7665, "name": "ReturnReason", "package": "@medusajs/order", "qualifiedName": "default" @@ -7576,7 +7586,7 @@ ] }, { - "id": 7316, + "id": 7683, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -7594,7 +7604,7 @@ } }, { - "id": 7301, + "id": 7668, "name": "id", "variant": "declaration", "kind": 1024, @@ -7605,7 +7615,7 @@ } }, { - "id": 7302, + "id": 7669, "name": "value", "variant": "declaration", "kind": 1024, @@ -7616,7 +7626,7 @@ } }, { - "id": 7303, + "id": 7670, "name": "label", "variant": "declaration", "kind": 1024, @@ -7627,7 +7637,7 @@ } }, { - "id": 7304, + "id": 7671, "name": "description", "variant": "declaration", "kind": 1024, @@ -7648,7 +7658,7 @@ "defaultValue": "null" }, { - "id": 7305, + "id": 7672, "name": "parent_return_reason_id", "variant": "declaration", "kind": 1024, @@ -7670,7 +7680,7 @@ } }, { - "id": 7306, + "id": 7673, "name": "parent_return_reason", "variant": "declaration", "kind": 1024, @@ -7686,7 +7696,7 @@ }, { "type": "reference", - "target": 7298, + "target": 7665, "name": "ReturnReason", "package": "@medusajs/order", "qualifiedName": "default" @@ -7695,7 +7705,7 @@ } }, { - "id": 7307, + "id": 7674, "name": "return_reason_children", "variant": "declaration", "kind": 1024, @@ -7704,7 +7714,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7298, + "target": 7665, "name": "ReturnReason", "package": "@medusajs/order", "qualifiedName": "default" @@ -7712,7 +7722,7 @@ } }, { - "id": 7308, + "id": 7675, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -7748,7 +7758,7 @@ "defaultValue": "null" }, { - "id": 7309, + "id": 7676, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -7764,7 +7774,7 @@ } }, { - "id": 7310, + "id": 7677, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -7780,7 +7790,7 @@ } }, { - "id": 7311, + "id": 7678, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -7806,14 +7816,14 @@ "defaultValue": "null" }, { - "id": 7312, + "id": 7679, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7313, + "id": 7680, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -7826,14 +7836,14 @@ ] }, { - "id": 7314, + "id": 7681, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7315, + "id": 7682, "name": "onInit", "variant": "signature", "kind": 4096, @@ -7850,58 +7860,58 @@ { "title": "Constructors", "children": [ - 7299 + 7666 ] }, { "title": "Properties", "children": [ - 7316, - 7301, - 7302, - 7303, - 7304, - 7305, - 7306, - 7307, - 7308, - 7309, - 7310, - 7311 + 7683, + 7668, + 7669, + 7670, + 7671, + 7672, + 7673, + 7674, + 7675, + 7676, + 7677, + 7678 ] }, { "title": "Methods", "children": [ - 7312, - 7314 + 7679, + 7681 ] } ] }, { - "id": 7244, + "id": 7611, "name": "Return", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7245, + "id": 7612, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7246, + "id": 7613, "name": "new Return", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7244, + "target": 7611, "name": "Return", "package": "@medusajs/order", "qualifiedName": "default" @@ -7910,7 +7920,7 @@ ] }, { - "id": 7273, + "id": 7640, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -7921,14 +7931,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 7247, + "id": 7614, "name": "id", "variant": "declaration", "kind": 1024, @@ -7939,7 +7949,7 @@ } }, { - "id": 7248, + "id": 7615, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -7950,35 +7960,35 @@ } }, { - "id": 7249, + "id": 7616, "name": "order", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7073, + "target": 7440, "name": "Order", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7250, + "id": 7617, "name": "exchange", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6953, + "target": 7320, "name": "OrderExchange", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7251, + "id": 7618, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -7999,21 +8009,21 @@ "defaultValue": "null" }, { - "id": 7252, + "id": 7619, "name": "claim", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6886, + "target": 7253, "name": "OrderClaim", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7253, + "id": 7620, "name": "claim_id", "variant": "declaration", "kind": 1024, @@ -8034,7 +8044,7 @@ "defaultValue": "null" }, { - "id": 7254, + "id": 7621, "name": "order_version", "variant": "declaration", "kind": 1024, @@ -8045,7 +8055,7 @@ } }, { - "id": 7255, + "id": 7622, "name": "display_id", "variant": "declaration", "kind": 1024, @@ -8056,7 +8066,7 @@ } }, { - "id": 7256, + "id": 7623, "name": "status", "variant": "declaration", "kind": 1024, @@ -8073,7 +8083,7 @@ "defaultValue": "ReturnStatus.REQUESTED" }, { - "id": 7257, + "id": 7624, "name": "no_notification", "variant": "declaration", "kind": 1024, @@ -8094,7 +8104,7 @@ "defaultValue": "null" }, { - "id": 7258, + "id": 7625, "name": "refund_amount", "variant": "declaration", "kind": 1024, @@ -8119,7 +8129,7 @@ } }, { - "id": 7259, + "id": 7626, "name": "raw_refund_amount", "variant": "declaration", "kind": 1024, @@ -8135,7 +8145,7 @@ } }, { - "id": 7260, + "id": 7627, "name": "items", "variant": "declaration", "kind": 1024, @@ -8149,8 +8159,8 @@ "typeArguments": [ { "type": "reference", - "target": 7174, - "name": "OrderItem", + "target": 7641, + "name": "ReturnItem", "package": "@medusajs/order", "qualifiedName": "default" }, @@ -8165,7 +8175,7 @@ "defaultValue": "..." }, { - "id": 7261, + "id": 7628, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -8179,7 +8189,7 @@ "typeArguments": [ { "type": "reference", - "target": 7206, + "target": 7573, "name": "OrderShippingMethod", "package": "@medusajs/order", "qualifiedName": "default" @@ -8195,7 +8205,7 @@ "defaultValue": "..." }, { - "id": 7262, + "id": 7629, "name": "transactions", "variant": "declaration", "kind": 1024, @@ -8209,7 +8219,7 @@ "typeArguments": [ { "type": "reference", - "target": 7374, + "target": 7741, "name": "Transaction", "package": "@medusajs/order", "qualifiedName": "default" @@ -8225,7 +8235,7 @@ "defaultValue": "..." }, { - "id": 7263, + "id": 7630, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -8261,7 +8271,7 @@ "defaultValue": "null" }, { - "id": 7264, + "id": 7631, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -8277,7 +8287,7 @@ } }, { - "id": 7265, + "id": 7632, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -8293,7 +8303,7 @@ } }, { - "id": 7266, + "id": 7633, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -8319,7 +8329,7 @@ "defaultValue": "null" }, { - "id": 7267, + "id": 7634, "name": "received_at", "variant": "declaration", "kind": 1024, @@ -8345,7 +8355,7 @@ "defaultValue": "null" }, { - "id": 7268, + "id": 7635, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -8371,14 +8381,14 @@ "defaultValue": "null" }, { - "id": 7269, + "id": 7636, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7270, + "id": 7637, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -8391,14 +8401,14 @@ ] }, { - "id": 7271, + "id": 7638, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7272, + "id": 7639, "name": "onInit", "variant": "signature", "kind": 4096, @@ -8415,69 +8425,69 @@ { "title": "Constructors", "children": [ - 7245 + 7612 ] }, { "title": "Properties", "children": [ - 7273, - 7247, - 7248, - 7249, - 7250, - 7251, - 7252, - 7253, - 7254, - 7255, - 7256, - 7257, - 7258, - 7259, - 7260, - 7261, - 7262, - 7263, - 7264, - 7265, - 7266, - 7267, - 7268 + 7640, + 7614, + 7615, + 7616, + 7617, + 7618, + 7619, + 7620, + 7621, + 7622, + 7623, + 7624, + 7625, + 7626, + 7627, + 7628, + 7629, + 7630, + 7631, + 7632, + 7633, + 7634, + 7635 ] }, { "title": "Methods", "children": [ - 7269, - 7271 + 7636, + 7638 ] } ] }, { - "id": 7337, + "id": 7704, "name": "ShippingMethodAdjustment", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7338, + "id": 7705, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7339, + "id": 7706, "name": "new ShippingMethodAdjustment", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7337, + "target": 7704, "name": "ShippingMethodAdjustment", "package": "@medusajs/order", "qualifiedName": "default" @@ -8496,7 +8506,7 @@ } }, { - "id": 7355, + "id": 7722, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -8507,9 +8517,9 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" }, "inheritedFrom": { @@ -8519,7 +8529,7 @@ } }, { - "id": 7346, + "id": 7713, "name": "id", "variant": "declaration", "kind": 1024, @@ -8537,7 +8547,7 @@ } }, { - "id": 7347, + "id": 7714, "name": "description", "variant": "declaration", "kind": 1024, @@ -8565,7 +8575,7 @@ } }, { - "id": 7348, + "id": 7715, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -8593,7 +8603,7 @@ } }, { - "id": 7349, + "id": 7716, "name": "code", "variant": "declaration", "kind": 1024, @@ -8621,7 +8631,7 @@ } }, { - "id": 7350, + "id": 7717, "name": "amount", "variant": "declaration", "kind": 1024, @@ -8653,7 +8663,7 @@ } }, { - "id": 7351, + "id": 7718, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -8676,7 +8686,7 @@ } }, { - "id": 7352, + "id": 7719, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -8704,7 +8714,7 @@ } }, { - "id": 7353, + "id": 7720, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -8727,7 +8737,7 @@ } }, { - "id": 7354, + "id": 7721, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -8750,21 +8760,21 @@ } }, { - "id": 7340, + "id": 7707, "name": "shipping_method", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7317, + "target": 7684, "name": "ShippingMethod", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7341, + "id": 7708, "name": "shipping_method_id", "variant": "declaration", "kind": 1024, @@ -8775,14 +8785,14 @@ } }, { - "id": 7342, + "id": 7709, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7343, + "id": 7710, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -8795,14 +8805,14 @@ ] }, { - "id": 7344, + "id": 7711, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7345, + "id": 7712, "name": "onInit", "variant": "signature", "kind": 4096, @@ -8819,31 +8829,31 @@ { "title": "Constructors", "children": [ - 7338 + 7705 ] }, { "title": "Properties", "children": [ - 7355, - 7346, - 7347, - 7348, - 7349, - 7350, - 7351, - 7352, - 7353, - 7354, - 7340, - 7341 + 7722, + 7713, + 7714, + 7715, + 7716, + 7717, + 7718, + 7719, + 7720, + 7721, + 7707, + 7708 ] }, { "title": "Methods", "children": [ - 7342, - 7344 + 7709, + 7711 ] } ], @@ -8860,28 +8870,28 @@ ] }, { - "id": 7356, + "id": 7723, "name": "ShippingMethodTaxLine", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7357, + "id": 7724, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7358, + "id": 7725, "name": "new ShippingMethodTaxLine", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7356, + "target": 7723, "name": "ShippingMethodTaxLine", "package": "@medusajs/order", "qualifiedName": "default" @@ -8900,21 +8910,21 @@ } }, { - "id": 7359, + "id": 7726, "name": "shipping_method", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7317, + "target": 7684, "name": "ShippingMethod", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7360, + "id": 7727, "name": "shipping_method_id", "variant": "declaration", "kind": 1024, @@ -8925,14 +8935,14 @@ } }, { - "id": 7361, + "id": 7728, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7362, + "id": 7729, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -8945,14 +8955,14 @@ ] }, { - "id": 7363, + "id": 7730, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7364, + "id": 7731, "name": "onInit", "variant": "signature", "kind": 4096, @@ -8965,7 +8975,7 @@ ] }, { - "id": 7365, + "id": 7732, "name": "id", "variant": "declaration", "kind": 1024, @@ -8983,7 +8993,7 @@ } }, { - "id": 7366, + "id": 7733, "name": "description", "variant": "declaration", "kind": 1024, @@ -9011,7 +9021,7 @@ } }, { - "id": 7367, + "id": 7734, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -9039,7 +9049,7 @@ } }, { - "id": 7368, + "id": 7735, "name": "code", "variant": "declaration", "kind": 1024, @@ -9057,7 +9067,7 @@ } }, { - "id": 7369, + "id": 7736, "name": "rate", "variant": "declaration", "kind": 1024, @@ -9089,7 +9099,7 @@ } }, { - "id": 7370, + "id": 7737, "name": "raw_rate", "variant": "declaration", "kind": 1024, @@ -9112,7 +9122,7 @@ } }, { - "id": 7371, + "id": 7738, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -9140,7 +9150,7 @@ } }, { - "id": 7372, + "id": 7739, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -9163,7 +9173,7 @@ } }, { - "id": 7373, + "id": 7740, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -9190,30 +9200,30 @@ { "title": "Constructors", "children": [ - 7357 + 7724 ] }, { "title": "Properties", "children": [ - 7359, - 7360, - 7365, - 7366, - 7367, - 7368, - 7369, - 7370, - 7371, - 7372, - 7373 + 7726, + 7727, + 7732, + 7733, + 7734, + 7735, + 7736, + 7737, + 7738, + 7739, + 7740 ] }, { "title": "Methods", "children": [ - 7361, - 7363 + 7728, + 7730 ] } ], @@ -9230,28 +9240,28 @@ ] }, { - "id": 7317, + "id": 7684, "name": "ShippingMethod", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7318, + "id": 7685, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7319, + "id": 7686, "name": "new ShippingMethod", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7317, + "target": 7684, "name": "ShippingMethod", "package": "@medusajs/order", "qualifiedName": "default" @@ -9260,7 +9270,7 @@ ] }, { - "id": 7320, + "id": 7687, "name": "id", "variant": "declaration", "kind": 1024, @@ -9271,7 +9281,7 @@ } }, { - "id": 7321, + "id": 7688, "name": "name", "variant": "declaration", "kind": 1024, @@ -9282,7 +9292,7 @@ } }, { - "id": 7322, + "id": 7689, "name": "description", "variant": "declaration", "kind": 1024, @@ -9303,7 +9313,7 @@ "defaultValue": "null" }, { - "id": 7323, + "id": 7690, "name": "amount", "variant": "declaration", "kind": 1024, @@ -9328,7 +9338,7 @@ } }, { - "id": 7324, + "id": 7691, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -9344,7 +9354,7 @@ } }, { - "id": 7325, + "id": 7692, "name": "is_tax_inclusive", "variant": "declaration", "kind": 1024, @@ -9356,7 +9366,7 @@ "defaultValue": "false" }, { - "id": 7326, + "id": 7693, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -9377,7 +9387,7 @@ "defaultValue": "null" }, { - "id": 7327, + "id": 7694, "name": "data", "variant": "declaration", "kind": 1024, @@ -9413,7 +9423,7 @@ "defaultValue": "null" }, { - "id": 7328, + "id": 7695, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -9449,7 +9459,7 @@ "defaultValue": "null" }, { - "id": 7329, + "id": 7696, "name": "tax_lines", "variant": "declaration", "kind": 1024, @@ -9463,7 +9473,7 @@ "typeArguments": [ { "type": "reference", - "target": 7356, + "target": 7723, "name": "ShippingMethodTaxLine", "package": "@medusajs/order", "qualifiedName": "default" @@ -9479,7 +9489,7 @@ "defaultValue": "..." }, { - "id": 7330, + "id": 7697, "name": "adjustments", "variant": "declaration", "kind": 1024, @@ -9493,7 +9503,7 @@ "typeArguments": [ { "type": "reference", - "target": 7337, + "target": 7704, "name": "ShippingMethodAdjustment", "package": "@medusajs/order", "qualifiedName": "default" @@ -9509,7 +9519,7 @@ "defaultValue": "..." }, { - "id": 7331, + "id": 7698, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -9525,7 +9535,7 @@ } }, { - "id": 7332, + "id": 7699, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -9541,14 +9551,14 @@ } }, { - "id": 7333, + "id": 7700, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7334, + "id": 7701, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -9561,14 +9571,14 @@ ] }, { - "id": 7335, + "id": 7702, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7336, + "id": 7703, "name": "onInit", "variant": "signature", "kind": 4096, @@ -9585,59 +9595,59 @@ { "title": "Constructors", "children": [ - 7318 + 7685 ] }, { "title": "Properties", "children": [ - 7320, - 7321, - 7322, - 7323, - 7324, - 7325, - 7326, - 7327, - 7328, - 7329, - 7330, - 7331, - 7332 + 7687, + 7688, + 7689, + 7690, + 7691, + 7692, + 7693, + 7694, + 7695, + 7696, + 7697, + 7698, + 7699 ] }, { "title": "Methods", "children": [ - 7333, - 7335 + 7700, + 7702 ] } ] }, { - "id": 7374, + "id": 7741, "name": "Transaction", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7375, + "id": 7742, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7376, + "id": 7743, "name": "new Transaction", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7374, + "target": 7741, "name": "Transaction", "package": "@medusajs/order", "qualifiedName": "default" @@ -9646,7 +9656,7 @@ ] }, { - "id": 7399, + "id": 7766, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -9657,14 +9667,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 7377, + "id": 7744, "name": "id", "variant": "declaration", "kind": 1024, @@ -9675,7 +9685,7 @@ } }, { - "id": 7378, + "id": 7745, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -9686,21 +9696,21 @@ } }, { - "id": 7379, + "id": 7746, "name": "order", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7073, + "target": 7440, "name": "Order", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7380, + "id": 7747, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -9721,21 +9731,21 @@ "defaultValue": "null" }, { - "id": 7381, + "id": 7748, "name": "return", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7244, + "target": 7611, "name": "Return", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7382, + "id": 7749, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -9755,21 +9765,21 @@ } }, { - "id": 7383, + "id": 7750, "name": "exchange", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6953, + "target": 7320, "name": "OrderExchange", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7384, + "id": 7751, "name": "claim_id", "variant": "declaration", "kind": 1024, @@ -9789,21 +9799,21 @@ } }, { - "id": 7385, + "id": 7752, "name": "claim", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6886, + "target": 7253, "name": "OrderClaim", "package": "@medusajs/order", "qualifiedName": "default" } }, { - "id": 7386, + "id": 7753, "name": "version", "variant": "declaration", "kind": 1024, @@ -9815,7 +9825,7 @@ "defaultValue": "1" }, { - "id": 7387, + "id": 7754, "name": "amount", "variant": "declaration", "kind": 1024, @@ -9840,7 +9850,7 @@ } }, { - "id": 7388, + "id": 7755, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -9856,7 +9866,7 @@ } }, { - "id": 7389, + "id": 7756, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -9867,7 +9877,7 @@ } }, { - "id": 7390, + "id": 7757, "name": "reference", "variant": "declaration", "kind": 1024, @@ -9888,7 +9898,7 @@ "defaultValue": "null" }, { - "id": 7391, + "id": 7758, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -9909,7 +9919,7 @@ "defaultValue": "null" }, { - "id": 7392, + "id": 7759, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -9925,7 +9935,7 @@ } }, { - "id": 7393, + "id": 7760, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -9941,7 +9951,7 @@ } }, { - "id": 7394, + "id": 7761, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -9967,14 +9977,14 @@ "defaultValue": "null" }, { - "id": 7395, + "id": 7762, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7396, + "id": 7763, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -9987,14 +9997,14 @@ ] }, { - "id": 7397, + "id": 7764, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7398, + "id": 7765, "name": "onInit", "variant": "signature", "kind": 4096, @@ -10011,38 +10021,38 @@ { "title": "Constructors", "children": [ - 7375 + 7742 ] }, { "title": "Properties", "children": [ - 7399, - 7377, - 7378, - 7379, - 7380, - 7381, - 7382, - 7383, - 7384, - 7385, - 7386, - 7387, - 7388, - 7389, - 7390, - 7391, - 7392, - 7393, - 7394 + 7766, + 7744, + 7745, + 7746, + 7747, + 7748, + 7749, + 7750, + 7751, + 7752, + 7753, + 7754, + 7755, + 7756, + 7757, + 7758, + 7759, + 7760, + 7761 ] }, { "title": "Methods", "children": [ - 7395, - 7397 + 7762, + 7764 ] } ] @@ -10052,2006 +10062,2006 @@ { "title": "Classes", "children": [ - 6863, - 6937, - 6914, - 6886, - 6980, - 6953, - 7036, - 7055, - 7000, - 7142, - 7105, - 7174, - 7206, - 7229, - 7073, - 7274, - 7298, - 7244, - 7337, - 7356, - 7317, - 7374 + 7230, + 7304, + 7281, + 7253, + 7347, + 7320, + 7403, + 7422, + 7367, + 7509, + 7472, + 7541, + 7573, + 7596, + 7440, + 7641, + 7665, + 7611, + 7704, + 7723, + 7684, + 7741 ] } ], "packageName": "@medusajs/order", "symbolIdMap": { - "6862": { + "7229": { "sourceFileName": "../../../../packages/modules/order/src/models/index.ts", "qualifiedName": "" }, - "6863": { + "7230": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default" }, - "6866": { + "7233": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.id" }, - "6867": { + "7234": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.customer_id" }, - "6868": { + "7235": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.company" }, - "6869": { + "7236": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.first_name" }, - "6870": { + "7237": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.last_name" }, - "6871": { + "7238": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.address_1" }, - "6872": { + "7239": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.address_2" }, - "6873": { + "7240": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.city" }, - "6874": { + "7241": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.country_code" }, - "6875": { + "7242": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.province" }, - "6876": { + "7243": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.postal_code" }, - "6877": { + "7244": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.phone" }, - "6878": { + "7245": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.metadata" }, - "6879": { + "7246": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.created_at" }, - "6880": { + "7247": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.updated_at" }, - "6881": { + "7248": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.onCreate" }, - "6882": { + "7249": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.onCreate" }, - "6883": { + "7250": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.onInit" }, - "6884": { + "7251": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.onInit" }, - "6885": { + "7252": { "sourceFileName": "../../../../packages/modules/order/src/models/address.ts", "qualifiedName": "default.[OptionalProps]" }, - "6886": { + "7253": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default" }, - "6889": { + "7256": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.id" }, - "6890": { + "7257": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.order_id" }, - "6891": { + "7258": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.order" }, - "6892": { + "7259": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.return" }, - "6893": { + "7260": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.return_id" }, - "6894": { + "7261": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.order_version" }, - "6895": { + "7262": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.display_id" }, - "6896": { + "7263": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.type" }, - "6897": { + "7264": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.no_notification" }, - "6898": { + "7265": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.refund_amount" }, - "6899": { + "7266": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.raw_refund_amount" }, - "6900": { + "7267": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.additional_items" }, - "6901": { + "7268": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.claim_items" }, - "6902": { + "7269": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.shipping_methods" }, - "6903": { + "7270": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.transactions" }, - "6904": { + "7271": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.metadata" }, - "6905": { + "7272": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.created_at" }, - "6906": { + "7273": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.updated_at" }, - "6907": { + "7274": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.deleted_at" }, - "6908": { + "7275": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.canceled_at" }, - "6909": { + "7276": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.onCreate" }, - "6910": { + "7277": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.onCreate" }, - "6911": { + "7278": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.onInit" }, - "6912": { + "7279": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.onInit" }, - "6913": { + "7280": { "sourceFileName": "../../../../packages/modules/order/src/models/claim.ts", "qualifiedName": "default.[OptionalProps]" }, - "6914": { + "7281": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default" }, - "6917": { + "7284": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.id" }, - "6918": { + "7285": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.images" }, - "6919": { + "7286": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.reason" }, - "6920": { + "7287": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.quantity" }, - "6921": { + "7288": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.raw_quantity" }, - "6922": { + "7289": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.claim_id" }, - "6923": { + "7290": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.claim" }, - "6924": { + "7291": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.item_id" }, - "6925": { + "7292": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.item" }, - "6926": { + "7293": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.is_additional_item" }, - "6927": { + "7294": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.note" }, - "6928": { + "7295": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.metadata" }, - "6929": { + "7296": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.created_at" }, - "6930": { + "7297": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.updated_at" }, - "6931": { + "7298": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.deleted_at" }, - "6932": { + "7299": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.onCreate" }, - "6933": { + "7300": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.onCreate" }, - "6934": { + "7301": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.onInit" }, - "6935": { + "7302": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.onInit" }, - "6936": { + "7303": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item.ts", "qualifiedName": "default.[OptionalProps]" }, - "6937": { + "7304": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default" }, - "6940": { + "7307": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default.id" }, - "6941": { + "7308": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default.claim_item_id" }, - "6942": { + "7309": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default.item" }, - "6943": { + "7310": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default.url" }, - "6944": { + "7311": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default.metadata" }, - "6945": { + "7312": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default.created_at" }, - "6946": { + "7313": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default.updated_at" }, - "6947": { + "7314": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default.deleted_at" }, - "6948": { + "7315": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default.onCreate" }, - "6949": { + "7316": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default.onCreate" }, - "6950": { + "7317": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default.onInit" }, - "6951": { + "7318": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default.onInit" }, - "6952": { + "7319": { "sourceFileName": "../../../../packages/modules/order/src/models/claim-item-image.ts", "qualifiedName": "default.[OptionalProps]" }, - "6953": { + "7320": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default" }, - "6956": { + "7323": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.id" }, - "6957": { + "7324": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.order_id" }, - "6958": { + "7325": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.order" }, - "6959": { + "7326": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.return" }, - "6960": { + "7327": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.return_id" }, - "6961": { + "7328": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.order_version" }, - "6962": { + "7329": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.display_id" }, - "6963": { + "7330": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.no_notification" }, - "6964": { + "7331": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.difference_due" }, - "6965": { + "7332": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.raw_difference_due" }, - "6966": { + "7333": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.allow_backorder" }, - "6967": { + "7334": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.additional_items" }, - "6968": { + "7335": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.shipping_methods" }, - "6969": { + "7336": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.transactions" }, - "6970": { + "7337": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.metadata" }, - "6971": { + "7338": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.created_at" }, - "6972": { + "7339": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.updated_at" }, - "6973": { + "7340": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.deleted_at" }, - "6974": { + "7341": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.canceled_at" }, - "6975": { + "7342": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.onCreate" }, - "6976": { + "7343": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.onCreate" }, - "6977": { + "7344": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.onInit" }, - "6978": { + "7345": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.onInit" }, - "6979": { + "7346": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange.ts", "qualifiedName": "default.[OptionalProps]" }, - "6980": { + "7347": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default" }, - "6983": { + "7350": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.id" }, - "6984": { + "7351": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.quantity" }, - "6985": { + "7352": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.raw_quantity" }, - "6986": { + "7353": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.exchange_id" }, - "6987": { + "7354": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.exchange" }, - "6988": { + "7355": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.item_id" }, - "6989": { + "7356": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.item" }, - "6990": { + "7357": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.note" }, - "6991": { + "7358": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.metadata" }, - "6992": { + "7359": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.created_at" }, - "6993": { + "7360": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.updated_at" }, - "6994": { + "7361": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.deleted_at" }, - "6995": { + "7362": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.onCreate" }, - "6996": { + "7363": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.onCreate" }, - "6997": { + "7364": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.onInit" }, - "6998": { + "7365": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.onInit" }, - "6999": { + "7366": { "sourceFileName": "../../../../packages/modules/order/src/models/exchange-item.ts", "qualifiedName": "default.[OptionalProps]" }, - "7000": { + "7367": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default" }, - "7003": { + "7370": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.id" }, - "7004": { + "7371": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.title" }, - "7005": { + "7372": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.subtitle" }, - "7006": { + "7373": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.thumbnail" }, - "7007": { + "7374": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.variant_id" }, - "7008": { + "7375": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.product_id" }, - "7009": { + "7376": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.product_title" }, - "7010": { + "7377": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.product_description" }, - "7011": { + "7378": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.product_subtitle" }, - "7012": { + "7379": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.product_type" }, - "7013": { + "7380": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.product_collection" }, - "7014": { + "7381": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.product_handle" }, - "7015": { + "7382": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.variant_sku" }, - "7016": { + "7383": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.variant_barcode" }, - "7017": { + "7384": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.variant_title" }, - "7018": { + "7385": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.variant_option_values" }, - "7019": { + "7386": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.requires_shipping" }, - "7020": { + "7387": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.is_discountable" }, - "7021": { + "7388": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.is_tax_inclusive" }, - "7022": { + "7389": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.compare_at_unit_price" }, - "7023": { + "7390": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.raw_compare_at_unit_price" }, - "7024": { + "7391": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.unit_price" }, - "7025": { + "7392": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.raw_unit_price" }, - "7026": { + "7393": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.tax_lines" }, - "7027": { + "7394": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.adjustments" }, - "7028": { + "7395": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.metadata" }, - "7029": { + "7396": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.created_at" }, - "7030": { + "7397": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.updated_at" }, - "7031": { + "7398": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.onCreate" }, - "7032": { + "7399": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.onCreate" }, - "7033": { + "7400": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.onInit" }, - "7034": { + "7401": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.onInit" }, - "7035": { + "7402": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item.ts", "qualifiedName": "default.[OptionalProps]" }, - "7036": { + "7403": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-adjustment.ts", "qualifiedName": "default" }, - "7039": { + "7406": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-adjustment.ts", "qualifiedName": "default.item" }, - "7040": { + "7407": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-adjustment.ts", "qualifiedName": "default.item_id" }, - "7041": { + "7408": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-adjustment.ts", "qualifiedName": "default.onCreate" }, - "7042": { + "7409": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-adjustment.ts", "qualifiedName": "default.onCreate" }, - "7043": { + "7410": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-adjustment.ts", "qualifiedName": "default.onInit" }, - "7044": { + "7411": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-adjustment.ts", "qualifiedName": "default.onInit" }, - "7045": { + "7412": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.id" }, - "7046": { + "7413": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.description" }, - "7047": { + "7414": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.promotion_id" }, - "7048": { + "7415": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.code" }, - "7049": { + "7416": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.amount" }, - "7050": { + "7417": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.raw_amount" }, - "7051": { + "7418": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.provider_id" }, - "7052": { + "7419": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.created_at" }, - "7053": { + "7420": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.updated_at" }, - "7054": { + "7421": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.[OptionalProps]" }, - "7055": { + "7422": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-tax-line.ts", "qualifiedName": "default" }, - "7058": { + "7425": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-tax-line.ts", "qualifiedName": "default.item" }, - "7059": { + "7426": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-tax-line.ts", "qualifiedName": "default.item_id" }, - "7060": { + "7427": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-tax-line.ts", "qualifiedName": "default.onCreate" }, - "7061": { + "7428": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-tax-line.ts", "qualifiedName": "default.onCreate" }, - "7062": { + "7429": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-tax-line.ts", "qualifiedName": "default.onInit" }, - "7063": { + "7430": { "sourceFileName": "../../../../packages/modules/order/src/models/line-item-tax-line.ts", "qualifiedName": "default.onInit" }, - "7064": { + "7431": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.id" }, - "7065": { + "7432": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.description" }, - "7066": { + "7433": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.tax_rate_id" }, - "7067": { + "7434": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.code" }, - "7068": { + "7435": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.rate" }, - "7069": { + "7436": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.raw_rate" }, - "7070": { + "7437": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.provider_id" }, - "7071": { + "7438": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.created_at" }, - "7072": { + "7439": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.updated_at" }, - "7073": { + "7440": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default" }, - "7076": { + "7443": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.id" }, - "7077": { + "7444": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.display_id" }, - "7078": { + "7445": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.region_id" }, - "7079": { + "7446": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.customer_id" }, - "7080": { + "7447": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.version" }, - "7081": { + "7448": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.sales_channel_id" }, - "7082": { + "7449": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.status" }, - "7083": { + "7450": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.is_draft_order" }, - "7084": { + "7451": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.email" }, - "7085": { + "7452": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.currency_code" }, - "7086": { + "7453": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.shipping_address_id" }, - "7087": { + "7454": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.shipping_address" }, - "7088": { + "7455": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.billing_address_id" }, - "7089": { + "7456": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.billing_address" }, - "7090": { + "7457": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.no_notification" }, - "7091": { + "7458": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.summary" }, - "7092": { + "7459": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.metadata" }, - "7093": { + "7460": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.items" }, - "7094": { + "7461": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.shipping_methods" }, - "7095": { + "7462": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.transactions" }, - "7096": { + "7463": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.created_at" }, - "7097": { + "7464": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.updated_at" }, - "7098": { + "7465": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.deleted_at" }, - "7099": { + "7466": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.canceled_at" }, - "7100": { + "7467": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.onCreate" }, - "7101": { + "7468": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.onCreate" }, - "7102": { + "7469": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.onInit" }, - "7103": { + "7470": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.onInit" }, - "7104": { + "7471": { "sourceFileName": "../../../../packages/modules/order/src/models/order.ts", "qualifiedName": "default.[OptionalProps]" }, - "7105": { + "7472": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default" }, - "7108": { + "7475": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.id" }, - "7109": { + "7476": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.order_id" }, - "7110": { + "7477": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.order" }, - "7111": { + "7478": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.return_id" }, - "7112": { + "7479": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.return" }, - "7113": { + "7480": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.claim_id" }, - "7114": { + "7481": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.claim" }, - "7115": { + "7482": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.exchange_id" }, - "7116": { + "7483": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.exchange" }, - "7117": { + "7484": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.version" }, - "7118": { + "7485": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.change_type" }, - "7119": { + "7486": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.actions" }, - "7120": { + "7487": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.description" }, - "7121": { + "7488": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.status" }, - "7122": { + "7489": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.internal_note" }, - "7123": { + "7490": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.created_by" }, - "7124": { + "7491": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.requested_by" }, - "7125": { + "7492": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.requested_at" }, - "7126": { + "7493": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.confirmed_by" }, - "7127": { + "7494": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.confirmed_at" }, - "7128": { + "7495": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.declined_by" }, - "7129": { + "7496": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.declined_reason" }, - "7130": { + "7497": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.metadata" }, - "7131": { + "7498": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.declined_at" }, - "7132": { + "7499": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.canceled_by" }, - "7133": { + "7500": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.canceled_at" }, - "7134": { + "7501": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.created_at" }, - "7135": { + "7502": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.updated_at" }, - "7136": { + "7503": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.deleted_at" }, - "7137": { + "7504": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.onCreate" }, - "7138": { + "7505": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.onCreate" }, - "7139": { + "7506": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.onInit" }, - "7140": { + "7507": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.onInit" }, - "7141": { + "7508": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change.ts", "qualifiedName": "default.[OptionalProps]" }, - "7142": { + "7509": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default" }, - "7145": { + "7512": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.id" }, - "7146": { + "7513": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.ordering" }, - "7147": { + "7514": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.order_id" }, - "7148": { + "7515": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.order" }, - "7149": { + "7516": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.return_id" }, - "7150": { + "7517": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.return" }, - "7151": { + "7518": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.claim_id" }, - "7152": { + "7519": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.claim" }, - "7153": { + "7520": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.exchange_id" }, - "7154": { + "7521": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.exchange" }, - "7155": { + "7522": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.version" }, - "7156": { + "7523": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.order_change_id" }, - "7157": { + "7524": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.order_change" }, - "7158": { + "7525": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.reference" }, - "7159": { + "7526": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.reference_id" }, - "7160": { + "7527": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.action" }, - "7161": { + "7528": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.details" }, - "7162": { + "7529": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.amount" }, - "7163": { + "7530": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.raw_amount" }, - "7164": { + "7531": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.internal_note" }, - "7165": { + "7532": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.applied" }, - "7166": { + "7533": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.created_at" }, - "7167": { + "7534": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.updated_at" }, - "7168": { + "7535": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.deleted_at" }, - "7169": { + "7536": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.onCreate" }, - "7170": { + "7537": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.onCreate" }, - "7171": { + "7538": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.onInit" }, - "7172": { + "7539": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.onInit" }, - "7173": { + "7540": { "sourceFileName": "../../../../packages/modules/order/src/models/order-change-action.ts", "qualifiedName": "default.[OptionalProps]" }, - "7174": { + "7541": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default" }, - "7177": { + "7544": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.id" }, - "7178": { + "7545": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.order_id" }, - "7179": { + "7546": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.order" }, - "7180": { + "7547": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.version" }, - "7181": { + "7548": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.item_id" }, - "7182": { + "7549": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.item" }, - "7183": { + "7550": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.quantity" }, - "7184": { + "7551": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.raw_quantity" }, - "7185": { + "7552": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.fulfilled_quantity" }, - "7186": { + "7553": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.raw_fulfilled_quantity" }, - "7187": { + "7554": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.shipped_quantity" }, - "7188": { + "7555": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.raw_shipped_quantity" }, - "7189": { + "7556": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.return_requested_quantity" }, - "7190": { + "7557": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.raw_return_requested_quantity" }, - "7191": { + "7558": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.return_received_quantity" }, - "7192": { + "7559": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.raw_return_received_quantity" }, - "7193": { + "7560": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.return_dismissed_quantity" }, - "7194": { + "7561": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.raw_return_dismissed_quantity" }, - "7195": { + "7562": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.written_off_quantity" }, - "7196": { + "7563": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.raw_written_off_quantity" }, - "7197": { + "7564": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.metadata" }, - "7198": { + "7565": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.created_at" }, - "7199": { + "7566": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.updated_at" }, - "7200": { + "7567": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.deleted_at" }, - "7201": { + "7568": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.onCreate" }, - "7202": { + "7569": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.onCreate" }, - "7203": { + "7570": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.onInit" }, - "7204": { + "7571": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.onInit" }, - "7205": { + "7572": { "sourceFileName": "../../../../packages/modules/order/src/models/order-item.ts", "qualifiedName": "default.[OptionalProps]" }, - "7206": { + "7573": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default" }, - "7209": { + "7576": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.id" }, - "7210": { + "7577": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.order_id" }, - "7211": { + "7578": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.order" }, - "7212": { + "7579": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.return_id" }, - "7213": { + "7580": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.return" }, - "7214": { + "7581": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.exchange_id" }, - "7215": { + "7582": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.exchange" }, - "7216": { + "7583": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.claim_id" }, - "7217": { + "7584": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.claim" }, - "7218": { + "7585": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.version" }, - "7219": { + "7586": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.shipping_method_id" }, - "7220": { + "7587": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.shipping_method" }, - "7221": { + "7588": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.created_at" }, - "7222": { + "7589": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.updated_at" }, - "7223": { + "7590": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.deleted_at" }, - "7224": { + "7591": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.onCreate" }, - "7225": { + "7592": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.onCreate" }, - "7226": { + "7593": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.onInit" }, - "7227": { + "7594": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.onInit" }, - "7228": { + "7595": { "sourceFileName": "../../../../packages/modules/order/src/models/order-shipping-method.ts", "qualifiedName": "default.[OptionalProps]" }, - "7229": { + "7596": { "sourceFileName": "../../../../packages/modules/order/src/models/order-summary.ts", "qualifiedName": "default" }, - "7232": { + "7599": { "sourceFileName": "../../../../packages/modules/order/src/models/order-summary.ts", "qualifiedName": "default.id" }, - "7233": { + "7600": { "sourceFileName": "../../../../packages/modules/order/src/models/order-summary.ts", "qualifiedName": "default.order_id" }, - "7234": { + "7601": { "sourceFileName": "../../../../packages/modules/order/src/models/order-summary.ts", "qualifiedName": "default.order" }, - "7235": { + "7602": { "sourceFileName": "../../../../packages/modules/order/src/models/order-summary.ts", "qualifiedName": "default.version" }, - "7236": { + "7603": { "sourceFileName": "../../../../packages/modules/order/src/models/order-summary.ts", "qualifiedName": "default.totals" }, - "7237": { + "7604": { "sourceFileName": "../../../../packages/modules/order/src/models/order-summary.ts", "qualifiedName": "default.created_at" }, - "7238": { + "7605": { "sourceFileName": "../../../../packages/modules/order/src/models/order-summary.ts", "qualifiedName": "default.updated_at" }, - "7239": { + "7606": { "sourceFileName": "../../../../packages/modules/order/src/models/order-summary.ts", "qualifiedName": "default.deleted_at" }, - "7240": { + "7607": { "sourceFileName": "../../../../packages/modules/order/src/models/order-summary.ts", "qualifiedName": "default.onCreate" }, - "7241": { + "7608": { "sourceFileName": "../../../../packages/modules/order/src/models/order-summary.ts", "qualifiedName": "default.onCreate" }, - "7242": { + "7609": { "sourceFileName": "../../../../packages/modules/order/src/models/order-summary.ts", "qualifiedName": "default.onInit" }, - "7243": { + "7610": { "sourceFileName": "../../../../packages/modules/order/src/models/order-summary.ts", "qualifiedName": "default.onInit" }, - "7244": { + "7611": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default" }, - "7247": { + "7614": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.id" }, - "7248": { + "7615": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.order_id" }, - "7249": { + "7616": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.order" }, - "7250": { + "7617": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.exchange" }, - "7251": { + "7618": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.exchange_id" }, - "7252": { + "7619": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.claim" }, - "7253": { + "7620": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.claim_id" }, - "7254": { + "7621": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.order_version" }, - "7255": { + "7622": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.display_id" }, - "7256": { + "7623": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.status" }, - "7257": { + "7624": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.no_notification" }, - "7258": { + "7625": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.refund_amount" }, - "7259": { + "7626": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.raw_refund_amount" }, - "7260": { + "7627": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.items" }, - "7261": { + "7628": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.shipping_methods" }, - "7262": { + "7629": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.transactions" }, - "7263": { + "7630": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.metadata" }, - "7264": { + "7631": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.created_at" }, - "7265": { + "7632": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.updated_at" }, - "7266": { + "7633": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.deleted_at" }, - "7267": { + "7634": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.received_at" }, - "7268": { + "7635": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.canceled_at" }, - "7269": { + "7636": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.onCreate" }, - "7270": { + "7637": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.onCreate" }, - "7271": { + "7638": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.onInit" }, - "7272": { + "7639": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.onInit" }, - "7273": { + "7640": { "sourceFileName": "../../../../packages/modules/order/src/models/return.ts", "qualifiedName": "default.[OptionalProps]" }, - "7274": { + "7641": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default" }, - "7277": { + "7644": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.id" }, - "7278": { + "7645": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.reason_id" }, - "7279": { + "7646": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.reason" }, - "7280": { + "7647": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.quantity" }, - "7281": { + "7648": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.raw_quantity" }, - "7282": { + "7649": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.received_quantity" }, - "7283": { + "7650": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.raw_received_quantity" }, - "7284": { + "7651": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.return_id" }, - "7285": { + "7652": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.return" }, - "7286": { + "7653": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.item_id" }, - "7287": { + "7654": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.item" }, - "7288": { + "7655": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.note" }, - "7289": { + "7656": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.metadata" }, - "7290": { + "7657": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.created_at" }, - "7291": { + "7658": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.updated_at" }, - "7292": { + "7659": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.deleted_at" }, - "7293": { + "7660": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.onCreate" }, - "7294": { + "7661": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.onCreate" }, - "7295": { + "7662": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.onInit" }, - "7296": { + "7663": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.onInit" }, - "7297": { + "7664": { "sourceFileName": "../../../../packages/modules/order/src/models/return-item.ts", "qualifiedName": "default.[OptionalProps]" }, - "7298": { + "7665": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default" }, - "7301": { + "7668": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.id" }, - "7302": { + "7669": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.value" }, - "7303": { + "7670": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.label" }, - "7304": { + "7671": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.description" }, - "7305": { + "7672": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.parent_return_reason_id" }, - "7306": { + "7673": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.parent_return_reason" }, - "7307": { + "7674": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.return_reason_children" }, - "7308": { + "7675": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.metadata" }, - "7309": { + "7676": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.created_at" }, - "7310": { + "7677": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.updated_at" }, - "7311": { + "7678": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.deleted_at" }, - "7312": { + "7679": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.onCreate" }, - "7313": { + "7680": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.onCreate" }, - "7314": { + "7681": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.onInit" }, - "7315": { + "7682": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.onInit" }, - "7316": { + "7683": { "sourceFileName": "../../../../packages/modules/order/src/models/return-reason.ts", "qualifiedName": "default.[OptionalProps]" }, - "7317": { + "7684": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default" }, - "7320": { + "7687": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.id" }, - "7321": { + "7688": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.name" }, - "7322": { + "7689": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.description" }, - "7323": { + "7690": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.amount" }, - "7324": { + "7691": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.raw_amount" }, - "7325": { + "7692": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.is_tax_inclusive" }, - "7326": { + "7693": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.shipping_option_id" }, - "7327": { + "7694": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.data" }, - "7328": { + "7695": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.metadata" }, - "7329": { + "7696": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.tax_lines" }, - "7330": { + "7697": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.adjustments" }, - "7331": { + "7698": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.created_at" }, - "7332": { + "7699": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.updated_at" }, - "7333": { + "7700": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.onCreate" }, - "7334": { + "7701": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.onCreate" }, - "7335": { + "7702": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.onInit" }, - "7336": { + "7703": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method.ts", "qualifiedName": "default.onInit" }, - "7337": { + "7704": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-adjustment.ts", "qualifiedName": "default" }, - "7340": { + "7707": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-adjustment.ts", "qualifiedName": "default.shipping_method" }, - "7341": { + "7708": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-adjustment.ts", "qualifiedName": "default.shipping_method_id" }, - "7342": { + "7709": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-adjustment.ts", "qualifiedName": "default.onCreate" }, - "7343": { + "7710": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-adjustment.ts", "qualifiedName": "default.onCreate" }, - "7344": { + "7711": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-adjustment.ts", "qualifiedName": "default.onInit" }, - "7345": { + "7712": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-adjustment.ts", "qualifiedName": "default.onInit" }, - "7346": { + "7713": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.id" }, - "7347": { + "7714": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.description" }, - "7348": { + "7715": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.promotion_id" }, - "7349": { + "7716": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.code" }, - "7350": { + "7717": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.amount" }, - "7351": { + "7718": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.raw_amount" }, - "7352": { + "7719": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.provider_id" }, - "7353": { + "7720": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.created_at" }, - "7354": { + "7721": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.updated_at" }, - "7355": { + "7722": { "sourceFileName": "../../../../packages/modules/order/src/models/adjustment-line.ts", "qualifiedName": "default.[OptionalProps]" }, - "7356": { + "7723": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-tax-line.ts", "qualifiedName": "default" }, - "7359": { + "7726": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-tax-line.ts", "qualifiedName": "default.shipping_method" }, - "7360": { + "7727": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-tax-line.ts", "qualifiedName": "default.shipping_method_id" }, - "7361": { + "7728": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-tax-line.ts", "qualifiedName": "default.onCreate" }, - "7362": { + "7729": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-tax-line.ts", "qualifiedName": "default.onCreate" }, - "7363": { + "7730": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-tax-line.ts", "qualifiedName": "default.onInit" }, - "7364": { + "7731": { "sourceFileName": "../../../../packages/modules/order/src/models/shipping-method-tax-line.ts", "qualifiedName": "default.onInit" }, - "7365": { + "7732": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.id" }, - "7366": { + "7733": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.description" }, - "7367": { + "7734": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.tax_rate_id" }, - "7368": { + "7735": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.code" }, - "7369": { + "7736": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.rate" }, - "7370": { + "7737": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.raw_rate" }, - "7371": { + "7738": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.provider_id" }, - "7372": { + "7739": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.created_at" }, - "7373": { + "7740": { "sourceFileName": "../../../../packages/modules/order/src/models/tax-line.ts", "qualifiedName": "default.updated_at" }, - "7374": { + "7741": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default" }, - "7377": { + "7744": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.id" }, - "7378": { + "7745": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.order_id" }, - "7379": { + "7746": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.order" }, - "7380": { + "7747": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.return_id" }, - "7381": { + "7748": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.return" }, - "7382": { + "7749": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.exchange_id" }, - "7383": { + "7750": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.exchange" }, - "7384": { + "7751": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.claim_id" }, - "7385": { + "7752": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.claim" }, - "7386": { + "7753": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.version" }, - "7387": { + "7754": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.amount" }, - "7388": { + "7755": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.raw_amount" }, - "7389": { + "7756": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.currency_code" }, - "7390": { + "7757": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.reference" }, - "7391": { + "7758": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.reference_id" }, - "7392": { + "7759": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.created_at" }, - "7393": { + "7760": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.updated_at" }, - "7394": { + "7761": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.deleted_at" }, - "7395": { + "7762": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.onCreate" }, - "7396": { + "7763": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.onCreate" }, - "7397": { + "7764": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.onInit" }, - "7398": { + "7765": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.onInit" }, - "7399": { + "7766": { "sourceFileName": "../../../../packages/modules/order/src/models/transaction.ts", "qualifiedName": "default.[OptionalProps]" } @@ -12061,7 +12071,7 @@ "1": "../../../../packages/modules/order/src/models/index.ts" }, "reflections": { - "1": 6862 + "1": 7229 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/order.json b/www/utils/generated/typedoc-json-output/order.json index 9d263f65b6b23..23905d27e2d8b 100644 --- a/www/utils/generated/typedoc-json-output/order.json +++ b/www/utils/generated/typedoc-json-output/order.json @@ -1,12 +1,12 @@ { - "id": 4958, + "id": 5002, "name": "order", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 5571, + "id": 5812, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 5572, + "id": 5813, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 5583, + "target": 5824, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 5573, + "id": 5814, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 5574, + "id": 5815, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 5575, + "id": 5816, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 5576, + "id": 5817, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 5577, + "id": 5818, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 5578, + "id": 5819, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 5579, + "id": 5820, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 5580, + "id": 5821, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 5581, + "id": 5822, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 5582, + "id": 5823, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 5572, - 5573, - 5574, - 5575, - 5576, - 5580, - 5581, - 5582 + 5813, + 5814, + 5815, + 5816, + 5817, + 5821, + 5822, + 5823 ] } ], "typeParameters": [ { - "id": 5583, + "id": 5824, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 6640, + "id": 7005, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -374,7 +374,7 @@ }, "children": [ { - "id": 6641, + "id": 7006, "name": "$and", "variant": "declaration", "kind": 1024, @@ -396,11 +396,11 @@ "types": [ { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6643, + "target": 7008, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -412,7 +412,7 @@ }, { "type": "reference", - "target": 6643, + "target": 7008, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -423,7 +423,7 @@ } }, { - "id": 6642, + "id": 7007, "name": "$or", "variant": "declaration", "kind": 1024, @@ -445,11 +445,11 @@ "types": [ { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6643, + "target": 7008, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -461,7 +461,7 @@ }, { "type": "reference", - "target": 6643, + "target": 7008, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -476,14 +476,14 @@ { "title": "Properties", "children": [ - 6641, - 6642 + 7006, + 7007 ] } ], "typeParameters": [ { - "id": 6643, + "id": 7008, "name": "T", "variant": "typeParam", "kind": 131072, @@ -493,53 +493,78 @@ "extendedBy": [ { "type": "reference", - "target": 5659, + "target": 5901, "name": "FilterableOrderProps" }, { "type": "reference", - "target": 5896, + "target": 6142, "name": "FilterableOrderAddressProps" }, { "type": "reference", - "target": 6001, + "target": 6247, "name": "FilterableOrderLineItemProps" }, { "type": "reference", - "target": 6091, + "target": 6337, "name": "FilterableOrderShippingMethodProps" }, { "type": "reference", - "target": 6174, + "target": 6424, "name": "FilterableOrderLineItemAdjustmentProps" }, { "type": "reference", - "target": 6208, + "target": 6458, "name": "FilterableOrderShippingMethodAdjustmentProps" }, { "type": "reference", - "target": 6242, + "target": 6492, "name": "FilterableOrderLineItemTaxLineProps" }, { "type": "reference", - "target": 6280, + "target": 6530, "name": "FilterableOrderShippingMethodTaxLineProps" }, { "type": "reference", - "target": 6400, + "target": 6648, + "name": "FilterableOrderChangeActionProps" + }, + { + "type": "reference", + "target": 6684, "name": "FilterableOrderTransactionProps" + }, + { + "type": "reference", + "target": 6726, + "name": "FilterableOrderReturnReasonProps" + }, + { + "type": "reference", + "target": 6773, + "name": "FilterableReturnProps" + }, + { + "type": "reference", + "target": 6815, + "name": "FilterableOrderClaimProps" + }, + { + "type": "reference", + "target": 6847, + "name": "FilterableOrderExchangeProps" } ] }, { - "id": 5890, + "id": 6136, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -554,7 +579,7 @@ }, "children": [ { - "id": 5891, + "id": 6137, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -573,7 +598,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 5892, + "target": 6138, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -585,13 +610,13 @@ { "title": "Properties", "children": [ - 5891 + 6137 ] } ], "typeParameters": [ { - "id": 5892, + "id": 6138, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -604,7 +629,7 @@ ] }, { - "id": 5893, + "id": 6139, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -619,7 +644,7 @@ }, "children": [ { - "id": 5894, + "id": 6140, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -638,7 +663,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 5895, + "target": 6141, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -650,13 +675,13 @@ { "title": "Properties", "children": [ - 5894 + 6140 ] } ], "typeParameters": [ { - "id": 5895, + "id": 6141, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -669,14 +694,14 @@ ] }, { - "id": 6810, + "id": 7177, "name": "Query", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 6811, + "id": 7178, "name": "T", "variant": "typeParam", "kind": 131072, @@ -687,7 +712,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 6811, + "target": 7178, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -700,14 +725,14 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 6811, + "target": 7178, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 6832, + "target": 7199, "name": "Scalar", "package": "@medusajs/types" }, @@ -717,11 +742,11 @@ }, "falseType": { "type": "reference", - "target": 6836, + "target": 7203, "typeArguments": [ { "type": "reference", - "target": 6811, + "target": 7178, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -733,11 +758,11 @@ }, "falseType": { "type": "reference", - "target": 6842, + "target": 7209, "typeArguments": [ { "type": "reference", - "target": 6811, + "target": 7178, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -749,14 +774,14 @@ } }, { - "id": 6812, + "id": 7179, "name": "ExpandScalar", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 6813, + "id": 7180, "name": "T", "variant": "typeParam", "kind": 131072, @@ -774,7 +799,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 6813, + "target": 7180, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -805,7 +830,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 6813, + "target": 7180, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -839,7 +864,7 @@ }, "falseType": { "type": "reference", - "target": 6813, + "target": 7180, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -850,7 +875,7 @@ } }, { - "id": 6832, + "id": 7199, "name": "Scalar", "variant": "declaration", "kind": 2097152, @@ -909,21 +934,21 @@ { "type": "reflection", "declaration": { - "id": 6833, + "id": 7200, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6834, + "id": 7201, "name": "toHexString", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6835, + "id": 7202, "name": "toHexString", "variant": "signature", "kind": 4096, @@ -940,7 +965,7 @@ { "title": "Methods", "children": [ - 6834 + 7201 ] } ] @@ -950,14 +975,14 @@ } }, { - "id": 6860, + "id": 7227, "name": "ReadonlyPrimary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 6861, + "id": 7228, "name": "T", "variant": "typeParam", "kind": 131072, @@ -968,7 +993,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 6861, + "target": 7228, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -989,7 +1014,7 @@ "typeArguments": [ { "type": "reference", - "target": 6861, + "target": 7228, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1000,7 +1025,7 @@ }, "falseType": { "type": "reference", - "target": 6861, + "target": 7228, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1008,14 +1033,14 @@ } }, { - "id": 6850, + "id": 7217, "name": "Primary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 6859, + "id": 7226, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1026,7 +1051,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 6859, + "target": 7226, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1034,14 +1059,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 6851, + "id": 7218, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6852, + "id": 7219, "name": "[PrimaryKeyType]", "variant": "declaration", "kind": 1024, @@ -1058,7 +1083,7 @@ { "title": "Properties", "children": [ - 6852 + 7219 ] } ] @@ -1066,7 +1091,7 @@ }, "trueType": { "type": "reference", - "target": 6860, + "target": 7227, "typeArguments": [ { "type": "reference", @@ -1086,7 +1111,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 6859, + "target": 7226, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1094,14 +1119,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 6853, + "id": 7220, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6854, + "id": 7221, "name": "_id", "variant": "declaration", "kind": 1024, @@ -1118,7 +1143,7 @@ { "title": "Properties", "children": [ - 6854 + 7221 ] } ] @@ -1129,7 +1154,7 @@ "types": [ { "type": "reference", - "target": 6860, + "target": 7227, "typeArguments": [ { "type": "reference", @@ -1155,7 +1180,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 6859, + "target": 7226, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1163,14 +1188,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 6855, + "id": 7222, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6856, + "id": 7223, "name": "uuid", "variant": "declaration", "kind": 1024, @@ -1187,7 +1212,7 @@ { "title": "Properties", "children": [ - 6856 + 7223 ] } ] @@ -1195,7 +1220,7 @@ }, "trueType": { "type": "reference", - "target": 6860, + "target": 7227, "typeArguments": [ { "type": "reference", @@ -1215,7 +1240,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 6859, + "target": 7226, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1223,14 +1248,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 6857, + "id": 7224, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6858, + "id": 7225, "name": "id", "variant": "declaration", "kind": 1024, @@ -1247,7 +1272,7 @@ { "title": "Properties", "children": [ - 6858 + 7225 ] } ] @@ -1255,7 +1280,7 @@ }, "trueType": { "type": "reference", - "target": 6860, + "target": 7227, "typeArguments": [ { "type": "reference", @@ -1281,14 +1306,14 @@ } }, { - "id": 6644, + "id": 7009, "name": "OperatorMap", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 6665, + "id": 7030, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1298,14 +1323,14 @@ "type": { "type": "reflection", "declaration": { - "id": 6645, + "id": 7010, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6646, + "id": 7011, "name": "$and", "variant": "declaration", "kind": 1024, @@ -1316,11 +1341,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 6810, + "target": 7177, "typeArguments": [ { "type": "reference", - "target": 6665, + "target": 7030, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1332,7 +1357,7 @@ } }, { - "id": 6647, + "id": 7012, "name": "$or", "variant": "declaration", "kind": 1024, @@ -1343,11 +1368,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 6810, + "target": 7177, "typeArguments": [ { "type": "reference", - "target": 6665, + "target": 7030, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1359,7 +1384,7 @@ } }, { - "id": 6648, + "id": 7013, "name": "$eq", "variant": "declaration", "kind": 1024, @@ -1371,11 +1396,11 @@ "types": [ { "type": "reference", - "target": 6812, + "target": 7179, "typeArguments": [ { "type": "reference", - "target": 6665, + "target": 7030, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1388,11 +1413,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 6812, + "target": 7179, "typeArguments": [ { "type": "reference", - "target": 6665, + "target": 7030, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1406,7 +1431,7 @@ } }, { - "id": 6649, + "id": 7014, "name": "$ne", "variant": "declaration", "kind": 1024, @@ -1415,11 +1440,11 @@ }, "type": { "type": "reference", - "target": 6812, + "target": 7179, "typeArguments": [ { "type": "reference", - "target": 6665, + "target": 7030, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1430,7 +1455,7 @@ } }, { - "id": 6650, + "id": 7015, "name": "$in", "variant": "declaration", "kind": 1024, @@ -1441,11 +1466,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 6812, + "target": 7179, "typeArguments": [ { "type": "reference", - "target": 6665, + "target": 7030, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1457,7 +1482,7 @@ } }, { - "id": 6651, + "id": 7016, "name": "$nin", "variant": "declaration", "kind": 1024, @@ -1468,11 +1493,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 6812, + "target": 7179, "typeArguments": [ { "type": "reference", - "target": 6665, + "target": 7030, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1484,7 +1509,7 @@ } }, { - "id": 6652, + "id": 7017, "name": "$not", "variant": "declaration", "kind": 1024, @@ -1493,11 +1518,11 @@ }, "type": { "type": "reference", - "target": 6810, + "target": 7177, "typeArguments": [ { "type": "reference", - "target": 6665, + "target": 7030, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1508,7 +1533,7 @@ } }, { - "id": 6653, + "id": 7018, "name": "$gt", "variant": "declaration", "kind": 1024, @@ -1517,11 +1542,11 @@ }, "type": { "type": "reference", - "target": 6812, + "target": 7179, "typeArguments": [ { "type": "reference", - "target": 6665, + "target": 7030, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1532,7 +1557,7 @@ } }, { - "id": 6654, + "id": 7019, "name": "$gte", "variant": "declaration", "kind": 1024, @@ -1541,11 +1566,11 @@ }, "type": { "type": "reference", - "target": 6812, + "target": 7179, "typeArguments": [ { "type": "reference", - "target": 6665, + "target": 7030, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1556,7 +1581,7 @@ } }, { - "id": 6655, + "id": 7020, "name": "$lt", "variant": "declaration", "kind": 1024, @@ -1565,11 +1590,11 @@ }, "type": { "type": "reference", - "target": 6812, + "target": 7179, "typeArguments": [ { "type": "reference", - "target": 6665, + "target": 7030, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1580,7 +1605,7 @@ } }, { - "id": 6656, + "id": 7021, "name": "$lte", "variant": "declaration", "kind": 1024, @@ -1589,11 +1614,11 @@ }, "type": { "type": "reference", - "target": 6812, + "target": 7179, "typeArguments": [ { "type": "reference", - "target": 6665, + "target": 7030, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1604,7 +1629,7 @@ } }, { - "id": 6657, + "id": 7022, "name": "$like", "variant": "declaration", "kind": 1024, @@ -1617,7 +1642,7 @@ } }, { - "id": 6658, + "id": 7023, "name": "$re", "variant": "declaration", "kind": 1024, @@ -1630,7 +1655,7 @@ } }, { - "id": 6659, + "id": 7024, "name": "$ilike", "variant": "declaration", "kind": 1024, @@ -1643,7 +1668,7 @@ } }, { - "id": 6660, + "id": 7025, "name": "$fulltext", "variant": "declaration", "kind": 1024, @@ -1656,7 +1681,7 @@ } }, { - "id": 6661, + "id": 7026, "name": "$overlap", "variant": "declaration", "kind": 1024, @@ -1672,7 +1697,7 @@ } }, { - "id": 6662, + "id": 7027, "name": "$contains", "variant": "declaration", "kind": 1024, @@ -1688,7 +1713,7 @@ } }, { - "id": 6663, + "id": 7028, "name": "$contained", "variant": "declaration", "kind": 1024, @@ -1704,7 +1729,7 @@ } }, { - "id": 6664, + "id": 7029, "name": "$exists", "variant": "declaration", "kind": 1024, @@ -1721,25 +1746,25 @@ { "title": "Properties", "children": [ - 6646, - 6647, - 6648, - 6649, - 6650, - 6651, - 6652, - 6653, - 6654, - 6655, - 6656, - 6657, - 6658, - 6659, - 6660, - 6661, - 6662, - 6663, - 6664 + 7011, + 7012, + 7013, + 7014, + 7015, + 7016, + 7017, + 7018, + 7019, + 7020, + 7021, + 7022, + 7023, + 7024, + 7025, + 7026, + 7027, + 7028, + 7029 ] } ] @@ -1747,14 +1772,14 @@ } }, { - "id": 6848, + "id": 7215, "name": "FilterValue2", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 6849, + "id": 7216, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1766,18 +1791,18 @@ "types": [ { "type": "reference", - "target": 6849, + "target": 7216, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, { "type": "reference", - "target": 6812, + "target": 7179, "typeArguments": [ { "type": "reference", - "target": 6849, + "target": 7216, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1788,11 +1813,11 @@ }, { "type": "reference", - "target": 6850, + "target": 7217, "typeArguments": [ { "type": "reference", - "target": 6849, + "target": 7216, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1805,14 +1830,14 @@ } }, { - "id": 6842, + "id": 7209, "name": "FilterValue", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 6843, + "id": 7210, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1824,15 +1849,15 @@ "types": [ { "type": "reference", - "target": 6644, + "target": 7009, "typeArguments": [ { "type": "reference", - "target": 6848, + "target": 7215, "typeArguments": [ { "type": "reference", - "target": 6843, + "target": 7210, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1847,11 +1872,11 @@ }, { "type": "reference", - "target": 6848, + "target": 7215, "typeArguments": [ { "type": "reference", - "target": 6843, + "target": 7210, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1864,11 +1889,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 6848, + "target": 7215, "typeArguments": [ { "type": "reference", - "target": 6843, + "target": 7210, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1886,7 +1911,7 @@ } }, { - "id": 6847, + "id": 7214, "name": "PrevLimit", "variant": "declaration", "kind": 2097152, @@ -1914,14 +1939,14 @@ } }, { - "id": 6836, + "id": 7203, "name": "FilterQuery", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 6840, + "id": 7207, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1932,7 +1957,7 @@ } }, { - "id": 6841, + "id": 7208, "name": "Prev", "variant": "typeParam", "kind": 131072, @@ -1951,7 +1976,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 6841, + "target": 7208, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1972,7 +1997,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 6840, + "target": 7207, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1994,7 +2019,7 @@ }, "objectType": { "type": "reference", - "target": 6840, + "target": 7207, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2051,7 +2076,7 @@ }, "objectType": { "type": "reference", - "target": 6840, + "target": 7207, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2059,7 +2084,7 @@ }, { "type": "reference", - "target": 6644, + "target": 7009, "typeArguments": [ { "type": "indexedAccess", @@ -2075,7 +2100,7 @@ }, "objectType": { "type": "reference", - "target": 6840, + "target": 7207, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2103,7 +2128,7 @@ }, "objectType": { "type": "reference", - "target": 6840, + "target": 7207, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2128,21 +2153,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 6837, + "id": 7204, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 6838, + "id": 7205, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 6839, + "id": 7206, "name": "x", "variant": "param", "kind": 32768, @@ -2179,7 +2204,7 @@ }, "trueType": { "type": "reference", - "target": 6836, + "target": 7203, "typeArguments": [ { "type": "reference", @@ -2206,14 +2231,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 6841, + "target": 7208, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 6847, + "target": 7214, "name": "PrevLimit", "package": "@medusajs/types" } @@ -2243,7 +2268,7 @@ } }, { - "id": 6844, + "id": 7211, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -2273,14 +2298,14 @@ { "type": "reflection", "declaration": { - "id": 6845, + "id": 7212, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6846, + "id": 7213, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -2297,7 +2322,7 @@ { "title": "Properties", "children": [ - 6846 + 7213 ] } ] @@ -2307,14 +2332,14 @@ } }, { - "id": 6826, + "id": 7193, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 6831, + "id": 7198, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2328,14 +2353,14 @@ "type": { "type": "reflection", "declaration": { - "id": 6827, + "id": 7194, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6828, + "id": 7195, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2346,7 +2371,7 @@ } }, { - "id": 6829, + "id": 7196, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2355,20 +2380,20 @@ }, "type": { "type": "reference", - "target": 6844, + "target": 7211, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 6830, + "id": 7197, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6831, + "target": 7198, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2379,9 +2404,9 @@ { "title": "Properties", "children": [ - 6828, - 6829, - 6830 + 7195, + 7196, + 7197 ] } ] @@ -2389,14 +2414,14 @@ } }, { - "id": 6790, + "id": 7157, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 6793, + "id": 7160, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2412,11 +2437,11 @@ "types": [ { "type": "reference", - "target": 6826, + "target": 7193, "typeArguments": [ { "type": "reference", - "target": 6793, + "target": 7160, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2428,14 +2453,14 @@ { "type": "reflection", "declaration": { - "id": 6791, + "id": 7158, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6792, + "id": 7159, "name": "options", "variant": "declaration", "kind": 1024, @@ -2467,7 +2492,7 @@ { "title": "Properties", "children": [ - 6792 + 7159 ] } ] @@ -2477,14 +2502,14 @@ } }, { - "id": 6800, + "id": 7167, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 6809, + "id": 7176, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2498,14 +2523,14 @@ "type": { "type": "reflection", "declaration": { - "id": 6801, + "id": 7168, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6802, + "id": 7169, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2516,21 +2541,21 @@ } }, { - "id": 6803, + "id": 7170, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6809, + "target": 7176, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 6804, + "id": 7171, "name": "source", "variant": "declaration", "kind": 1024, @@ -2541,7 +2566,7 @@ } }, { - "id": 6805, + "id": 7172, "name": "object", "variant": "declaration", "kind": 1024, @@ -2552,7 +2577,7 @@ } }, { - "id": 6806, + "id": 7173, "name": "action", "variant": "declaration", "kind": 1024, @@ -2565,7 +2590,7 @@ } }, { - "id": 6807, + "id": 7174, "name": "context", "variant": "declaration", "kind": 1024, @@ -2581,7 +2606,7 @@ "typeArguments": [ { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" }, @@ -2595,7 +2620,7 @@ } }, { - "id": 6808, + "id": 7175, "name": "options", "variant": "declaration", "kind": 1024, @@ -2627,13 +2652,13 @@ { "title": "Properties", "children": [ - 6802, - 6803, - 6804, - 6805, - 6806, - 6807, - 6808 + 7169, + 7170, + 7171, + 7172, + 7173, + 7174, + 7175 ] } ] @@ -2641,7 +2666,7 @@ } }, { - "id": 6817, + "id": 7184, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -2649,14 +2674,14 @@ "type": { "type": "reflection", "declaration": { - "id": 6818, + "id": 7185, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6819, + "id": 7186, "name": "alias", "variant": "declaration", "kind": 1024, @@ -2667,7 +2692,7 @@ } }, { - "id": 6820, + "id": 7187, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -2678,7 +2703,7 @@ } }, { - "id": 6821, + "id": 7188, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -2689,7 +2714,7 @@ } }, { - "id": 6822, + "id": 7189, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2700,7 +2725,7 @@ } }, { - "id": 6823, + "id": 7190, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -2721,7 +2746,7 @@ } }, { - "id": 6824, + "id": 7191, "name": "isList", "variant": "declaration", "kind": 1024, @@ -2742,7 +2767,7 @@ } }, { - "id": 6825, + "id": 7192, "name": "args", "variant": "declaration", "kind": 1024, @@ -2782,13 +2807,13 @@ { "title": "Properties", "children": [ - 6819, - 6820, - 6821, - 6822, - 6823, - 6824, - 6825 + 7186, + 7187, + 7188, + 7189, + 7190, + 7191, + 7192 ] } ] @@ -2796,14 +2821,14 @@ } }, { - "id": 6814, + "id": 7181, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6815, + "id": 7182, "name": "name", "variant": "declaration", "kind": 1024, @@ -2826,7 +2851,7 @@ } }, { - "id": 6816, + "id": 7183, "name": "args", "variant": "declaration", "kind": 1024, @@ -2866,21 +2891,21 @@ { "title": "Properties", "children": [ - 6815, - 6816 + 7182, + 7183 ] } ] }, { - "id": 6767, + "id": 7134, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6768, + "id": 7135, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2891,7 +2916,7 @@ } }, { - "id": 6769, + "id": 7136, "name": "alias", "variant": "declaration", "kind": 1024, @@ -2911,7 +2936,7 @@ "types": [ { "type": "reference", - "target": 6814, + "target": 7181, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -2919,7 +2944,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6814, + "target": 7181, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -2928,7 +2953,7 @@ } }, { - "id": 6770, + "id": 7137, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -2964,14 +2989,14 @@ { "type": "reflection", "declaration": { - "id": 6771, + "id": 7138, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6772, + "id": 7139, "name": "path", "variant": "declaration", "kind": 1024, @@ -2982,7 +3007,7 @@ } }, { - "id": 6773, + "id": 7140, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -3000,8 +3025,8 @@ { "title": "Properties", "children": [ - 6772, - 6773 + 7139, + 7140 ] } ] @@ -3015,7 +3040,7 @@ } }, { - "id": 6774, + "id": 7141, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -3029,7 +3054,7 @@ } }, { - "id": 6775, + "id": 7142, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -3040,14 +3065,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6817, + "target": 7184, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 6776, + "id": 7143, "name": "extends", "variant": "declaration", "kind": 1024, @@ -3059,14 +3084,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 6777, + "id": 7144, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6778, + "id": 7145, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3077,14 +3102,14 @@ } }, { - "id": 6779, + "id": 7146, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6817, + "target": 7184, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -3094,8 +3119,8 @@ { "title": "Properties", "children": [ - 6778, - 6779 + 7145, + 7146 ] } ] @@ -3104,7 +3129,7 @@ } }, { - "id": 6780, + "id": 7147, "name": "args", "variant": "declaration", "kind": 1024, @@ -3144,19 +3169,19 @@ { "title": "Properties", "children": [ - 6768, - 6769, - 6770, - 6774, - 6775, - 6776, - 6780 + 7135, + 7136, + 7137, + 7141, + 7142, + 7143, + 7147 ] } ] }, { - "id": 6784, + "id": 7151, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -3175,14 +3200,14 @@ { "type": "reflection", "declaration": { - "id": 6785, + "id": 7152, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6786, + "id": 7153, "name": "type", "variant": "declaration", "kind": 1024, @@ -3278,7 +3303,7 @@ } }, { - "id": 6787, + "id": 7154, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -3291,7 +3316,7 @@ } }, { - "id": 6788, + "id": 7155, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -3304,7 +3329,7 @@ } }, { - "id": 6789, + "id": 7156, "name": "options", "variant": "declaration", "kind": 1024, @@ -3344,10 +3369,10 @@ { "title": "Properties", "children": [ - 6786, - 6787, - 6788, - 6789 + 7153, + 7154, + 7155, + 7156 ] } ] @@ -3359,7 +3384,7 @@ } }, { - "id": 6573, + "id": 6938, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -3376,7 +3401,7 @@ "typeArguments": [ { "type": "reference", - "target": 6767, + "target": 7134, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -3408,14 +3433,14 @@ { "type": "reflection", "declaration": { - "id": 6574, + "id": 6939, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6575, + "id": 6940, "name": "schema", "variant": "declaration", "kind": 1024, @@ -3436,7 +3461,7 @@ } }, { - "id": 6576, + "id": 6941, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -3447,14 +3472,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6781, + "target": 7148, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 6577, + "id": 6942, "name": "extends", "variant": "declaration", "kind": 1024, @@ -3466,14 +3491,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 6578, + "id": 6943, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6579, + "id": 6944, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3484,7 +3509,7 @@ } }, { - "id": 6580, + "id": 6945, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -3512,14 +3537,14 @@ { "type": "reflection", "declaration": { - "id": 6581, + "id": 6946, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6582, + "id": 6947, "name": "path", "variant": "declaration", "kind": 1024, @@ -3530,7 +3555,7 @@ } }, { - "id": 6583, + "id": 6948, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -3546,7 +3571,7 @@ } }, { - "id": 6584, + "id": 6949, "name": "isList", "variant": "declaration", "kind": 1024, @@ -3563,9 +3588,9 @@ { "title": "Properties", "children": [ - 6582, - 6583, - 6584 + 6947, + 6948, + 6949 ] } ] @@ -3579,14 +3604,14 @@ } }, { - "id": 6585, + "id": 6950, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6781, + "target": 7148, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -3596,9 +3621,9 @@ { "title": "Properties", "children": [ - 6579, - 6580, - 6585 + 6944, + 6945, + 6950 ] } ] @@ -3607,7 +3632,7 @@ } }, { - "id": 6586, + "id": 6951, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3620,7 +3645,7 @@ } }, { - "id": 6587, + "id": 6952, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -3636,7 +3661,7 @@ } }, { - "id": 6588, + "id": 6953, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -3657,7 +3682,7 @@ } }, { - "id": 6589, + "id": 6954, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -3693,7 +3718,7 @@ } }, { - "id": 6590, + "id": 6955, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -3714,7 +3739,7 @@ } }, { - "id": 6591, + "id": 6956, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -3738,7 +3763,7 @@ } }, { - "id": 6592, + "id": 6957, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -3748,14 +3773,14 @@ "type": { "type": "reflection", "declaration": { - "id": 6593, + "id": 6958, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6594, + "id": 6959, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -3776,7 +3801,7 @@ } }, { - "id": 6595, + "id": 6960, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -3797,7 +3822,7 @@ } }, { - "id": 6596, + "id": 6961, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -3806,7 +3831,7 @@ }, "type": { "type": "reference", - "target": 6784, + "target": 7151, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -3816,9 +3841,9 @@ { "title": "Properties", "children": [ - 6594, - 6595, - 6596 + 6959, + 6960, + 6961 ] } ] @@ -3830,16 +3855,16 @@ { "title": "Properties", "children": [ - 6575, - 6576, - 6577, - 6586, - 6587, - 6588, - 6589, - 6590, - 6591, - 6592 + 6940, + 6941, + 6942, + 6951, + 6952, + 6953, + 6954, + 6955, + 6956, + 6957 ] } ] @@ -3849,7 +3874,7 @@ } }, { - "id": 6781, + "id": 7148, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -3859,21 +3884,21 @@ "types": [ { "type": "reference", - "target": 6817, + "target": 7184, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 6782, + "id": 7149, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6783, + "id": 7150, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -3898,7 +3923,7 @@ { "title": "Properties", "children": [ - 6783 + 7150 ] } ] @@ -3908,7 +3933,7 @@ } }, { - "id": 5557, + "id": 5798, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -3916,13 +3941,13 @@ "extendedBy": [ { "type": "reference", - "target": 4959, + "target": 5003, "name": "IOrderModuleService" } ] }, { - "id": 6747, + "id": 7112, "name": "ChangeActionType", "variant": "declaration", "kind": 2097152, @@ -3936,7 +3961,7 @@ }, { "type": "literal", - "value": "CANCEL_RETURN" + "value": "CANCEL_RETURN_ITEM" }, { "type": "literal", @@ -3970,6 +3995,10 @@ "type": "literal", "value": "SHIPPING_ADD" }, + { + "type": "literal", + "value": "SHIPPING_REMOVE" + }, { "type": "literal", "value": "SHIP_ITEM" @@ -3977,12 +4006,16 @@ { "type": "literal", "value": "WRITE_OFF_ITEM" + }, + { + "type": "literal", + "value": "REINSTATE_ITEM" } ] } }, { - "id": 6598, + "id": 6963, "name": "OrderSummaryDTO", "variant": "declaration", "kind": 2097152, @@ -3990,268 +4023,268 @@ "type": { "type": "reflection", "declaration": { - "id": 6599, + "id": 6964, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6600, + "id": 6965, "name": "total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6601, + "id": 6966, "name": "subtotal", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6602, + "id": 6967, "name": "total_tax", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6603, + "id": 6968, "name": "ordered_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6604, + "id": 6969, "name": "fulfilled_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6605, + "id": 6970, "name": "returned_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6606, + "id": 6971, "name": "return_request_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6607, + "id": 6972, "name": "write_off_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6608, + "id": 6973, "name": "projected_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6609, + "id": 6974, "name": "net_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6610, + "id": 6975, "name": "net_subtotal", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6611, + "id": 6976, "name": "net_total_tax", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6612, + "id": 6977, "name": "future_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6613, + "id": 6978, "name": "future_subtotal", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6614, + "id": 6979, "name": "future_total_tax", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6615, + "id": 6980, "name": "future_projected_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6616, + "id": 6981, "name": "balance", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6617, + "id": 6982, "name": "future_balance", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6618, + "id": 6983, "name": "paid_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6619, + "id": 6984, "name": "refunded_total", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } @@ -4261,26 +4294,26 @@ { "title": "Properties", "children": [ - 6600, - 6601, - 6602, - 6603, - 6604, - 6605, - 6606, - 6607, - 6608, - 6609, - 6610, - 6611, - 6612, - 6613, - 6614, - 6615, - 6616, - 6617, - 6618, - 6619 + 6965, + 6966, + 6967, + 6968, + 6969, + 6970, + 6971, + 6972, + 6973, + 6974, + 6975, + 6976, + 6977, + 6978, + 6979, + 6980, + 6981, + 6982, + 6983, + 6984 ] } ] @@ -4288,14 +4321,14 @@ } }, { - "id": 6728, + "id": 7093, "name": "OrderAdjustmentLineDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6729, + "id": 7094, "name": "id", "variant": "declaration", "kind": 1024, @@ -4314,7 +4347,7 @@ } }, { - "id": 6730, + "id": 7095, "name": "code", "variant": "declaration", "kind": 1024, @@ -4335,7 +4368,7 @@ } }, { - "id": 6731, + "id": 7096, "name": "amount", "variant": "declaration", "kind": 1024, @@ -4350,13 +4383,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6732, + "id": 7097, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -4375,7 +4408,7 @@ } }, { - "id": 6733, + "id": 7098, "name": "description", "variant": "declaration", "kind": 1024, @@ -4396,7 +4429,7 @@ } }, { - "id": 6734, + "id": 7099, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -4417,7 +4450,7 @@ } }, { - "id": 6735, + "id": 7100, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -4438,7 +4471,7 @@ } }, { - "id": 6736, + "id": 7101, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4471,7 +4504,7 @@ } }, { - "id": 6737, + "id": 7102, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4508,40 +4541,40 @@ { "title": "Properties", "children": [ - 6729, - 6730, - 6731, - 6732, - 6733, - 6734, - 6735, - 6736, - 6737 + 7094, + 7095, + 7096, + 7097, + 7098, + 7099, + 7100, + 7101, + 7102 ] } ], "extendedBy": [ { "type": "reference", - "target": 6182, + "target": 6432, "name": "OrderLineItemAdjustmentDTO" }, { "type": "reference", - "target": 6216, + "target": 6466, "name": "OrderShippingMethodAdjustmentDTO" } ] }, { - "id": 6216, + "id": 6466, "name": "OrderShippingMethodAdjustmentDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6219, + "id": 6469, "name": "id", "variant": "declaration", "kind": 1024, @@ -4562,12 +4595,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6729, + "target": 7094, "name": "OrderAdjustmentLineDTO.id" } }, { - "id": 6220, + "id": 6470, "name": "code", "variant": "declaration", "kind": 1024, @@ -4589,12 +4622,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6730, + "target": 7095, "name": "OrderAdjustmentLineDTO.code" } }, { - "id": 6221, + "id": 6471, "name": "amount", "variant": "declaration", "kind": 1024, @@ -4611,18 +4644,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6731, + "target": 7096, "name": "OrderAdjustmentLineDTO.amount" } }, { - "id": 6222, + "id": 6472, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -4643,12 +4676,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6732, + "target": 7097, "name": "OrderAdjustmentLineDTO.order_id" } }, { - "id": 6223, + "id": 6473, "name": "description", "variant": "declaration", "kind": 1024, @@ -4670,12 +4703,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6733, + "target": 7098, "name": "OrderAdjustmentLineDTO.description" } }, { - "id": 6224, + "id": 6474, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -4697,12 +4730,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6734, + "target": 7099, "name": "OrderAdjustmentLineDTO.promotion_id" } }, { - "id": 6225, + "id": 6475, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -4724,12 +4757,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6735, + "target": 7100, "name": "OrderAdjustmentLineDTO.provider_id" } }, { - "id": 6226, + "id": 6476, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4764,12 +4797,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6736, + "target": 7101, "name": "OrderAdjustmentLineDTO.created_at" } }, { - "id": 6227, + "id": 6477, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4804,12 +4837,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6737, + "target": 7102, "name": "OrderAdjustmentLineDTO.updated_at" } }, { - "id": 6217, + "id": 6467, "name": "shipping_method", "variant": "declaration", "kind": 1024, @@ -4824,13 +4857,13 @@ }, "type": { "type": "reference", - "target": 6134, + "target": 6380, "name": "OrderShippingMethodDTO", "package": "@medusajs/types" } }, { - "id": 6218, + "id": 6468, "name": "shipping_method_id", "variant": "declaration", "kind": 1024, @@ -4853,38 +4886,38 @@ { "title": "Properties", "children": [ - 6219, - 6220, - 6221, - 6222, - 6223, - 6224, - 6225, - 6226, - 6227, - 6217, - 6218 + 6469, + 6470, + 6471, + 6472, + 6473, + 6474, + 6475, + 6476, + 6477, + 6467, + 6468 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6728, + "target": 7093, "name": "OrderAdjustmentLineDTO", "package": "@medusajs/types" } ] }, { - "id": 6182, + "id": 6432, "name": "OrderLineItemAdjustmentDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6185, + "id": 6435, "name": "id", "variant": "declaration", "kind": 1024, @@ -4905,12 +4938,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6729, + "target": 7094, "name": "OrderAdjustmentLineDTO.id" } }, { - "id": 6186, + "id": 6436, "name": "code", "variant": "declaration", "kind": 1024, @@ -4932,12 +4965,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6730, + "target": 7095, "name": "OrderAdjustmentLineDTO.code" } }, { - "id": 6187, + "id": 6437, "name": "amount", "variant": "declaration", "kind": 1024, @@ -4954,18 +4987,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6731, + "target": 7096, "name": "OrderAdjustmentLineDTO.amount" } }, { - "id": 6188, + "id": 6438, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -4986,12 +5019,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6732, + "target": 7097, "name": "OrderAdjustmentLineDTO.order_id" } }, { - "id": 6189, + "id": 6439, "name": "description", "variant": "declaration", "kind": 1024, @@ -5013,12 +5046,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6733, + "target": 7098, "name": "OrderAdjustmentLineDTO.description" } }, { - "id": 6190, + "id": 6440, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -5040,12 +5073,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6734, + "target": 7099, "name": "OrderAdjustmentLineDTO.promotion_id" } }, { - "id": 6191, + "id": 6441, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -5067,12 +5100,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6735, + "target": 7100, "name": "OrderAdjustmentLineDTO.provider_id" } }, { - "id": 6192, + "id": 6442, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5107,12 +5140,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6736, + "target": 7101, "name": "OrderAdjustmentLineDTO.created_at" } }, { - "id": 6193, + "id": 6443, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5147,12 +5180,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6737, + "target": 7102, "name": "OrderAdjustmentLineDTO.updated_at" } }, { - "id": 6183, + "id": 6433, "name": "item", "variant": "declaration", "kind": 1024, @@ -5170,13 +5203,13 @@ }, "type": { "type": "reference", - "target": 5943, + "target": 6189, "name": "OrderLineItemDTO", "package": "@medusajs/types" } }, { - "id": 6184, + "id": 6434, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -5199,38 +5232,38 @@ { "title": "Properties", "children": [ - 6185, - 6186, - 6187, - 6188, - 6189, - 6190, - 6191, - 6192, - 6193, - 6183, - 6184 + 6435, + 6436, + 6437, + 6438, + 6439, + 6440, + 6441, + 6442, + 6443, + 6433, + 6434 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6728, + "target": 7093, "name": "OrderAdjustmentLineDTO", "package": "@medusajs/types" } ] }, { - "id": 6738, + "id": 7103, "name": "OrderTaxLineDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6739, + "id": 7104, "name": "id", "variant": "declaration", "kind": 1024, @@ -5249,7 +5282,7 @@ } }, { - "id": 6740, + "id": 7105, "name": "description", "variant": "declaration", "kind": 1024, @@ -5270,7 +5303,7 @@ } }, { - "id": 6741, + "id": 7106, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -5291,7 +5324,7 @@ } }, { - "id": 6742, + "id": 7107, "name": "code", "variant": "declaration", "kind": 1024, @@ -5310,7 +5343,7 @@ } }, { - "id": 6743, + "id": 7108, "name": "rate", "variant": "declaration", "kind": 1024, @@ -5329,7 +5362,7 @@ } }, { - "id": 6744, + "id": 7109, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -5350,7 +5383,7 @@ } }, { - "id": 6745, + "id": 7110, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5383,7 +5416,7 @@ } }, { - "id": 6746, + "id": 7111, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5420,39 +5453,39 @@ { "title": "Properties", "children": [ - 6739, - 6740, - 6741, - 6742, - 6743, - 6744, - 6745, - 6746 + 7104, + 7105, + 7106, + 7107, + 7108, + 7109, + 7110, + 7111 ] } ], "extendedBy": [ { "type": "reference", - "target": 6252, + "target": 6502, "name": "OrderLineItemTaxLineDTO" }, { "type": "reference", - "target": 6290, + "target": 6540, "name": "OrderShippingMethodTaxLineDTO" } ] }, { - "id": 6290, + "id": 6540, "name": "OrderShippingMethodTaxLineDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6297, + "id": 6547, "name": "id", "variant": "declaration", "kind": 1024, @@ -5473,12 +5506,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6739, + "target": 7104, "name": "OrderTaxLineDTO.id" } }, { - "id": 6298, + "id": 6548, "name": "description", "variant": "declaration", "kind": 1024, @@ -5500,12 +5533,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6740, + "target": 7105, "name": "OrderTaxLineDTO.description" } }, { - "id": 6299, + "id": 6549, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -5527,12 +5560,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6741, + "target": 7106, "name": "OrderTaxLineDTO.tax_rate_id" } }, { - "id": 6300, + "id": 6550, "name": "code", "variant": "declaration", "kind": 1024, @@ -5553,12 +5586,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6742, + "target": 7107, "name": "OrderTaxLineDTO.code" } }, { - "id": 6301, + "id": 6551, "name": "rate", "variant": "declaration", "kind": 1024, @@ -5579,12 +5612,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6743, + "target": 7108, "name": "OrderTaxLineDTO.rate" } }, { - "id": 6302, + "id": 6552, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -5606,12 +5639,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6744, + "target": 7109, "name": "OrderTaxLineDTO.provider_id" } }, { - "id": 6303, + "id": 6553, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5646,12 +5679,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6745, + "target": 7110, "name": "OrderTaxLineDTO.created_at" } }, { - "id": 6304, + "id": 6554, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5686,12 +5719,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6746, + "target": 7111, "name": "OrderTaxLineDTO.updated_at" } }, { - "id": 6291, + "id": 6541, "name": "shipping_method", "variant": "declaration", "kind": 1024, @@ -5706,13 +5739,13 @@ }, "type": { "type": "reference", - "target": 6134, + "target": 6380, "name": "OrderShippingMethodDTO", "package": "@medusajs/types" } }, { - "id": 6292, + "id": 6542, "name": "shipping_method_id", "variant": "declaration", "kind": 1024, @@ -5731,7 +5764,7 @@ } }, { - "id": 6293, + "id": 6543, "name": "total", "variant": "declaration", "kind": 1024, @@ -5746,13 +5779,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6294, + "id": 6544, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -5767,13 +5800,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6295, + "id": 6545, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -5788,13 +5821,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6296, + "id": 6546, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -5809,7 +5842,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } @@ -5819,41 +5852,41 @@ { "title": "Properties", "children": [ - 6297, - 6298, - 6299, - 6300, - 6301, - 6302, - 6303, - 6304, - 6291, - 6292, - 6293, - 6294, - 6295, - 6296 + 6547, + 6548, + 6549, + 6550, + 6551, + 6552, + 6553, + 6554, + 6541, + 6542, + 6543, + 6544, + 6545, + 6546 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6738, + "target": 7103, "name": "OrderTaxLineDTO", "package": "@medusajs/types" } ] }, { - "id": 6252, + "id": 6502, "name": "OrderLineItemTaxLineDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6259, + "id": 6509, "name": "id", "variant": "declaration", "kind": 1024, @@ -5874,12 +5907,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6739, + "target": 7104, "name": "OrderTaxLineDTO.id" } }, { - "id": 6260, + "id": 6510, "name": "description", "variant": "declaration", "kind": 1024, @@ -5901,12 +5934,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6740, + "target": 7105, "name": "OrderTaxLineDTO.description" } }, { - "id": 6261, + "id": 6511, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -5928,12 +5961,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6741, + "target": 7106, "name": "OrderTaxLineDTO.tax_rate_id" } }, { - "id": 6262, + "id": 6512, "name": "code", "variant": "declaration", "kind": 1024, @@ -5954,12 +5987,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6742, + "target": 7107, "name": "OrderTaxLineDTO.code" } }, { - "id": 6263, + "id": 6513, "name": "rate", "variant": "declaration", "kind": 1024, @@ -5980,12 +6013,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6743, + "target": 7108, "name": "OrderTaxLineDTO.rate" } }, { - "id": 6264, + "id": 6514, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -6007,12 +6040,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6744, + "target": 7109, "name": "OrderTaxLineDTO.provider_id" } }, { - "id": 6265, + "id": 6515, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6047,12 +6080,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6745, + "target": 7110, "name": "OrderTaxLineDTO.created_at" } }, { - "id": 6266, + "id": 6516, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6087,12 +6120,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6746, + "target": 7111, "name": "OrderTaxLineDTO.updated_at" } }, { - "id": 6253, + "id": 6503, "name": "item", "variant": "declaration", "kind": 1024, @@ -6107,13 +6140,13 @@ }, "type": { "type": "reference", - "target": 5943, + "target": 6189, "name": "OrderLineItemDTO", "package": "@medusajs/types" } }, { - "id": 6254, + "id": 6504, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -6132,7 +6165,7 @@ } }, { - "id": 6255, + "id": 6505, "name": "total", "variant": "declaration", "kind": 1024, @@ -6147,13 +6180,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6256, + "id": 6506, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -6168,13 +6201,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6257, + "id": 6507, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -6189,13 +6222,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6258, + "id": 6508, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -6210,7 +6243,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } @@ -6220,41 +6253,41 @@ { "title": "Properties", "children": [ - 6259, - 6260, - 6261, - 6262, - 6263, - 6264, - 6265, - 6266, - 6253, - 6254, - 6255, - 6256, - 6257, - 6258 + 6509, + 6510, + 6511, + 6512, + 6513, + 6514, + 6515, + 6516, + 6503, + 6504, + 6505, + 6506, + 6507, + 6508 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6738, + "target": 7103, "name": "OrderTaxLineDTO", "package": "@medusajs/types" } ] }, { - "id": 5900, + "id": 6146, "name": "OrderAddressDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 5901, + "id": 6147, "name": "id", "variant": "declaration", "kind": 1024, @@ -6273,7 +6306,7 @@ } }, { - "id": 5902, + "id": 6148, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -6294,7 +6327,7 @@ } }, { - "id": 5903, + "id": 6149, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -6315,7 +6348,7 @@ } }, { - "id": 5904, + "id": 6150, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -6336,7 +6369,7 @@ } }, { - "id": 5905, + "id": 6151, "name": "phone", "variant": "declaration", "kind": 1024, @@ -6357,7 +6390,7 @@ } }, { - "id": 5906, + "id": 6152, "name": "company", "variant": "declaration", "kind": 1024, @@ -6378,7 +6411,7 @@ } }, { - "id": 5907, + "id": 6153, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -6399,7 +6432,7 @@ } }, { - "id": 5908, + "id": 6154, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -6420,7 +6453,7 @@ } }, { - "id": 5909, + "id": 6155, "name": "city", "variant": "declaration", "kind": 1024, @@ -6441,7 +6474,7 @@ } }, { - "id": 5910, + "id": 6156, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -6462,7 +6495,7 @@ } }, { - "id": 5911, + "id": 6157, "name": "province", "variant": "declaration", "kind": 1024, @@ -6483,7 +6516,7 @@ } }, { - "id": 5912, + "id": 6158, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -6504,7 +6537,7 @@ } }, { - "id": 5913, + "id": 6159, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6549,7 +6582,7 @@ } }, { - "id": 5914, + "id": 6160, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6582,7 +6615,7 @@ } }, { - "id": 5915, + "id": 6161, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6619,34 +6652,34 @@ { "title": "Properties", "children": [ - 5901, - 5902, - 5903, - 5904, - 5905, - 5906, - 5907, - 5908, - 5909, - 5910, - 5911, - 5912, - 5913, - 5914, - 5915 + 6147, + 6148, + 6149, + 6150, + 6151, + 6152, + 6153, + 6154, + 6155, + 6156, + 6157, + 6158, + 6159, + 6160, + 6161 ] } ] }, { - "id": 6134, + "id": 6380, "name": "OrderShippingMethodDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6135, + "id": 6381, "name": "id", "variant": "declaration", "kind": 1024, @@ -6665,7 +6698,7 @@ } }, { - "id": 6136, + "id": 6382, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -6684,7 +6717,7 @@ } }, { - "id": 6137, + "id": 6383, "name": "name", "variant": "declaration", "kind": 1024, @@ -6703,7 +6736,7 @@ } }, { - "id": 6138, + "id": 6384, "name": "description", "variant": "declaration", "kind": 1024, @@ -6724,7 +6757,7 @@ } }, { - "id": 6139, + "id": 6385, "name": "amount", "variant": "declaration", "kind": 1024, @@ -6739,13 +6772,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6140, + "id": 6386, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -6760,13 +6793,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6141, + "id": 6387, "name": "is_tax_inclusive", "variant": "declaration", "kind": 1024, @@ -6785,7 +6818,7 @@ } }, { - "id": 6142, + "id": 6388, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -6806,7 +6839,7 @@ } }, { - "id": 6143, + "id": 6389, "name": "data", "variant": "declaration", "kind": 1024, @@ -6842,7 +6875,7 @@ } }, { - "id": 6144, + "id": 6390, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6887,7 +6920,7 @@ } }, { - "id": 6145, + "id": 6391, "name": "tax_lines", "variant": "declaration", "kind": 1024, @@ -6909,14 +6942,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6290, + "target": 6540, "name": "OrderShippingMethodTaxLineDTO", "package": "@medusajs/types" } } }, { - "id": 6146, + "id": 6392, "name": "adjustments", "variant": "declaration", "kind": 1024, @@ -6938,14 +6971,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6216, + "target": 6466, "name": "OrderShippingMethodAdjustmentDTO", "package": "@medusajs/types" } } }, { - "id": 6147, + "id": 6393, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6978,7 +7011,7 @@ } }, { - "id": 6148, + "id": 6394, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -7011,7 +7044,7 @@ } }, { - "id": 6149, + "id": 6395, "name": "original_total", "variant": "declaration", "kind": 1024, @@ -7026,13 +7059,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6150, + "id": 6396, "name": "original_subtotal", "variant": "declaration", "kind": 1024, @@ -7047,13 +7080,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6151, + "id": 6397, "name": "original_tax_total", "variant": "declaration", "kind": 1024, @@ -7068,13 +7101,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6152, + "id": 6398, "name": "total", "variant": "declaration", "kind": 1024, @@ -7089,13 +7122,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6153, + "id": 6399, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -7110,13 +7143,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6154, + "id": 6400, "name": "tax_total", "variant": "declaration", "kind": 1024, @@ -7131,13 +7164,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6155, + "id": 6401, "name": "discount_total", "variant": "declaration", "kind": 1024, @@ -7152,13 +7185,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6156, + "id": 6402, "name": "discount_tax_total", "variant": "declaration", "kind": 1024, @@ -7173,13 +7206,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6157, + "id": 6403, "name": "raw_original_total", "variant": "declaration", "kind": 1024, @@ -7194,13 +7227,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6158, + "id": 6404, "name": "raw_original_subtotal", "variant": "declaration", "kind": 1024, @@ -7215,13 +7248,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6159, + "id": 6405, "name": "raw_original_tax_total", "variant": "declaration", "kind": 1024, @@ -7236,13 +7269,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6160, + "id": 6406, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -7257,13 +7290,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6161, + "id": 6407, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -7278,13 +7311,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6162, + "id": 6408, "name": "raw_tax_total", "variant": "declaration", "kind": 1024, @@ -7299,13 +7332,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6163, + "id": 6409, "name": "raw_discount_total", "variant": "declaration", "kind": 1024, @@ -7320,13 +7353,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6164, + "id": 6410, "name": "raw_discount_tax_total", "variant": "declaration", "kind": 1024, @@ -7341,7 +7374,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } @@ -7351,49 +7384,49 @@ { "title": "Properties", "children": [ - 6135, - 6136, - 6137, - 6138, - 6139, - 6140, - 6141, - 6142, - 6143, - 6144, - 6145, - 6146, - 6147, - 6148, - 6149, - 6150, - 6151, - 6152, - 6153, - 6154, - 6155, - 6156, - 6157, - 6158, - 6159, - 6160, - 6161, - 6162, - 6163, - 6164 + 6381, + 6382, + 6383, + 6384, + 6385, + 6386, + 6387, + 6388, + 6389, + 6390, + 6391, + 6392, + 6393, + 6394, + 6395, + 6396, + 6397, + 6398, + 6399, + 6400, + 6401, + 6402, + 6403, + 6404, + 6405, + 6406, + 6407, + 6408, + 6409, + 6410 ] } ] }, { - "id": 6680, + "id": 7045, "name": "OrderLineItemTotalsDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6681, + "id": 7046, "name": "original_total", "variant": "declaration", "kind": 1024, @@ -7408,13 +7441,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6682, + "id": 7047, "name": "original_subtotal", "variant": "declaration", "kind": 1024, @@ -7429,13 +7462,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6683, + "id": 7048, "name": "original_tax_total", "variant": "declaration", "kind": 1024, @@ -7450,13 +7483,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6684, + "id": 7049, "name": "item_total", "variant": "declaration", "kind": 1024, @@ -7471,13 +7504,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6685, + "id": 7050, "name": "item_subtotal", "variant": "declaration", "kind": 1024, @@ -7492,13 +7525,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6686, + "id": 7051, "name": "item_tax_total", "variant": "declaration", "kind": 1024, @@ -7513,13 +7546,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6687, + "id": 7052, "name": "total", "variant": "declaration", "kind": 1024, @@ -7534,13 +7567,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6688, + "id": 7053, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -7555,13 +7588,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6689, + "id": 7054, "name": "tax_total", "variant": "declaration", "kind": 1024, @@ -7576,13 +7609,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6690, + "id": 7055, "name": "discount_total", "variant": "declaration", "kind": 1024, @@ -7597,13 +7630,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6691, + "id": 7056, "name": "discount_tax_total", "variant": "declaration", "kind": 1024, @@ -7618,13 +7651,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6692, + "id": 7057, "name": "refundable_total", "variant": "declaration", "kind": 1024, @@ -7639,13 +7672,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6693, + "id": 7058, "name": "refundable_total_per_unit", "variant": "declaration", "kind": 1024, @@ -7660,13 +7693,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6694, + "id": 7059, "name": "raw_original_total", "variant": "declaration", "kind": 1024, @@ -7681,13 +7714,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6695, + "id": 7060, "name": "raw_original_subtotal", "variant": "declaration", "kind": 1024, @@ -7702,13 +7735,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6696, + "id": 7061, "name": "raw_original_tax_total", "variant": "declaration", "kind": 1024, @@ -7723,13 +7756,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6697, + "id": 7062, "name": "raw_item_total", "variant": "declaration", "kind": 1024, @@ -7744,13 +7777,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6698, + "id": 7063, "name": "raw_item_subtotal", "variant": "declaration", "kind": 1024, @@ -7765,13 +7798,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6699, + "id": 7064, "name": "raw_item_tax_total", "variant": "declaration", "kind": 1024, @@ -7786,13 +7819,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6700, + "id": 7065, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -7807,13 +7840,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6701, + "id": 7066, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -7828,13 +7861,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6702, + "id": 7067, "name": "raw_tax_total", "variant": "declaration", "kind": 1024, @@ -7849,13 +7882,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6703, + "id": 7068, "name": "raw_discount_total", "variant": "declaration", "kind": 1024, @@ -7870,13 +7903,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6704, + "id": 7069, "name": "raw_discount_tax_total", "variant": "declaration", "kind": 1024, @@ -7891,13 +7924,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6705, + "id": 7070, "name": "raw_refundable_total", "variant": "declaration", "kind": 1024, @@ -7912,13 +7945,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6706, + "id": 7071, "name": "raw_refundable_total_per_unit", "variant": "declaration", "kind": 1024, @@ -7933,7 +7966,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } @@ -7943,52 +7976,52 @@ { "title": "Properties", "children": [ - 6681, - 6682, - 6683, - 6684, - 6685, - 6686, - 6687, - 6688, - 6689, - 6690, - 6691, - 6692, - 6693, - 6694, - 6695, - 6696, - 6697, - 6698, - 6699, - 6700, - 6701, - 6702, - 6703, - 6704, - 6705, - 6706 + 7046, + 7047, + 7048, + 7049, + 7050, + 7051, + 7052, + 7053, + 7054, + 7055, + 7056, + 7057, + 7058, + 7059, + 7060, + 7061, + 7062, + 7063, + 7064, + 7065, + 7066, + 7067, + 7068, + 7069, + 7070, + 7071 ] } ], "extendedBy": [ { "type": "reference", - "target": 5943, + "target": 6189, "name": "OrderLineItemDTO" } ] }, { - "id": 5943, + "id": 6189, "name": "OrderLineItemDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 5975, + "id": 6221, "name": "original_total", "variant": "declaration", "kind": 1024, @@ -8005,18 +8038,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6681, + "target": 7046, "name": "OrderLineItemTotalsDTO.original_total" } }, { - "id": 5976, + "id": 6222, "name": "original_subtotal", "variant": "declaration", "kind": 1024, @@ -8033,18 +8066,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6682, + "target": 7047, "name": "OrderLineItemTotalsDTO.original_subtotal" } }, { - "id": 5977, + "id": 6223, "name": "original_tax_total", "variant": "declaration", "kind": 1024, @@ -8061,18 +8094,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6683, + "target": 7048, "name": "OrderLineItemTotalsDTO.original_tax_total" } }, { - "id": 5978, + "id": 6224, "name": "item_total", "variant": "declaration", "kind": 1024, @@ -8089,18 +8122,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6684, + "target": 7049, "name": "OrderLineItemTotalsDTO.item_total" } }, { - "id": 5979, + "id": 6225, "name": "item_subtotal", "variant": "declaration", "kind": 1024, @@ -8117,18 +8150,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6685, + "target": 7050, "name": "OrderLineItemTotalsDTO.item_subtotal" } }, { - "id": 5980, + "id": 6226, "name": "item_tax_total", "variant": "declaration", "kind": 1024, @@ -8145,18 +8178,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6686, + "target": 7051, "name": "OrderLineItemTotalsDTO.item_tax_total" } }, { - "id": 5981, + "id": 6227, "name": "total", "variant": "declaration", "kind": 1024, @@ -8173,18 +8206,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6687, + "target": 7052, "name": "OrderLineItemTotalsDTO.total" } }, { - "id": 5982, + "id": 6228, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -8201,18 +8234,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6688, + "target": 7053, "name": "OrderLineItemTotalsDTO.subtotal" } }, { - "id": 5983, + "id": 6229, "name": "tax_total", "variant": "declaration", "kind": 1024, @@ -8229,18 +8262,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6689, + "target": 7054, "name": "OrderLineItemTotalsDTO.tax_total" } }, { - "id": 5984, + "id": 6230, "name": "discount_total", "variant": "declaration", "kind": 1024, @@ -8257,18 +8290,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6690, + "target": 7055, "name": "OrderLineItemTotalsDTO.discount_total" } }, { - "id": 5985, + "id": 6231, "name": "discount_tax_total", "variant": "declaration", "kind": 1024, @@ -8285,18 +8318,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6691, + "target": 7056, "name": "OrderLineItemTotalsDTO.discount_tax_total" } }, { - "id": 5986, + "id": 6232, "name": "refundable_total", "variant": "declaration", "kind": 1024, @@ -8313,18 +8346,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6692, + "target": 7057, "name": "OrderLineItemTotalsDTO.refundable_total" } }, { - "id": 5987, + "id": 6233, "name": "refundable_total_per_unit", "variant": "declaration", "kind": 1024, @@ -8341,18 +8374,18 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6693, + "target": 7058, "name": "OrderLineItemTotalsDTO.refundable_total_per_unit" } }, { - "id": 5988, + "id": 6234, "name": "raw_original_total", "variant": "declaration", "kind": 1024, @@ -8369,18 +8402,18 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6694, + "target": 7059, "name": "OrderLineItemTotalsDTO.raw_original_total" } }, { - "id": 5989, + "id": 6235, "name": "raw_original_subtotal", "variant": "declaration", "kind": 1024, @@ -8397,18 +8430,18 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6695, + "target": 7060, "name": "OrderLineItemTotalsDTO.raw_original_subtotal" } }, { - "id": 5990, + "id": 6236, "name": "raw_original_tax_total", "variant": "declaration", "kind": 1024, @@ -8425,18 +8458,18 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6696, + "target": 7061, "name": "OrderLineItemTotalsDTO.raw_original_tax_total" } }, { - "id": 5991, + "id": 6237, "name": "raw_item_total", "variant": "declaration", "kind": 1024, @@ -8453,18 +8486,18 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6697, + "target": 7062, "name": "OrderLineItemTotalsDTO.raw_item_total" } }, { - "id": 5992, + "id": 6238, "name": "raw_item_subtotal", "variant": "declaration", "kind": 1024, @@ -8481,18 +8514,18 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6698, + "target": 7063, "name": "OrderLineItemTotalsDTO.raw_item_subtotal" } }, { - "id": 5993, + "id": 6239, "name": "raw_item_tax_total", "variant": "declaration", "kind": 1024, @@ -8509,18 +8542,18 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6699, + "target": 7064, "name": "OrderLineItemTotalsDTO.raw_item_tax_total" } }, { - "id": 5994, + "id": 6240, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -8537,18 +8570,18 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6700, + "target": 7065, "name": "OrderLineItemTotalsDTO.raw_total" } }, { - "id": 5995, + "id": 6241, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -8565,18 +8598,18 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6701, + "target": 7066, "name": "OrderLineItemTotalsDTO.raw_subtotal" } }, { - "id": 5996, + "id": 6242, "name": "raw_tax_total", "variant": "declaration", "kind": 1024, @@ -8593,18 +8626,18 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6702, + "target": 7067, "name": "OrderLineItemTotalsDTO.raw_tax_total" } }, { - "id": 5997, + "id": 6243, "name": "raw_discount_total", "variant": "declaration", "kind": 1024, @@ -8621,18 +8654,18 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6703, + "target": 7068, "name": "OrderLineItemTotalsDTO.raw_discount_total" } }, { - "id": 5998, + "id": 6244, "name": "raw_discount_tax_total", "variant": "declaration", "kind": 1024, @@ -8649,18 +8682,18 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6704, + "target": 7069, "name": "OrderLineItemTotalsDTO.raw_discount_tax_total" } }, { - "id": 5999, + "id": 6245, "name": "raw_refundable_total", "variant": "declaration", "kind": 1024, @@ -8677,18 +8710,18 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6705, + "target": 7070, "name": "OrderLineItemTotalsDTO.raw_refundable_total" } }, { - "id": 6000, + "id": 6246, "name": "raw_refundable_total_per_unit", "variant": "declaration", "kind": 1024, @@ -8705,18 +8738,18 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6706, + "target": 7071, "name": "OrderLineItemTotalsDTO.raw_refundable_total_per_unit" } }, { - "id": 5944, + "id": 6190, "name": "id", "variant": "declaration", "kind": 1024, @@ -8735,7 +8768,7 @@ } }, { - "id": 5945, + "id": 6191, "name": "title", "variant": "declaration", "kind": 1024, @@ -8754,7 +8787,7 @@ } }, { - "id": 5946, + "id": 6192, "name": "subtitle", "variant": "declaration", "kind": 1024, @@ -8784,7 +8817,7 @@ } }, { - "id": 5947, + "id": 6193, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -8814,7 +8847,7 @@ } }, { - "id": 5948, + "id": 6194, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -8844,7 +8877,7 @@ } }, { - "id": 5949, + "id": 6195, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -8874,7 +8907,7 @@ } }, { - "id": 5950, + "id": 6196, "name": "product_title", "variant": "declaration", "kind": 1024, @@ -8904,7 +8937,7 @@ } }, { - "id": 5951, + "id": 6197, "name": "product_description", "variant": "declaration", "kind": 1024, @@ -8934,7 +8967,7 @@ } }, { - "id": 5952, + "id": 6198, "name": "product_subtitle", "variant": "declaration", "kind": 1024, @@ -8964,7 +8997,7 @@ } }, { - "id": 5953, + "id": 6199, "name": "product_type", "variant": "declaration", "kind": 1024, @@ -8994,7 +9027,7 @@ } }, { - "id": 5954, + "id": 6200, "name": "product_collection", "variant": "declaration", "kind": 1024, @@ -9024,7 +9057,7 @@ } }, { - "id": 5955, + "id": 6201, "name": "product_handle", "variant": "declaration", "kind": 1024, @@ -9054,7 +9087,7 @@ } }, { - "id": 5956, + "id": 6202, "name": "variant_sku", "variant": "declaration", "kind": 1024, @@ -9084,7 +9117,7 @@ } }, { - "id": 5957, + "id": 6203, "name": "variant_barcode", "variant": "declaration", "kind": 1024, @@ -9114,7 +9147,7 @@ } }, { - "id": 5958, + "id": 6204, "name": "variant_title", "variant": "declaration", "kind": 1024, @@ -9144,7 +9177,7 @@ } }, { - "id": 5959, + "id": 6205, "name": "variant_option_values", "variant": "declaration", "kind": 1024, @@ -9189,7 +9222,7 @@ } }, { - "id": 5960, + "id": 6206, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -9208,7 +9241,7 @@ } }, { - "id": 5961, + "id": 6207, "name": "is_discountable", "variant": "declaration", "kind": 1024, @@ -9227,7 +9260,7 @@ } }, { - "id": 5962, + "id": 6208, "name": "is_tax_inclusive", "variant": "declaration", "kind": 1024, @@ -9246,7 +9279,7 @@ } }, { - "id": 5963, + "id": 6209, "name": "compare_at_unit_price", "variant": "declaration", "kind": 1024, @@ -9267,7 +9300,7 @@ } }, { - "id": 5964, + "id": 6210, "name": "raw_compare_at_unit_price", "variant": "declaration", "kind": 1024, @@ -9284,13 +9317,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5965, + "id": 6211, "name": "unit_price", "variant": "declaration", "kind": 1024, @@ -9309,7 +9342,7 @@ } }, { - "id": 5966, + "id": 6212, "name": "raw_unit_price", "variant": "declaration", "kind": 1024, @@ -9324,13 +9357,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5967, + "id": 6213, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -9349,7 +9382,7 @@ } }, { - "id": 5968, + "id": 6214, "name": "raw_quantity", "variant": "declaration", "kind": 1024, @@ -9364,13 +9397,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5969, + "id": 6215, "name": "tax_lines", "variant": "declaration", "kind": 1024, @@ -9392,14 +9425,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6252, + "target": 6502, "name": "OrderLineItemTaxLineDTO", "package": "@medusajs/types" } } }, { - "id": 5970, + "id": 6216, "name": "adjustments", "variant": "declaration", "kind": 1024, @@ -9421,14 +9454,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6182, + "target": 6432, "name": "OrderLineItemAdjustmentDTO", "package": "@medusajs/types" } } }, { - "id": 5971, + "id": 6217, "name": "detail", "variant": "declaration", "kind": 1024, @@ -9443,13 +9476,13 @@ }, "type": { "type": "reference", - "target": 6110, + "target": 6356, "name": "OrderItemDTO", "package": "@medusajs/types" } }, { - "id": 5972, + "id": 6218, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -9473,7 +9506,7 @@ } }, { - "id": 5973, + "id": 6219, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -9497,7 +9530,7 @@ } }, { - "id": 5974, + "id": 6220, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -9546,84 +9579,84 @@ { "title": "Properties", "children": [ - 5975, - 5976, - 5977, - 5978, - 5979, - 5980, - 5981, - 5982, - 5983, - 5984, - 5985, - 5986, - 5987, - 5988, - 5989, - 5990, - 5991, - 5992, - 5993, - 5994, - 5995, - 5996, - 5997, - 5998, - 5999, - 6000, - 5944, - 5945, - 5946, - 5947, - 5948, - 5949, - 5950, - 5951, - 5952, - 5953, - 5954, - 5955, - 5956, - 5957, - 5958, - 5959, - 5960, - 5961, - 5962, - 5963, - 5964, - 5965, - 5966, - 5967, - 5968, - 5969, - 5970, - 5971, - 5972, - 5973, - 5974 + 6221, + 6222, + 6223, + 6224, + 6225, + 6226, + 6227, + 6228, + 6229, + 6230, + 6231, + 6232, + 6233, + 6234, + 6235, + 6236, + 6237, + 6238, + 6239, + 6240, + 6241, + 6242, + 6243, + 6244, + 6245, + 6246, + 6190, + 6191, + 6192, + 6193, + 6194, + 6195, + 6196, + 6197, + 6198, + 6199, + 6200, + 6201, + 6202, + 6203, + 6204, + 6205, + 6206, + 6207, + 6208, + 6209, + 6210, + 6211, + 6212, + 6213, + 6214, + 6215, + 6216, + 6217, + 6218, + 6219, + 6220 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6680, + "target": 7045, "name": "OrderLineItemTotalsDTO", "package": "@medusajs/types" } ] }, { - "id": 6110, + "id": 6356, "name": "OrderItemDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6111, + "id": 6357, "name": "id", "variant": "declaration", "kind": 1024, @@ -9642,7 +9675,7 @@ } }, { - "id": 6112, + "id": 6358, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -9661,7 +9694,7 @@ } }, { - "id": 6113, + "id": 6359, "name": "item", "variant": "declaration", "kind": 1024, @@ -9676,13 +9709,13 @@ }, "type": { "type": "reference", - "target": 5943, + "target": 6189, "name": "OrderLineItemDTO", "package": "@medusajs/types" } }, { - "id": 6114, + "id": 6360, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -9701,7 +9734,7 @@ } }, { - "id": 6115, + "id": 6361, "name": "raw_quantity", "variant": "declaration", "kind": 1024, @@ -9716,13 +9749,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6116, + "id": 6362, "name": "fulfilled_quantity", "variant": "declaration", "kind": 1024, @@ -9741,7 +9774,7 @@ } }, { - "id": 6117, + "id": 6363, "name": "raw_fulfilled_quantity", "variant": "declaration", "kind": 1024, @@ -9756,13 +9789,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6118, + "id": 6364, "name": "shipped_quantity", "variant": "declaration", "kind": 1024, @@ -9781,7 +9814,7 @@ } }, { - "id": 6119, + "id": 6365, "name": "raw_shipped_quantity", "variant": "declaration", "kind": 1024, @@ -9796,13 +9829,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6120, + "id": 6366, "name": "return_requested_quantity", "variant": "declaration", "kind": 1024, @@ -9821,7 +9854,7 @@ } }, { - "id": 6121, + "id": 6367, "name": "raw_return_requested_quantity", "variant": "declaration", "kind": 1024, @@ -9836,13 +9869,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6122, + "id": 6368, "name": "return_received_quantity", "variant": "declaration", "kind": 1024, @@ -9861,7 +9894,7 @@ } }, { - "id": 6123, + "id": 6369, "name": "raw_return_received_quantity", "variant": "declaration", "kind": 1024, @@ -9876,13 +9909,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6124, + "id": 6370, "name": "return_dismissed_quantity", "variant": "declaration", "kind": 1024, @@ -9901,7 +9934,7 @@ } }, { - "id": 6125, + "id": 6371, "name": "raw_return_dismissed_quantity", "variant": "declaration", "kind": 1024, @@ -9916,13 +9949,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6126, + "id": 6372, "name": "written_off_quantity", "variant": "declaration", "kind": 1024, @@ -9941,7 +9974,7 @@ } }, { - "id": 6127, + "id": 6373, "name": "raw_written_off_quantity", "variant": "declaration", "kind": 1024, @@ -9956,13 +9989,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6128, + "id": 6374, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -10005,7 +10038,7 @@ } }, { - "id": 6129, + "id": 6375, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -10029,7 +10062,7 @@ } }, { - "id": 6130, + "id": 6376, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -10057,32 +10090,32 @@ { "title": "Properties", "children": [ - 6111, - 6112, - 6113, - 6114, - 6115, - 6116, - 6117, - 6118, - 6119, - 6120, - 6121, - 6122, - 6123, - 6124, - 6125, - 6126, - 6127, - 6128, - 6129, - 6130 + 6357, + 6358, + 6359, + 6360, + 6361, + 6362, + 6363, + 6364, + 6365, + 6366, + 6367, + 6368, + 6369, + 6370, + 6371, + 6372, + 6373, + 6374, + 6375, + 6376 ] } ] }, { - "id": 6597, + "id": 6962, "name": "OrderStatus", "variant": "declaration", "kind": 2097152, @@ -10118,14 +10151,14 @@ } }, { - "id": 5584, + "id": 5825, "name": "OrderDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 5585, + "id": 5826, "name": "id", "variant": "declaration", "kind": 1024, @@ -10144,7 +10177,7 @@ } }, { - "id": 5586, + "id": 5827, "name": "version", "variant": "declaration", "kind": 1024, @@ -10163,7 +10196,30 @@ } }, { - "id": 5587, + "id": 5828, + "name": "order_change", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The active order change, if any." + } + ] + }, + "type": { + "type": "reference", + "target": 6568, + "name": "OrderChangeDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5829, "name": "status", "variant": "declaration", "kind": 1024, @@ -10178,13 +10234,13 @@ }, "type": { "type": "reference", - "target": 6597, + "target": 6962, "name": "OrderStatus", "package": "@medusajs/types" } }, { - "id": 5588, + "id": 5830, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -10205,7 +10261,7 @@ } }, { - "id": 5589, + "id": 5831, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -10226,7 +10282,7 @@ } }, { - "id": 5590, + "id": 5832, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -10247,7 +10303,7 @@ } }, { - "id": 5591, + "id": 5833, "name": "email", "variant": "declaration", "kind": 1024, @@ -10268,7 +10324,7 @@ } }, { - "id": 5592, + "id": 5834, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -10287,7 +10343,7 @@ } }, { - "id": 5593, + "id": 5835, "name": "shipping_address", "variant": "declaration", "kind": 1024, @@ -10307,13 +10363,13 @@ }, "type": { "type": "reference", - "target": 5900, + "target": 6146, "name": "OrderAddressDTO", "package": "@medusajs/types" } }, { - "id": 5594, + "id": 5836, "name": "billing_address", "variant": "declaration", "kind": 1024, @@ -10333,13 +10389,13 @@ }, "type": { "type": "reference", - "target": 5900, + "target": 6146, "name": "OrderAddressDTO", "package": "@medusajs/types" } }, { - "id": 5595, + "id": 5837, "name": "items", "variant": "declaration", "kind": 1024, @@ -10361,14 +10417,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 5943, + "target": 6189, "name": "OrderLineItemDTO", "package": "@medusajs/types" } } }, { - "id": 5596, + "id": 5838, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -10390,14 +10446,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6134, + "target": 6380, "name": "OrderShippingMethodDTO", "package": "@medusajs/types" } } }, { - "id": 5597, + "id": 5839, "name": "transactions", "variant": "declaration", "kind": 1024, @@ -10419,14 +10475,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6409, + "target": 6693, "name": "OrderTransactionDTO", "package": "@medusajs/types" } } }, { - "id": 5598, + "id": 5840, "name": "summary", "variant": "declaration", "kind": 1024, @@ -10443,13 +10499,13 @@ }, "type": { "type": "reference", - "target": 6598, + "target": 6963, "name": "OrderSummaryDTO", "package": "@medusajs/types" } }, { - "id": 5599, + "id": 5841, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -10494,7 +10550,7 @@ } }, { - "id": 5600, + "id": 5842, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -10529,7 +10585,7 @@ } }, { - "id": 5601, + "id": 5843, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -10564,7 +10620,7 @@ } }, { - "id": 5602, + "id": 5844, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -10599,7 +10655,7 @@ } }, { - "id": 5603, + "id": 5845, "name": "original_item_total", "variant": "declaration", "kind": 1024, @@ -10614,13 +10670,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5604, + "id": 5846, "name": "original_item_subtotal", "variant": "declaration", "kind": 1024, @@ -10635,13 +10691,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5605, + "id": 5847, "name": "original_item_tax_total", "variant": "declaration", "kind": 1024, @@ -10656,13 +10712,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5606, + "id": 5848, "name": "item_total", "variant": "declaration", "kind": 1024, @@ -10677,13 +10733,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5607, + "id": 5849, "name": "item_subtotal", "variant": "declaration", "kind": 1024, @@ -10698,13 +10754,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5608, + "id": 5850, "name": "item_tax_total", "variant": "declaration", "kind": 1024, @@ -10719,13 +10775,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5609, + "id": 5851, "name": "original_total", "variant": "declaration", "kind": 1024, @@ -10740,13 +10796,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5610, + "id": 5852, "name": "original_subtotal", "variant": "declaration", "kind": 1024, @@ -10761,13 +10817,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5611, + "id": 5853, "name": "original_tax_total", "variant": "declaration", "kind": 1024, @@ -10782,13 +10838,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5612, + "id": 5854, "name": "total", "variant": "declaration", "kind": 1024, @@ -10803,13 +10859,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5613, + "id": 5855, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -10824,13 +10880,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5614, + "id": 5856, "name": "tax_total", "variant": "declaration", "kind": 1024, @@ -10845,13 +10901,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5615, + "id": 5857, "name": "discount_total", "variant": "declaration", "kind": 1024, @@ -10866,13 +10922,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5616, + "id": 5858, "name": "discount_tax_total", "variant": "declaration", "kind": 1024, @@ -10887,13 +10943,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5617, + "id": 5859, "name": "gift_card_total", "variant": "declaration", "kind": 1024, @@ -10908,13 +10964,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5618, + "id": 5860, "name": "gift_card_tax_total", "variant": "declaration", "kind": 1024, @@ -10929,13 +10985,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5619, + "id": 5861, "name": "shipping_total", "variant": "declaration", "kind": 1024, @@ -10950,13 +11006,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5620, + "id": 5862, "name": "shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -10971,13 +11027,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5621, + "id": 5863, "name": "shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -10992,13 +11048,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5622, + "id": 5864, "name": "original_shipping_total", "variant": "declaration", "kind": 1024, @@ -11013,13 +11069,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5623, + "id": 5865, "name": "original_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -11034,13 +11090,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5624, + "id": 5866, "name": "original_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -11055,13 +11111,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5625, + "id": 5867, "name": "raw_original_item_total", "variant": "declaration", "kind": 1024, @@ -11076,13 +11132,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5626, + "id": 5868, "name": "raw_original_item_subtotal", "variant": "declaration", "kind": 1024, @@ -11097,13 +11153,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5627, + "id": 5869, "name": "raw_original_item_tax_total", "variant": "declaration", "kind": 1024, @@ -11118,13 +11174,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5628, + "id": 5870, "name": "raw_item_total", "variant": "declaration", "kind": 1024, @@ -11139,13 +11195,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5629, + "id": 5871, "name": "raw_item_subtotal", "variant": "declaration", "kind": 1024, @@ -11160,13 +11216,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5630, + "id": 5872, "name": "raw_item_tax_total", "variant": "declaration", "kind": 1024, @@ -11181,13 +11237,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5631, + "id": 5873, "name": "raw_original_total", "variant": "declaration", "kind": 1024, @@ -11202,13 +11258,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5632, + "id": 5874, "name": "raw_original_subtotal", "variant": "declaration", "kind": 1024, @@ -11223,13 +11279,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5633, + "id": 5875, "name": "raw_original_tax_total", "variant": "declaration", "kind": 1024, @@ -11244,13 +11300,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5634, + "id": 5876, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -11265,13 +11321,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5635, + "id": 5877, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -11286,13 +11342,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5636, + "id": 5878, "name": "raw_tax_total", "variant": "declaration", "kind": 1024, @@ -11307,13 +11363,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5637, + "id": 5879, "name": "raw_discount_total", "variant": "declaration", "kind": 1024, @@ -11328,13 +11384,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5638, + "id": 5880, "name": "raw_discount_tax_total", "variant": "declaration", "kind": 1024, @@ -11349,13 +11405,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5639, + "id": 5881, "name": "raw_gift_card_total", "variant": "declaration", "kind": 1024, @@ -11370,13 +11426,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5640, + "id": 5882, "name": "raw_gift_card_tax_total", "variant": "declaration", "kind": 1024, @@ -11391,13 +11447,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5641, + "id": 5883, "name": "raw_shipping_total", "variant": "declaration", "kind": 1024, @@ -11412,13 +11468,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5642, + "id": 5884, "name": "raw_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -11433,13 +11489,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5643, + "id": 5885, "name": "raw_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -11454,13 +11510,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5644, + "id": 5886, "name": "raw_original_shipping_total", "variant": "declaration", "kind": 1024, @@ -11475,13 +11531,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5645, + "id": 5887, "name": "raw_original_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -11496,13 +11552,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 5646, + "id": 5888, "name": "raw_original_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -11517,7 +11573,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } @@ -11527,74 +11583,75 @@ { "title": "Properties", "children": [ - 5585, - 5586, - 5587, - 5588, - 5589, - 5590, - 5591, - 5592, - 5593, - 5594, - 5595, - 5596, - 5597, - 5598, - 5599, - 5600, - 5601, - 5602, - 5603, - 5604, - 5605, - 5606, - 5607, - 5608, - 5609, - 5610, - 5611, - 5612, - 5613, - 5614, - 5615, - 5616, - 5617, - 5618, - 5619, - 5620, - 5621, - 5622, - 5623, - 5624, - 5625, - 5626, - 5627, - 5628, - 5629, - 5630, - 5631, - 5632, - 5633, - 5634, - 5635, - 5636, - 5637, - 5638, - 5639, - 5640, - 5641, - 5642, - 5643, - 5644, - 5645, - 5646 + 5826, + 5827, + 5828, + 5829, + 5830, + 5831, + 5832, + 5833, + 5834, + 5835, + 5836, + 5837, + 5838, + 5839, + 5840, + 5841, + 5842, + 5843, + 5844, + 5845, + 5846, + 5847, + 5848, + 5849, + 5850, + 5851, + 5852, + 5853, + 5854, + 5855, + 5856, + 5857, + 5858, + 5859, + 5860, + 5861, + 5862, + 5863, + 5864, + 5865, + 5866, + 5867, + 5868, + 5869, + 5870, + 5871, + 5872, + 5873, + 5874, + 5875, + 5876, + 5877, + 5878, + 5879, + 5880, + 5881, + 5882, + 5883, + 5884, + 5885, + 5886, + 5887, + 5888 ] } ] }, { - "id": 6666, + "id": 7031, "name": "ReturnStatus", "variant": "declaration", "kind": 2097152, @@ -11622,14 +11679,14 @@ } }, { - "id": 5668, + "id": 5910, "name": "ReturnDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 5678, + "id": 5921, "name": "id", "variant": "declaration", "kind": 1024, @@ -11655,7 +11712,36 @@ } }, { - "id": 5683, + "id": 5931, + "name": "order_change", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The active order change, if any." + } + ] + }, + "type": { + "type": "reference", + "target": 6568, + "name": "OrderChangeDTO", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.order_change" + } + }, + { + "id": 5926, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -11682,7 +11768,7 @@ } }, { - "id": 5682, + "id": 5925, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -11709,7 +11795,7 @@ } }, { - "id": 5681, + "id": 5924, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -11736,7 +11822,7 @@ } }, { - "id": 5685, + "id": 5928, "name": "email", "variant": "declaration", "kind": 1024, @@ -11763,7 +11849,7 @@ } }, { - "id": 5687, + "id": 5930, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -11789,7 +11875,7 @@ } }, { - "id": 5688, + "id": 5932, "name": "shipping_address", "variant": "declaration", "kind": 1024, @@ -11810,7 +11896,7 @@ }, "type": { "type": "reference", - "target": 5900, + "target": 6146, "name": "OrderAddressDTO", "package": "@medusajs/types" }, @@ -11821,7 +11907,7 @@ } }, { - "id": 5689, + "id": 5933, "name": "billing_address", "variant": "declaration", "kind": 1024, @@ -11842,7 +11928,7 @@ }, "type": { "type": "reference", - "target": 5900, + "target": 6146, "name": "OrderAddressDTO", "package": "@medusajs/types" }, @@ -11853,7 +11939,7 @@ } }, { - "id": 5690, + "id": 5934, "name": "items", "variant": "declaration", "kind": 1024, @@ -11876,7 +11962,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 5943, + "target": 6189, "name": "OrderLineItemDTO", "package": "@medusajs/types" } @@ -11888,7 +11974,7 @@ } }, { - "id": 5691, + "id": 5935, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -11911,7 +11997,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6134, + "target": 6380, "name": "OrderShippingMethodDTO", "package": "@medusajs/types" } @@ -11923,7 +12009,7 @@ } }, { - "id": 5692, + "id": 5936, "name": "transactions", "variant": "declaration", "kind": 1024, @@ -11946,7 +12032,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6409, + "target": 6693, "name": "OrderTransactionDTO", "package": "@medusajs/types" } @@ -11958,7 +12044,7 @@ } }, { - "id": 5693, + "id": 5937, "name": "summary", "variant": "declaration", "kind": 1024, @@ -11976,7 +12062,7 @@ }, "type": { "type": "reference", - "target": 6598, + "target": 6963, "name": "OrderSummaryDTO", "package": "@medusajs/types" }, @@ -11987,7 +12073,7 @@ } }, { - "id": 5684, + "id": 5927, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -12038,7 +12124,7 @@ } }, { - "id": 5686, + "id": 5929, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -12079,7 +12165,7 @@ } }, { - "id": 5679, + "id": 5922, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -12120,7 +12206,7 @@ } }, { - "id": 5680, + "id": 5923, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -12161,7 +12247,7 @@ } }, { - "id": 5694, + "id": 5938, "name": "original_item_total", "variant": "declaration", "kind": 1024, @@ -12178,7 +12264,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12189,7 +12275,7 @@ } }, { - "id": 5695, + "id": 5939, "name": "original_item_subtotal", "variant": "declaration", "kind": 1024, @@ -12206,7 +12292,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12217,7 +12303,7 @@ } }, { - "id": 5696, + "id": 5940, "name": "original_item_tax_total", "variant": "declaration", "kind": 1024, @@ -12234,7 +12320,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12245,7 +12331,7 @@ } }, { - "id": 5697, + "id": 5941, "name": "item_total", "variant": "declaration", "kind": 1024, @@ -12262,7 +12348,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12273,7 +12359,7 @@ } }, { - "id": 5698, + "id": 5942, "name": "item_subtotal", "variant": "declaration", "kind": 1024, @@ -12290,7 +12376,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12301,7 +12387,7 @@ } }, { - "id": 5699, + "id": 5943, "name": "item_tax_total", "variant": "declaration", "kind": 1024, @@ -12318,7 +12404,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12329,7 +12415,7 @@ } }, { - "id": 5700, + "id": 5944, "name": "original_total", "variant": "declaration", "kind": 1024, @@ -12346,7 +12432,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12357,7 +12443,7 @@ } }, { - "id": 5701, + "id": 5945, "name": "original_subtotal", "variant": "declaration", "kind": 1024, @@ -12374,7 +12460,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12385,7 +12471,7 @@ } }, { - "id": 5702, + "id": 5946, "name": "original_tax_total", "variant": "declaration", "kind": 1024, @@ -12402,7 +12488,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12413,7 +12499,7 @@ } }, { - "id": 5674, + "id": 5917, "name": "total", "variant": "declaration", "kind": 1024, @@ -12430,7 +12516,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12441,7 +12527,7 @@ } }, { - "id": 5675, + "id": 5918, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -12458,7 +12544,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12469,7 +12555,7 @@ } }, { - "id": 5673, + "id": 5916, "name": "tax_total", "variant": "declaration", "kind": 1024, @@ -12486,7 +12572,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12497,7 +12583,7 @@ } }, { - "id": 5672, + "id": 5915, "name": "discount_total", "variant": "declaration", "kind": 1024, @@ -12514,7 +12600,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12525,7 +12611,7 @@ } }, { - "id": 5703, + "id": 5947, "name": "discount_tax_total", "variant": "declaration", "kind": 1024, @@ -12542,7 +12628,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12553,7 +12639,7 @@ } }, { - "id": 5676, + "id": 5919, "name": "gift_card_total", "variant": "declaration", "kind": 1024, @@ -12570,7 +12656,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12581,7 +12667,7 @@ } }, { - "id": 5677, + "id": 5920, "name": "gift_card_tax_total", "variant": "declaration", "kind": 1024, @@ -12598,7 +12684,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12609,7 +12695,7 @@ } }, { - "id": 5671, + "id": 5914, "name": "shipping_total", "variant": "declaration", "kind": 1024, @@ -12626,7 +12712,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12637,7 +12723,7 @@ } }, { - "id": 5704, + "id": 5948, "name": "shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -12654,7 +12740,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12665,7 +12751,7 @@ } }, { - "id": 5705, + "id": 5949, "name": "shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -12682,7 +12768,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12693,7 +12779,7 @@ } }, { - "id": 5706, + "id": 5950, "name": "original_shipping_total", "variant": "declaration", "kind": 1024, @@ -12710,7 +12796,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12721,7 +12807,7 @@ } }, { - "id": 5707, + "id": 5951, "name": "original_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -12738,7 +12824,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12749,7 +12835,7 @@ } }, { - "id": 5708, + "id": 5952, "name": "original_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -12766,7 +12852,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -12777,7 +12863,7 @@ } }, { - "id": 5709, + "id": 5953, "name": "raw_original_item_total", "variant": "declaration", "kind": 1024, @@ -12794,7 +12880,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -12805,7 +12891,7 @@ } }, { - "id": 5710, + "id": 5954, "name": "raw_original_item_subtotal", "variant": "declaration", "kind": 1024, @@ -12822,7 +12908,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -12833,7 +12919,7 @@ } }, { - "id": 5711, + "id": 5955, "name": "raw_original_item_tax_total", "variant": "declaration", "kind": 1024, @@ -12850,7 +12936,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -12861,7 +12947,7 @@ } }, { - "id": 5712, + "id": 5956, "name": "raw_item_total", "variant": "declaration", "kind": 1024, @@ -12878,7 +12964,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -12889,7 +12975,7 @@ } }, { - "id": 5713, + "id": 5957, "name": "raw_item_subtotal", "variant": "declaration", "kind": 1024, @@ -12906,7 +12992,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -12917,7 +13003,7 @@ } }, { - "id": 5714, + "id": 5958, "name": "raw_item_tax_total", "variant": "declaration", "kind": 1024, @@ -12934,7 +13020,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -12945,7 +13031,7 @@ } }, { - "id": 5715, + "id": 5959, "name": "raw_original_total", "variant": "declaration", "kind": 1024, @@ -12962,7 +13048,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -12973,7 +13059,7 @@ } }, { - "id": 5716, + "id": 5960, "name": "raw_original_subtotal", "variant": "declaration", "kind": 1024, @@ -12990,7 +13076,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13001,7 +13087,7 @@ } }, { - "id": 5717, + "id": 5961, "name": "raw_original_tax_total", "variant": "declaration", "kind": 1024, @@ -13018,7 +13104,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13029,7 +13115,7 @@ } }, { - "id": 5718, + "id": 5962, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -13046,7 +13132,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13057,7 +13143,7 @@ } }, { - "id": 5719, + "id": 5963, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -13074,7 +13160,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13085,7 +13171,7 @@ } }, { - "id": 5720, + "id": 5964, "name": "raw_tax_total", "variant": "declaration", "kind": 1024, @@ -13102,7 +13188,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13113,7 +13199,7 @@ } }, { - "id": 5721, + "id": 5965, "name": "raw_discount_total", "variant": "declaration", "kind": 1024, @@ -13130,7 +13216,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13141,7 +13227,7 @@ } }, { - "id": 5722, + "id": 5966, "name": "raw_discount_tax_total", "variant": "declaration", "kind": 1024, @@ -13158,7 +13244,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13169,7 +13255,7 @@ } }, { - "id": 5723, + "id": 5967, "name": "raw_gift_card_total", "variant": "declaration", "kind": 1024, @@ -13186,7 +13272,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13197,7 +13283,7 @@ } }, { - "id": 5724, + "id": 5968, "name": "raw_gift_card_tax_total", "variant": "declaration", "kind": 1024, @@ -13214,7 +13300,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13225,7 +13311,7 @@ } }, { - "id": 5725, + "id": 5969, "name": "raw_shipping_total", "variant": "declaration", "kind": 1024, @@ -13242,7 +13328,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13253,7 +13339,7 @@ } }, { - "id": 5726, + "id": 5970, "name": "raw_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -13270,7 +13356,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13281,7 +13367,7 @@ } }, { - "id": 5727, + "id": 5971, "name": "raw_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -13298,7 +13384,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13309,7 +13395,7 @@ } }, { - "id": 5728, + "id": 5972, "name": "raw_original_shipping_total", "variant": "declaration", "kind": 1024, @@ -13326,7 +13412,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13337,7 +13423,7 @@ } }, { - "id": 5729, + "id": 5973, "name": "raw_original_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -13354,7 +13440,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13365,7 +13451,7 @@ } }, { - "id": 5730, + "id": 5974, "name": "raw_original_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -13382,7 +13468,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13393,20 +13479,20 @@ } }, { - "id": 5669, + "id": 5911, "name": "status", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6666, + "target": 7031, "name": "ReturnStatus", "package": "@medusajs/types" } }, { - "id": 5670, + "id": 5912, "name": "refund_amount", "variant": "declaration", "kind": 1024, @@ -13415,78 +13501,91 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } + }, + { + "id": 5913, + "name": "order_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } } ], "groups": [ { "title": "Properties", "children": [ - 5678, - 5683, - 5682, - 5681, - 5685, - 5687, - 5688, - 5689, - 5690, - 5691, - 5692, - 5693, - 5684, - 5686, - 5679, - 5680, - 5694, - 5695, - 5696, - 5697, - 5698, - 5699, - 5700, - 5701, - 5702, - 5674, - 5675, - 5673, - 5672, - 5703, - 5676, - 5677, - 5671, - 5704, - 5705, - 5706, - 5707, - 5708, - 5709, - 5710, - 5711, - 5712, - 5713, - 5714, - 5715, - 5716, - 5717, - 5718, - 5719, - 5720, - 5721, - 5722, - 5723, - 5724, - 5725, - 5726, - 5727, - 5728, - 5729, - 5730, - 5669, - 5670 + 5921, + 5931, + 5926, + 5925, + 5924, + 5928, + 5930, + 5932, + 5933, + 5934, + 5935, + 5936, + 5937, + 5927, + 5929, + 5922, + 5923, + 5938, + 5939, + 5940, + 5941, + 5942, + 5943, + 5944, + 5945, + 5946, + 5917, + 5918, + 5916, + 5915, + 5947, + 5919, + 5920, + 5914, + 5948, + 5949, + 5950, + 5951, + 5952, + 5953, + 5954, + 5955, + 5956, + 5957, + 5958, + 5959, + 5960, + 5961, + 5962, + 5963, + 5964, + 5965, + 5966, + 5967, + 5968, + 5969, + 5970, + 5971, + 5972, + 5973, + 5974, + 5911, + 5912, + 5913 ] } ], @@ -13500,7 +13599,7 @@ "typeArguments": [ { "type": "reference", - "target": 5584, + "target": 5825, "name": "OrderDTO", "package": "@medusajs/types" }, @@ -13524,14 +13623,14 @@ ] }, { - "id": 5731, + "id": 5975, "name": "OrderClaimDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 5744, + "id": 5988, "name": "id", "variant": "declaration", "kind": 1024, @@ -13557,7 +13656,36 @@ } }, { - "id": 5749, + "id": 5998, + "name": "order_change", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The active order change, if any." + } + ] + }, + "type": { + "type": "reference", + "target": 6568, + "name": "OrderChangeDTO", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.order_change" + } + }, + { + "id": 5993, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -13584,7 +13712,7 @@ } }, { - "id": 5748, + "id": 5992, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -13611,7 +13739,7 @@ } }, { - "id": 5747, + "id": 5991, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -13638,7 +13766,7 @@ } }, { - "id": 5751, + "id": 5995, "name": "email", "variant": "declaration", "kind": 1024, @@ -13665,7 +13793,7 @@ } }, { - "id": 5753, + "id": 5997, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -13691,7 +13819,7 @@ } }, { - "id": 5754, + "id": 5999, "name": "shipping_address", "variant": "declaration", "kind": 1024, @@ -13712,7 +13840,7 @@ }, "type": { "type": "reference", - "target": 5900, + "target": 6146, "name": "OrderAddressDTO", "package": "@medusajs/types" }, @@ -13723,7 +13851,7 @@ } }, { - "id": 5755, + "id": 6000, "name": "billing_address", "variant": "declaration", "kind": 1024, @@ -13744,7 +13872,7 @@ }, "type": { "type": "reference", - "target": 5900, + "target": 6146, "name": "OrderAddressDTO", "package": "@medusajs/types" }, @@ -13755,7 +13883,7 @@ } }, { - "id": 5756, + "id": 6001, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -13778,7 +13906,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6134, + "target": 6380, "name": "OrderShippingMethodDTO", "package": "@medusajs/types" } @@ -13790,7 +13918,7 @@ } }, { - "id": 5757, + "id": 6002, "name": "transactions", "variant": "declaration", "kind": 1024, @@ -13813,7 +13941,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6409, + "target": 6693, "name": "OrderTransactionDTO", "package": "@medusajs/types" } @@ -13825,7 +13953,7 @@ } }, { - "id": 5758, + "id": 6003, "name": "summary", "variant": "declaration", "kind": 1024, @@ -13843,7 +13971,7 @@ }, "type": { "type": "reference", - "target": 6598, + "target": 6963, "name": "OrderSummaryDTO", "package": "@medusajs/types" }, @@ -13854,7 +13982,7 @@ } }, { - "id": 5750, + "id": 5994, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -13905,7 +14033,7 @@ } }, { - "id": 5752, + "id": 5996, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -13946,7 +14074,7 @@ } }, { - "id": 5745, + "id": 5989, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -13987,7 +14115,7 @@ } }, { - "id": 5746, + "id": 5990, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -14028,7 +14156,7 @@ } }, { - "id": 5759, + "id": 6004, "name": "original_item_total", "variant": "declaration", "kind": 1024, @@ -14045,7 +14173,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14056,7 +14184,7 @@ } }, { - "id": 5760, + "id": 6005, "name": "original_item_subtotal", "variant": "declaration", "kind": 1024, @@ -14073,7 +14201,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14084,7 +14212,7 @@ } }, { - "id": 5761, + "id": 6006, "name": "original_item_tax_total", "variant": "declaration", "kind": 1024, @@ -14101,7 +14229,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14112,7 +14240,7 @@ } }, { - "id": 5762, + "id": 6007, "name": "item_total", "variant": "declaration", "kind": 1024, @@ -14129,7 +14257,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14140,7 +14268,7 @@ } }, { - "id": 5763, + "id": 6008, "name": "item_subtotal", "variant": "declaration", "kind": 1024, @@ -14157,7 +14285,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14168,7 +14296,7 @@ } }, { - "id": 5764, + "id": 6009, "name": "item_tax_total", "variant": "declaration", "kind": 1024, @@ -14185,7 +14313,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14196,7 +14324,7 @@ } }, { - "id": 5765, + "id": 6010, "name": "original_total", "variant": "declaration", "kind": 1024, @@ -14213,7 +14341,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14224,7 +14352,7 @@ } }, { - "id": 5766, + "id": 6011, "name": "original_subtotal", "variant": "declaration", "kind": 1024, @@ -14241,7 +14369,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14252,7 +14380,7 @@ } }, { - "id": 5767, + "id": 6012, "name": "original_tax_total", "variant": "declaration", "kind": 1024, @@ -14269,7 +14397,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14280,7 +14408,7 @@ } }, { - "id": 5740, + "id": 5984, "name": "total", "variant": "declaration", "kind": 1024, @@ -14297,7 +14425,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14308,7 +14436,7 @@ } }, { - "id": 5741, + "id": 5985, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -14325,7 +14453,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14336,7 +14464,7 @@ } }, { - "id": 5739, + "id": 5983, "name": "tax_total", "variant": "declaration", "kind": 1024, @@ -14353,7 +14481,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14364,7 +14492,7 @@ } }, { - "id": 5738, + "id": 5982, "name": "discount_total", "variant": "declaration", "kind": 1024, @@ -14381,7 +14509,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14392,7 +14520,7 @@ } }, { - "id": 5768, + "id": 6013, "name": "discount_tax_total", "variant": "declaration", "kind": 1024, @@ -14409,7 +14537,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14420,7 +14548,7 @@ } }, { - "id": 5742, + "id": 5986, "name": "gift_card_total", "variant": "declaration", "kind": 1024, @@ -14437,7 +14565,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14448,7 +14576,7 @@ } }, { - "id": 5743, + "id": 5987, "name": "gift_card_tax_total", "variant": "declaration", "kind": 1024, @@ -14465,7 +14593,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14476,7 +14604,7 @@ } }, { - "id": 5737, + "id": 5981, "name": "shipping_total", "variant": "declaration", "kind": 1024, @@ -14493,7 +14621,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14504,7 +14632,7 @@ } }, { - "id": 5769, + "id": 6014, "name": "shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -14521,7 +14649,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14532,7 +14660,7 @@ } }, { - "id": 5770, + "id": 6015, "name": "shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -14549,7 +14677,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14560,7 +14688,7 @@ } }, { - "id": 5771, + "id": 6016, "name": "original_shipping_total", "variant": "declaration", "kind": 1024, @@ -14577,7 +14705,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14588,7 +14716,7 @@ } }, { - "id": 5772, + "id": 6017, "name": "original_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -14605,7 +14733,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14616,7 +14744,7 @@ } }, { - "id": 5773, + "id": 6018, "name": "original_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -14633,7 +14761,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -14644,7 +14772,7 @@ } }, { - "id": 5774, + "id": 6019, "name": "raw_original_item_total", "variant": "declaration", "kind": 1024, @@ -14661,7 +14789,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -14672,7 +14800,7 @@ } }, { - "id": 5775, + "id": 6020, "name": "raw_original_item_subtotal", "variant": "declaration", "kind": 1024, @@ -14689,7 +14817,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -14700,7 +14828,7 @@ } }, { - "id": 5776, + "id": 6021, "name": "raw_original_item_tax_total", "variant": "declaration", "kind": 1024, @@ -14717,7 +14845,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -14728,7 +14856,7 @@ } }, { - "id": 5777, + "id": 6022, "name": "raw_item_total", "variant": "declaration", "kind": 1024, @@ -14745,7 +14873,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -14756,7 +14884,7 @@ } }, { - "id": 5778, + "id": 6023, "name": "raw_item_subtotal", "variant": "declaration", "kind": 1024, @@ -14773,7 +14901,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -14784,7 +14912,7 @@ } }, { - "id": 5779, + "id": 6024, "name": "raw_item_tax_total", "variant": "declaration", "kind": 1024, @@ -14801,7 +14929,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -14812,7 +14940,7 @@ } }, { - "id": 5780, + "id": 6025, "name": "raw_original_total", "variant": "declaration", "kind": 1024, @@ -14829,7 +14957,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -14840,7 +14968,7 @@ } }, { - "id": 5781, + "id": 6026, "name": "raw_original_subtotal", "variant": "declaration", "kind": 1024, @@ -14857,7 +14985,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -14868,7 +14996,7 @@ } }, { - "id": 5782, + "id": 6027, "name": "raw_original_tax_total", "variant": "declaration", "kind": 1024, @@ -14885,7 +15013,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -14896,7 +15024,7 @@ } }, { - "id": 5783, + "id": 6028, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -14913,7 +15041,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -14924,7 +15052,7 @@ } }, { - "id": 5784, + "id": 6029, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -14941,7 +15069,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -14952,7 +15080,7 @@ } }, { - "id": 5785, + "id": 6030, "name": "raw_tax_total", "variant": "declaration", "kind": 1024, @@ -14969,7 +15097,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -14980,7 +15108,7 @@ } }, { - "id": 5786, + "id": 6031, "name": "raw_discount_total", "variant": "declaration", "kind": 1024, @@ -14997,7 +15125,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -15008,7 +15136,7 @@ } }, { - "id": 5787, + "id": 6032, "name": "raw_discount_tax_total", "variant": "declaration", "kind": 1024, @@ -15025,7 +15153,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -15036,7 +15164,7 @@ } }, { - "id": 5788, + "id": 6033, "name": "raw_gift_card_total", "variant": "declaration", "kind": 1024, @@ -15053,7 +15181,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -15064,7 +15192,7 @@ } }, { - "id": 5789, + "id": 6034, "name": "raw_gift_card_tax_total", "variant": "declaration", "kind": 1024, @@ -15081,7 +15209,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -15092,7 +15220,7 @@ } }, { - "id": 5790, + "id": 6035, "name": "raw_shipping_total", "variant": "declaration", "kind": 1024, @@ -15109,7 +15237,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -15120,7 +15248,7 @@ } }, { - "id": 5791, + "id": 6036, "name": "raw_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -15137,7 +15265,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -15148,7 +15276,7 @@ } }, { - "id": 5792, + "id": 6037, "name": "raw_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -15165,7 +15293,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -15176,7 +15304,7 @@ } }, { - "id": 5793, + "id": 6038, "name": "raw_original_shipping_total", "variant": "declaration", "kind": 1024, @@ -15193,7 +15321,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -15204,7 +15332,7 @@ } }, { - "id": 5794, + "id": 6039, "name": "raw_original_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -15221,7 +15349,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -15232,7 +15360,7 @@ } }, { - "id": 5795, + "id": 6040, "name": "raw_original_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -15249,7 +15377,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -15260,7 +15388,7 @@ } }, { - "id": 5732, + "id": 5976, "name": "claim_items", "variant": "declaration", "kind": 1024, @@ -15274,7 +15402,7 @@ } }, { - "id": 5733, + "id": 5977, "name": "additional_items", "variant": "declaration", "kind": 1024, @@ -15288,7 +15416,7 @@ } }, { - "id": 5734, + "id": 5978, "name": "return", "variant": "declaration", "kind": 1024, @@ -15297,13 +15425,13 @@ }, "type": { "type": "reference", - "target": 5668, + "target": 5910, "name": "ReturnDTO", "package": "@medusajs/types" } }, { - "id": 5735, + "id": 5979, "name": "no_notification", "variant": "declaration", "kind": 1024, @@ -15316,7 +15444,7 @@ } }, { - "id": 5736, + "id": 5980, "name": "refund_amount", "variant": "declaration", "kind": 1024, @@ -15325,7 +15453,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } @@ -15335,70 +15463,71 @@ { "title": "Properties", "children": [ - 5744, - 5749, - 5748, - 5747, - 5751, - 5753, - 5754, - 5755, - 5756, - 5757, - 5758, - 5750, - 5752, - 5745, - 5746, - 5759, - 5760, - 5761, - 5762, - 5763, - 5764, - 5765, - 5766, - 5767, - 5740, - 5741, - 5739, - 5738, - 5768, - 5742, - 5743, - 5737, - 5769, - 5770, - 5771, - 5772, - 5773, - 5774, - 5775, - 5776, - 5777, - 5778, - 5779, - 5780, - 5781, - 5782, - 5783, - 5784, - 5785, - 5786, - 5787, - 5788, - 5789, - 5790, - 5791, - 5792, - 5793, - 5794, - 5795, - 5732, - 5733, - 5734, - 5735, - 5736 + 5988, + 5998, + 5993, + 5992, + 5991, + 5995, + 5997, + 5999, + 6000, + 6001, + 6002, + 6003, + 5994, + 5996, + 5989, + 5990, + 6004, + 6005, + 6006, + 6007, + 6008, + 6009, + 6010, + 6011, + 6012, + 5984, + 5985, + 5983, + 5982, + 6013, + 5986, + 5987, + 5981, + 6014, + 6015, + 6016, + 6017, + 6018, + 6019, + 6020, + 6021, + 6022, + 6023, + 6024, + 6025, + 6026, + 6027, + 6028, + 6029, + 6030, + 6031, + 6032, + 6033, + 6034, + 6035, + 6036, + 6037, + 6038, + 6039, + 6040, + 5976, + 5977, + 5978, + 5979, + 5980 ] } ], @@ -15412,7 +15541,7 @@ "typeArguments": [ { "type": "reference", - "target": 5584, + "target": 5825, "name": "OrderDTO", "package": "@medusajs/types" }, @@ -15440,14 +15569,14 @@ ] }, { - "id": 5796, + "id": 6041, "name": "OrderExchangeDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 5809, + "id": 6054, "name": "id", "variant": "declaration", "kind": 1024, @@ -15473,7 +15602,36 @@ } }, { - "id": 5814, + "id": 6064, + "name": "order_change", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The active order change, if any." + } + ] + }, + "type": { + "type": "reference", + "target": 6568, + "name": "OrderChangeDTO", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.order_change" + } + }, + { + "id": 6059, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -15500,7 +15658,7 @@ } }, { - "id": 5813, + "id": 6058, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -15527,7 +15685,7 @@ } }, { - "id": 5812, + "id": 6057, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -15554,7 +15712,7 @@ } }, { - "id": 5816, + "id": 6061, "name": "email", "variant": "declaration", "kind": 1024, @@ -15581,7 +15739,7 @@ } }, { - "id": 5818, + "id": 6063, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -15607,7 +15765,7 @@ } }, { - "id": 5819, + "id": 6065, "name": "shipping_address", "variant": "declaration", "kind": 1024, @@ -15628,7 +15786,7 @@ }, "type": { "type": "reference", - "target": 5900, + "target": 6146, "name": "OrderAddressDTO", "package": "@medusajs/types" }, @@ -15639,7 +15797,7 @@ } }, { - "id": 5820, + "id": 6066, "name": "billing_address", "variant": "declaration", "kind": 1024, @@ -15660,7 +15818,7 @@ }, "type": { "type": "reference", - "target": 5900, + "target": 6146, "name": "OrderAddressDTO", "package": "@medusajs/types" }, @@ -15671,7 +15829,7 @@ } }, { - "id": 5821, + "id": 6067, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -15694,7 +15852,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6134, + "target": 6380, "name": "OrderShippingMethodDTO", "package": "@medusajs/types" } @@ -15706,7 +15864,7 @@ } }, { - "id": 5822, + "id": 6068, "name": "transactions", "variant": "declaration", "kind": 1024, @@ -15729,7 +15887,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6409, + "target": 6693, "name": "OrderTransactionDTO", "package": "@medusajs/types" } @@ -15741,7 +15899,7 @@ } }, { - "id": 5823, + "id": 6069, "name": "summary", "variant": "declaration", "kind": 1024, @@ -15759,7 +15917,7 @@ }, "type": { "type": "reference", - "target": 6598, + "target": 6963, "name": "OrderSummaryDTO", "package": "@medusajs/types" }, @@ -15770,7 +15928,7 @@ } }, { - "id": 5815, + "id": 6060, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -15821,7 +15979,7 @@ } }, { - "id": 5817, + "id": 6062, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -15862,7 +16020,7 @@ } }, { - "id": 5810, + "id": 6055, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -15903,7 +16061,7 @@ } }, { - "id": 5811, + "id": 6056, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -15944,7 +16102,7 @@ } }, { - "id": 5824, + "id": 6070, "name": "original_item_total", "variant": "declaration", "kind": 1024, @@ -15961,7 +16119,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -15972,7 +16130,7 @@ } }, { - "id": 5825, + "id": 6071, "name": "original_item_subtotal", "variant": "declaration", "kind": 1024, @@ -15989,7 +16147,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16000,7 +16158,7 @@ } }, { - "id": 5826, + "id": 6072, "name": "original_item_tax_total", "variant": "declaration", "kind": 1024, @@ -16017,7 +16175,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16028,7 +16186,7 @@ } }, { - "id": 5827, + "id": 6073, "name": "item_total", "variant": "declaration", "kind": 1024, @@ -16045,7 +16203,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16056,7 +16214,7 @@ } }, { - "id": 5828, + "id": 6074, "name": "item_subtotal", "variant": "declaration", "kind": 1024, @@ -16073,7 +16231,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16084,7 +16242,7 @@ } }, { - "id": 5829, + "id": 6075, "name": "item_tax_total", "variant": "declaration", "kind": 1024, @@ -16101,7 +16259,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16112,7 +16270,7 @@ } }, { - "id": 5830, + "id": 6076, "name": "original_total", "variant": "declaration", "kind": 1024, @@ -16129,7 +16287,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16140,7 +16298,7 @@ } }, { - "id": 5831, + "id": 6077, "name": "original_subtotal", "variant": "declaration", "kind": 1024, @@ -16157,7 +16315,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16168,7 +16326,7 @@ } }, { - "id": 5832, + "id": 6078, "name": "original_tax_total", "variant": "declaration", "kind": 1024, @@ -16185,7 +16343,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16196,7 +16354,7 @@ } }, { - "id": 5805, + "id": 6050, "name": "total", "variant": "declaration", "kind": 1024, @@ -16213,7 +16371,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16224,7 +16382,7 @@ } }, { - "id": 5806, + "id": 6051, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -16241,7 +16399,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16252,7 +16410,7 @@ } }, { - "id": 5804, + "id": 6049, "name": "tax_total", "variant": "declaration", "kind": 1024, @@ -16269,7 +16427,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16280,7 +16438,7 @@ } }, { - "id": 5803, + "id": 6048, "name": "discount_total", "variant": "declaration", "kind": 1024, @@ -16297,7 +16455,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16308,7 +16466,7 @@ } }, { - "id": 5833, + "id": 6079, "name": "discount_tax_total", "variant": "declaration", "kind": 1024, @@ -16325,7 +16483,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16336,7 +16494,7 @@ } }, { - "id": 5807, + "id": 6052, "name": "gift_card_total", "variant": "declaration", "kind": 1024, @@ -16353,7 +16511,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16364,7 +16522,7 @@ } }, { - "id": 5808, + "id": 6053, "name": "gift_card_tax_total", "variant": "declaration", "kind": 1024, @@ -16381,7 +16539,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16392,7 +16550,7 @@ } }, { - "id": 5802, + "id": 6047, "name": "shipping_total", "variant": "declaration", "kind": 1024, @@ -16409,7 +16567,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16420,7 +16578,7 @@ } }, { - "id": 5834, + "id": 6080, "name": "shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -16437,7 +16595,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16448,7 +16606,7 @@ } }, { - "id": 5835, + "id": 6081, "name": "shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -16465,7 +16623,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16476,7 +16634,7 @@ } }, { - "id": 5836, + "id": 6082, "name": "original_shipping_total", "variant": "declaration", "kind": 1024, @@ -16493,7 +16651,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16504,7 +16662,7 @@ } }, { - "id": 5837, + "id": 6083, "name": "original_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -16521,7 +16679,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16532,7 +16690,7 @@ } }, { - "id": 5838, + "id": 6084, "name": "original_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -16549,7 +16707,7 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" }, @@ -16560,7 +16718,7 @@ } }, { - "id": 5839, + "id": 6085, "name": "raw_original_item_total", "variant": "declaration", "kind": 1024, @@ -16577,7 +16735,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16588,7 +16746,7 @@ } }, { - "id": 5840, + "id": 6086, "name": "raw_original_item_subtotal", "variant": "declaration", "kind": 1024, @@ -16605,7 +16763,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16616,7 +16774,7 @@ } }, { - "id": 5841, + "id": 6087, "name": "raw_original_item_tax_total", "variant": "declaration", "kind": 1024, @@ -16633,7 +16791,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16644,7 +16802,7 @@ } }, { - "id": 5842, + "id": 6088, "name": "raw_item_total", "variant": "declaration", "kind": 1024, @@ -16661,7 +16819,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16672,7 +16830,7 @@ } }, { - "id": 5843, + "id": 6089, "name": "raw_item_subtotal", "variant": "declaration", "kind": 1024, @@ -16689,7 +16847,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16700,7 +16858,7 @@ } }, { - "id": 5844, + "id": 6090, "name": "raw_item_tax_total", "variant": "declaration", "kind": 1024, @@ -16717,7 +16875,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16728,7 +16886,7 @@ } }, { - "id": 5845, + "id": 6091, "name": "raw_original_total", "variant": "declaration", "kind": 1024, @@ -16745,7 +16903,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16756,7 +16914,7 @@ } }, { - "id": 5846, + "id": 6092, "name": "raw_original_subtotal", "variant": "declaration", "kind": 1024, @@ -16773,7 +16931,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16784,7 +16942,7 @@ } }, { - "id": 5847, + "id": 6093, "name": "raw_original_tax_total", "variant": "declaration", "kind": 1024, @@ -16801,7 +16959,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16812,7 +16970,7 @@ } }, { - "id": 5848, + "id": 6094, "name": "raw_total", "variant": "declaration", "kind": 1024, @@ -16829,7 +16987,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16840,7 +16998,7 @@ } }, { - "id": 5849, + "id": 6095, "name": "raw_subtotal", "variant": "declaration", "kind": 1024, @@ -16857,7 +17015,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16868,7 +17026,7 @@ } }, { - "id": 5850, + "id": 6096, "name": "raw_tax_total", "variant": "declaration", "kind": 1024, @@ -16885,7 +17043,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16896,7 +17054,7 @@ } }, { - "id": 5851, + "id": 6097, "name": "raw_discount_total", "variant": "declaration", "kind": 1024, @@ -16913,7 +17071,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16924,7 +17082,7 @@ } }, { - "id": 5852, + "id": 6098, "name": "raw_discount_tax_total", "variant": "declaration", "kind": 1024, @@ -16941,7 +17099,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16952,7 +17110,7 @@ } }, { - "id": 5853, + "id": 6099, "name": "raw_gift_card_total", "variant": "declaration", "kind": 1024, @@ -16969,7 +17127,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -16980,7 +17138,7 @@ } }, { - "id": 5854, + "id": 6100, "name": "raw_gift_card_tax_total", "variant": "declaration", "kind": 1024, @@ -16997,7 +17155,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -17008,7 +17166,7 @@ } }, { - "id": 5855, + "id": 6101, "name": "raw_shipping_total", "variant": "declaration", "kind": 1024, @@ -17025,7 +17183,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -17036,7 +17194,7 @@ } }, { - "id": 5856, + "id": 6102, "name": "raw_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -17053,7 +17211,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -17064,7 +17222,7 @@ } }, { - "id": 5857, + "id": 6103, "name": "raw_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -17081,7 +17239,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -17092,7 +17250,7 @@ } }, { - "id": 5858, + "id": 6104, "name": "raw_original_shipping_total", "variant": "declaration", "kind": 1024, @@ -17109,7 +17267,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -17120,7 +17278,7 @@ } }, { - "id": 5859, + "id": 6105, "name": "raw_original_shipping_subtotal", "variant": "declaration", "kind": 1024, @@ -17137,7 +17295,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -17148,7 +17306,7 @@ } }, { - "id": 5860, + "id": 6106, "name": "raw_original_shipping_tax_total", "variant": "declaration", "kind": 1024, @@ -17165,7 +17323,7 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -17176,7 +17334,7 @@ } }, { - "id": 5797, + "id": 6042, "name": "return_items", "variant": "declaration", "kind": 1024, @@ -17190,7 +17348,7 @@ } }, { - "id": 5798, + "id": 6043, "name": "additional_items", "variant": "declaration", "kind": 1024, @@ -17204,7 +17362,7 @@ } }, { - "id": 5799, + "id": 6044, "name": "no_notification", "variant": "declaration", "kind": 1024, @@ -17217,7 +17375,7 @@ } }, { - "id": 5800, + "id": 6045, "name": "difference_due", "variant": "declaration", "kind": 1024, @@ -17226,13 +17384,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 5801, + "id": 6046, "name": "return", "variant": "declaration", "kind": 1024, @@ -17241,7 +17399,7 @@ }, "type": { "type": "reference", - "target": 5668, + "target": 5910, "name": "ReturnDTO", "package": "@medusajs/types" } @@ -17251,70 +17409,71 @@ { "title": "Properties", "children": [ - 5809, - 5814, - 5813, - 5812, - 5816, - 5818, - 5819, - 5820, - 5821, - 5822, - 5823, - 5815, - 5817, - 5810, - 5811, - 5824, - 5825, - 5826, - 5827, - 5828, - 5829, - 5830, - 5831, - 5832, - 5805, - 5806, - 5804, - 5803, - 5833, - 5807, - 5808, - 5802, - 5834, - 5835, - 5836, - 5837, - 5838, - 5839, - 5840, - 5841, - 5842, - 5843, - 5844, - 5845, - 5846, - 5847, - 5848, - 5849, - 5850, - 5851, - 5852, - 5853, - 5854, - 5855, - 5856, - 5857, - 5858, - 5859, - 5860, - 5797, - 5798, - 5799, - 5800, - 5801 + 6054, + 6064, + 6059, + 6058, + 6057, + 6061, + 6063, + 6065, + 6066, + 6067, + 6068, + 6069, + 6060, + 6062, + 6055, + 6056, + 6070, + 6071, + 6072, + 6073, + 6074, + 6075, + 6076, + 6077, + 6078, + 6050, + 6051, + 6049, + 6048, + 6079, + 6052, + 6053, + 6047, + 6080, + 6081, + 6082, + 6083, + 6084, + 6085, + 6086, + 6087, + 6088, + 6089, + 6090, + 6091, + 6092, + 6093, + 6094, + 6095, + 6096, + 6097, + 6098, + 6099, + 6100, + 6101, + 6102, + 6103, + 6104, + 6105, + 6106, + 6042, + 6043, + 6044, + 6045, + 6046 ] } ], @@ -17328,7 +17487,7 @@ "typeArguments": [ { "type": "reference", - "target": 5584, + "target": 5825, "name": "OrderDTO", "package": "@medusajs/types" }, @@ -17356,14 +17515,14 @@ ] }, { - "id": 6330, + "id": 6568, "name": "OrderChangeDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6331, + "id": 6569, "name": "id", "variant": "declaration", "kind": 1024, @@ -17382,7 +17541,64 @@ } }, { - "id": 6332, + "id": 6570, + "name": "version", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The version of the order change" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 6571, + "name": "change_type", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The type of the order change" + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "return" + }, + { + "type": "literal", + "value": "exchange" + }, + { + "type": "literal", + "value": "claim" + }, + { + "type": "literal", + "value": "edit" + } + ] + } + }, + { + "id": 6572, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -17401,7 +17617,64 @@ } }, { - "id": 6333, + "id": 6573, + "name": "return_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated return order" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6574, + "name": "exchange_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated exchange order" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6575, + "name": "claim_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated claim order" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6576, "name": "order", "variant": "declaration", "kind": 1024, @@ -17419,13 +17692,85 @@ }, "type": { "type": "reference", - "target": 5584, + "target": 5825, "name": "OrderDTO", "package": "@medusajs/types" } }, { - "id": 6334, + "id": 6577, + "name": "return_order", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated return order" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 5910, + "name": "ReturnDTO", + "package": "@medusajs/types" + } + }, + { + "id": 6578, + "name": "exchange", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated exchange order" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 6041, + "name": "OrderExchangeDTO", + "package": "@medusajs/types" + } + }, + { + "id": 6579, + "name": "claim", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The associated claim order" + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 5975, + "name": "OrderClaimDTO", + "package": "@medusajs/types" + } + }, + { + "id": 6580, "name": "actions", "variant": "declaration", "kind": 1024, @@ -17445,14 +17790,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6387, + "target": 6655, "name": "OrderChangeActionDTO", "package": "@medusajs/types" } } }, { - "id": 6335, + "id": 6581, "name": "status", "variant": "declaration", "kind": 1024, @@ -17471,7 +17816,7 @@ } }, { - "id": 6336, + "id": 6582, "name": "requested_by", "variant": "declaration", "kind": 1024, @@ -17499,7 +17844,7 @@ } }, { - "id": 6337, + "id": 6583, "name": "requested_at", "variant": "declaration", "kind": 1024, @@ -17536,7 +17881,7 @@ } }, { - "id": 6338, + "id": 6584, "name": "confirmed_by", "variant": "declaration", "kind": 1024, @@ -17564,7 +17909,7 @@ } }, { - "id": 6339, + "id": 6585, "name": "confirmed_at", "variant": "declaration", "kind": 1024, @@ -17601,7 +17946,7 @@ } }, { - "id": 6340, + "id": 6586, "name": "declined_by", "variant": "declaration", "kind": 1024, @@ -17629,7 +17974,7 @@ } }, { - "id": 6341, + "id": 6587, "name": "declined_reason", "variant": "declaration", "kind": 1024, @@ -17657,7 +18002,7 @@ } }, { - "id": 6342, + "id": 6588, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -17700,7 +18045,7 @@ } }, { - "id": 6343, + "id": 6589, "name": "declined_at", "variant": "declaration", "kind": 1024, @@ -17737,7 +18082,7 @@ } }, { - "id": 6344, + "id": 6590, "name": "canceled_by", "variant": "declaration", "kind": 1024, @@ -17765,7 +18110,7 @@ } }, { - "id": 6345, + "id": 6591, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -17802,7 +18147,7 @@ } }, { - "id": 6346, + "id": 6592, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -17835,7 +18180,7 @@ } }, { - "id": 6347, + "id": 6593, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -17872,36 +18217,44 @@ { "title": "Properties", "children": [ - 6331, - 6332, - 6333, - 6334, - 6335, - 6336, - 6337, - 6338, - 6339, - 6340, - 6341, - 6342, - 6343, - 6344, - 6345, - 6346, - 6347 + 6569, + 6570, + 6571, + 6572, + 6573, + 6574, + 6575, + 6576, + 6577, + 6578, + 6579, + 6580, + 6581, + 6582, + 6583, + 6584, + 6585, + 6586, + 6587, + 6588, + 6589, + 6590, + 6591, + 6592, + 6593 ] } ] }, { - "id": 6387, + "id": 6655, "name": "OrderChangeActionDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6388, + "id": 6656, "name": "id", "variant": "declaration", "kind": 1024, @@ -17920,7 +18273,7 @@ } }, { - "id": 6389, + "id": 6657, "name": "order_change_id", "variant": "declaration", "kind": 1024, @@ -17948,7 +18301,7 @@ } }, { - "id": 6390, + "id": 6658, "name": "order_change", "variant": "declaration", "kind": 1024, @@ -17973,7 +18326,7 @@ }, { "type": "reference", - "target": 6330, + "target": 6568, "name": "OrderChangeDTO", "package": "@medusajs/types" } @@ -17981,7 +18334,7 @@ } }, { - "id": 6391, + "id": 6659, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -18009,7 +18362,7 @@ } }, { - "id": 6392, + "id": 6660, "name": "order", "variant": "declaration", "kind": 1024, @@ -18034,7 +18387,7 @@ }, { "type": "reference", - "target": 5584, + "target": 5825, "name": "OrderDTO", "package": "@medusajs/types" } @@ -18042,7 +18395,7 @@ } }, { - "id": 6393, + "id": 6661, "name": "reference", "variant": "declaration", "kind": 1024, @@ -18061,7 +18414,7 @@ } }, { - "id": 6394, + "id": 6662, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -18080,7 +18433,7 @@ } }, { - "id": 6395, + "id": 6663, "name": "action", "variant": "declaration", "kind": 1024, @@ -18095,13 +18448,13 @@ }, "type": { "type": "reference", - "target": 6747, + "target": 7112, "name": "ChangeActionType", "package": "@medusajs/types" } }, { - "id": 6396, + "id": 6664, "name": "details", "variant": "declaration", "kind": 1024, @@ -18144,7 +18497,7 @@ } }, { - "id": 6397, + "id": 6665, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -18172,7 +18525,7 @@ } }, { - "id": 6398, + "id": 6666, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -18205,7 +18558,7 @@ } }, { - "id": 6399, + "id": 6667, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -18242,31 +18595,31 @@ { "title": "Properties", "children": [ - 6388, - 6389, - 6390, - 6391, - 6392, - 6393, - 6394, - 6395, - 6396, - 6397, - 6398, - 6399 + 6656, + 6657, + 6658, + 6659, + 6660, + 6661, + 6662, + 6663, + 6664, + 6665, + 6666, + 6667 ] } ] }, { - "id": 6409, + "id": 6693, "name": "OrderTransactionDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6410, + "id": 6694, "name": "id", "variant": "declaration", "kind": 1024, @@ -18285,7 +18638,7 @@ } }, { - "id": 6411, + "id": 6695, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -18304,7 +18657,7 @@ } }, { - "id": 6412, + "id": 6696, "name": "order", "variant": "declaration", "kind": 1024, @@ -18322,13 +18675,13 @@ }, "type": { "type": "reference", - "target": 5584, + "target": 5825, "name": "OrderDTO", "package": "@medusajs/types" } }, { - "id": 6413, + "id": 6697, "name": "amount", "variant": "declaration", "kind": 1024, @@ -18343,13 +18696,13 @@ }, "type": { "type": "reference", - "target": 6620, + "target": 6985, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 6414, + "id": 6698, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -18364,13 +18717,13 @@ }, "type": { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" } }, { - "id": 6415, + "id": 6699, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -18389,7 +18742,7 @@ } }, { - "id": 6416, + "id": 6700, "name": "reference", "variant": "declaration", "kind": 1024, @@ -18408,7 +18761,7 @@ } }, { - "id": 6417, + "id": 6701, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -18427,7 +18780,7 @@ } }, { - "id": 6418, + "id": 6702, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -18460,7 +18813,7 @@ } }, { - "id": 6419, + "id": 6703, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -18493,7 +18846,7 @@ } }, { - "id": 6420, + "id": 6704, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -18540,30 +18893,30 @@ { "title": "Properties", "children": [ - 6410, - 6411, - 6412, - 6413, - 6414, - 6415, - 6416, - 6417, - 6418, - 6419, - 6420 + 6694, + 6695, + 6696, + 6697, + 6698, + 6699, + 6700, + 6701, + 6702, + 6703, + 6704 ] } ] }, { - "id": 6431, + "id": 6715, "name": "OrderReturnReasonDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6432, + "id": 6716, "name": "id", "variant": "declaration", "kind": 1024, @@ -18582,7 +18935,7 @@ } }, { - "id": 6433, + "id": 6717, "name": "value", "variant": "declaration", "kind": 1024, @@ -18601,7 +18954,7 @@ } }, { - "id": 6434, + "id": 6718, "name": "label", "variant": "declaration", "kind": 1024, @@ -18620,7 +18973,7 @@ } }, { - "id": 6435, + "id": 6719, "name": "description", "variant": "declaration", "kind": 1024, @@ -18641,7 +18994,7 @@ } }, { - "id": 6436, + "id": 6720, "name": "parent_return_reason_id", "variant": "declaration", "kind": 1024, @@ -18662,7 +19015,7 @@ } }, { - "id": 6437, + "id": 6721, "name": "parent_return_reason", "variant": "declaration", "kind": 1024, @@ -18671,13 +19024,13 @@ }, "type": { "type": "reference", - "target": 6431, + "target": 6715, "name": "OrderReturnReasonDTO", "package": "@medusajs/types" } }, { - "id": 6438, + "id": 6722, "name": "return_reason_children", "variant": "declaration", "kind": 1024, @@ -18688,14 +19041,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6431, + "target": 6715, "name": "OrderReturnReasonDTO", "package": "@medusajs/types" } } }, { - "id": 6439, + "id": 6723, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -18738,7 +19091,7 @@ } }, { - "id": 6440, + "id": 6724, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -18771,7 +19124,7 @@ } }, { - "id": 6441, + "id": 6725, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -18808,22 +19161,22 @@ { "title": "Properties", "children": [ - 6432, - 6433, - 6434, - 6435, - 6436, - 6437, - 6438, - 6439, - 6440, - 6441 + 6716, + 6717, + 6718, + 6719, + 6720, + 6721, + 6722, + 6723, + 6724, + 6725 ] } ] }, { - "id": 5659, + "id": 5901, "name": "FilterableOrderProps", "variant": "declaration", "kind": 256, @@ -18838,7 +19191,7 @@ }, "children": [ { - "id": 5666, + "id": 5908, "name": "$and", "variant": "declaration", "kind": 1024, @@ -18861,17 +19214,17 @@ "types": [ { "type": "reference", - "target": 5659, + "target": 5901, "name": "FilterableOrderProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 5659, + "target": 5901, "name": "FilterableOrderProps", "package": "@medusajs/types" } @@ -18884,12 +19237,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6641, + "target": 7006, "name": "BaseFilterable.$and" } }, { - "id": 5667, + "id": 5909, "name": "$or", "variant": "declaration", "kind": 1024, @@ -18912,17 +19265,17 @@ "types": [ { "type": "reference", - "target": 5659, + "target": 5901, "name": "FilterableOrderProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 5659, + "target": 5901, "name": "FilterableOrderProps", "package": "@medusajs/types" } @@ -18935,12 +19288,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6642, + "target": 7007, "name": "BaseFilterable.$or" } }, { - "id": 5660, + "id": 5902, "name": "id", "variant": "declaration", "kind": 1024, @@ -18965,7 +19318,7 @@ } }, { - "id": 5661, + "id": 5903, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -18988,7 +19341,7 @@ }, { "type": "reference", - "target": 6644, + "target": 7009, "typeArguments": [ { "type": "intrinsic", @@ -19002,7 +19355,7 @@ } }, { - "id": 5662, + "id": 5904, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -19025,7 +19378,7 @@ }, { "type": "reference", - "target": 6644, + "target": 7009, "typeArguments": [ { "type": "intrinsic", @@ -19039,7 +19392,7 @@ } }, { - "id": 5663, + "id": 5905, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -19062,7 +19415,7 @@ }, { "type": "reference", - "target": 6644, + "target": 7009, "typeArguments": [ { "type": "intrinsic", @@ -19076,7 +19429,7 @@ } }, { - "id": 5664, + "id": 5906, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -19085,7 +19438,7 @@ }, "type": { "type": "reference", - "target": 6644, + "target": 7009, "typeArguments": [ { "type": "intrinsic", @@ -19097,7 +19450,7 @@ } }, { - "id": 5665, + "id": 5907, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -19106,7 +19459,7 @@ }, "type": { "type": "reference", - "target": 6644, + "target": 7009, "typeArguments": [ { "type": "intrinsic", @@ -19122,25 +19475,25 @@ { "title": "Properties", "children": [ - 5666, - 5667, - 5660, - 5661, - 5662, - 5663, - 5664, - 5665 + 5908, + 5909, + 5902, + 5903, + 5904, + 5905, + 5906, + 5907 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 5659, + "target": 5901, "name": "FilterableOrderProps", "package": "@medusajs/types" } @@ -19151,7 +19504,7 @@ ] }, { - "id": 5896, + "id": 6142, "name": "FilterableOrderAddressProps", "variant": "declaration", "kind": 256, @@ -19166,7 +19519,7 @@ }, "children": [ { - "id": 5898, + "id": 6144, "name": "$and", "variant": "declaration", "kind": 1024, @@ -19189,17 +19542,17 @@ "types": [ { "type": "reference", - "target": 5896, + "target": 6142, "name": "FilterableOrderAddressProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 5896, + "target": 6142, "name": "FilterableOrderAddressProps", "package": "@medusajs/types" } @@ -19212,12 +19565,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6641, + "target": 7006, "name": "BaseFilterable.$and" } }, { - "id": 5899, + "id": 6145, "name": "$or", "variant": "declaration", "kind": 1024, @@ -19240,17 +19593,17 @@ "types": [ { "type": "reference", - "target": 5896, + "target": 6142, "name": "FilterableOrderAddressProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 5896, + "target": 6142, "name": "FilterableOrderAddressProps", "package": "@medusajs/types" } @@ -19263,12 +19616,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6642, + "target": 7007, "name": "BaseFilterable.$or" } }, { - "id": 5897, + "id": 6143, "name": "id", "variant": "declaration", "kind": 1024, @@ -19297,20 +19650,20 @@ { "title": "Properties", "children": [ - 5898, - 5899, - 5897 + 6144, + 6145, + 6143 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 5896, + "target": 6142, "name": "FilterableOrderAddressProps", "package": "@medusajs/types" } @@ -19321,7 +19674,7 @@ ] }, { - "id": 6001, + "id": 6247, "name": "FilterableOrderLineItemProps", "variant": "declaration", "kind": 256, @@ -19336,7 +19689,7 @@ }, "children": [ { - "id": 6007, + "id": 6253, "name": "$and", "variant": "declaration", "kind": 1024, @@ -19359,17 +19712,17 @@ "types": [ { "type": "reference", - "target": 6001, + "target": 6247, "name": "FilterableOrderLineItemProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6001, + "target": 6247, "name": "FilterableOrderLineItemProps", "package": "@medusajs/types" } @@ -19382,12 +19735,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6641, + "target": 7006, "name": "BaseFilterable.$and" } }, { - "id": 6008, + "id": 6254, "name": "$or", "variant": "declaration", "kind": 1024, @@ -19410,17 +19763,17 @@ "types": [ { "type": "reference", - "target": 6001, + "target": 6247, "name": "FilterableOrderLineItemProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6001, + "target": 6247, "name": "FilterableOrderLineItemProps", "package": "@medusajs/types" } @@ -19433,12 +19786,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6642, + "target": 7007, "name": "BaseFilterable.$or" } }, { - "id": 6002, + "id": 6248, "name": "id", "variant": "declaration", "kind": 1024, @@ -19463,7 +19816,7 @@ } }, { - "id": 6003, + "id": 6249, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -19488,7 +19841,7 @@ } }, { - "id": 6004, + "id": 6250, "name": "title", "variant": "declaration", "kind": 1024, @@ -19501,7 +19854,7 @@ } }, { - "id": 6005, + "id": 6251, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -19526,7 +19879,7 @@ } }, { - "id": 6006, + "id": 6252, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -19555,24 +19908,24 @@ { "title": "Properties", "children": [ - 6007, - 6008, - 6002, - 6003, - 6004, - 6005, - 6006 + 6253, + 6254, + 6248, + 6249, + 6250, + 6251, + 6252 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6001, + "target": 6247, "name": "FilterableOrderLineItemProps", "package": "@medusajs/types" } @@ -19583,7 +19936,7 @@ ] }, { - "id": 6174, + "id": 6424, "name": "FilterableOrderLineItemAdjustmentProps", "variant": "declaration", "kind": 256, @@ -19598,7 +19951,7 @@ }, "children": [ { - "id": 6180, + "id": 6430, "name": "$and", "variant": "declaration", "kind": 1024, @@ -19621,17 +19974,17 @@ "types": [ { "type": "reference", - "target": 6174, + "target": 6424, "name": "FilterableOrderLineItemAdjustmentProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6174, + "target": 6424, "name": "FilterableOrderLineItemAdjustmentProps", "package": "@medusajs/types" } @@ -19644,12 +19997,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6641, + "target": 7006, "name": "BaseFilterable.$and" } }, { - "id": 6181, + "id": 6431, "name": "$or", "variant": "declaration", "kind": 1024, @@ -19672,17 +20025,17 @@ "types": [ { "type": "reference", - "target": 6174, + "target": 6424, "name": "FilterableOrderLineItemAdjustmentProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6174, + "target": 6424, "name": "FilterableOrderLineItemAdjustmentProps", "package": "@medusajs/types" } @@ -19695,12 +20048,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6642, + "target": 7007, "name": "BaseFilterable.$or" } }, { - "id": 6175, + "id": 6425, "name": "id", "variant": "declaration", "kind": 1024, @@ -19725,7 +20078,7 @@ } }, { - "id": 6176, + "id": 6426, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -19750,7 +20103,7 @@ } }, { - "id": 6177, + "id": 6427, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -19775,7 +20128,7 @@ } }, { - "id": 6178, + "id": 6428, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -19800,7 +20153,7 @@ } }, { - "id": 6179, + "id": 6429, "name": "item", "variant": "declaration", "kind": 1024, @@ -19809,7 +20162,7 @@ }, "type": { "type": "reference", - "target": 6001, + "target": 6247, "name": "FilterableOrderLineItemProps", "package": "@medusajs/types" } @@ -19819,24 +20172,24 @@ { "title": "Properties", "children": [ - 6180, - 6181, - 6175, - 6176, - 6177, - 6178, - 6179 + 6430, + 6431, + 6425, + 6426, + 6427, + 6428, + 6429 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6174, + "target": 6424, "name": "FilterableOrderLineItemAdjustmentProps", "package": "@medusajs/types" } @@ -19847,7 +20200,7 @@ ] }, { - "id": 6091, + "id": 6337, "name": "FilterableOrderShippingMethodProps", "variant": "declaration", "kind": 256, @@ -19862,7 +20215,7 @@ }, "children": [ { - "id": 6096, + "id": 6342, "name": "$and", "variant": "declaration", "kind": 1024, @@ -19885,17 +20238,17 @@ "types": [ { "type": "reference", - "target": 6091, + "target": 6337, "name": "FilterableOrderShippingMethodProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6091, + "target": 6337, "name": "FilterableOrderShippingMethodProps", "package": "@medusajs/types" } @@ -19908,12 +20261,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6641, + "target": 7006, "name": "BaseFilterable.$and" } }, { - "id": 6097, + "id": 6343, "name": "$or", "variant": "declaration", "kind": 1024, @@ -19936,17 +20289,17 @@ "types": [ { "type": "reference", - "target": 6091, + "target": 6337, "name": "FilterableOrderShippingMethodProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6091, + "target": 6337, "name": "FilterableOrderShippingMethodProps", "package": "@medusajs/types" } @@ -19959,12 +20312,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6642, + "target": 7007, "name": "BaseFilterable.$or" } }, { - "id": 6092, + "id": 6338, "name": "id", "variant": "declaration", "kind": 1024, @@ -19989,7 +20342,7 @@ } }, { - "id": 6093, + "id": 6339, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -20014,7 +20367,7 @@ } }, { - "id": 6094, + "id": 6340, "name": "name", "variant": "declaration", "kind": 1024, @@ -20027,7 +20380,7 @@ } }, { - "id": 6095, + "id": 6341, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -20056,23 +20409,23 @@ { "title": "Properties", "children": [ - 6096, - 6097, - 6092, - 6093, - 6094, - 6095 + 6342, + 6343, + 6338, + 6339, + 6340, + 6341 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6091, + "target": 6337, "name": "FilterableOrderShippingMethodProps", "package": "@medusajs/types" } @@ -20083,7 +20436,7 @@ ] }, { - "id": 6208, + "id": 6458, "name": "FilterableOrderShippingMethodAdjustmentProps", "variant": "declaration", "kind": 256, @@ -20098,7 +20451,7 @@ }, "children": [ { - "id": 6214, + "id": 6464, "name": "$and", "variant": "declaration", "kind": 1024, @@ -20121,17 +20474,17 @@ "types": [ { "type": "reference", - "target": 6208, + "target": 6458, "name": "FilterableOrderShippingMethodAdjustmentProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6208, + "target": 6458, "name": "FilterableOrderShippingMethodAdjustmentProps", "package": "@medusajs/types" } @@ -20144,12 +20497,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6641, + "target": 7006, "name": "BaseFilterable.$and" } }, { - "id": 6215, + "id": 6465, "name": "$or", "variant": "declaration", "kind": 1024, @@ -20172,17 +20525,17 @@ "types": [ { "type": "reference", - "target": 6208, + "target": 6458, "name": "FilterableOrderShippingMethodAdjustmentProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6208, + "target": 6458, "name": "FilterableOrderShippingMethodAdjustmentProps", "package": "@medusajs/types" } @@ -20195,12 +20548,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6642, + "target": 7007, "name": "BaseFilterable.$or" } }, { - "id": 6209, + "id": 6459, "name": "id", "variant": "declaration", "kind": 1024, @@ -20225,7 +20578,7 @@ } }, { - "id": 6210, + "id": 6460, "name": "shipping_method_id", "variant": "declaration", "kind": 1024, @@ -20250,7 +20603,7 @@ } }, { - "id": 6211, + "id": 6461, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -20275,7 +20628,7 @@ } }, { - "id": 6212, + "id": 6462, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -20300,7 +20653,7 @@ } }, { - "id": 6213, + "id": 6463, "name": "shipping_method", "variant": "declaration", "kind": 1024, @@ -20309,7 +20662,7 @@ }, "type": { "type": "reference", - "target": 6091, + "target": 6337, "name": "FilterableOrderShippingMethodProps", "package": "@medusajs/types" } @@ -20319,24 +20672,24 @@ { "title": "Properties", "children": [ - 6214, - 6215, - 6209, - 6210, - 6211, - 6212, - 6213 + 6464, + 6465, + 6459, + 6460, + 6461, + 6462, + 6463 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6208, + "target": 6458, "name": "FilterableOrderShippingMethodAdjustmentProps", "package": "@medusajs/types" } @@ -20347,7 +20700,7 @@ ] }, { - "id": 6242, + "id": 6492, "name": "FilterableOrderLineItemTaxLineProps", "variant": "declaration", "kind": 256, @@ -20362,7 +20715,7 @@ }, "children": [ { - "id": 6250, + "id": 6500, "name": "$and", "variant": "declaration", "kind": 1024, @@ -20385,17 +20738,17 @@ "types": [ { "type": "reference", - "target": 6242, + "target": 6492, "name": "FilterableOrderLineItemTaxLineProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6242, + "target": 6492, "name": "FilterableOrderLineItemTaxLineProps", "package": "@medusajs/types" } @@ -20408,12 +20761,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6641, + "target": 7006, "name": "BaseFilterable.$and" } }, { - "id": 6251, + "id": 6501, "name": "$or", "variant": "declaration", "kind": 1024, @@ -20436,17 +20789,17 @@ "types": [ { "type": "reference", - "target": 6242, + "target": 6492, "name": "FilterableOrderLineItemTaxLineProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6242, + "target": 6492, "name": "FilterableOrderLineItemTaxLineProps", "package": "@medusajs/types" } @@ -20459,12 +20812,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6642, + "target": 7007, "name": "BaseFilterable.$or" } }, { - "id": 6243, + "id": 6493, "name": "id", "variant": "declaration", "kind": 1024, @@ -20489,7 +20842,7 @@ } }, { - "id": 6244, + "id": 6494, "name": "description", "variant": "declaration", "kind": 1024, @@ -20502,7 +20855,7 @@ } }, { - "id": 6245, + "id": 6495, "name": "code", "variant": "declaration", "kind": 1024, @@ -20527,7 +20880,7 @@ } }, { - "id": 6246, + "id": 6496, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -20552,7 +20905,7 @@ } }, { - "id": 6247, + "id": 6497, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -20577,7 +20930,7 @@ } }, { - "id": 6248, + "id": 6498, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -20602,7 +20955,7 @@ } }, { - "id": 6249, + "id": 6499, "name": "item", "variant": "declaration", "kind": 1024, @@ -20611,7 +20964,7 @@ }, "type": { "type": "reference", - "target": 6001, + "target": 6247, "name": "FilterableOrderLineItemProps", "package": "@medusajs/types" } @@ -20621,26 +20974,26 @@ { "title": "Properties", "children": [ - 6250, - 6251, - 6243, - 6244, - 6245, - 6246, - 6247, - 6248, - 6249 + 6500, + 6501, + 6493, + 6494, + 6495, + 6496, + 6497, + 6498, + 6499 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6242, + "target": 6492, "name": "FilterableOrderLineItemTaxLineProps", "package": "@medusajs/types" } @@ -20651,7 +21004,7 @@ ] }, { - "id": 6280, + "id": 6530, "name": "FilterableOrderShippingMethodTaxLineProps", "variant": "declaration", "kind": 256, @@ -20666,7 +21019,7 @@ }, "children": [ { - "id": 6288, + "id": 6538, "name": "$and", "variant": "declaration", "kind": 1024, @@ -20689,17 +21042,17 @@ "types": [ { "type": "reference", - "target": 6280, + "target": 6530, "name": "FilterableOrderShippingMethodTaxLineProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6280, + "target": 6530, "name": "FilterableOrderShippingMethodTaxLineProps", "package": "@medusajs/types" } @@ -20712,12 +21065,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6641, + "target": 7006, "name": "BaseFilterable.$and" } }, { - "id": 6289, + "id": 6539, "name": "$or", "variant": "declaration", "kind": 1024, @@ -20740,17 +21093,17 @@ "types": [ { "type": "reference", - "target": 6280, + "target": 6530, "name": "FilterableOrderShippingMethodTaxLineProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6280, + "target": 6530, "name": "FilterableOrderShippingMethodTaxLineProps", "package": "@medusajs/types" } @@ -20763,12 +21116,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6642, + "target": 7007, "name": "BaseFilterable.$or" } }, { - "id": 6281, + "id": 6531, "name": "id", "variant": "declaration", "kind": 1024, @@ -20793,7 +21146,7 @@ } }, { - "id": 6282, + "id": 6532, "name": "description", "variant": "declaration", "kind": 1024, @@ -20806,7 +21159,7 @@ } }, { - "id": 6283, + "id": 6533, "name": "code", "variant": "declaration", "kind": 1024, @@ -20831,7 +21184,7 @@ } }, { - "id": 6284, + "id": 6534, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -20856,7 +21209,7 @@ } }, { - "id": 6285, + "id": 6535, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -20881,7 +21234,7 @@ } }, { - "id": 6286, + "id": 6536, "name": "shipping_method_id", "variant": "declaration", "kind": 1024, @@ -20906,7 +21259,7 @@ } }, { - "id": 6287, + "id": 6537, "name": "shipping_method", "variant": "declaration", "kind": 1024, @@ -20915,7 +21268,7 @@ }, "type": { "type": "reference", - "target": 6091, + "target": 6337, "name": "FilterableOrderShippingMethodProps", "package": "@medusajs/types" } @@ -20925,26 +21278,26 @@ { "title": "Properties", "children": [ - 6288, - 6289, - 6281, - 6282, - 6283, - 6284, - 6285, - 6286, - 6287 + 6538, + 6539, + 6531, + 6532, + 6533, + 6534, + 6535, + 6536, + 6537 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6280, + "target": 6530, "name": "FilterableOrderShippingMethodTaxLineProps", "package": "@medusajs/types" } @@ -20955,7 +21308,303 @@ ] }, { - "id": 6400, + "id": 6648, + "name": "FilterableOrderChangeActionProps", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An object used to allow specifying flexible queries with and/or conditions." + } + ] + }, + "children": [ + { + "id": 6653, + "name": "$and", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 6648, + "name": "FilterableOrderChangeActionProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6648, + "name": "FilterableOrderChangeActionProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 7006, + "name": "BaseFilterable.$and" + } + }, + { + "id": 6654, + "name": "$or", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 6648, + "name": "FilterableOrderChangeActionProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6648, + "name": "FilterableOrderChangeActionProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 7007, + "name": "BaseFilterable.$or" + } + }, + { + "id": 6649, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + { + "type": "reference", + "target": 7009, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + } + ] + } + }, + { + "id": 6650, + "name": "order_change_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + { + "type": "reference", + "target": 7009, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + } + ] + } + }, + { + "id": 6651, + "name": "reference", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + { + "type": "reference", + "target": 7009, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + } + ] + } + }, + { + "id": 6652, + "name": "reference_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + { + "type": "reference", + "target": 7009, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "OperatorMap", + "package": "@medusajs/types" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6653, + 6654, + 6649, + 6650, + 6651, + 6652 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6648, + "name": "FilterableOrderChangeActionProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + }, + { + "id": 6684, "name": "FilterableOrderTransactionProps", "variant": "declaration", "kind": 256, @@ -20970,7 +21619,7 @@ }, "children": [ { - "id": 6407, + "id": 6691, "name": "$and", "variant": "declaration", "kind": 1024, @@ -20993,17 +21642,17 @@ "types": [ { "type": "reference", - "target": 6400, + "target": 6684, "name": "FilterableOrderTransactionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6400, + "target": 6684, "name": "FilterableOrderTransactionProps", "package": "@medusajs/types" } @@ -21016,12 +21665,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6641, + "target": 7006, "name": "BaseFilterable.$and" } }, { - "id": 6408, + "id": 6692, "name": "$or", "variant": "declaration", "kind": 1024, @@ -21044,17 +21693,17 @@ "types": [ { "type": "reference", - "target": 6400, + "target": 6684, "name": "FilterableOrderTransactionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6400, + "target": 6684, "name": "FilterableOrderTransactionProps", "package": "@medusajs/types" } @@ -21067,12 +21716,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6642, + "target": 7007, "name": "BaseFilterable.$or" } }, { - "id": 6401, + "id": 6685, "name": "id", "variant": "declaration", "kind": 1024, @@ -21095,7 +21744,7 @@ }, { "type": "reference", - "target": 6644, + "target": 7009, "typeArguments": [ { "type": "intrinsic", @@ -21109,7 +21758,7 @@ } }, { - "id": 6402, + "id": 6686, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -21132,7 +21781,7 @@ }, { "type": "reference", - "target": 6644, + "target": 7009, "typeArguments": [ { "type": "intrinsic", @@ -21146,7 +21795,7 @@ } }, { - "id": 6403, + "id": 6687, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -21169,7 +21818,7 @@ }, { "type": "reference", - "target": 6644, + "target": 7009, "typeArguments": [ { "type": "intrinsic", @@ -21183,7 +21832,7 @@ } }, { - "id": 6404, + "id": 6688, "name": "reference", "variant": "declaration", "kind": 1024, @@ -21206,7 +21855,7 @@ }, { "type": "reference", - "target": 6644, + "target": 7009, "typeArguments": [ { "type": "intrinsic", @@ -21220,7 +21869,7 @@ } }, { - "id": 6405, + "id": 6689, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -21243,7 +21892,7 @@ }, { "type": "reference", - "target": 6644, + "target": 7009, "typeArguments": [ { "type": "intrinsic", @@ -21257,7 +21906,7 @@ } }, { - "id": 6406, + "id": 6690, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -21266,7 +21915,7 @@ }, "type": { "type": "reference", - "target": 6644, + "target": 7009, "typeArguments": [ { "type": "intrinsic", @@ -21282,25 +21931,25 @@ { "title": "Properties", "children": [ - 6407, - 6408, - 6401, - 6402, - 6403, - 6404, - 6405, - 6406 + 6691, + 6692, + 6685, + 6686, + 6687, + 6688, + 6689, + 6690 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6640, + "target": 7005, "typeArguments": [ { "type": "reference", - "target": 6400, + "target": 6684, "name": "FilterableOrderTransactionProps", "package": "@medusajs/types" } @@ -21311,14 +21960,124 @@ ] }, { - "id": 6442, + "id": 6726, "name": "FilterableOrderReturnReasonProps", "variant": "declaration", "kind": 256, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An object used to allow specifying flexible queries with and/or conditions." + } + ] + }, "children": [ { - "id": 6443, + "id": 6731, + "name": "$and", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 6726, + "name": "FilterableOrderReturnReasonProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6726, + "name": "FilterableOrderReturnReasonProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 7006, + "name": "BaseFilterable.$and" + } + }, + { + "id": 6732, + "name": "$or", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 6726, + "name": "FilterableOrderReturnReasonProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6726, + "name": "FilterableOrderReturnReasonProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 7007, + "name": "BaseFilterable.$or" + } + }, + { + "id": 6727, "name": "id", "variant": "declaration", "kind": 1024, @@ -21343,7 +22102,7 @@ } }, { - "id": 6444, + "id": 6728, "name": "value", "variant": "declaration", "kind": 1024, @@ -21368,7 +22127,7 @@ } }, { - "id": 6445, + "id": 6729, "name": "label", "variant": "declaration", "kind": 1024, @@ -21381,7 +22140,7 @@ } }, { - "id": 6446, + "id": 6730, "name": "description", "variant": "declaration", "kind": 1024, @@ -21398,370 +22157,502 @@ { "title": "Properties", "children": [ - 6443, - 6444, - 6445, - 6446 + 6731, + 6732, + 6727, + 6728, + 6729, + 6730 ] } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6726, + "name": "FilterableOrderReturnReasonProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } ] }, { - "id": 6352, - "name": "OrderChangeReturn", + "id": 6773, + "name": "FilterableReturnProps", "variant": "declaration", "kind": 256, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An object used to allow specifying flexible queries with and/or conditions." + } + ] + }, "children": [ { - "id": 6353, - "name": "items", + "id": 6780, + "name": "$and", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." + } + ] + }, "type": { "type": "array", "elementType": { - "type": "reflection", - "declaration": { - "id": 6354, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 6355, - "name": "item_id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 6356, - "name": "order_id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 6357, - "name": "fulfilled_quantity", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 6773, + "name": "FilterableReturnProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { "type": "reference", - "target": 6707, - "name": "BigNumberInput", + "target": 6773, + "name": "FilterableReturnProps", "package": "@medusajs/types" } - }, - { - "id": 6358, - "name": "shipped_quantity", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reference", - "target": 6707, - "name": "BigNumberInput", - "package": "@medusajs/types" - } - }, - { - "id": 6359, - "name": "return_requested_quantity", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reference", - "target": 6707, - "name": "BigNumberInput", - "package": "@medusajs/types" - } - }, - { - "id": 6360, - "name": "return_received_quantity", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reference", - "target": 6707, - "name": "BigNumberInput", - "package": "@medusajs/types" - } - }, - { - "id": 6361, - "name": "return_dismissed_quantity", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reference", - "target": 6707, - "name": "BigNumberInput", - "package": "@medusajs/types" - } - }, - { - "id": 6362, - "name": "written_off_quantity", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reference", - "target": 6707, - "name": "BigNumberInput", - "package": "@medusajs/types" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 6355, - 6356, - 6357, - 6358, - 6359, - 6360, - 6361, - 6362 - ] - } - ], - "indexSignatures": [ - { - "id": 6363, - "name": "__index", - "variant": "signature", - "kind": 8192, - "flags": {}, - "parameters": [ - { - "id": 6364, - "name": "key", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - ] - } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] } + }, + "inheritedFrom": { + "type": "reference", + "target": 7006, + "name": "BaseFilterable.$and" } }, { - "id": 6365, - "name": "shippingMethods", + "id": 6781, + "name": "$or", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." + } + ] + }, "type": { "type": "array", "elementType": { - "type": "intrinsic", - "name": "any" + "type": "union", + "types": [ + { + "type": "reference", + "target": 6773, + "name": "FilterableReturnProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6773, + "name": "FilterableReturnProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 6353, - 6365 - ] - } - ] - }, - { - "id": 6667, - "name": "UpsertOrderAddressDTO", - "variant": "declaration", - "kind": 256, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ADDRESS START" - } - ] - }, - "children": [ - { - "id": 6668, - "name": "customer_id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true }, - "type": { - "type": "intrinsic", - "name": "string" + "inheritedFrom": { + "type": "reference", + "target": 7007, + "name": "BaseFilterable.$or" } }, { - "id": 6669, - "name": "company", + "id": 6774, + "name": "id", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] } }, { - "id": 6670, - "name": "first_name", + "id": 6775, + "name": "order_id", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] } }, { - "id": 6671, - "name": "last_name", + "id": 6776, + "name": "claim_id", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] } }, { - "id": 6672, - "name": "address_1", + "id": 6777, + "name": "exchange_id", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] } }, { - "id": 6673, - "name": "address_2", + "id": 6778, + "name": "status", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] } }, { - "id": 6674, - "name": "city", + "id": 6779, + "name": "refund_amount", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] } - }, + } + ], + "groups": [ { - "id": 6675, - "name": "country_code", + "title": "Properties", + "children": [ + 6780, + 6781, + 6774, + 6775, + 6776, + 6777, + 6778, + 6779 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6773, + "name": "FilterableReturnProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + }, + { + "id": 6815, + "name": "FilterableOrderClaimProps", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An object used to allow specifying flexible queries with and/or conditions." + } + ] + }, + "children": [ + { + "id": 6819, + "name": "$and", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." + } + ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 6815, + "name": "FilterableOrderClaimProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6815, + "name": "FilterableOrderClaimProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 7006, + "name": "BaseFilterable.$and" } }, { - "id": 6676, - "name": "province", + "id": 6820, + "name": "$or", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." + } + ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 6815, + "name": "FilterableOrderClaimProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6815, + "name": "FilterableOrderClaimProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 7007, + "name": "BaseFilterable.$or" } }, { - "id": 6677, - "name": "postal_code", + "id": 6816, + "name": "id", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] } }, { - "id": 6678, - "name": "phone", + "id": 6817, + "name": "order_id", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] } }, { - "id": 6679, - "name": "metadata", + "id": 6818, + "name": "return_id", "variant": "declaration", "kind": 1024, "flags": { @@ -21771,27 +22662,15 @@ "type": "union", "types": [ { - "type": "literal", - "value": null + "type": "intrinsic", + "name": "string" }, { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "Record", - "package": "typescript" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } ] } @@ -21801,37 +22680,34 @@ { "title": "Properties", "children": [ - 6668, - 6669, - 6670, - 6671, - 6672, - 6673, - 6674, - 6675, - 6676, - 6677, - 6678, - 6679 + 6819, + 6820, + 6816, + 6817, + 6818 ] } ], - "extendedBy": [ - { - "type": "reference", - "target": 5916, - "name": "CreateOrderAddressDTO" - }, + "extendedTypes": [ { "type": "reference", - "target": 5929, - "name": "UpdateOrderAddressDTO" + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6815, + "name": "FilterableOrderClaimProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" } ] }, { - "id": 5929, - "name": "UpdateOrderAddressDTO", + "id": 6847, + "name": "FilterableOrderExchangeProps", "variant": "declaration", "kind": 256, "flags": {}, @@ -21839,228 +22715,592 @@ "summary": [ { "kind": "text", - "text": "ADDRESS START" + "text": "An object used to allow specifying flexible queries with and/or conditions." } ] }, "children": [ { - "id": 5931, - "name": "customer_id", + "id": 6852, + "name": "$and", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true, "isInherited": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." + } + ] + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 6847, + "name": "FilterableOrderExchangeProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6847, + "name": "FilterableOrderExchangeProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } }, "inheritedFrom": { "type": "reference", - "target": 6668, - "name": "UpsertOrderAddressDTO.customer_id" + "target": 7006, + "name": "BaseFilterable.$and" } }, { - "id": 5932, - "name": "company", + "id": 6853, + "name": "$or", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true, "isInherited": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." + } + ] + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 6847, + "name": "FilterableOrderExchangeProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6847, + "name": "FilterableOrderExchangeProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } }, "inheritedFrom": { "type": "reference", - "target": 6669, - "name": "UpsertOrderAddressDTO.company" + "target": 7007, + "name": "BaseFilterable.$or" } }, { - "id": 5933, - "name": "first_name", + "id": 6848, + "name": "id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + { + "id": 6849, + "name": "order_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + { + "id": 6850, + "name": "return_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + { + "id": 6851, + "name": "allow_backorder", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6852, + 6853, + 6848, + 6849, + 6850, + 6851 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 7005, + "typeArguments": [ + { + "type": "reference", + "target": 6847, + "name": "FilterableOrderExchangeProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + }, + { + "id": 6626, + "name": "OrderChangeReturn", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 6627, + "name": "items", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reflection", + "declaration": { + "id": 6628, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 6629, + "name": "item_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6630, + "name": "order_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6631, + "name": "fulfilled_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 7072, + "name": "BigNumberInput", + "package": "@medusajs/types" + } + }, + { + "id": 6632, + "name": "shipped_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 7072, + "name": "BigNumberInput", + "package": "@medusajs/types" + } + }, + { + "id": 6633, + "name": "return_requested_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 7072, + "name": "BigNumberInput", + "package": "@medusajs/types" + } + }, + { + "id": 6634, + "name": "return_received_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 7072, + "name": "BigNumberInput", + "package": "@medusajs/types" + } + }, + { + "id": 6635, + "name": "return_dismissed_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 7072, + "name": "BigNumberInput", + "package": "@medusajs/types" + } + }, + { + "id": 6636, + "name": "written_off_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 7072, + "name": "BigNumberInput", + "package": "@medusajs/types" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6629, + 6630, + 6631, + 6632, + 6633, + 6634, + 6635, + 6636 + ] + } + ], + "indexSignatures": [ + { + "id": 6637, + "name": "__index", + "variant": "signature", + "kind": 8192, + "flags": {}, + "parameters": [ + { + "id": 6638, + "name": "key", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + ] + } + } + } + }, + { + "id": 6639, + "name": "shippingMethods", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6627, + 6639 + ] + } + ] + }, + { + "id": 7032, + "name": "UpsertOrderAddressDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ADDRESS START" + } + ] + }, + "children": [ + { + "id": 7033, + "name": "customer_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" + } + }, + { + "id": 7034, + "name": "company", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, - "inheritedFrom": { - "type": "reference", - "target": 6670, - "name": "UpsertOrderAddressDTO.first_name" + "type": { + "type": "intrinsic", + "name": "string" } }, { - "id": 5934, - "name": "last_name", + "id": 7035, + "name": "first_name", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" + } + }, + { + "id": 7036, + "name": "last_name", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true }, - "inheritedFrom": { - "type": "reference", - "target": 6671, - "name": "UpsertOrderAddressDTO.last_name" + "type": { + "type": "intrinsic", + "name": "string" } }, { - "id": 5935, + "id": 7037, "name": "address_1", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6672, - "name": "UpsertOrderAddressDTO.address_1" } }, { - "id": 5936, + "id": 7038, "name": "address_2", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6673, - "name": "UpsertOrderAddressDTO.address_2" } }, { - "id": 5937, + "id": 7039, "name": "city", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6674, - "name": "UpsertOrderAddressDTO.city" } }, { - "id": 5938, + "id": 7040, "name": "country_code", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6675, - "name": "UpsertOrderAddressDTO.country_code" } }, { - "id": 5939, + "id": 7041, "name": "province", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6676, - "name": "UpsertOrderAddressDTO.province" } }, { - "id": 5940, + "id": 7042, "name": "postal_code", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6677, - "name": "UpsertOrderAddressDTO.postal_code" } }, { - "id": 5941, + "id": 7043, "name": "phone", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6678, - "name": "UpsertOrderAddressDTO.phone" } }, { - "id": 5942, + "id": 7044, "name": "metadata", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "union", @@ -22089,22 +23329,6 @@ "package": "typescript" } ] - }, - "inheritedFrom": { - "type": "reference", - "target": 6679, - "name": "UpsertOrderAddressDTO.metadata" - } - }, - { - "id": 5930, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" } } ], @@ -22112,34 +23336,37 @@ { "title": "Properties", "children": [ - 5931, - 5932, - 5933, - 5934, - 5935, - 5936, - 5937, - 5938, - 5939, - 5940, - 5941, - 5942, - 5930 + 7033, + 7034, + 7035, + 7036, + 7037, + 7038, + 7039, + 7040, + 7041, + 7042, + 7043, + 7044 ] } ], - "extendedTypes": [ + "extendedBy": [ { "type": "reference", - "target": 6667, - "name": "UpsertOrderAddressDTO", - "package": "@medusajs/types" + "target": 6162, + "name": "CreateOrderAddressDTO" + }, + { + "type": "reference", + "target": 6175, + "name": "UpdateOrderAddressDTO" } ] }, { - "id": 5916, - "name": "CreateOrderAddressDTO", + "id": 6175, + "name": "UpdateOrderAddressDTO", "variant": "declaration", "kind": 256, "flags": {}, @@ -22153,7 +23380,7 @@ }, "children": [ { - "id": 5917, + "id": 6177, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -22167,12 +23394,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6668, + "target": 7033, "name": "UpsertOrderAddressDTO.customer_id" } }, { - "id": 5918, + "id": 6178, "name": "company", "variant": "declaration", "kind": 1024, @@ -22186,12 +23413,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6669, + "target": 7034, "name": "UpsertOrderAddressDTO.company" } }, { - "id": 5919, + "id": 6179, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -22205,12 +23432,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6670, + "target": 7035, "name": "UpsertOrderAddressDTO.first_name" } }, { - "id": 5920, + "id": 6180, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -22224,12 +23451,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6671, + "target": 7036, "name": "UpsertOrderAddressDTO.last_name" } }, { - "id": 5921, + "id": 6181, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -22243,12 +23470,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6672, + "target": 7037, "name": "UpsertOrderAddressDTO.address_1" } }, { - "id": 5922, + "id": 6182, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -22262,12 +23489,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6673, + "target": 7038, "name": "UpsertOrderAddressDTO.address_2" } }, { - "id": 5923, + "id": 6183, "name": "city", "variant": "declaration", "kind": 1024, @@ -22281,12 +23508,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6674, + "target": 7039, "name": "UpsertOrderAddressDTO.city" } }, { - "id": 5924, + "id": 6184, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -22300,12 +23527,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6675, + "target": 7040, "name": "UpsertOrderAddressDTO.country_code" } }, { - "id": 5925, + "id": 6185, "name": "province", "variant": "declaration", "kind": 1024, @@ -22319,12 +23546,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6676, + "target": 7041, "name": "UpsertOrderAddressDTO.province" } }, { - "id": 5926, + "id": 6186, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -22338,12 +23565,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6677, + "target": 7042, "name": "UpsertOrderAddressDTO.postal_code" } }, { - "id": 5927, + "id": 6187, "name": "phone", "variant": "declaration", "kind": 1024, @@ -22357,12 +23584,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6678, + "target": 7043, "name": "UpsertOrderAddressDTO.phone" } }, { - "id": 5928, + "id": 6188, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -22400,41 +23627,349 @@ }, "inheritedFrom": { "type": "reference", - "target": 6679, + "target": 7044, "name": "UpsertOrderAddressDTO.metadata" } - } - ], + }, + { + "id": 6176, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], "groups": [ { "title": "Properties", "children": [ - 5917, - 5918, - 5919, - 5920, - 5921, - 5922, - 5923, - 5924, - 5925, - 5926, - 5927, - 5928 + 6177, + 6178, + 6179, + 6180, + 6181, + 6182, + 6183, + 6184, + 6185, + 6186, + 6187, + 6188, + 6176 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 7032, + "name": "UpsertOrderAddressDTO", + "package": "@medusajs/types" + } + ] + }, + { + "id": 6162, + "name": "CreateOrderAddressDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ADDRESS START" + } + ] + }, + "children": [ + { + "id": 6163, + "name": "customer_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7033, + "name": "UpsertOrderAddressDTO.customer_id" + } + }, + { + "id": 6164, + "name": "company", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7034, + "name": "UpsertOrderAddressDTO.company" + } + }, + { + "id": 6165, + "name": "first_name", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7035, + "name": "UpsertOrderAddressDTO.first_name" + } + }, + { + "id": 6166, + "name": "last_name", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7036, + "name": "UpsertOrderAddressDTO.last_name" + } + }, + { + "id": 6167, + "name": "address_1", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7037, + "name": "UpsertOrderAddressDTO.address_1" + } + }, + { + "id": 6168, + "name": "address_2", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7038, + "name": "UpsertOrderAddressDTO.address_2" + } + }, + { + "id": 6169, + "name": "city", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7039, + "name": "UpsertOrderAddressDTO.city" + } + }, + { + "id": 6170, + "name": "country_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7040, + "name": "UpsertOrderAddressDTO.country_code" + } + }, + { + "id": 6171, + "name": "province", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7041, + "name": "UpsertOrderAddressDTO.province" + } + }, + { + "id": 6172, + "name": "postal_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7042, + "name": "UpsertOrderAddressDTO.postal_code" + } + }, + { + "id": 6173, + "name": "phone", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7043, + "name": "UpsertOrderAddressDTO.phone" + } + }, + { + "id": 6174, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 7044, + "name": "UpsertOrderAddressDTO.metadata" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6163, + 6164, + 6165, + 6166, + 6167, + 6168, + 6169, + 6170, + 6171, + 6172, + 6173, + 6174 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6667, + "target": 7032, "name": "UpsertOrderAddressDTO", "package": "@medusajs/types" } ] }, { - "id": 5861, + "id": 6107, "name": "CreateOrderDTO", "variant": "declaration", "kind": 256, @@ -22449,7 +23984,7 @@ }, "children": [ { - "id": 5862, + "id": 6108, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -22462,7 +23997,7 @@ } }, { - "id": 5863, + "id": 6109, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -22475,7 +24010,7 @@ } }, { - "id": 5864, + "id": 6110, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -22488,7 +24023,7 @@ } }, { - "id": 5865, + "id": 6111, "name": "status", "variant": "declaration", "kind": 1024, @@ -22501,7 +24036,7 @@ } }, { - "id": 5866, + "id": 6112, "name": "email", "variant": "declaration", "kind": 1024, @@ -22514,7 +24049,7 @@ } }, { - "id": 5867, + "id": 6113, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -22527,7 +24062,7 @@ } }, { - "id": 5868, + "id": 6114, "name": "shipping_address_id", "variant": "declaration", "kind": 1024, @@ -22540,7 +24075,7 @@ } }, { - "id": 5869, + "id": 6115, "name": "billing_address_id", "variant": "declaration", "kind": 1024, @@ -22553,7 +24088,7 @@ } }, { - "id": 5870, + "id": 6116, "name": "shipping_address", "variant": "declaration", "kind": 1024, @@ -22565,13 +24100,13 @@ "types": [ { "type": "reference", - "target": 5929, + "target": 6175, "name": "UpdateOrderAddressDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 5916, + "target": 6162, "name": "CreateOrderAddressDTO", "package": "@medusajs/types" } @@ -22579,7 +24114,7 @@ } }, { - "id": 5871, + "id": 6117, "name": "billing_address", "variant": "declaration", "kind": 1024, @@ -22591,13 +24126,13 @@ "types": [ { "type": "reference", - "target": 5929, + "target": 6175, "name": "UpdateOrderAddressDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 5916, + "target": 6162, "name": "CreateOrderAddressDTO", "package": "@medusajs/types" } @@ -22605,7 +24140,7 @@ } }, { - "id": 5872, + "id": 6118, "name": "no_notification", "variant": "declaration", "kind": 1024, @@ -22618,7 +24153,7 @@ } }, { - "id": 5873, + "id": 6119, "name": "items", "variant": "declaration", "kind": 1024, @@ -22629,14 +24164,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6035, + "target": 6281, "name": "CreateOrderLineItemDTO", "package": "@medusajs/types" } } }, { - "id": 5874, + "id": 6120, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -22654,7 +24189,7 @@ "typeArguments": [ { "type": "reference", - "target": 6165, + "target": 6411, "name": "CreateOrderShippingMethodDTO", "package": "@medusajs/types" }, @@ -22669,7 +24204,7 @@ } }, { - "id": 5875, + "id": 6121, "name": "transactions", "variant": "declaration", "kind": 1024, @@ -22687,7 +24222,7 @@ "typeArguments": [ { "type": "reference", - "target": 6421, + "target": 6705, "name": "CreateOrderTransactionDTO", "package": "@medusajs/types" }, @@ -22702,7 +24237,7 @@ } }, { - "id": 5876, + "id": 6122, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -22739,7 +24274,7 @@ } }, { - "id": 5877, + "id": 6123, "name": "promo_codes", "variant": "declaration", "kind": 1024, @@ -22759,35 +24294,35 @@ { "title": "Properties", "children": [ - 5862, - 5863, - 5864, - 5865, - 5866, - 5867, - 5868, - 5869, - 5870, - 5871, - 5872, - 5873, - 5874, - 5875, - 5876, - 5877 + 6108, + 6109, + 6110, + 6111, + 6112, + 6113, + 6114, + 6115, + 6116, + 6117, + 6118, + 6119, + 6120, + 6121, + 6122, + 6123 ] } ] }, { - "id": 5878, + "id": 6124, "name": "UpdateOrderDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 5879, + "id": 6125, "name": "id", "variant": "declaration", "kind": 1024, @@ -22800,7 +24335,7 @@ } }, { - "id": 5880, + "id": 6126, "name": "version", "variant": "declaration", "kind": 1024, @@ -22813,7 +24348,7 @@ } }, { - "id": 5881, + "id": 6127, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -22826,7 +24361,7 @@ } }, { - "id": 5882, + "id": 6128, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -22839,7 +24374,7 @@ } }, { - "id": 5883, + "id": 6129, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -22852,7 +24387,7 @@ } }, { - "id": 5884, + "id": 6130, "name": "items", "variant": "declaration", "kind": 1024, @@ -22863,14 +24398,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6035, + "target": 6281, "name": "CreateOrderLineItemDTO", "package": "@medusajs/types" } } }, { - "id": 5885, + "id": 6131, "name": "shipping_address", "variant": "declaration", "kind": 1024, @@ -22882,13 +24417,13 @@ "types": [ { "type": "reference", - "target": 5929, + "target": 6175, "name": "UpdateOrderAddressDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 5916, + "target": 6162, "name": "CreateOrderAddressDTO", "package": "@medusajs/types" } @@ -22896,7 +24431,7 @@ } }, { - "id": 5886, + "id": 6132, "name": "billing_address", "variant": "declaration", "kind": 1024, @@ -22908,13 +24443,13 @@ "types": [ { "type": "reference", - "target": 5929, + "target": 6175, "name": "UpdateOrderAddressDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 5916, + "target": 6162, "name": "CreateOrderAddressDTO", "package": "@medusajs/types" } @@ -22922,7 +24457,7 @@ } }, { - "id": 5887, + "id": 6133, "name": "email", "variant": "declaration", "kind": 1024, @@ -22935,7 +24470,7 @@ } }, { - "id": 5888, + "id": 6134, "name": "no_notification", "variant": "declaration", "kind": 1024, @@ -22948,7 +24483,7 @@ } }, { - "id": 5889, + "id": 6135, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -22989,23 +24524,23 @@ { "title": "Properties", "children": [ - 5879, - 5880, - 5881, - 5882, - 5883, - 5884, - 5885, - 5886, - 5887, - 5888, - 5889 + 6125, + 6126, + 6127, + 6128, + 6129, + 6130, + 6131, + 6132, + 6133, + 6134, + 6135 ] } ] }, { - "id": 6194, + "id": 6444, "name": "CreateOrderAdjustmentDTO", "variant": "declaration", "kind": 256, @@ -23020,7 +24555,7 @@ }, "children": [ { - "id": 6195, + "id": 6445, "name": "code", "variant": "declaration", "kind": 1024, @@ -23033,20 +24568,20 @@ } }, { - "id": 6196, + "id": 6446, "name": "amount", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6197, + "id": 6447, "name": "description", "variant": "declaration", "kind": 1024, @@ -23059,7 +24594,7 @@ } }, { - "id": 6198, + "id": 6448, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -23072,7 +24607,7 @@ } }, { - "id": 6199, + "id": 6449, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -23089,24 +24624,24 @@ { "title": "Properties", "children": [ - 6195, - 6196, - 6197, - 6198, - 6199 + 6445, + 6446, + 6447, + 6448, + 6449 ] } ] }, { - "id": 6721, + "id": 7086, "name": "UpdateOrderAdjustmentDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6722, + "id": 7087, "name": "id", "variant": "declaration", "kind": 1024, @@ -23117,7 +24652,7 @@ } }, { - "id": 6723, + "id": 7088, "name": "code", "variant": "declaration", "kind": 1024, @@ -23130,20 +24665,20 @@ } }, { - "id": 6724, + "id": 7089, "name": "amount", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6725, + "id": 7090, "name": "description", "variant": "declaration", "kind": 1024, @@ -23156,7 +24691,7 @@ } }, { - "id": 6726, + "id": 7091, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -23169,7 +24704,7 @@ } }, { - "id": 6727, + "id": 7092, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -23186,25 +24721,25 @@ { "title": "Properties", "children": [ - 6722, - 6723, - 6724, - 6725, - 6726, - 6727 + 7087, + 7088, + 7089, + 7090, + 7091, + 7092 ] } ] }, { - "id": 6200, + "id": 6450, "name": "UpsertOrderLineItemAdjustmentDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6201, + "id": 6451, "name": "id", "variant": "declaration", "kind": 1024, @@ -23217,7 +24752,7 @@ } }, { - "id": 6202, + "id": 6452, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -23228,7 +24763,7 @@ } }, { - "id": 6203, + "id": 6453, "name": "code", "variant": "declaration", "kind": 1024, @@ -23241,7 +24776,7 @@ } }, { - "id": 6204, + "id": 6454, "name": "amount", "variant": "declaration", "kind": 1024, @@ -23250,13 +24785,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6205, + "id": 6455, "name": "description", "variant": "declaration", "kind": 1024, @@ -23269,7 +24804,7 @@ } }, { - "id": 6206, + "id": 6456, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -23282,7 +24817,7 @@ } }, { - "id": 6207, + "id": 6457, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -23299,19 +24834,19 @@ { "title": "Properties", "children": [ - 6201, - 6202, - 6203, - 6204, - 6205, - 6206, - 6207 + 6451, + 6452, + 6453, + 6454, + 6455, + 6456, + 6457 ] } ] }, { - "id": 6708, + "id": 7073, "name": "CreateOrderTaxLineDTO", "variant": "declaration", "kind": 256, @@ -23326,7 +24861,7 @@ }, "children": [ { - "id": 6709, + "id": 7074, "name": "description", "variant": "declaration", "kind": 1024, @@ -23339,7 +24874,7 @@ } }, { - "id": 6710, + "id": 7075, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -23352,7 +24887,7 @@ } }, { - "id": 6711, + "id": 7076, "name": "code", "variant": "declaration", "kind": 1024, @@ -23363,20 +24898,20 @@ } }, { - "id": 6712, + "id": 7077, "name": "rate", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6713, + "id": 7078, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -23393,36 +24928,36 @@ { "title": "Properties", "children": [ - 6709, - 6710, - 6711, - 6712, - 6713 + 7074, + 7075, + 7076, + 7077, + 7078 ] } ], "extendedBy": [ { "type": "reference", - "target": 6267, + "target": 6517, "name": "CreateOrderLineItemTaxLineDTO" }, { "type": "reference", - "target": 6305, + "target": 6555, "name": "CreateOrderShippingMethodTaxLineDTO" } ] }, { - "id": 6714, + "id": 7079, "name": "UpdateOrderTaxLineDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6715, + "id": 7080, "name": "id", "variant": "declaration", "kind": 1024, @@ -23433,7 +24968,7 @@ } }, { - "id": 6716, + "id": 7081, "name": "description", "variant": "declaration", "kind": 1024, @@ -23446,7 +24981,7 @@ } }, { - "id": 6717, + "id": 7082, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -23459,7 +24994,7 @@ } }, { - "id": 6718, + "id": 7083, "name": "code", "variant": "declaration", "kind": 1024, @@ -23472,7 +25007,7 @@ } }, { - "id": 6719, + "id": 7084, "name": "rate", "variant": "declaration", "kind": 1024, @@ -23481,13 +25016,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6720, + "id": 7085, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -23504,30 +25039,30 @@ { "title": "Properties", "children": [ - 6715, - 6716, - 6717, - 6718, - 6719, - 6720 + 7080, + 7081, + 7082, + 7083, + 7084, + 7085 ] } ], "extendedBy": [ { "type": "reference", - "target": 6273, + "target": 6523, "name": "UpdateOrderLineItemTaxLineDTO" }, { "type": "reference", - "target": 6311, + "target": 6561, "name": "UpdateOrderShippingMethodTaxLineDTO" } ] }, { - "id": 6305, + "id": 6555, "name": "CreateOrderShippingMethodTaxLineDTO", "variant": "declaration", "kind": 256, @@ -23542,7 +25077,7 @@ }, "children": [ { - "id": 6306, + "id": 6556, "name": "description", "variant": "declaration", "kind": 1024, @@ -23556,12 +25091,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6709, + "target": 7074, "name": "CreateOrderTaxLineDTO.description" } }, { - "id": 6307, + "id": 6557, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -23575,12 +25110,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6710, + "target": 7075, "name": "CreateOrderTaxLineDTO.tax_rate_id" } }, { - "id": 6308, + "id": 6558, "name": "code", "variant": "declaration", "kind": 1024, @@ -23593,12 +25128,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6711, + "target": 7076, "name": "CreateOrderTaxLineDTO.code" } }, { - "id": 6309, + "id": 6559, "name": "rate", "variant": "declaration", "kind": 1024, @@ -23607,18 +25142,18 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6712, + "target": 7077, "name": "CreateOrderTaxLineDTO.rate" } }, { - "id": 6310, + "id": 6560, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -23632,7 +25167,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 6713, + "target": 7078, "name": "CreateOrderTaxLineDTO.provider_id" } } @@ -23641,32 +25176,32 @@ { "title": "Properties", "children": [ - 6306, - 6307, - 6308, - 6309, - 6310 + 6556, + 6557, + 6558, + 6559, + 6560 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6708, + "target": 7073, "name": "CreateOrderTaxLineDTO", "package": "@medusajs/types" } ] }, { - "id": 6311, + "id": 6561, "name": "UpdateOrderShippingMethodTaxLineDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6312, + "id": 6562, "name": "id", "variant": "declaration", "kind": 1024, @@ -23679,12 +25214,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6715, + "target": 7080, "name": "UpdateOrderTaxLineDTO.id" } }, { - "id": 6313, + "id": 6563, "name": "description", "variant": "declaration", "kind": 1024, @@ -23698,12 +25233,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6716, + "target": 7081, "name": "UpdateOrderTaxLineDTO.description" } }, { - "id": 6314, + "id": 6564, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -23717,12 +25252,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6717, + "target": 7082, "name": "UpdateOrderTaxLineDTO.tax_rate_id" } }, { - "id": 6315, + "id": 6565, "name": "code", "variant": "declaration", "kind": 1024, @@ -23736,12 +25271,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6718, + "target": 7083, "name": "UpdateOrderTaxLineDTO.code" } }, { - "id": 6316, + "id": 6566, "name": "rate", "variant": "declaration", "kind": 1024, @@ -23751,18 +25286,18 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6719, + "target": 7084, "name": "UpdateOrderTaxLineDTO.rate" } }, { - "id": 6317, + "id": 6567, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -23776,7 +25311,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 6720, + "target": 7085, "name": "UpdateOrderTaxLineDTO.provider_id" } } @@ -23785,26 +25320,26 @@ { "title": "Properties", "children": [ - 6312, - 6313, - 6314, - 6315, - 6316, - 6317 + 6562, + 6563, + 6564, + 6565, + 6566, + 6567 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6714, + "target": 7079, "name": "UpdateOrderTaxLineDTO", "package": "@medusajs/types" } ] }, { - "id": 6267, + "id": 6517, "name": "CreateOrderLineItemTaxLineDTO", "variant": "declaration", "kind": 256, @@ -23819,7 +25354,7 @@ }, "children": [ { - "id": 6268, + "id": 6518, "name": "description", "variant": "declaration", "kind": 1024, @@ -23833,12 +25368,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6709, + "target": 7074, "name": "CreateOrderTaxLineDTO.description" } }, { - "id": 6269, + "id": 6519, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -23852,12 +25387,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6710, + "target": 7075, "name": "CreateOrderTaxLineDTO.tax_rate_id" } }, { - "id": 6270, + "id": 6520, "name": "code", "variant": "declaration", "kind": 1024, @@ -23870,12 +25405,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6711, + "target": 7076, "name": "CreateOrderTaxLineDTO.code" } }, { - "id": 6271, + "id": 6521, "name": "rate", "variant": "declaration", "kind": 1024, @@ -23884,18 +25419,18 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6712, + "target": 7077, "name": "CreateOrderTaxLineDTO.rate" } }, { - "id": 6272, + "id": 6522, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -23909,7 +25444,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 6713, + "target": 7078, "name": "CreateOrderTaxLineDTO.provider_id" } } @@ -23918,32 +25453,32 @@ { "title": "Properties", "children": [ - 6268, - 6269, - 6270, - 6271, - 6272 + 6518, + 6519, + 6520, + 6521, + 6522 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6708, + "target": 7073, "name": "CreateOrderTaxLineDTO", "package": "@medusajs/types" } ] }, { - "id": 6273, + "id": 6523, "name": "UpdateOrderLineItemTaxLineDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6274, + "id": 6524, "name": "id", "variant": "declaration", "kind": 1024, @@ -23956,12 +25491,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6715, + "target": 7080, "name": "UpdateOrderTaxLineDTO.id" } }, { - "id": 6275, + "id": 6525, "name": "description", "variant": "declaration", "kind": 1024, @@ -23975,12 +25510,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6716, + "target": 7081, "name": "UpdateOrderTaxLineDTO.description" } }, { - "id": 6276, + "id": 6526, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -23994,12 +25529,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6717, + "target": 7082, "name": "UpdateOrderTaxLineDTO.tax_rate_id" } }, { - "id": 6277, + "id": 6527, "name": "code", "variant": "declaration", "kind": 1024, @@ -24013,12 +25548,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6718, + "target": 7083, "name": "UpdateOrderTaxLineDTO.code" } }, { - "id": 6278, + "id": 6528, "name": "rate", "variant": "declaration", "kind": 1024, @@ -24028,18 +25563,18 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6719, + "target": 7084, "name": "UpdateOrderTaxLineDTO.rate" } }, { - "id": 6279, + "id": 6529, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -24053,7 +25588,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 6720, + "target": 7085, "name": "UpdateOrderTaxLineDTO.provider_id" } } @@ -24062,26 +25597,26 @@ { "title": "Properties", "children": [ - 6274, - 6275, - 6276, - 6277, - 6278, - 6279 + 6524, + 6525, + 6526, + 6527, + 6528, + 6529 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6714, + "target": 7079, "name": "UpdateOrderTaxLineDTO", "package": "@medusajs/types" } ] }, { - "id": 6035, + "id": 6281, "name": "CreateOrderLineItemDTO", "variant": "declaration", "kind": 256, @@ -24096,7 +25631,7 @@ }, "children": [ { - "id": 6036, + "id": 6282, "name": "title", "variant": "declaration", "kind": 1024, @@ -24107,7 +25642,7 @@ } }, { - "id": 6037, + "id": 6283, "name": "subtitle", "variant": "declaration", "kind": 1024, @@ -24120,7 +25655,7 @@ } }, { - "id": 6038, + "id": 6284, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -24133,7 +25668,7 @@ } }, { - "id": 6039, + "id": 6285, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -24146,20 +25681,20 @@ } }, { - "id": 6040, + "id": 6286, "name": "quantity", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6041, + "id": 6287, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -24172,7 +25707,7 @@ } }, { - "id": 6042, + "id": 6288, "name": "product_title", "variant": "declaration", "kind": 1024, @@ -24185,7 +25720,7 @@ } }, { - "id": 6043, + "id": 6289, "name": "product_description", "variant": "declaration", "kind": 1024, @@ -24198,7 +25733,7 @@ } }, { - "id": 6044, + "id": 6290, "name": "product_subtitle", "variant": "declaration", "kind": 1024, @@ -24211,7 +25746,7 @@ } }, { - "id": 6045, + "id": 6291, "name": "product_type", "variant": "declaration", "kind": 1024, @@ -24224,7 +25759,7 @@ } }, { - "id": 6046, + "id": 6292, "name": "product_collection", "variant": "declaration", "kind": 1024, @@ -24237,7 +25772,7 @@ } }, { - "id": 6047, + "id": 6293, "name": "product_handle", "variant": "declaration", "kind": 1024, @@ -24250,7 +25785,7 @@ } }, { - "id": 6048, + "id": 6294, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -24263,7 +25798,7 @@ } }, { - "id": 6049, + "id": 6295, "name": "variant_sku", "variant": "declaration", "kind": 1024, @@ -24276,7 +25811,7 @@ } }, { - "id": 6050, + "id": 6296, "name": "variant_barcode", "variant": "declaration", "kind": 1024, @@ -24289,7 +25824,7 @@ } }, { - "id": 6051, + "id": 6297, "name": "variant_title", "variant": "declaration", "kind": 1024, @@ -24302,7 +25837,7 @@ } }, { - "id": 6052, + "id": 6298, "name": "variant_option_values", "variant": "declaration", "kind": 1024, @@ -24330,7 +25865,7 @@ } }, { - "id": 6053, + "id": 6299, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -24343,7 +25878,7 @@ } }, { - "id": 6054, + "id": 6300, "name": "is_discountable", "variant": "declaration", "kind": 1024, @@ -24356,7 +25891,7 @@ } }, { - "id": 6055, + "id": 6301, "name": "is_tax_inclusive", "variant": "declaration", "kind": 1024, @@ -24369,7 +25904,7 @@ } }, { - "id": 6056, + "id": 6302, "name": "compare_at_unit_price", "variant": "declaration", "kind": 1024, @@ -24378,26 +25913,26 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6057, + "id": 6303, "name": "unit_price", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6058, + "id": 6304, "name": "tax_lines", "variant": "declaration", "kind": 1024, @@ -24408,14 +25943,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6708, + "target": 7073, "name": "CreateOrderTaxLineDTO", "package": "@medusajs/types" } } }, { - "id": 6059, + "id": 6305, "name": "adjustments", "variant": "declaration", "kind": 1024, @@ -24426,14 +25961,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6194, + "target": 6444, "name": "CreateOrderAdjustmentDTO", "package": "@medusajs/types" } } }, { - "id": 6060, + "id": 6306, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -24474,44 +26009,44 @@ { "title": "Properties", "children": [ - 6036, - 6037, - 6038, - 6039, - 6040, - 6041, - 6042, - 6043, - 6044, - 6045, - 6046, - 6047, - 6048, - 6049, - 6050, - 6051, - 6052, - 6053, - 6054, - 6055, - 6056, - 6057, - 6058, - 6059, - 6060 + 6282, + 6283, + 6284, + 6285, + 6286, + 6287, + 6288, + 6289, + 6290, + 6291, + 6292, + 6293, + 6294, + 6295, + 6296, + 6297, + 6298, + 6299, + 6300, + 6301, + 6302, + 6303, + 6304, + 6305, + 6306 ] } ], "extendedBy": [ { "type": "reference", - "target": 6009, + "target": 6255, "name": "CreateOrderLineItemForOrderDTO" } ] }, { - "id": 6009, + "id": 6255, "name": "CreateOrderLineItemForOrderDTO", "variant": "declaration", "kind": 256, @@ -24526,7 +26061,7 @@ }, "children": [ { - "id": 6011, + "id": 6257, "name": "title", "variant": "declaration", "kind": 1024, @@ -24539,12 +26074,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6036, + "target": 6282, "name": "CreateOrderLineItemDTO.title" } }, { - "id": 6012, + "id": 6258, "name": "subtitle", "variant": "declaration", "kind": 1024, @@ -24558,12 +26093,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6037, + "target": 6283, "name": "CreateOrderLineItemDTO.subtitle" } }, { - "id": 6013, + "id": 6259, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -24577,12 +26112,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6038, + "target": 6284, "name": "CreateOrderLineItemDTO.thumbnail" } }, { - "id": 6014, + "id": 6260, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -24591,18 +26126,18 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6040, + "target": 6286, "name": "CreateOrderLineItemDTO.quantity" } }, { - "id": 6015, + "id": 6261, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -24616,12 +26151,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6041, + "target": 6287, "name": "CreateOrderLineItemDTO.product_id" } }, { - "id": 6016, + "id": 6262, "name": "product_title", "variant": "declaration", "kind": 1024, @@ -24635,12 +26170,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6042, + "target": 6288, "name": "CreateOrderLineItemDTO.product_title" } }, { - "id": 6017, + "id": 6263, "name": "product_description", "variant": "declaration", "kind": 1024, @@ -24654,12 +26189,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6043, + "target": 6289, "name": "CreateOrderLineItemDTO.product_description" } }, { - "id": 6018, + "id": 6264, "name": "product_subtitle", "variant": "declaration", "kind": 1024, @@ -24673,12 +26208,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6044, + "target": 6290, "name": "CreateOrderLineItemDTO.product_subtitle" } }, { - "id": 6019, + "id": 6265, "name": "product_type", "variant": "declaration", "kind": 1024, @@ -24692,12 +26227,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6045, + "target": 6291, "name": "CreateOrderLineItemDTO.product_type" } }, { - "id": 6020, + "id": 6266, "name": "product_collection", "variant": "declaration", "kind": 1024, @@ -24711,12 +26246,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6046, + "target": 6292, "name": "CreateOrderLineItemDTO.product_collection" } }, { - "id": 6021, + "id": 6267, "name": "product_handle", "variant": "declaration", "kind": 1024, @@ -24730,12 +26265,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6047, + "target": 6293, "name": "CreateOrderLineItemDTO.product_handle" } }, { - "id": 6022, + "id": 6268, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -24749,12 +26284,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6048, + "target": 6294, "name": "CreateOrderLineItemDTO.variant_id" } }, { - "id": 6023, + "id": 6269, "name": "variant_sku", "variant": "declaration", "kind": 1024, @@ -24768,12 +26303,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6049, + "target": 6295, "name": "CreateOrderLineItemDTO.variant_sku" } }, { - "id": 6024, + "id": 6270, "name": "variant_barcode", "variant": "declaration", "kind": 1024, @@ -24787,12 +26322,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6050, + "target": 6296, "name": "CreateOrderLineItemDTO.variant_barcode" } }, { - "id": 6025, + "id": 6271, "name": "variant_title", "variant": "declaration", "kind": 1024, @@ -24806,12 +26341,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6051, + "target": 6297, "name": "CreateOrderLineItemDTO.variant_title" } }, { - "id": 6026, + "id": 6272, "name": "variant_option_values", "variant": "declaration", "kind": 1024, @@ -24840,12 +26375,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6052, + "target": 6298, "name": "CreateOrderLineItemDTO.variant_option_values" } }, { - "id": 6027, + "id": 6273, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -24859,12 +26394,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6053, + "target": 6299, "name": "CreateOrderLineItemDTO.requires_shipping" } }, { - "id": 6028, + "id": 6274, "name": "is_discountable", "variant": "declaration", "kind": 1024, @@ -24878,12 +26413,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6054, + "target": 6300, "name": "CreateOrderLineItemDTO.is_discountable" } }, { - "id": 6029, + "id": 6275, "name": "is_tax_inclusive", "variant": "declaration", "kind": 1024, @@ -24897,12 +26432,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6055, + "target": 6301, "name": "CreateOrderLineItemDTO.is_tax_inclusive" } }, { - "id": 6030, + "id": 6276, "name": "compare_at_unit_price", "variant": "declaration", "kind": 1024, @@ -24912,18 +26447,18 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6056, + "target": 6302, "name": "CreateOrderLineItemDTO.compare_at_unit_price" } }, { - "id": 6031, + "id": 6277, "name": "unit_price", "variant": "declaration", "kind": 1024, @@ -24932,18 +26467,18 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 6057, + "target": 6303, "name": "CreateOrderLineItemDTO.unit_price" } }, { - "id": 6032, + "id": 6278, "name": "tax_lines", "variant": "declaration", "kind": 1024, @@ -24955,19 +26490,19 @@ "type": "array", "elementType": { "type": "reference", - "target": 6708, + "target": 7073, "name": "CreateOrderTaxLineDTO", "package": "@medusajs/types" } }, "inheritedFrom": { "type": "reference", - "target": 6058, + "target": 6304, "name": "CreateOrderLineItemDTO.tax_lines" } }, { - "id": 6033, + "id": 6279, "name": "adjustments", "variant": "declaration", "kind": 1024, @@ -24979,19 +26514,19 @@ "type": "array", "elementType": { "type": "reference", - "target": 6194, + "target": 6444, "name": "CreateOrderAdjustmentDTO", "package": "@medusajs/types" } }, "inheritedFrom": { "type": "reference", - "target": 6059, + "target": 6305, "name": "CreateOrderLineItemDTO.adjustments" } }, { - "id": 6034, + "id": 6280, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -25029,12 +26564,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6060, + "target": 6306, "name": "CreateOrderLineItemDTO.metadata" } }, { - "id": 6010, + "id": 6256, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -25045,7 +26580,7 @@ }, "overwrites": { "type": "reference", - "target": 6039, + "target": 6285, "name": "CreateOrderLineItemDTO.order_id" } } @@ -25054,52 +26589,52 @@ { "title": "Properties", "children": [ - 6011, - 6012, - 6013, - 6014, - 6015, - 6016, - 6017, - 6018, - 6019, - 6020, - 6021, - 6022, - 6023, - 6024, - 6025, - 6026, - 6027, - 6028, - 6029, - 6030, - 6031, - 6032, - 6033, - 6034, - 6010 + 6257, + 6258, + 6259, + 6260, + 6261, + 6262, + 6263, + 6264, + 6265, + 6266, + 6267, + 6268, + 6269, + 6270, + 6271, + 6272, + 6273, + 6274, + 6275, + 6276, + 6277, + 6278, + 6279, + 6280, + 6256 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6035, + "target": 6281, "name": "CreateOrderLineItemDTO", "package": "@medusajs/types" } ] }, { - "id": 6061, + "id": 6307, "name": "UpdateOrderLineItemWithSelectorDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6062, + "id": 6308, "name": "selector", "variant": "declaration", "kind": 1024, @@ -25113,7 +26648,7 @@ "typeArguments": [ { "type": "reference", - "target": 5943, + "target": 6189, "name": "OrderLineItemDTO", "package": "@medusajs/types" } @@ -25123,7 +26658,7 @@ } }, { - "id": 6063, + "id": 6309, "name": "data", "variant": "declaration", "kind": 1024, @@ -25137,7 +26672,7 @@ "typeArguments": [ { "type": "reference", - "target": 6064, + "target": 6310, "name": "UpdateOrderLineItemDTO", "package": "@medusajs/types" } @@ -25151,21 +26686,21 @@ { "title": "Properties", "children": [ - 6062, - 6063 + 6308, + 6309 ] } ] }, { - "id": 6064, + "id": 6310, "name": "UpdateOrderLineItemDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6073, + "id": 6319, "name": "subtitle", "variant": "declaration", "kind": 1024, @@ -25184,7 +26719,7 @@ } }, { - "id": 6074, + "id": 6320, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -25203,7 +26738,7 @@ } }, { - "id": 6090, + "id": 6336, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -25222,7 +26757,7 @@ } }, { - "id": 6072, + "id": 6318, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -25241,7 +26776,7 @@ } }, { - "id": 6075, + "id": 6321, "name": "product_title", "variant": "declaration", "kind": 1024, @@ -25260,7 +26795,7 @@ } }, { - "id": 6076, + "id": 6322, "name": "product_description", "variant": "declaration", "kind": 1024, @@ -25279,7 +26814,7 @@ } }, { - "id": 6077, + "id": 6323, "name": "product_subtitle", "variant": "declaration", "kind": 1024, @@ -25298,7 +26833,7 @@ } }, { - "id": 6078, + "id": 6324, "name": "product_type", "variant": "declaration", "kind": 1024, @@ -25317,7 +26852,7 @@ } }, { - "id": 6079, + "id": 6325, "name": "product_collection", "variant": "declaration", "kind": 1024, @@ -25336,7 +26871,7 @@ } }, { - "id": 6080, + "id": 6326, "name": "product_handle", "variant": "declaration", "kind": 1024, @@ -25355,7 +26890,7 @@ } }, { - "id": 6071, + "id": 6317, "name": "variant_id", "variant": "declaration", "kind": 1024, @@ -25374,7 +26909,7 @@ } }, { - "id": 6081, + "id": 6327, "name": "variant_sku", "variant": "declaration", "kind": 1024, @@ -25393,7 +26928,7 @@ } }, { - "id": 6082, + "id": 6328, "name": "variant_barcode", "variant": "declaration", "kind": 1024, @@ -25412,7 +26947,7 @@ } }, { - "id": 6083, + "id": 6329, "name": "variant_title", "variant": "declaration", "kind": 1024, @@ -25431,7 +26966,7 @@ } }, { - "id": 6084, + "id": 6330, "name": "variant_option_values", "variant": "declaration", "kind": 1024, @@ -25465,7 +27000,7 @@ } }, { - "id": 6085, + "id": 6331, "name": "requires_shipping", "variant": "declaration", "kind": 1024, @@ -25484,7 +27019,7 @@ } }, { - "id": 6086, + "id": 6332, "name": "is_discountable", "variant": "declaration", "kind": 1024, @@ -25503,7 +27038,7 @@ } }, { - "id": 6087, + "id": 6333, "name": "is_tax_inclusive", "variant": "declaration", "kind": 1024, @@ -25522,7 +27057,7 @@ } }, { - "id": 6088, + "id": 6334, "name": "compare_at_unit_price", "variant": "declaration", "kind": 1024, @@ -25532,7 +27067,7 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" }, @@ -25543,7 +27078,7 @@ } }, { - "id": 6089, + "id": 6335, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -25586,7 +27121,7 @@ } }, { - "id": 6065, + "id": 6311, "name": "id", "variant": "declaration", "kind": 1024, @@ -25597,7 +27132,7 @@ } }, { - "id": 6066, + "id": 6312, "name": "title", "variant": "declaration", "kind": 1024, @@ -25610,7 +27145,7 @@ } }, { - "id": 6067, + "id": 6313, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -25619,13 +27154,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6068, + "id": 6314, "name": "unit_price", "variant": "declaration", "kind": 1024, @@ -25634,13 +27169,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6069, + "id": 6315, "name": "tax_lines", "variant": "declaration", "kind": 1024, @@ -25654,7 +27189,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6708, + "target": 7073, "name": "CreateOrderTaxLineDTO", "package": "@medusajs/types" } @@ -25663,7 +27198,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6714, + "target": 7079, "name": "UpdateOrderTaxLineDTO", "package": "@medusajs/types" } @@ -25672,7 +27207,7 @@ } }, { - "id": 6070, + "id": 6316, "name": "adjustments", "variant": "declaration", "kind": 1024, @@ -25686,7 +27221,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6194, + "target": 6444, "name": "CreateOrderAdjustmentDTO", "package": "@medusajs/types" } @@ -25695,7 +27230,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6721, + "target": 7086, "name": "UpdateOrderAdjustmentDTO", "package": "@medusajs/types" } @@ -25708,32 +27243,32 @@ { "title": "Properties", "children": [ - 6073, - 6074, - 6090, - 6072, - 6075, - 6076, - 6077, - 6078, - 6079, - 6080, - 6071, - 6081, - 6082, - 6083, - 6084, - 6085, - 6086, - 6087, - 6088, - 6089, - 6065, - 6066, - 6067, - 6068, - 6069, - 6070 + 6319, + 6320, + 6336, + 6318, + 6321, + 6322, + 6323, + 6324, + 6325, + 6326, + 6317, + 6327, + 6328, + 6329, + 6330, + 6331, + 6332, + 6333, + 6334, + 6335, + 6311, + 6312, + 6313, + 6314, + 6315, + 6316 ] } ], @@ -25747,7 +27282,7 @@ "typeArguments": [ { "type": "reference", - "target": 6035, + "target": 6281, "name": "CreateOrderLineItemDTO", "package": "@medusajs/types" }, @@ -25783,7 +27318,7 @@ ] }, { - "id": 6165, + "id": 6411, "name": "CreateOrderShippingMethodDTO", "variant": "declaration", "kind": 256, @@ -25798,7 +27333,7 @@ }, "children": [ { - "id": 6166, + "id": 6412, "name": "name", "variant": "declaration", "kind": 1024, @@ -25809,7 +27344,7 @@ } }, { - "id": 6167, + "id": 6413, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -25820,7 +27355,46 @@ } }, { - "id": 6168, + "id": 6414, + "name": "return_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6415, + "name": "claim_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6416, + "name": "exchange_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6417, "name": "version", "variant": "declaration", "kind": 1024, @@ -25833,20 +27407,33 @@ } }, { - "id": 6169, + "id": 6418, "name": "amount", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6170, + "id": 6419, + "name": "is_tax_inclusive", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 6420, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -25859,7 +27446,7 @@ } }, { - "id": 6171, + "id": 6421, "name": "data", "variant": "declaration", "kind": 1024, @@ -25887,7 +27474,7 @@ } }, { - "id": 6172, + "id": 6422, "name": "tax_lines", "variant": "declaration", "kind": 1024, @@ -25898,14 +27485,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6708, + "target": 7073, "name": "CreateOrderTaxLineDTO", "package": "@medusajs/types" } } }, { - "id": 6173, + "id": 6423, "name": "adjustments", "variant": "declaration", "kind": 1024, @@ -25916,7 +27503,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6194, + "target": 6444, "name": "CreateOrderAdjustmentDTO", "package": "@medusajs/types" } @@ -25927,27 +27514,31 @@ { "title": "Properties", "children": [ - 6166, - 6167, - 6168, - 6169, - 6170, - 6171, - 6172, - 6173 + 6412, + 6413, + 6414, + 6415, + 6416, + 6417, + 6418, + 6419, + 6420, + 6421, + 6422, + 6423 ] } ] }, { - "id": 6228, + "id": 6478, "name": "CreateOrderShippingMethodAdjustmentDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6229, + "id": 6479, "name": "shipping_method_id", "variant": "declaration", "kind": 1024, @@ -25958,7 +27549,7 @@ } }, { - "id": 6230, + "id": 6480, "name": "code", "variant": "declaration", "kind": 1024, @@ -25969,20 +27560,20 @@ } }, { - "id": 6231, + "id": 6481, "name": "amount", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6232, + "id": 6482, "name": "description", "variant": "declaration", "kind": 1024, @@ -25995,7 +27586,7 @@ } }, { - "id": 6233, + "id": 6483, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -26008,7 +27599,7 @@ } }, { - "id": 6234, + "id": 6484, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -26025,25 +27616,25 @@ { "title": "Properties", "children": [ - 6229, - 6230, - 6231, - 6232, - 6233, - 6234 + 6479, + 6480, + 6481, + 6482, + 6483, + 6484 ] } ] }, { - "id": 6235, + "id": 6485, "name": "UpdateOrderShippingMethodAdjustmentDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6236, + "id": 6486, "name": "id", "variant": "declaration", "kind": 1024, @@ -26054,7 +27645,7 @@ } }, { - "id": 6237, + "id": 6487, "name": "code", "variant": "declaration", "kind": 1024, @@ -26067,7 +27658,7 @@ } }, { - "id": 6238, + "id": 6488, "name": "amount", "variant": "declaration", "kind": 1024, @@ -26076,13 +27667,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6239, + "id": 6489, "name": "description", "variant": "declaration", "kind": 1024, @@ -26095,7 +27686,7 @@ } }, { - "id": 6240, + "id": 6490, "name": "promotion_id", "variant": "declaration", "kind": 1024, @@ -26108,7 +27699,7 @@ } }, { - "id": 6241, + "id": 6491, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -26125,18 +27716,18 @@ { "title": "Properties", "children": [ - 6236, - 6237, - 6238, - 6239, - 6240, - 6241 + 6486, + 6487, + 6488, + 6489, + 6490, + 6491 ] } ] }, { - "id": 6318, + "id": 6594, "name": "CreateOrderChangeDTO", "variant": "declaration", "kind": 256, @@ -26151,7 +27742,7 @@ }, "children": [ { - "id": 6319, + "id": 6595, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -26162,7 +27753,7 @@ } }, { - "id": 6320, + "id": 6596, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -26175,7 +27766,7 @@ } }, { - "id": 6321, + "id": 6597, "name": "claim_id", "variant": "declaration", "kind": 1024, @@ -26188,7 +27779,7 @@ } }, { - "id": 6322, + "id": 6598, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -26201,7 +27792,37 @@ } }, { - "id": 6323, + "id": 6599, + "name": "change_type", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "return" + }, + { + "type": "literal", + "value": "exchange" + }, + { + "type": "literal", + "value": "claim" + }, + { + "type": "literal", + "value": "edit" + } + ] + } + }, + { + "id": 6600, "name": "description", "variant": "declaration", "kind": 1024, @@ -26214,7 +27835,7 @@ } }, { - "id": 6324, + "id": 6601, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -26236,7 +27857,7 @@ } }, { - "id": 6325, + "id": 6602, "name": "requested_by", "variant": "declaration", "kind": 1024, @@ -26249,7 +27870,7 @@ } }, { - "id": 6326, + "id": 6603, "name": "requested_at", "variant": "declaration", "kind": 1024, @@ -26267,7 +27888,7 @@ } }, { - "id": 6327, + "id": 6604, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -26280,7 +27901,7 @@ } }, { - "id": 6328, + "id": 6605, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -26317,7 +27938,7 @@ } }, { - "id": 6329, + "id": 6606, "name": "actions", "variant": "declaration", "kind": 1024, @@ -26328,7 +27949,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6374, + "target": 6671, "name": "CreateOrderChangeActionDTO", "package": "@medusajs/types" } @@ -26339,30 +27960,375 @@ { "title": "Properties", "children": [ - 6319, - 6320, - 6321, - 6322, - 6323, - 6324, - 6325, - 6326, - 6327, - 6328, - 6329 + 6595, + 6596, + 6597, + 6598, + 6599, + 6600, + 6601, + 6602, + 6603, + 6604, + 6605, + 6606 + ] + } + ] + }, + { + "id": 6607, + "name": "UpdateOrderChangeDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 6608, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6609, + "name": "status", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6610, + "name": "description", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6611, + "name": "internal_note", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 6612, + "name": "requested_by", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 6613, + "name": "requested_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 6614, + "name": "confirmed_by", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 6615, + "name": "confirmed_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 6616, + "name": "declined_by", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 6617, + "name": "declined_reason", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 6618, + "name": "declined_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 6619, + "name": "canceled_by", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 6620, + "name": "canceled_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + }, + { + "id": 6621, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6608, + 6609, + 6610, + 6611, + 6612, + 6613, + 6614, + 6615, + 6616, + 6617, + 6618, + 6619, + 6620, + 6621 ] } ] }, { - "id": 6348, + "id": 6622, "name": "CancelOrderChangeDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6349, + "id": 6623, "name": "id", "variant": "declaration", "kind": 1024, @@ -26373,7 +28339,7 @@ } }, { - "id": 6350, + "id": 6624, "name": "canceled_by", "variant": "declaration", "kind": 1024, @@ -26386,7 +28352,7 @@ } }, { - "id": 6351, + "id": 6625, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -26427,22 +28393,22 @@ { "title": "Properties", "children": [ - 6349, - 6350, - 6351 + 6623, + 6624, + 6625 ] } ] }, { - "id": 6370, + "id": 6644, "name": "DeclineOrderChangeDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6371, + "id": 6645, "name": "id", "variant": "declaration", "kind": 1024, @@ -26453,7 +28419,7 @@ } }, { - "id": 6372, + "id": 6646, "name": "declined_by", "variant": "declaration", "kind": 1024, @@ -26466,7 +28432,7 @@ } }, { - "id": 6373, + "id": 6647, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -26507,22 +28473,22 @@ { "title": "Properties", "children": [ - 6371, - 6372, - 6373 + 6645, + 6646, + 6647 ] } ] }, { - "id": 6366, + "id": 6640, "name": "ConfirmOrderChangeDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6367, + "id": 6641, "name": "id", "variant": "declaration", "kind": 1024, @@ -26533,7 +28499,7 @@ } }, { - "id": 6368, + "id": 6642, "name": "confirmed_by", "variant": "declaration", "kind": 1024, @@ -26546,7 +28512,7 @@ } }, { - "id": 6369, + "id": 6643, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -26587,15 +28553,15 @@ { "title": "Properties", "children": [ - 6367, - 6368, - 6369 + 6641, + 6642, + 6643 ] } ] }, { - "id": 6374, + "id": 6671, "name": "CreateOrderChangeActionDTO", "variant": "declaration", "kind": 256, @@ -26610,7 +28576,7 @@ }, "children": [ { - "id": 6375, + "id": 6672, "name": "order_change_id", "variant": "declaration", "kind": 1024, @@ -26623,7 +28589,7 @@ } }, { - "id": 6376, + "id": 6673, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -26636,7 +28602,7 @@ } }, { - "id": 6377, + "id": 6674, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -26649,7 +28615,7 @@ } }, { - "id": 6378, + "id": 6675, "name": "claim_id", "variant": "declaration", "kind": 1024, @@ -26662,7 +28628,7 @@ } }, { - "id": 6379, + "id": 6676, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -26675,7 +28641,7 @@ } }, { - "id": 6380, + "id": 6677, "name": "version", "variant": "declaration", "kind": 1024, @@ -26688,7 +28654,7 @@ } }, { - "id": 6381, + "id": 6678, "name": "reference", "variant": "declaration", "kind": 1024, @@ -26701,7 +28667,7 @@ } }, { - "id": 6382, + "id": 6679, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -26714,20 +28680,20 @@ } }, { - "id": 6383, + "id": 6680, "name": "action", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6747, + "target": 7112, "name": "ChangeActionType", "package": "@medusajs/types" } }, { - "id": 6384, + "id": 6681, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -26749,7 +28715,7 @@ } }, { - "id": 6385, + "id": 6682, "name": "amount", "variant": "declaration", "kind": 1024, @@ -26758,13 +28724,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6386, + "id": 6683, "name": "details", "variant": "declaration", "kind": 1024, @@ -26796,24 +28762,75 @@ { "title": "Properties", "children": [ - 6375, - 6376, - 6377, - 6378, - 6379, - 6380, - 6381, - 6382, - 6383, - 6384, - 6385, - 6386 + 6672, + 6673, + 6674, + 6675, + 6676, + 6677, + 6678, + 6679, + 6680, + 6681, + 6682, + 6683 + ] + } + ] + }, + { + "id": 6668, + "name": "UpdateOrderChangeActionDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 6669, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6670, + "name": "internal_note", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6669, + 6670 ] } ] }, { - "id": 6421, + "id": 6705, "name": "CreateOrderTransactionDTO", "variant": "declaration", "kind": 256, @@ -26828,7 +28845,7 @@ }, "children": [ { - "id": 6422, + "id": 6706, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -26839,7 +28856,7 @@ } }, { - "id": 6423, + "id": 6707, "name": "description", "variant": "declaration", "kind": 1024, @@ -26852,7 +28869,7 @@ } }, { - "id": 6424, + "id": 6708, "name": "reference", "variant": "declaration", "kind": 1024, @@ -26865,7 +28882,7 @@ } }, { - "id": 6425, + "id": 6709, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -26878,7 +28895,7 @@ } }, { - "id": 6426, + "id": 6710, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -26900,7 +28917,7 @@ } }, { - "id": 6427, + "id": 6711, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -26913,20 +28930,20 @@ } }, { - "id": 6428, + "id": 6712, "name": "amount", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6429, + "id": 6713, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -26937,7 +28954,7 @@ } }, { - "id": 6430, + "id": 6714, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -26978,21 +28995,21 @@ { "title": "Properties", "children": [ - 6422, - 6423, - 6424, - 6425, - 6426, - 6427, - 6428, - 6429, - 6430 + 6706, + 6707, + 6708, + 6709, + 6710, + 6711, + 6712, + 6713, + 6714 ] } ] }, { - "id": 6098, + "id": 6344, "name": "UpdateOrderItemDTO", "variant": "declaration", "kind": 256, @@ -27007,7 +29024,7 @@ }, "children": [ { - "id": 6099, + "id": 6345, "name": "id", "variant": "declaration", "kind": 1024, @@ -27018,7 +29035,7 @@ } }, { - "id": 6100, + "id": 6346, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -27031,7 +29048,7 @@ } }, { - "id": 6101, + "id": 6347, "name": "version", "variant": "declaration", "kind": 1024, @@ -27044,7 +29061,7 @@ } }, { - "id": 6102, + "id": 6348, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -27057,7 +29074,7 @@ } }, { - "id": 6103, + "id": 6349, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -27066,13 +29083,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6104, + "id": 6350, "name": "fulfilled_quantity", "variant": "declaration", "kind": 1024, @@ -27081,13 +29098,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6105, + "id": 6351, "name": "return_requested_quantity", "variant": "declaration", "kind": 1024, @@ -27096,13 +29113,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6106, + "id": 6352, "name": "return_received_quantity", "variant": "declaration", "kind": 1024, @@ -27111,13 +29128,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6107, + "id": 6353, "name": "return_dismissed_quantity", "variant": "declaration", "kind": 1024, @@ -27126,13 +29143,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6108, + "id": 6354, "name": "written_off_quantity", "variant": "declaration", "kind": 1024, @@ -27141,13 +29158,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6109, + "id": 6355, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -27188,30 +29205,30 @@ { "title": "Properties", "children": [ - 6099, - 6100, - 6101, - 6102, - 6103, - 6104, - 6105, - 6106, - 6107, - 6108, - 6109 + 6345, + 6346, + 6347, + 6348, + 6349, + 6350, + 6351, + 6352, + 6353, + 6354, + 6355 ] } ] }, { - "id": 6131, + "id": 6377, "name": "UpdateOrderItemWithSelectorDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6132, + "id": 6378, "name": "selector", "variant": "declaration", "kind": 1024, @@ -27225,7 +29242,7 @@ "typeArguments": [ { "type": "reference", - "target": 6110, + "target": 6356, "name": "OrderItemDTO", "package": "@medusajs/types" } @@ -27235,7 +29252,7 @@ } }, { - "id": 6133, + "id": 6379, "name": "data", "variant": "declaration", "kind": 1024, @@ -27249,7 +29266,7 @@ "typeArguments": [ { "type": "reference", - "target": 6098, + "target": 6344, "name": "UpdateOrderItemDTO", "package": "@medusajs/types" } @@ -27263,14 +29280,14 @@ { "title": "Properties", "children": [ - 6132, - 6133 + 6378, + 6379 ] } ] }, { - "id": 6759, + "id": 7125, "name": "BaseOrderBundledItemActionsDTO", "variant": "declaration", "kind": 256, @@ -27285,7 +29302,7 @@ }, "children": [ { - "id": 6760, + "id": 7126, "name": "id", "variant": "declaration", "kind": 1024, @@ -27296,20 +29313,20 @@ } }, { - "id": 6761, + "id": 7127, "name": "quantity", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6762, + "id": 7128, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -27331,7 +29348,7 @@ } }, { - "id": 6763, + "id": 7129, "name": "note", "variant": "declaration", "kind": 1024, @@ -27353,7 +29370,7 @@ } }, { - "id": 6764, + "id": 7130, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -27394,24 +29411,50 @@ { "title": "Properties", "children": [ - 6760, - 6761, - 6762, - 6763, - 6764 + 7126, + 7127, + 7128, + 7129, + 7130 ] } + ], + "indexSignatures": [ + { + "id": 7131, + "name": "__index", + "variant": "signature", + "kind": 8192, + "flags": {}, + "parameters": [ + { + "id": 7132, + "name": "key", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } ] }, { - "id": 6748, + "id": 7113, "name": "BaseOrderBundledActionsDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6749, + "id": 7114, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -27422,7 +29465,7 @@ } }, { - "id": 6750, + "id": 7115, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -27435,7 +29478,7 @@ } }, { - "id": 6751, + "id": 7116, "name": "claim_id", "variant": "declaration", "kind": 1024, @@ -27448,7 +29491,7 @@ } }, { - "id": 6752, + "id": 7117, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -27461,7 +29504,7 @@ } }, { - "id": 6753, + "id": 7118, "name": "description", "variant": "declaration", "kind": 1024, @@ -27474,7 +29517,7 @@ } }, { - "id": 6754, + "id": 7119, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -27496,7 +29539,7 @@ } }, { - "id": 6755, + "id": 7120, "name": "reference", "variant": "declaration", "kind": 1024, @@ -27509,7 +29552,7 @@ } }, { - "id": 6756, + "id": 7121, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -27522,7 +29565,7 @@ } }, { - "id": 6757, + "id": 7122, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -27544,7 +29587,7 @@ } }, { - "id": 6758, + "id": 7123, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -27585,61 +29628,61 @@ { "title": "Properties", "children": [ - 6749, - 6750, - 6751, - 6752, - 6753, - 6754, - 6755, - 6756, - 6757, - 6758 + 7114, + 7115, + 7116, + 7117, + 7118, + 7119, + 7120, + 7121, + 7122, + 7123 ] } ], "extendedBy": [ { "type": "reference", - "target": 6462, - "name": "RegisterOrderFulfillmentDTO" + "target": 6748, + "name": "CreateOrderReturnDTO" }, { "type": "reference", - "target": 6474, - "name": "CancelOrderFulfillmentDTO" + "target": 6788, + "name": "CreateOrderClaimDTO" }, { "type": "reference", - "target": 6486, - "name": "RegisterOrderShipmentDTO" + "target": 6827, + "name": "CreateOrderExchangeDTO" }, { "type": "reference", - "target": 6499, - "name": "CreateOrderReturnDTO" + "target": 6860, + "name": "RegisterOrderFulfillmentDTO" }, { "type": "reference", - "target": 6532, - "name": "CreateOrderClaimDTO" + "target": 6872, + "name": "CancelOrderFulfillmentDTO" }, { "type": "reference", - "target": 6556, - "name": "CreateOrderExchangeDTO" + "target": 6884, + "name": "RegisterOrderShipmentDTO" } ] }, { - "id": 6462, + "id": 6860, "name": "RegisterOrderFulfillmentDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6464, + "id": 6862, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -27652,12 +29695,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6749, + "target": 7114, "name": "BaseOrderBundledActionsDTO.order_id" } }, { - "id": 6465, + "id": 6863, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -27671,12 +29714,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6750, + "target": 7115, "name": "BaseOrderBundledActionsDTO.return_id" } }, { - "id": 6466, + "id": 6864, "name": "claim_id", "variant": "declaration", "kind": 1024, @@ -27690,12 +29733,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6751, + "target": 7116, "name": "BaseOrderBundledActionsDTO.claim_id" } }, { - "id": 6467, + "id": 6865, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -27709,12 +29752,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6752, + "target": 7117, "name": "BaseOrderBundledActionsDTO.exchange_id" } }, { - "id": 6468, + "id": 6866, "name": "description", "variant": "declaration", "kind": 1024, @@ -27728,12 +29771,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6753, + "target": 7118, "name": "BaseOrderBundledActionsDTO.description" } }, { - "id": 6469, + "id": 6867, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -27756,12 +29799,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6754, + "target": 7119, "name": "BaseOrderBundledActionsDTO.internal_note" } }, { - "id": 6470, + "id": 6868, "name": "reference", "variant": "declaration", "kind": 1024, @@ -27775,12 +29818,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6755, + "target": 7120, "name": "BaseOrderBundledActionsDTO.reference" } }, { - "id": 6471, + "id": 6869, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -27794,12 +29837,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6756, + "target": 7121, "name": "BaseOrderBundledActionsDTO.reference_id" } }, { - "id": 6472, + "id": 6870, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -27822,12 +29865,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6757, + "target": 7122, "name": "BaseOrderBundledActionsDTO.created_by" } }, { - "id": 6473, + "id": 6871, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -27865,12 +29908,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6758, + "target": 7123, "name": "BaseOrderBundledActionsDTO.metadata" } }, { - "id": 6463, + "id": 6861, "name": "items", "variant": "declaration", "kind": 1024, @@ -27879,7 +29922,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6759, + "target": 7125, "name": "BaseOrderBundledItemActionsDTO", "package": "@medusajs/types" } @@ -27890,38 +29933,38 @@ { "title": "Properties", "children": [ - 6464, - 6465, - 6466, - 6467, - 6468, - 6469, - 6470, - 6471, - 6472, - 6473, - 6463 + 6862, + 6863, + 6864, + 6865, + 6866, + 6867, + 6868, + 6869, + 6870, + 6871, + 6861 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6748, + "target": 7113, "name": "BaseOrderBundledActionsDTO", "package": "@medusajs/types" } ] }, { - "id": 6474, + "id": 6872, "name": "CancelOrderFulfillmentDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6476, + "id": 6874, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -27934,12 +29977,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6749, + "target": 7114, "name": "BaseOrderBundledActionsDTO.order_id" } }, { - "id": 6477, + "id": 6875, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -27953,12 +29996,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6750, + "target": 7115, "name": "BaseOrderBundledActionsDTO.return_id" } }, { - "id": 6478, + "id": 6876, "name": "claim_id", "variant": "declaration", "kind": 1024, @@ -27972,12 +30015,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6751, + "target": 7116, "name": "BaseOrderBundledActionsDTO.claim_id" } }, { - "id": 6479, + "id": 6877, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -27991,12 +30034,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6752, + "target": 7117, "name": "BaseOrderBundledActionsDTO.exchange_id" } }, { - "id": 6480, + "id": 6878, "name": "description", "variant": "declaration", "kind": 1024, @@ -28010,12 +30053,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6753, + "target": 7118, "name": "BaseOrderBundledActionsDTO.description" } }, { - "id": 6481, + "id": 6879, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -28038,12 +30081,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6754, + "target": 7119, "name": "BaseOrderBundledActionsDTO.internal_note" } }, { - "id": 6482, + "id": 6880, "name": "reference", "variant": "declaration", "kind": 1024, @@ -28057,12 +30100,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6755, + "target": 7120, "name": "BaseOrderBundledActionsDTO.reference" } }, { - "id": 6483, + "id": 6881, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -28076,12 +30119,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6756, + "target": 7121, "name": "BaseOrderBundledActionsDTO.reference_id" } }, { - "id": 6484, + "id": 6882, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -28104,12 +30147,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6757, + "target": 7122, "name": "BaseOrderBundledActionsDTO.created_by" } }, { - "id": 6485, + "id": 6883, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -28147,12 +30190,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6758, + "target": 7123, "name": "BaseOrderBundledActionsDTO.metadata" } }, { - "id": 6475, + "id": 6873, "name": "items", "variant": "declaration", "kind": 1024, @@ -28161,7 +30204,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6759, + "target": 7125, "name": "BaseOrderBundledItemActionsDTO", "package": "@medusajs/types" } @@ -28172,38 +30215,38 @@ { "title": "Properties", "children": [ - 6476, - 6477, - 6478, - 6479, - 6480, - 6481, - 6482, - 6483, - 6484, - 6485, - 6475 + 6874, + 6875, + 6876, + 6877, + 6878, + 6879, + 6880, + 6881, + 6882, + 6883, + 6873 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6748, + "target": 7113, "name": "BaseOrderBundledActionsDTO", "package": "@medusajs/types" } ] }, { - "id": 6486, + "id": 6884, "name": "RegisterOrderShipmentDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6489, + "id": 6887, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -28216,12 +30259,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6749, + "target": 7114, "name": "BaseOrderBundledActionsDTO.order_id" } }, { - "id": 6490, + "id": 6888, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -28235,12 +30278,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6750, + "target": 7115, "name": "BaseOrderBundledActionsDTO.return_id" } }, { - "id": 6491, + "id": 6889, "name": "claim_id", "variant": "declaration", "kind": 1024, @@ -28254,12 +30297,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6751, + "target": 7116, "name": "BaseOrderBundledActionsDTO.claim_id" } }, { - "id": 6492, + "id": 6890, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -28273,12 +30316,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6752, + "target": 7117, "name": "BaseOrderBundledActionsDTO.exchange_id" } }, { - "id": 6493, + "id": 6891, "name": "description", "variant": "declaration", "kind": 1024, @@ -28292,12 +30335,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6753, + "target": 7118, "name": "BaseOrderBundledActionsDTO.description" } }, { - "id": 6494, + "id": 6892, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -28320,12 +30363,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6754, + "target": 7119, "name": "BaseOrderBundledActionsDTO.internal_note" } }, { - "id": 6495, + "id": 6893, "name": "reference", "variant": "declaration", "kind": 1024, @@ -28339,12 +30382,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6755, + "target": 7120, "name": "BaseOrderBundledActionsDTO.reference" } }, { - "id": 6496, + "id": 6894, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -28358,12 +30401,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6756, + "target": 7121, "name": "BaseOrderBundledActionsDTO.reference_id" } }, { - "id": 6497, + "id": 6895, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -28386,12 +30429,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6757, + "target": 7122, "name": "BaseOrderBundledActionsDTO.created_by" } }, { - "id": 6498, + "id": 6896, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -28429,28 +30472,30 @@ }, "inheritedFrom": { "type": "reference", - "target": 6758, + "target": 7123, "name": "BaseOrderBundledActionsDTO.metadata" } }, { - "id": 6487, + "id": 6885, "name": "items", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "array", "elementType": { "type": "reference", - "target": 6759, + "target": 7125, "name": "BaseOrderBundledItemActionsDTO", "package": "@medusajs/types" } } }, { - "id": 6488, + "id": 6886, "name": "no_notification", "variant": "declaration", "kind": 1024, @@ -28467,39 +30512,39 @@ { "title": "Properties", "children": [ - 6489, - 6490, - 6491, - 6492, - 6493, - 6494, - 6495, - 6496, - 6497, - 6498, - 6487, - 6488 + 6887, + 6888, + 6889, + 6890, + 6891, + 6892, + 6893, + 6894, + 6895, + 6896, + 6885, + 6886 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6748, + "target": 7113, "name": "BaseOrderBundledActionsDTO", "package": "@medusajs/types" } ] }, { - "id": 6499, + "id": 6748, "name": "CreateOrderReturnDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6511, + "id": 6762, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -28512,12 +30557,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6749, + "target": 7114, "name": "BaseOrderBundledActionsDTO.order_id" } }, { - "id": 6512, + "id": 6763, "name": "return_id", "variant": "declaration", "kind": 1024, @@ -28531,50 +30576,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6750, + "target": 7115, "name": "BaseOrderBundledActionsDTO.return_id" } }, { - "id": 6513, - "name": "claim_id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6751, - "name": "BaseOrderBundledActionsDTO.claim_id" - } - }, - { - "id": 6514, - "name": "exchange_id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6752, - "name": "BaseOrderBundledActionsDTO.exchange_id" - } - }, - { - "id": 6515, + "id": 6764, "name": "description", "variant": "declaration", "kind": 1024, @@ -28588,12 +30595,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6753, + "target": 7118, "name": "BaseOrderBundledActionsDTO.description" } }, { - "id": 6516, + "id": 6765, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -28616,12 +30623,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6754, + "target": 7119, "name": "BaseOrderBundledActionsDTO.internal_note" } }, { - "id": 6517, + "id": 6766, "name": "reference", "variant": "declaration", "kind": 1024, @@ -28635,12 +30642,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6755, + "target": 7120, "name": "BaseOrderBundledActionsDTO.reference" } }, { - "id": 6518, + "id": 6767, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -28654,12 +30661,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6756, + "target": 7121, "name": "BaseOrderBundledActionsDTO.reference_id" } }, { - "id": 6519, + "id": 6768, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -28682,12 +30689,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6757, + "target": 7122, "name": "BaseOrderBundledActionsDTO.created_by" } }, { - "id": 6520, + "id": 6769, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -28725,29 +30732,31 @@ }, "inheritedFrom": { "type": "reference", - "target": 6758, + "target": 7123, "name": "BaseOrderBundledActionsDTO.metadata" } }, { - "id": 6500, + "id": 6749, "name": "items", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "array", "elementType": { "type": "reflection", "declaration": { - "id": 6501, + "id": 6750, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6502, + "id": 6751, "name": "id", "variant": "declaration", "kind": 1024, @@ -28758,20 +30767,20 @@ } }, { - "id": 6503, + "id": 6752, "name": "quantity", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6504, + "id": 6753, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -28793,7 +30802,7 @@ } }, { - "id": 6505, + "id": 6754, "name": "note", "variant": "declaration", "kind": 1024, @@ -28815,7 +30824,7 @@ } }, { - "id": 6506, + "id": 6755, "name": "reason_id", "variant": "declaration", "kind": 1024, @@ -28837,7 +30846,7 @@ } }, { - "id": 6507, + "id": 6756, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -28845,23 +30854,32 @@ "isOptional": true }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ + "type": "union", + "types": [ { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": null }, { - "type": "intrinsic", - "name": "any" + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" } - ], - "name": "Record", - "package": "typescript" + ] } } ], @@ -28869,12 +30887,12 @@ { "title": "Properties", "children": [ - 6502, - 6503, - 6504, - 6505, - 6506, - 6507 + 6751, + 6752, + 6753, + 6754, + 6755, + 6756 ] } ] @@ -28883,7 +30901,7 @@ } }, { - "id": 6508, + "id": 6757, "name": "shipping_method", "variant": "declaration", "kind": 1024, @@ -28906,7 +30924,7 @@ "typeArguments": [ { "type": "reference", - "target": 6165, + "target": 6411, "name": "CreateOrderShippingMethodDTO", "package": "@medusajs/types" }, @@ -28922,7 +30940,7 @@ } }, { - "id": 6509, + "id": 6758, "name": "refund_amount", "variant": "declaration", "kind": 1024, @@ -28931,13 +30949,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6510, + "id": 6759, "name": "no_notification", "variant": "declaration", "kind": 1024, @@ -28948,289 +30966,142 @@ "type": "intrinsic", "name": "boolean" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 6511, - 6512, - 6513, - 6514, - 6515, - 6516, - 6517, - 6518, - 6519, - 6520, - 6500, - 6508, - 6509, - 6510 - ] - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 6748, - "name": "BaseOrderBundledActionsDTO", - "package": "@medusajs/types" - } - ] - }, - { - "id": 6765, - "name": "OrderClaimType", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "refund" - }, - { - "type": "literal", - "value": "replace" - } - ] - } - }, - { - "id": 6766, - "name": "ClaimReason", - "variant": "declaration", - "kind": 2097152, - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "missing_item" - }, - { - "type": "literal", - "value": "wrong_item" - }, - { - "type": "literal", - "value": "production_failure" - }, - { - "type": "literal", - "value": "other" - } - ] - } - }, - { - "id": 6532, - "name": "CreateOrderClaimDTO", - "variant": "declaration", - "kind": 256, - "flags": {}, - "children": [ - { - "id": 6546, - "name": "order_id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6749, - "name": "BaseOrderBundledActionsDTO.order_id" - } - }, - { - "id": 6547, - "name": "return_id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6750, - "name": "BaseOrderBundledActionsDTO.return_id" - } }, { - "id": 6548, + "id": 6760, "name": "claim_id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 6751, + "target": 7116, "name": "BaseOrderBundledActionsDTO.claim_id" } }, { - "id": 6549, + "id": 6761, "name": "exchange_id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "target": 6752, + "target": 7117, "name": "BaseOrderBundledActionsDTO.exchange_id" } - }, + } + ], + "groups": [ { - "id": 6550, - "name": "description", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6753, - "name": "BaseOrderBundledActionsDTO.description" - } - }, + "title": "Properties", + "children": [ + 6762, + 6763, + 6764, + 6765, + 6766, + 6767, + 6768, + 6769, + 6749, + 6757, + 6758, + 6759, + 6760, + 6761 + ] + } + ], + "extendedTypes": [ { - "id": 6551, - "name": "internal_note", + "type": "reference", + "target": 7113, + "name": "BaseOrderBundledActionsDTO", + "package": "@medusajs/types" + } + ] + }, + { + "id": 6782, + "name": "UpdateOrderReturnDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 6783, + "name": "refund_amount", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] - }, - "inheritedFrom": { "type": "reference", - "target": 6754, - "name": "BaseOrderBundledActionsDTO.internal_note" + "target": 7072, + "name": "BigNumberInput", + "package": "@medusajs/types" } }, { - "id": 6552, - "name": "reference", + "id": 6784, + "name": "no_notification", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6755, - "name": "BaseOrderBundledActionsDTO.reference" + "name": "boolean" } }, { - "id": 6553, - "name": "reference_id", + "id": 6785, + "name": "claim_id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 6756, - "name": "BaseOrderBundledActionsDTO.reference_id" } }, { - "id": 6554, - "name": "created_by", + "id": 6786, + "name": "exchange_id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] - }, - "inheritedFrom": { - "type": "reference", - "target": 6757, - "name": "BaseOrderBundledActionsDTO.created_by" + "type": "intrinsic", + "name": "string" } }, { - "id": 6555, + "id": 6787, "name": "metadata", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "type": { "type": "union", @@ -29259,219 +31130,88 @@ "package": "typescript" } ] - }, - "inheritedFrom": { - "type": "reference", - "target": 6758, - "name": "BaseOrderBundledActionsDTO.metadata" } - }, + } + ], + "groups": [ { - "id": 6533, - "name": "type", + "title": "Properties", + "children": [ + 6783, + 6784, + 6785, + 6786, + 6787 + ] + } + ] + }, + { + "id": 6821, + "name": "UpdateOrderClaimDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 6822, + "name": "refund_amount", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "reference", - "target": 6765, - "name": "OrderClaimType", + "target": 7072, + "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6534, - "name": "claim_items", + "id": 6823, + "name": "no_notification", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "array", - "elementType": { - "type": "intersection", - "types": [ - { - "type": "reference", - "target": 6759, - "name": "BaseOrderBundledItemActionsDTO", - "package": "@medusajs/types" - }, - { - "type": "reflection", - "declaration": { - "id": 6535, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 6536, - "name": "reason", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "reference", - "target": 6766, - "name": "ClaimReason", - "package": "@medusajs/types" - } - }, - { - "id": 6537, - "name": "images", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "array", - "elementType": { - "type": "reflection", - "declaration": { - "id": 6538, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 6539, - "name": "url", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 6540, - "name": "metadata", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record", - "package": "typescript" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 6539, - 6540 - ] - } - ] - } - } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 6536, - 6537 - ] - } - ] - } - } - ] - } + "type": "intrinsic", + "name": "boolean" } }, { - "id": 6541, - "name": "additional_items", + "id": 6824, + "name": "return_id", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6759, - "name": "BaseOrderBundledItemActionsDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "string" } }, { - "id": 6542, - "name": "shipping_methods", + "id": 6825, + "name": "type", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, "type": { - "type": "union", - "types": [ - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - { - "type": "array", - "elementType": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" - }, - "typeArguments": [ - { - "type": "reference", - "target": 6165, - "name": "CreateOrderShippingMethodDTO", - "package": "@medusajs/types" - }, - { - "type": "literal", - "value": "order_id" - } - ], - "name": "Omit", - "package": "typescript" - } - } - ] + "type": "reference", + "target": 7124, + "name": "OrderClaimType", + "package": "@medusajs/types" } }, { - "id": 6543, - "name": "return_shipping", + "id": 6826, + "name": "metadata", "variant": "declaration", "kind": 1024, "flags": { @@ -29481,36 +31221,55 @@ "type": "union", "types": [ { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": null }, { "type": "reference", "target": { "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Omit" + "qualifiedName": "Record" }, "typeArguments": [ { - "type": "reference", - "target": 6165, - "name": "CreateOrderShippingMethodDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" }, { - "type": "literal", - "value": "order_id" + "type": "intrinsic", + "name": "unknown" } ], - "name": "Omit", + "name": "Record", "package": "typescript" } ] } - }, + } + ], + "groups": [ { - "id": 6544, - "name": "refund_amount", + "title": "Properties", + "children": [ + 6822, + 6823, + 6824, + 6825, + 6826 + ] + } + ] + }, + { + "id": 6854, + "name": "UpdateOrderExchangeDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 6855, + "name": "difference_due", "variant": "declaration", "kind": 1024, "flags": { @@ -29518,13 +31277,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6545, + "id": 6856, "name": "no_notification", "variant": "declaration", "kind": 1024, @@ -29535,87 +31294,291 @@ "type": "intrinsic", "name": "boolean" } + }, + { + "id": 6857, + "name": "return_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6858, + "name": "allow_backorder", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 6859, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } } ], "groups": [ { "title": "Properties", "children": [ - 6546, - 6547, - 6548, - 6549, - 6550, - 6551, - 6552, - 6553, - 6554, - 6555, - 6533, - 6534, - 6541, - 6542, - 6543, - 6544, - 6545 + 6855, + 6856, + 6857, + 6858, + 6859 ] } + ] + }, + { + "id": 6770, + "name": "UpdateOrderReturnWithSelectorDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 6771, + "name": "selector", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5910, + "name": "ReturnDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + }, + { + "id": 6772, + "name": "data", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6782, + "name": "UpdateOrderReturnDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + } ], - "extendedTypes": [ + "groups": [ { - "type": "reference", - "target": 6748, - "name": "BaseOrderBundledActionsDTO", - "package": "@medusajs/types" + "title": "Properties", + "children": [ + 6771, + 6772 + ] } ] }, { - "id": 6556, - "name": "CreateOrderExchangeDTO", + "id": 6812, + "name": "UpdateOrderClaimWithSelectorDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6563, - "name": "order_id", + "id": 6813, + "name": "selector", "variant": "declaration", "kind": 1024, - "flags": { - "isInherited": true - }, + "flags": {}, "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { "type": "reference", - "target": 6749, - "name": "BaseOrderBundledActionsDTO.order_id" + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5975, + "name": "OrderClaimDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" } }, { - "id": 6564, - "name": "return_id", + "id": 6814, + "name": "data", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { "type": "reference", - "target": 6750, - "name": "BaseOrderBundledActionsDTO.return_id" + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6821, + "name": "UpdateOrderClaimDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6813, + 6814 + ] + } + ] + }, + { + "id": 6844, + "name": "UpdateOrderExchangeWithSelectorDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 6845, + "name": "selector", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6041, + "name": "OrderExchangeDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" } }, { - "id": 6565, + "id": 6846, + "name": "data", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6854, + "name": "UpdateOrderExchangeDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6845, + 6846 + ] + } + ] + }, + { + "id": 6897, + "name": "CancelOrderReturnDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 6904, "name": "claim_id", "variant": "declaration", "kind": 1024, @@ -29629,12 +31592,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6751, - "name": "BaseOrderBundledActionsDTO.claim_id" + "target": -1, + "name": "Omit.claim_id" } }, { - "id": 6566, + "id": 6905, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -29648,12 +31611,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6752, - "name": "BaseOrderBundledActionsDTO.exchange_id" + "target": -1, + "name": "Omit.exchange_id" } }, { - "id": 6567, + "id": 6899, "name": "description", "variant": "declaration", "kind": 1024, @@ -29667,12 +31630,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6753, - "name": "BaseOrderBundledActionsDTO.description" + "target": -1, + "name": "Omit.description" } }, { - "id": 6568, + "id": 6906, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -29695,12 +31658,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6754, - "name": "BaseOrderBundledActionsDTO.internal_note" + "target": -1, + "name": "Omit.internal_note" } }, { - "id": 6569, + "id": 6902, "name": "reference", "variant": "declaration", "kind": 1024, @@ -29714,12 +31677,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6755, - "name": "BaseOrderBundledActionsDTO.reference" + "target": -1, + "name": "Omit.reference" } }, { - "id": 6570, + "id": 6903, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -29733,12 +31696,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6756, - "name": "BaseOrderBundledActionsDTO.reference_id" + "target": -1, + "name": "Omit.reference_id" } }, { - "id": 6571, + "id": 6901, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -29761,12 +31724,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 6757, - "name": "BaseOrderBundledActionsDTO.created_by" + "target": -1, + "name": "Omit.created_by" } }, { - "id": 6572, + "id": 6900, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -29804,13 +31767,507 @@ }, "inheritedFrom": { "type": "reference", - "target": 6758, - "name": "BaseOrderBundledActionsDTO.metadata" + "target": -1, + "name": "Omit.metadata" } }, { - "id": 6557, - "name": "additional_items", + "id": 6898, + "name": "return_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "Omit.return_id" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6904, + 6905, + 6899, + 6906, + 6902, + 6903, + 6901, + 6900, + 6898 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 7113, + "name": "BaseOrderBundledActionsDTO", + "package": "@medusajs/types" + }, + { + "type": "literal", + "value": "order_id" + } + ], + "name": "Omit", + "package": "typescript" + } + ] + }, + { + "id": 7124, + "name": "OrderClaimType", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "refund" + }, + { + "type": "literal", + "value": "replace" + } + ] + } + }, + { + "id": 7133, + "name": "ClaimReason", + "variant": "declaration", + "kind": 2097152, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "missing_item" + }, + { + "type": "literal", + "value": "wrong_item" + }, + { + "type": "literal", + "value": "production_failure" + }, + { + "type": "literal", + "value": "other" + } + ] + } + }, + { + "id": 6788, + "name": "CreateOrderClaimDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 6802, + "name": "order_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7114, + "name": "BaseOrderBundledActionsDTO.order_id" + } + }, + { + "id": 6803, + "name": "return_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7115, + "name": "BaseOrderBundledActionsDTO.return_id" + } + }, + { + "id": 6804, + "name": "claim_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7116, + "name": "BaseOrderBundledActionsDTO.claim_id" + } + }, + { + "id": 6805, + "name": "exchange_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7117, + "name": "BaseOrderBundledActionsDTO.exchange_id" + } + }, + { + "id": 6806, + "name": "description", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7118, + "name": "BaseOrderBundledActionsDTO.description" + } + }, + { + "id": 6807, + "name": "internal_note", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 7119, + "name": "BaseOrderBundledActionsDTO.internal_note" + } + }, + { + "id": 6808, + "name": "reference", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7120, + "name": "BaseOrderBundledActionsDTO.reference" + } + }, + { + "id": 6809, + "name": "reference_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7121, + "name": "BaseOrderBundledActionsDTO.reference_id" + } + }, + { + "id": 6810, + "name": "created_by", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 7122, + "name": "BaseOrderBundledActionsDTO.created_by" + } + }, + { + "id": 6811, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 7123, + "name": "BaseOrderBundledActionsDTO.metadata" + } + }, + { + "id": 6789, + "name": "type", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 7124, + "name": "OrderClaimType", + "package": "@medusajs/types" + } + }, + { + "id": 6790, + "name": "claim_items", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intersection", + "types": [ + { + "type": "reference", + "target": 7125, + "name": "BaseOrderBundledItemActionsDTO", + "package": "@medusajs/types" + }, + { + "type": "reflection", + "declaration": { + "id": 6791, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 6792, + "name": "reason", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": 7133, + "name": "ClaimReason", + "package": "@medusajs/types" + } + }, + { + "id": 6793, + "name": "images", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "reflection", + "declaration": { + "id": 6794, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 6795, + "name": "url", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6796, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6795, + 6796 + ] + } + ] + } + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6792, + 6793 + ] + } + ] + } + } + ] + } + } + }, + { + "id": 6797, + "name": "additional_items", "variant": "declaration", "kind": 1024, "flags": { @@ -29820,14 +32277,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6759, + "target": 7125, "name": "BaseOrderBundledItemActionsDTO", "package": "@medusajs/types" } } }, { - "id": 6558, + "id": 6798, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -29855,7 +32312,7 @@ "typeArguments": [ { "type": "reference", - "target": 6165, + "target": 6411, "name": "CreateOrderShippingMethodDTO", "package": "@medusajs/types" }, @@ -29872,11 +32329,13 @@ } }, { - "id": 6559, + "id": 6799, "name": "return_shipping", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { "type": "union", "types": [ @@ -29893,7 +32352,7 @@ "typeArguments": [ { "type": "reference", - "target": 6165, + "target": 6411, "name": "CreateOrderShippingMethodDTO", "package": "@medusajs/types" }, @@ -29909,8 +32368,8 @@ } }, { - "id": 6560, - "name": "difference_due", + "id": 6800, + "name": "refund_amount", "variant": "declaration", "kind": 1024, "flags": { @@ -29918,26 +32377,13 @@ }, "type": { "type": "reference", - "target": 6707, + "target": 7072, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 6561, - "name": "allow_backorder", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 6562, + "id": 6801, "name": "no_notification", "variant": "declaration", "kind": 1024, @@ -29954,44 +32400,45 @@ { "title": "Properties", "children": [ - 6563, - 6564, - 6565, - 6566, - 6567, - 6568, - 6569, - 6570, - 6571, - 6572, - 6557, - 6558, - 6559, - 6560, - 6561, - 6562 + 6802, + 6803, + 6804, + 6805, + 6806, + 6807, + 6808, + 6809, + 6810, + 6811, + 6789, + 6790, + 6797, + 6798, + 6799, + 6800, + 6801 ] } ], "extendedTypes": [ { "type": "reference", - "target": 6748, + "target": 7113, "name": "BaseOrderBundledActionsDTO", "package": "@medusajs/types" } ] }, { - "id": 6521, - "name": "ReceiveOrderReturnDTO", + "id": 6918, + "name": "CancelOrderClaimDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6530, - "name": "claim_id", + "id": 6926, + "name": "return_id", "variant": "declaration", "kind": 1024, "flags": { @@ -30005,11 +32452,11 @@ "inheritedFrom": { "type": "reference", "target": -1, - "name": "Omit.claim_id" + "name": "Omit.return_id" } }, { - "id": 6531, + "id": 6925, "name": "exchange_id", "variant": "declaration", "kind": 1024, @@ -30028,7 +32475,7 @@ } }, { - "id": 6524, + "id": 6920, "name": "description", "variant": "declaration", "kind": 1024, @@ -30047,7 +32494,7 @@ } }, { - "id": 6529, + "id": 6927, "name": "internal_note", "variant": "declaration", "kind": 1024, @@ -30075,7 +32522,7 @@ } }, { - "id": 6527, + "id": 6923, "name": "reference", "variant": "declaration", "kind": 1024, @@ -30094,7 +32541,7 @@ } }, { - "id": 6528, + "id": 6924, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -30113,7 +32560,7 @@ } }, { - "id": 6526, + "id": 6922, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -30141,7 +32588,7 @@ } }, { - "id": 6525, + "id": 6921, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -30184,24 +32631,8 @@ } }, { - "id": 6522, - "name": "items", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6759, - "name": "BaseOrderBundledItemActionsDTO", - "package": "@medusajs/types" - } - } - }, - { - "id": 6523, - "name": "return_id", + "id": 6919, + "name": "claim_id", "variant": "declaration", "kind": 1024, "flags": {}, @@ -30212,7 +32643,7 @@ "overwrites": { "type": "reference", "target": -1, - "name": "Omit.return_id" + "name": "Omit.claim_id" } } ], @@ -30220,16 +32651,15 @@ { "title": "Properties", "children": [ - 6530, - 6531, - 6524, - 6529, - 6527, - 6528, - 6526, - 6525, - 6522, - 6523 + 6926, + 6925, + 6920, + 6927, + 6923, + 6924, + 6922, + 6921, + 6919 ] } ], @@ -30243,7 +32673,7 @@ "typeArguments": [ { "type": "reference", - "target": 6748, + "target": 7113, "name": "BaseOrderBundledActionsDTO", "package": "@medusajs/types" }, @@ -30258,75 +32688,208 @@ ] }, { - "id": 6447, - "name": "CreateOrderReturnReasonDTO", + "id": 6827, + "name": "CreateOrderExchangeDTO", "variant": "declaration", "kind": 256, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "ORDER bundled action flows" - } - ] - }, "children": [ { - "id": 6448, - "name": "value", + "id": 6834, + "name": "order_id", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isInherited": true + }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7114, + "name": "BaseOrderBundledActionsDTO.order_id" } }, { - "id": 6449, - "name": "label", + "id": 6835, + "name": "return_id", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7115, + "name": "BaseOrderBundledActionsDTO.return_id" + } + }, + { + "id": 6836, + "name": "claim_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7116, + "name": "BaseOrderBundledActionsDTO.claim_id" + } + }, + { + "id": 6837, + "name": "exchange_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7117, + "name": "BaseOrderBundledActionsDTO.exchange_id" } }, { - "id": 6450, + "id": 6838, "name": "description", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7118, + "name": "BaseOrderBundledActionsDTO.description" + } + }, + { + "id": 6839, + "name": "internal_note", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 7119, + "name": "BaseOrderBundledActionsDTO.internal_note" + } + }, + { + "id": 6840, + "name": "reference", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7120, + "name": "BaseOrderBundledActionsDTO.reference" } }, { - "id": 6451, - "name": "parent_return_reason_id", + "id": 6841, + "name": "reference_id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 7121, + "name": "BaseOrderBundledActionsDTO.reference_id" } }, { - "id": 6452, + "id": 6842, + "name": "created_by", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 7122, + "name": "BaseOrderBundledActionsDTO.created_by" + } + }, + { + "id": 6843, "name": "metadata", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { "type": "union", @@ -30355,6 +32918,154 @@ "package": "typescript" } ] + }, + "inheritedFrom": { + "type": "reference", + "target": 7123, + "name": "BaseOrderBundledActionsDTO.metadata" + } + }, + { + "id": 6828, + "name": "additional_items", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 7125, + "name": "BaseOrderBundledItemActionsDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 6829, + "name": "shipping_methods", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + { + "type": "array", + "elementType": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6411, + "name": "CreateOrderShippingMethodDTO", + "package": "@medusajs/types" + }, + { + "type": "literal", + "value": "order_id" + } + ], + "name": "Omit", + "package": "typescript" + } + } + ] + } + }, + { + "id": 6830, + "name": "return_shipping", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6411, + "name": "CreateOrderShippingMethodDTO", + "package": "@medusajs/types" + }, + { + "type": "literal", + "value": "order_id" + } + ], + "name": "Omit", + "package": "typescript" + } + ] + } + }, + { + "id": 6831, + "name": "difference_due", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 7072, + "name": "BigNumberInput", + "package": "@medusajs/types" + } + }, + { + "id": 6832, + "name": "allow_backorder", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 6833, + "name": "no_notification", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "boolean" } } ], @@ -30362,81 +33073,200 @@ { "title": "Properties", "children": [ - 6448, - 6449, - 6450, - 6451, - 6452 + 6834, + 6835, + 6836, + 6837, + 6838, + 6839, + 6840, + 6841, + 6842, + 6843, + 6828, + 6829, + 6830, + 6831, + 6832, + 6833 ] } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 7113, + "name": "BaseOrderBundledActionsDTO", + "package": "@medusajs/types" + } ] }, { - "id": 6456, - "name": "UpdateOrderReturnReasonDTO", + "id": 6928, + "name": "CancelOrderExchangeDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6457, - "name": "id", + "id": 6936, + "name": "return_id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.return_id" } }, { - "id": 6458, - "name": "label", + "id": 6935, + "name": "claim_id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.claim_id" } }, { - "id": 6459, - "name": "value", + "id": 6930, + "name": "description", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.description" } }, { - "id": 6460, - "name": "description", + "id": 6937, + "name": "internal_note", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.internal_note" + } + }, + { + "id": 6933, + "name": "reference", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.reference" } }, { - "id": 6461, + "id": 6934, + "name": "reference_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.reference_id" + } + }, + { + "id": 6932, + "name": "created_by", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.created_by" + } + }, + { + "id": 6931, "name": "metadata", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "type": { "type": "union", @@ -30465,6 +33295,27 @@ "package": "typescript" } ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.metadata" + } + }, + { + "id": 6929, + "name": "exchange_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "Omit.exchange_id" } } ], @@ -30472,65 +33323,591 @@ { "title": "Properties", "children": [ - 6457, - 6458, - 6459, - 6460, - 6461 + 6936, + 6935, + 6930, + 6937, + 6933, + 6934, + 6932, + 6931, + 6929 ] } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 7113, + "name": "BaseOrderBundledActionsDTO", + "package": "@medusajs/types" + }, + { + "type": "literal", + "value": "order_id" + } + ], + "name": "Omit", + "package": "typescript" + } ] }, { - "id": 6453, - "name": "UpdateOrderReturnReasonWithSelectorDTO", + "id": 6907, + "name": "ReceiveOrderReturnDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6454, - "name": "selector", + "id": 6915, + "name": "claim_id", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, - "typeArguments": [ - { - "type": "reference", - "target": 6431, - "name": "OrderReturnReasonDTO", - "package": "@medusajs/types" - } - ], - "name": "Partial", - "package": "typescript" + "target": -1, + "name": "Omit.claim_id" } }, { - "id": 6455, - "name": "data", + "id": 6916, + "name": "exchange_id", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, - "typeArguments": [ - { - "type": "reference", - "target": 6456, - "name": "UpdateOrderReturnReasonDTO", - "package": "@medusajs/types" - } + "target": -1, + "name": "Omit.exchange_id" + } + }, + { + "id": 6910, + "name": "description", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.description" + } + }, + { + "id": 6917, + "name": "internal_note", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.internal_note" + } + }, + { + "id": 6913, + "name": "reference", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.reference" + } + }, + { + "id": 6914, + "name": "reference_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.reference_id" + } + }, + { + "id": 6912, + "name": "created_by", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.created_by" + } + }, + { + "id": 6911, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": -1, + "name": "Omit.metadata" + } + }, + { + "id": 6908, + "name": "items", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 7125, + "name": "BaseOrderBundledItemActionsDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 6909, + "name": "return_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "overwrites": { + "type": "reference", + "target": -1, + "name": "Omit.return_id" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6915, + 6916, + 6910, + 6917, + 6913, + 6914, + 6912, + 6911, + 6908, + 6909 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Omit" + }, + "typeArguments": [ + { + "type": "reference", + "target": 7113, + "name": "BaseOrderBundledActionsDTO", + "package": "@medusajs/types" + }, + { + "type": "literal", + "value": "order_id" + } + ], + "name": "Omit", + "package": "typescript" + } + ] + }, + { + "id": 6733, + "name": "CreateOrderReturnReasonDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "ORDER bundled action flows" + } + ] + }, + "children": [ + { + "id": 6734, + "name": "value", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6735, + "name": "label", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6736, + "name": "description", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6737, + "name": "parent_return_reason_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6738, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6734, + 6735, + 6736, + 6737, + 6738 + ] + } + ] + }, + { + "id": 6742, + "name": "UpdateOrderReturnReasonDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 6743, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6744, + "name": "label", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6745, + "name": "value", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6746, + "name": "description", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 6747, + "name": "metadata", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 6743, + 6744, + 6745, + 6746, + 6747 + ] + } + ] + }, + { + "id": 6739, + "name": "UpdateOrderReturnReasonWithSelectorDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 6740, + "name": "selector", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6715, + "name": "OrderReturnReasonDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + }, + { + "id": 6741, + "name": "data", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6742, + "name": "UpdateOrderReturnReasonDTO", + "package": "@medusajs/types" + } ], "name": "Partial", "package": "typescript" @@ -30541,14 +33918,14 @@ { "title": "Properties", "children": [ - 6454, - 6455 + 6740, + 6741 ] } ] }, { - "id": 4959, + "id": 5003, "name": "IOrderModuleService", "variant": "declaration", "kind": 256, @@ -30563,14 +33940,14 @@ }, "children": [ { - "id": 4960, + "id": 5004, "name": "retrieveOrder", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4961, + "id": 5005, "name": "retrieveOrder", "variant": "signature", "kind": 4096, @@ -30605,7 +33982,7 @@ }, "parameters": [ { - "id": 4962, + "id": 5006, "name": "orderId", "variant": "param", "kind": 32768, @@ -30624,7 +34001,7 @@ } }, { - "id": 4963, + "id": 5007, "name": "config", "variant": "param", "kind": 32768, @@ -30657,11 +34034,11 @@ }, "type": { "type": "reference", - "target": 5571, + "target": 5812, "typeArguments": [ { "type": "reference", - "target": 5584, + "target": 5825, "name": "OrderDTO", "package": "@medusajs/types" } @@ -30671,7 +34048,4035 @@ } }, { - "id": 4964, + "id": 5008, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5825, + "name": "OrderDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5009, + "name": "listOrders", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5010, + "name": "listOrders", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method retrieves a paginated list of {return type}(s) based on optional filters and configuration." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The list of {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst orderDTOs = await orderModuleService.listOrders();\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5011, + "name": "filters", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filters to apply on the retrieved order." + } + ] + }, + "type": { + "type": "reference", + "target": 5901, + "name": "FilterableOrderProps", + "package": "@medusajs/types" + } + }, + { + "id": 5012, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The configurations determining how the order is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a order." + } + ] + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 5825, + "name": "OrderDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5013, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 5825, + "name": "OrderDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5014, + "name": "listAndCountOrders", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5015, + "name": "listAndCountOrders", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method retrieves a paginated list of {return type} along with the total count of available {return type}(s) satisfying the provided filters." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The list of {return type}(s) along with their total count." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.listAndCountOrders();\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5016, + "name": "filters", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filters to apply on the retrieved order." + } + ] + }, + "type": { + "type": "reference", + "target": 5901, + "name": "FilterableOrderProps", + "package": "@medusajs/types" + } + }, + { + "id": 5017, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The configurations determining how the order is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a order." + } + ] + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 5825, + "name": "OrderDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5018, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "tuple", + "elements": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 5825, + "name": "OrderDTO", + "package": "@medusajs/types" + } + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5019, + "name": "retrieveReturn", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5020, + "name": "retrieveReturn", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5021, + "name": "returnId", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5022, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 5910, + "name": "ReturnDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5023, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5910, + "name": "ReturnDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5024, + "name": "listReturns", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5025, + "name": "listReturns", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5026, + "name": "filters", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5901, + "name": "FilterableOrderProps", + "package": "@medusajs/types" + } + }, + { + "id": 5027, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 5910, + "name": "ReturnDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5028, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 5910, + "name": "ReturnDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5029, + "name": "listAndCountReturns", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5030, + "name": "listAndCountReturns", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5031, + "name": "filters", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5901, + "name": "FilterableOrderProps", + "package": "@medusajs/types" + } + }, + { + "id": 5032, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 5910, + "name": "ReturnDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5033, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "tuple", + "elements": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 5910, + "name": "ReturnDTO", + "package": "@medusajs/types" + } + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5034, + "name": "retrieveOrderClaim", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5035, + "name": "retrieveOrderClaim", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5036, + "name": "claimnId", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5037, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 5975, + "name": "OrderClaimDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5038, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5975, + "name": "OrderClaimDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5039, + "name": "listOrderClaims", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5040, + "name": "listOrderClaims", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5041, + "name": "filters", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5901, + "name": "FilterableOrderProps", + "package": "@medusajs/types" + } + }, + { + "id": 5042, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 5975, + "name": "OrderClaimDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5043, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 5975, + "name": "OrderClaimDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5044, + "name": "listAndCountOrderClaims", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5045, + "name": "listAndCountOrderClaims", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5046, + "name": "filters", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5901, + "name": "FilterableOrderProps", + "package": "@medusajs/types" + } + }, + { + "id": 5047, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 5975, + "name": "OrderClaimDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5048, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "tuple", + "elements": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 5975, + "name": "OrderClaimDTO", + "package": "@medusajs/types" + } + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5049, + "name": "retrieveOrderExchange", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5050, + "name": "retrieveOrderExchange", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5051, + "name": "claimnId", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5052, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 6041, + "name": "OrderExchangeDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5053, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6041, + "name": "OrderExchangeDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5054, + "name": "listOrderExchanges", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5055, + "name": "listOrderExchanges", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5056, + "name": "filters", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5901, + "name": "FilterableOrderProps", + "package": "@medusajs/types" + } + }, + { + "id": 5057, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 6041, + "name": "OrderExchangeDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5058, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6041, + "name": "OrderExchangeDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5059, + "name": "listAndCountOrderExchanges", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5060, + "name": "listAndCountOrderExchanges", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5061, + "name": "filters", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5901, + "name": "FilterableOrderProps", + "package": "@medusajs/types" + } + }, + { + "id": 5062, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 6041, + "name": "OrderExchangeDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5063, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "tuple", + "elements": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6041, + "name": "OrderExchangeDTO", + "package": "@medusajs/types" + } + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5064, + "name": "createOrders", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5065, + "name": "createOrders", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method creates {return type}(s)" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The created {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst orderData: CreateOrderDTO[] = [\n {\n currency_code: \"USD\",\n items: [\n {\n title: \"Product Name\",\n quantity: 1,\n unit_price: 1999, // Assuming type is an integer for price in cents\n }\n ]\n }\n];\n\nconst result = await orderModuleService.createOrders(orderData);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5066, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order to be created." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 6107, + "name": "CreateOrderDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 5067, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 5825, + "name": "OrderDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5068, + "name": "createOrders", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method creates {return type}(s)" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The created {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\n// Example execution of the create method of IOrderModuleService\nconst orderData: CreateOrderDTO = {\n currency_code: \"USD\"\n};\n\nconst createdOrder = await orderModuleService.createOrders(orderData);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5069, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order to be created." + } + ] + }, + "type": { + "type": "reference", + "target": 6107, + "name": "CreateOrderDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5070, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5825, + "name": "OrderDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5071, + "name": "updateOrders", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5072, + "name": "updateOrders", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method updates existing {return type}(s)." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst updatedOrders = await orderModuleService.updateOrders([\n {\n id: \"order_id_1\",\n status: \"shipped\"\n },\n {\n id: \"order_id_2\",\n status: \"delivered\"\n }\n]);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5073, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The attributes to update in the order." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 6124, + "name": "UpdateOrderDTO", + "package": "@medusajs/types" + } + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 5825, + "name": "OrderDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5074, + "name": "updateOrders", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method updates existing {return type}(s)." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.updateOrders(\"orderId123\", {\n status: \"shipped\"\n});\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5075, + "name": "orderId", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order's ID." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5076, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The attributes to update in the order." + } + ] + }, + "type": { + "type": "reference", + "target": 6124, + "name": "UpdateOrderDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5077, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5825, + "name": "OrderDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5078, + "name": "updateOrders", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method updates existing {return type}(s)." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.updateOrders(\n { id: \"order-123\" },\n { status: \"completed\" }\n);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5079, + "name": "selector", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Make all properties in T optional" + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5901, + "name": "FilterableOrderProps", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + }, + { + "id": 5080, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The attributes to update in the order." + } + ] + }, + "type": { + "type": "reference", + "target": 6124, + "name": "UpdateOrderDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5081, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 5825, + "name": "OrderDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5082, + "name": "deleteOrders", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5083, + "name": "deleteOrders", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method deletes {return type} by its ID." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.deleteOrders([\"12345abc\", \"67890def\"]);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5084, + "name": "orderIds", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The list of {summary}" + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 5085, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5086, + "name": "deleteOrders", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method deletes {return type} by its ID." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.deleteOrders(\"orderId\");\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5087, + "name": "orderId", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order's ID." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5088, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5089, + "name": "softDeleteOrders", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5090, + "name": "softDeleteOrders", + "variant": "signature", + "kind": 4096, + "flags": {}, + "typeParameters": [ + { + "id": 5091, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" + } + } + ], + "parameters": [ + { + "id": 5092, + "name": "storeIds", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 5093, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 6136, + "typeArguments": [ + { + "type": "reference", + "target": 5091, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "SoftDeleteReturn", + "package": "@medusajs/types" + } + }, + { + "id": 5094, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5095, + "name": "restoreOrders", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5096, + "name": "restoreOrders", + "variant": "signature", + "kind": 4096, + "flags": {}, + "typeParameters": [ + { + "id": 5097, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" + } + } + ], + "parameters": [ + { + "id": 5098, + "name": "storeIds", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 5099, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 6139, + "typeArguments": [ + { + "type": "reference", + "target": 5097, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "RestoreReturn", + "package": "@medusajs/types" + } + }, + { + "id": 5100, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5101, + "name": "listAddresses", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5102, + "name": "listAddresses", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5103, + "name": "filters", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 6142, + "name": "FilterableOrderAddressProps", + "package": "@medusajs/types" + } + }, + { + "id": 5104, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 6146, + "name": "OrderAddressDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5105, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6146, + "name": "OrderAddressDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5106, + "name": "createAddresses", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5107, + "name": "createAddresses", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method creates {return type}(s)" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The created {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.createAddresses([\n {\n first_name: \"John\",\n last_name: \"Doe\",\n address_1: \"123 Main St\",\n city: \"Anytown\",\n country_code: \"US\",\n province: \"AnyState\",\n postal_code: \"12345\"\n }\n]);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5108, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order address to be created." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 6162, + "name": "CreateOrderAddressDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 5109, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6146, + "name": "OrderAddressDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5110, + "name": "createAddresses", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method creates {return type}(s)" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The created {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst orderAddressData: CreateOrderAddressDTO = {\n orderId: '123',\n line1: '123 Main St',\n city: 'Metropolis',\n state: 'NY',\n postalCode: '12345',\n country: 'USA'\n};\n\nconst result = await orderModuleService.createAddresses(orderAddressData);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5111, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order address to be created." + } + ] + }, + "type": { + "type": "reference", + "target": 6162, + "name": "CreateOrderAddressDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5112, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6146, + "name": "OrderAddressDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5113, + "name": "updateAddresses", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5114, + "name": "updateAddresses", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method updates existing {return type}(s)." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst updatedAddress: UpdateOrderAddressDTO[] = [\n {\n id: \"address1\",\n first_name: \"John\",\n last_name: \"Doe\",\n address_1: \"123 Main St\",\n city: \"Anytown\",\n country_code: \"US\",\n province: \"AnyState\",\n postal_code: \"12345\"\n }\n];\n\nconst result = await orderModuleService.updateAddresses(updatedAddress);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5115, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The attributes to update in the order address." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 6175, + "name": "UpdateOrderAddressDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 5116, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6146, + "name": "OrderAddressDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5117, + "name": "updateAddresses", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method updates existing {return type}(s)." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst updateOrderAddressData: UpdateOrderAddressDTO = {\n id: '123',\n address_1: '123 Main St',\n city: 'Metropolis',\n province: 'NY',\n postal_code: '12345',\n};\n\nconst updatedAddress = await orderModuleService.updateAddresses(updateOrderAddressData);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5118, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The attributes to update in the order address." + } + ] + }, + "type": { + "type": "reference", + "target": 6175, + "name": "UpdateOrderAddressDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5119, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6146, + "name": "OrderAddressDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5120, + "name": "deleteAddresses", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5121, + "name": "deleteAddresses", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method deletes {return type} by its ID." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.deleteAddresses([\"your_address_id_1\", \"your_address_id_2\"]);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5122, + "name": "ids", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The list of {summary}" + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 5123, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5124, + "name": "deleteAddresses", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method deletes {return type} by its ID." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.deleteAddresses(\"123456\");\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5125, + "name": "ids", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "{summary}" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5126, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5127, + "name": "retrieveLineItem", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5128, + "name": "retrieveLineItem", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method retrieves a {return type} by its ID." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The retrieved {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.retrieveLineItem(\"12345\");\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5129, + "name": "itemId", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The item's ID." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5130, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The configurations determining how the order line item is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a order line item." + } + ] + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 6189, + "name": "OrderLineItemDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5131, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6189, + "name": "OrderLineItemDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5132, + "name": "listLineItems", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5133, + "name": "listLineItems", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method retrieves a paginated list of {return type}(s) based on optional filters and configuration." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The list of {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst result = await orderModuleService.listLineItems({\n title: \"Sample Product Title\",\n});\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5134, + "name": "filters", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filters to apply on the retrieved order line item." + } + ] + }, + "type": { + "type": "reference", + "target": 6247, + "name": "FilterableOrderLineItemProps", + "package": "@medusajs/types" + } + }, + { + "id": 5135, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The configurations determining how the order line item is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a order line item." + } + ] + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 6189, + "name": "OrderLineItemDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5136, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6189, + "name": "OrderLineItemDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5137, + "name": "createLineItems", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5138, + "name": "createLineItems", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5139, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 6255, + "name": "CreateOrderLineItemForOrderDTO", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6189, + "name": "OrderLineItemDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5140, + "name": "createLineItems", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5141, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 6255, + "name": "CreateOrderLineItemForOrderDTO", + "package": "@medusajs/types" + } + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6189, + "name": "OrderLineItemDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5142, + "name": "createLineItems", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5143, + "name": "orderId", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5144, + "name": "items", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 6281, + "name": "CreateOrderLineItemDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 5145, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6189, + "name": "OrderLineItemDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5146, + "name": "updateLineItems", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5147, + "name": "updateLineItems", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method updates existing {return type}(s)." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst updateOrderLineItems: UpdateOrderLineItemWithSelectorDTO[] = [\n {\n selector: {\n id: \"line-item-id-1\"\n },\n data: {\n id: \"line-item-id-1\",\n quantity: 2,\n unit_price: 1999\n }\n }\n];\n\nconst updatedLineItems = await orderModuleService.updateLineItems(updateOrderLineItems);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5148, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The attributes to update in the order line item with selector." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 6307, + "name": "UpdateOrderLineItemWithSelectorDTO", + "package": "@medusajs/types" + } + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6189, + "name": "OrderLineItemDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5149, + "name": "updateLineItems", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method updates existing {return type}(s)." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst result = await orderModuleService.updateLineItems(\n { id: \"line-item-id-1\" },\n { quantity: 10 }\n);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5150, + "name": "selector", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Make all properties in T optional" + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6247, + "name": "FilterableOrderLineItemProps", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + }, + { + "id": 5151, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Make all properties in T optional" + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6310, + "name": "UpdateOrderLineItemDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + }, + { + "id": 5152, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6189, + "name": "OrderLineItemDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5153, + "name": "updateLineItems", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method updates existing {return type}(s)." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst result = await orderModuleService.updateLineItems(\n \"lineIdExample\",\n {\n quantity: 10,\n }\n);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5154, + "name": "lineId", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The line's ID." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5155, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Make all properties in T optional" + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6310, + "name": "UpdateOrderLineItemDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + }, + { + "id": 5156, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6189, + "name": "OrderLineItemDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5157, + "name": "deleteLineItems", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5158, + "name": "deleteLineItems", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5159, + "name": "itemIds", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 5160, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5161, + "name": "deleteLineItems", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5162, + "name": "itemIds", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5163, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5164, + "name": "deleteLineItems", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5165, + "name": "selector", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6247, + "name": "FilterableOrderLineItemProps", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + }, + { + "id": 5166, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5167, + "name": "updateOrderItem", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5168, + "name": "updateOrderItem", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method updates existing {return type}(s)." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.updateOrderItem(\n { id: \"item123\" },\n { quantity: \"2\" }\n);\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5169, + "name": "selector", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Make all properties in T optional" + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6337, + "name": "FilterableOrderShippingMethodProps", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + }, + { + "id": 5170, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The attributes to update in the order item." + } + ] + }, + "type": { + "type": "reference", + "target": 6344, + "name": "UpdateOrderItemDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5171, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -30688,7 +38093,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -30702,28 +38107,22 @@ }, "typeArguments": [ { - "type": "reference", - "target": 5584, - "name": "OrderDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6356, + "name": "OrderItemDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 4965, - "name": "listOrders", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 4966, - "name": "listOrders", + "id": 5172, + "name": "updateOrderItem", "variant": "signature", "kind": 4096, "flags": {}, @@ -30731,7 +38130,7 @@ "summary": [ { "kind": "text", - "text": "This method retrieves a paginated list of {return type}(s) based on optional filters and configuration." + "text": "This method updates existing {return type}(s)." } ], "blockTags": [ @@ -30740,7 +38139,7 @@ "content": [ { "kind": "text", - "text": "The list of {return type}(s)." + "text": "The updated {return type}(s)." } ] }, @@ -30749,7 +38148,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst orderDTOs = await orderModuleService.listOrders();\n```" + "text": "```typescript\nawait orderModuleService.updateOrderItem(\n 'orderDetailId123',\n {\n item_id: 'item123',\n quantity: 2\n }\n);\n```" } ] } @@ -30757,77 +38156,58 @@ }, "parameters": [ { - "id": 4967, - "name": "filters", + "id": 5173, + "name": "orderDetailId", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The filters to apply on the retrieved order." + "text": "The order detail's ID." } ] }, "type": { - "type": "reference", - "target": 5659, - "name": "FilterableOrderProps", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } }, { - "id": 4968, - "name": "config", + "id": 5174, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The configurations determining how the order is retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, - { - "kind": "text", - "text": " or " - }, - { - "kind": "code", - "text": "`relations`" - }, - { - "kind": "text", - "text": ", accept the\nattributes or relations associated with a order." + "text": "Make all properties in T optional" } ] }, "type": { "type": "reference", - "target": 5571, + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, "typeArguments": [ { "type": "reference", - "target": 5584, - "name": "OrderDTO", + "target": 6344, + "name": "UpdateOrderItemDTO", "package": "@medusajs/types" } ], - "name": "FindConfig", - "package": "@medusajs/types" + "name": "Partial", + "package": "typescript" } }, { - "id": 4969, + "id": 5175, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -30844,7 +38224,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -30858,31 +38238,19 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 5584, - "name": "OrderDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 6356, + "name": "OrderItemDTO", + "package": "@medusajs/types" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 4970, - "name": "listAndCountOrders", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 4971, - "name": "listAndCountOrders", + "id": 5176, + "name": "updateOrderItem", "variant": "signature", "kind": 4096, "flags": {}, @@ -30890,7 +38258,7 @@ "summary": [ { "kind": "text", - "text": "This method retrieves a paginated list of {return type} along with the total count of available {return type}(s) satisfying the provided filters." + "text": "This method updates existing {return type}(s)." } ], "blockTags": [ @@ -30899,7 +38267,7 @@ "content": [ { "kind": "text", - "text": "The list of {return type}(s) along with their total count." + "text": "The updated {return type}(s)." } ] }, @@ -30908,7 +38276,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nawait orderModuleService.listAndCountOrders();\n```" + "text": "```typescript\nawait orderModuleService.updateOrderItem(\n \"order-detail-id\",\n {\n quantity: 2,\n item_id: 'item123',\n }\n);\n```" } ] } @@ -30916,31 +38284,58 @@ }, "parameters": [ { - "id": 4972, - "name": "filters", + "id": 5177, + "name": "orderDetailIdOrDataOrSelector", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The filters to apply on the retrieved order." + "text": "The string | partial< order item d t o> | update order item with selector details." } ] }, "type": { - "type": "reference", - "target": 5659, - "name": "FilterableOrderProps", - "package": "@medusajs/types" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6356, + "name": "OrderItemDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + }, + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6377, + "name": "UpdateOrderItemWithSelectorDTO", + "package": "@medusajs/types" + } + } + ] } }, { - "id": 4973, - "name": "config", + "id": 5178, + "name": "data", "variant": "param", "kind": 32768, "flags": { @@ -30950,43 +38345,41 @@ "summary": [ { "kind": "text", - "text": "The configurations determining how the order is retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, - { - "kind": "text", - "text": " or " - }, - { - "kind": "code", - "text": "`relations`" - }, - { - "kind": "text", - "text": ", accept the\nattributes or relations associated with a order." + "text": "{summary}" } ] }, "type": { - "type": "reference", - "target": 5571, - "typeArguments": [ + "type": "union", + "types": [ { "type": "reference", - "target": 5584, - "name": "OrderDTO", + "target": 6344, + "name": "UpdateOrderItemDTO", "package": "@medusajs/types" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6344, + "name": "UpdateOrderItemDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" } - ], - "name": "FindConfig", - "package": "@medusajs/types" + ] } }, { - "id": 4974, + "id": 5179, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -31003,7 +38396,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -31017,20 +38410,22 @@ }, "typeArguments": [ { - "type": "tuple", - "elements": [ + "type": "union", + "types": [ + { + "type": "reference", + "target": 6356, + "name": "OrderItemDTO", + "package": "@medusajs/types" + }, { "type": "array", "elementType": { "type": "reference", - "target": 5584, - "name": "OrderDTO", + "target": 6356, + "name": "OrderItemDTO", "package": "@medusajs/types" } - }, - { - "type": "intrinsic", - "name": "number" } ] } @@ -31042,134 +38437,106 @@ ] }, { - "id": 4975, - "name": "retrieveReturn", + "id": 5180, + "name": "listShippingMethods", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4976, - "name": "retrieveReturn", + "id": 5181, + "name": "listShippingMethods", "variant": "signature", "kind": 4096, "flags": {}, - "parameters": [ - { - "id": 4977, - "name": "returnId", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method retrieves a paginated list of {return type}(s) based on optional filters and configuration." } - }, - { - "id": 4978, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5571, - "typeArguments": [ + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ { - "type": "reference", - "target": 5668, - "name": "ReturnDTO", - "package": "@medusajs/types" + "kind": "text", + "text": "The list of {return type}(s)." } - ], - "name": "FindConfig", - "package": "@medusajs/types" - } - }, - { - "id": 4979, - "name": "sharedContext", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true + ] }, - "type": { - "type": "reference", - "target": 5647, - "name": "Context", - "package": "@medusajs/types" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ { - "type": "reference", - "target": 5668, - "name": "ReturnDTO", - "package": "@medusajs/types" + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.listShippingMethods(\n { order_id: \"order_123\" },\n { limit: 10, offset: 0 }\n);\n```" + } + ] } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 4980, - "name": "listReturns", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ - { - "id": 4981, - "name": "listReturns", - "variant": "signature", - "kind": 4096, - "flags": {}, + ] + }, "parameters": [ { - "id": 4982, + "id": 5182, "name": "filters", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filters to apply on the retrieved order shipping method." + } + ] }, "type": { "type": "reference", - "target": 5659, - "name": "FilterableOrderProps", + "target": 6337, + "name": "FilterableOrderShippingMethodProps", "package": "@medusajs/types" } }, { - "id": 4983, + "id": 5183, "name": "config", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The configurations determining how the order shipping method is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a order shipping method." + } + ] }, "type": { "type": "reference", - "target": 5571, + "target": 5812, "typeArguments": [ { "type": "reference", - "target": 5668, - "name": "ReturnDTO", + "target": 6380, + "name": "OrderShippingMethodDTO", "package": "@medusajs/types" } ], @@ -31178,16 +38545,24 @@ } }, { - "id": 4984, + "id": 5184, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -31204,8 +38579,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 5668, - "name": "ReturnDTO", + "target": 6380, + "name": "OrderShippingMethodDTO", "package": "@medusajs/types" } } @@ -31217,69 +38592,29 @@ ] }, { - "id": 4985, - "name": "listAndCountReturns", + "id": 5185, + "name": "createShippingMethods", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 4986, - "name": "listAndCountReturns", + "id": 5186, + "name": "createShippingMethods", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4987, - "name": "filters", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5659, - "name": "FilterableOrderProps", - "package": "@medusajs/types" - } - }, - { - "id": 4988, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5571, - "typeArguments": [ - { - "type": "reference", - "target": 5668, - "name": "ReturnDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" - } - }, - { - "id": 4989, - "name": "sharedContext", + "id": 5187, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "reference", - "target": 5647, - "name": "Context", + "target": 6411, + "name": "CreateOrderShippingMethodDTO", "package": "@medusajs/types" } } @@ -31292,91 +38627,37 @@ }, "typeArguments": [ { - "type": "tuple", - "elements": [ - { - "type": "array", - "elementType": { - "type": "reference", - "target": 5668, - "name": "ReturnDTO", - "package": "@medusajs/types" - } - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "reference", + "target": 6380, + "name": "OrderShippingMethodDTO", + "package": "@medusajs/types" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 4990, - "name": "retrieveOrderClaim", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 4991, - "name": "retrieveOrderClaim", + "id": 5188, + "name": "createShippingMethods", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4992, - "name": "claimnId", + "id": 5189, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 4993, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5571, - "typeArguments": [ - { - "type": "reference", - "target": 5731, - "name": "OrderClaimDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" - } - }, - { - "id": 4994, - "name": "sharedContext", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5647, - "name": "Context", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6411, + "name": "CreateOrderShippingMethodDTO", + "package": "@medusajs/types" + } } } ], @@ -31388,72 +38669,55 @@ }, "typeArguments": [ { - "type": "reference", - "target": 5731, - "name": "OrderClaimDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6380, + "name": "OrderShippingMethodDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 4995, - "name": "listOrderClaims", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 4996, - "name": "listOrderClaims", + "id": 5190, + "name": "createShippingMethods", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 4997, - "name": "filters", + "id": 5191, + "name": "orderId", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "reference", - "target": 5659, - "name": "FilterableOrderProps", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } }, { - "id": 4998, - "name": "config", + "id": 5192, + "name": "methods", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "reference", - "target": 5571, - "typeArguments": [ - { - "type": "reference", - "target": 5731, - "name": "OrderClaimDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6411, + "name": "CreateOrderShippingMethodDTO", + "package": "@medusajs/types" + } } }, { - "id": 4999, + "id": 5193, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -31462,7 +38726,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -31479,8 +38743,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 5731, - "name": "OrderClaimDTO", + "target": 6380, + "name": "OrderShippingMethodDTO", "package": "@medusajs/types" } } @@ -31492,59 +38756,35 @@ ] }, { - "id": 5000, - "name": "listAndCountOrderClaims", + "id": 5194, + "name": "deleteShippingMethods", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5001, - "name": "listAndCountOrderClaims", + "id": 5195, + "name": "deleteShippingMethods", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5002, - "name": "filters", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5659, - "name": "FilterableOrderProps", - "package": "@medusajs/types" - } - }, - { - "id": 5003, - "name": "config", + "id": 5196, + "name": "methodIds", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "reference", - "target": 5571, - "typeArguments": [ - { - "type": "reference", - "target": 5731, - "name": "OrderClaimDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 5004, + "id": 5197, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -31553,7 +38793,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -31567,47 +38807,24 @@ }, "typeArguments": [ { - "type": "tuple", - "elements": [ - { - "type": "array", - "elementType": { - "type": "reference", - "target": 5731, - "name": "OrderClaimDTO", - "package": "@medusajs/types" - } - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "void" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5005, - "name": "retrieveOrderExchange", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5006, - "name": "retrieveOrderExchange", + "id": 5198, + "name": "deleteShippingMethods", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5007, - "name": "claimnId", + "id": 5199, + "name": "methodIds", "variant": "param", "kind": 32768, "flags": {}, @@ -31617,8 +38834,8 @@ } }, { - "id": 5008, - "name": "config", + "id": 5200, + "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { @@ -31626,21 +38843,61 @@ }, "type": { "type": "reference", - "target": 5571, + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5201, + "name": "deleteShippingMethods", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5202, + "name": "selector", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, "typeArguments": [ { "type": "reference", - "target": 5796, - "name": "OrderExchangeDTO", + "target": 6337, + "name": "FilterableOrderShippingMethodProps", "package": "@medusajs/types" } ], - "name": "FindConfig", - "package": "@medusajs/types" + "name": "Partial", + "package": "typescript" } }, { - "id": 5009, + "id": 5203, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -31649,7 +38906,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -31663,10 +38920,8 @@ }, "typeArguments": [ { - "type": "reference", - "target": 5796, - "name": "OrderExchangeDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -31676,50 +38931,108 @@ ] }, { - "id": 5010, - "name": "listOrderExchanges", + "id": 5204, + "name": "listLineItemAdjustments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5011, - "name": "listOrderExchanges", + "id": 5205, + "name": "listLineItemAdjustments", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method retrieves a paginated list of {return type}(s) based on optional filters and configuration." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The list of {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst orderLineItemAdjustments = await orderModuleService.listLineItemAdjustments({ item_id: \"order-line-item-123\" });\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 5012, + "id": 5206, "name": "filters", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filters to apply on the retrieved order line item adjustment." + } + ] }, "type": { "type": "reference", - "target": 5659, - "name": "FilterableOrderProps", + "target": 6424, + "name": "FilterableOrderLineItemAdjustmentProps", "package": "@medusajs/types" } }, { - "id": 5013, + "id": 5207, "name": "config", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The configurations determining how the order line item adjustment is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a order line item adjustment." + } + ] + }, "type": { "type": "reference", - "target": 5571, + "target": 5812, "typeArguments": [ { "type": "reference", - "target": 5796, - "name": "OrderExchangeDTO", + "target": 6432, + "name": "OrderLineItemAdjustmentDTO", "package": "@medusajs/types" } ], @@ -31728,16 +39041,24 @@ } }, { - "id": 5014, + "id": 5208, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -31754,8 +39075,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 5796, - "name": "OrderExchangeDTO", + "target": 6432, + "name": "OrderLineItemAdjustmentDTO", "package": "@medusajs/types" } } @@ -31767,69 +39088,74 @@ ] }, { - "id": 5015, - "name": "listAndCountOrderExchanges", + "id": 5209, + "name": "createLineItemAdjustments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5016, - "name": "listAndCountOrderExchanges", + "id": 5210, + "name": "createLineItemAdjustments", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5017, - "name": "filters", + "id": 5211, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "reference", - "target": 5659, - "name": "FilterableOrderProps", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6444, + "name": "CreateOrderAdjustmentDTO", + "package": "@medusajs/types" + } } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" }, - { - "id": 5018, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5571, - "typeArguments": [ - { - "type": "reference", - "target": 5796, - "name": "OrderExchangeDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6432, + "name": "OrderLineItemAdjustmentDTO", + "package": "@medusajs/types" + } } - }, + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5212, + "name": "createLineItemAdjustments", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ { - "id": 5019, - "name": "sharedContext", + "id": 5213, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "reference", - "target": 5647, - "name": "Context", + "target": 6444, + "name": "CreateOrderAdjustmentDTO", "package": "@medusajs/types" } } @@ -31842,117 +39168,51 @@ }, "typeArguments": [ { - "type": "tuple", - "elements": [ - { - "type": "array", - "elementType": { - "type": "reference", - "target": 5796, - "name": "OrderExchangeDTO", - "package": "@medusajs/types" - } - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "array", + "elementType": { + "type": "reference", + "target": 6432, + "name": "OrderLineItemAdjustmentDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5020, - "name": "createOrders", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5021, - "name": "createOrders", + "id": 5214, + "name": "createLineItemAdjustments", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method creates {return type}(s)" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "The created {return type}(s)." - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst orderData: CreateOrderDTO[] = [\n {\n currency_code: \"USD\",\n items: [\n {\n title: \"Product Name\",\n quantity: 1,\n unit_price: 1999, // Assuming type is an integer for price in cents\n }\n ]\n }\n];\n\nconst result = await orderModuleService.createOrders(orderData);\n```" - } - ] - } - ] - }, "parameters": [ { - "id": 5022, - "name": "data", + "id": 5215, + "name": "orderId", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order to be created." - } - ] - }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 5861, - "name": "CreateOrderDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "string" } }, { - "id": 5023, - "name": "sharedContext", + "id": 5216, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, + "flags": {}, "type": { - "type": "reference", - "target": 5647, - "name": "Context", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6444, + "name": "CreateOrderAdjustmentDTO", + "package": "@medusajs/types" + } } } ], @@ -31967,8 +39227,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 5584, - "name": "OrderDTO", + "target": 6432, + "name": "OrderLineItemAdjustmentDTO", "package": "@medusajs/types" } } @@ -31976,10 +39236,19 @@ "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5217, + "name": "setLineItemAdjustments", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5024, - "name": "createOrders", + "id": 5218, + "name": "setLineItemAdjustments", "variant": "signature", "kind": 4096, "flags": {}, @@ -31987,7 +39256,7 @@ "summary": [ { "kind": "text", - "text": "This method creates {return type}(s)" + "text": "This method Represents the completion of an asynchronous operation" } ], "blockTags": [ @@ -31996,7 +39265,7 @@ "content": [ { "kind": "text", - "text": "The created {return type}(s)." + "text": "Represents the completion of an asynchronous operation" } ] }, @@ -32005,7 +39274,7 @@ "content": [ { "kind": "code", - "text": "```typescript\n// Example execution of the create method of IOrderModuleService\nconst orderData: CreateOrderDTO = {\n currency_code: \"USD\"\n};\n\nconst createdOrder = await orderModuleService.createOrders(orderData);\n```" + "text": "```typescript\nconst adjustmentsData: UpsertOrderLineItemAdjustmentDTO[] = [{\n item_id: \"item123\",\n amount: 1000\n}];\n\nconst result = await orderModuleService.setLineItemAdjustments(\"order456\", adjustmentsData);\n```" } ] } @@ -32013,7 +39282,26 @@ }, "parameters": [ { - "id": 5025, + "id": 5219, + "name": "orderId", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order's ID." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5220, "name": "data", "variant": "param", "kind": 32768, @@ -32022,19 +39310,22 @@ "summary": [ { "kind": "text", - "text": "The order to be created." + "text": "The upsert order line item adjustment details." } ] }, "type": { - "type": "reference", - "target": 5861, - "name": "CreateOrderDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6450, + "name": "UpsertOrderLineItemAdjustmentDTO", + "package": "@medusajs/types" + } } }, { - "id": 5026, + "id": 5221, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -32051,7 +39342,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -32065,10 +39356,13 @@ }, "typeArguments": [ { - "type": "reference", - "target": 5584, - "name": "OrderDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6432, + "name": "OrderLineItemAdjustmentDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -32078,70 +39372,47 @@ ] }, { - "id": 5027, - "name": "updateOrders", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ - { - "id": 5028, - "name": "updateOrders", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method updates existing {return type}(s)." - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "The updated {return type}(s)." - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst updatedOrders = await orderModuleService.updateOrders([\n {\n id: \"order_id_1\",\n status: \"shipped\"\n },\n {\n id: \"order_id_2\",\n status: \"delivered\"\n }\n]);\n```" - } - ] - } - ] - }, + "id": 5222, + "name": "deleteLineItemAdjustments", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5223, + "name": "deleteLineItemAdjustments", + "variant": "signature", + "kind": 4096, + "flags": {}, "parameters": [ { - "id": 5029, - "name": "data", + "id": 5224, + "name": "adjustmentIds", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The attributes to update in the order." - } - ] - }, "type": { "type": "array", "elementType": { - "type": "reference", - "target": 5878, - "name": "UpdateOrderDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } } + }, + { + "id": 5225, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } } ], "type": { @@ -32152,13 +39423,8 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 5584, - "name": "OrderDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -32166,99 +39432,97 @@ } }, { - "id": 5030, - "name": "updateOrders", + "id": 5226, + "name": "deleteLineItemAdjustments", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method updates existing {return type}(s)." - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "The updated {return type}(s)." - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.updateOrders(\"orderId123\", {\n status: \"shipped\"\n});\n```" - } - ] - } - ] - }, "parameters": [ { - "id": 5031, - "name": "orderId", + "id": 5227, + "name": "adjustmentIds", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order's ID." - } - ] - }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 5032, - "name": "data", + "id": 5228, + "name": "sharedContext", "variant": "param", "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The attributes to update in the order." - } - ] + "flags": { + "isOptional": true }, "type": { "type": "reference", - "target": 5878, - "name": "UpdateOrderDTO", + "target": 5889, + "name": "Context", "package": "@medusajs/types" } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5229, + "name": "deleteLineItemAdjustments", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5230, + "name": "selector", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6432, + "name": "OrderLineItemAdjustmentDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } }, { - "id": 5033, + "id": 5231, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -32272,19 +39536,26 @@ }, "typeArguments": [ { - "type": "reference", - "target": 5584, - "name": "OrderDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "void" } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5232, + "name": "listShippingMethodAdjustments", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5034, - "name": "updateOrders", + "id": 5233, + "name": "listShippingMethodAdjustments", "variant": "signature", "kind": 4096, "flags": {}, @@ -32292,7 +39563,7 @@ "summary": [ { "kind": "text", - "text": "This method updates existing {return type}(s)." + "text": "This method retrieves a paginated list of {return type}(s) based on optional filters and configuration." } ], "blockTags": [ @@ -32301,7 +39572,7 @@ "content": [ { "kind": "text", - "text": "The updated {return type}(s)." + "text": "The list of {return type}(s)." } ] }, @@ -32310,7 +39581,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nawait orderModuleService.updateOrders(\n { id: \"order-123\" },\n { status: \"completed\" }\n);\n```" + "text": "```typescript\nconst result = await orderModuleService.listShippingMethodAdjustments({\n id: \"12345\",\n});\n```" } ] } @@ -32318,8 +39589,8 @@ }, "parameters": [ { - "id": 5035, - "name": "selector", + "id": 5234, + "name": "filters", "variant": "param", "kind": 32768, "flags": {}, @@ -32327,51 +39598,66 @@ "summary": [ { "kind": "text", - "text": "Make all properties in T optional" + "text": "The filters to apply on the retrieved order shipping method adjustment." } ] }, "type": { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, - "typeArguments": [ - { - "type": "reference", - "target": 5659, - "name": "FilterableOrderProps", - "package": "@medusajs/types" - } - ], - "name": "Partial", - "package": "typescript" + "target": 6458, + "name": "FilterableOrderShippingMethodAdjustmentProps", + "package": "@medusajs/types" } }, { - "id": 5036, - "name": "data", + "id": 5235, + "name": "config", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The attributes to update in the order." + "text": "The configurations determining how the order shipping method adjustment is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a order shipping method adjustment." } ] }, "type": { "type": "reference", - "target": 5878, - "name": "UpdateOrderDTO", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 6466, + "name": "OrderShippingMethodAdjustmentDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", "package": "@medusajs/types" } }, { - "id": 5037, + "id": 5236, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -32388,7 +39674,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -32405,8 +39691,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 5584, - "name": "OrderDTO", + "target": 6466, + "name": "OrderShippingMethodAdjustmentDTO", "package": "@medusajs/types" } } @@ -32418,88 +39704,141 @@ ] }, { - "id": 5038, - "name": "deleteOrders", + "id": 5237, + "name": "createShippingMethodAdjustments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5039, - "name": "deleteOrders", + "id": 5238, + "name": "createShippingMethodAdjustments", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ + "parameters": [ + { + "id": 5239, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 6478, + "name": "CreateOrderShippingMethodAdjustmentDTO", + "package": "@medusajs/types" + } + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ { - "kind": "text", - "text": "This method deletes {return type} by its ID." + "type": "array", + "elementType": { + "type": "reference", + "target": 6466, + "name": "OrderShippingMethodAdjustmentDTO", + "package": "@medusajs/types" + } } ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] - }, + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5240, + "name": "createShippingMethodAdjustments", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5241, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 6478, + "name": "CreateOrderShippingMethodAdjustmentDTO", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.deleteOrders([\"12345abc\", \"67890def\"]);\n```" - } - ] + "type": "reference", + "target": 6466, + "name": "OrderShippingMethodAdjustmentDTO", + "package": "@medusajs/types" } - ] - }, + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5242, + "name": "createShippingMethodAdjustments", + "variant": "signature", + "kind": 4096, + "flags": {}, "parameters": [ { - "id": 5040, - "name": "orderIds", + "id": 5243, + "name": "orderId", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5244, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The list of {summary}" - } - ] - }, "type": { "type": "array", "elementType": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 6478, + "name": "CreateOrderShippingMethodAdjustmentDTO", + "package": "@medusajs/types" } } }, { - "id": 5041, + "id": 5245, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -32513,17 +39852,31 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "array", + "elementType": { + "type": "reference", + "target": 6466, + "name": "OrderShippingMethodAdjustmentDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5246, + "name": "setShippingMethodAdjustments", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5042, - "name": "deleteOrders", + "id": 5247, + "name": "setShippingMethodAdjustments", "variant": "signature", "kind": 4096, "flags": {}, @@ -32531,7 +39884,7 @@ "summary": [ { "kind": "text", - "text": "This method deletes {return type} by its ID." + "text": "This method Represents the completion of an asynchronous operation" } ], "blockTags": [ @@ -32540,7 +39893,7 @@ "content": [ { "kind": "text", - "text": "Resolves when {summary}" + "text": "Represents the completion of an asynchronous operation" } ] }, @@ -32549,7 +39902,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nawait orderModuleService.deleteOrders(\"orderId\");\n```" + "text": "```typescript\nawait orderModuleService.setShippingMethodAdjustments(\"orderId123\", [\n {\n shipping_method_id: \"shipMethodId123\",\n code: \"CODE123\",\n amount: 1000,\n }\n]);\n```" } ] } @@ -32557,7 +39910,7 @@ }, "parameters": [ { - "id": 5043, + "id": 5248, "name": "orderId", "variant": "param", "kind": 32768, @@ -32576,127 +39929,59 @@ } }, { - "id": 5044, - "name": "sharedContext", + "id": 5249, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "text": "The list of The order shipping method adjustment d t o | update order shipping method adjustment to be created." } ] }, - "type": { - "type": "reference", - "target": 5647, - "name": "Context", - "package": "@medusajs/types" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "void" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 5045, - "name": "softDeleteOrders", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ - { - "id": 5046, - "name": "softDeleteOrders", - "variant": "signature", - "kind": 4096, - "flags": {}, - "typeParameters": [ - { - "id": 5047, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "default": { - "type": "intrinsic", - "name": "string" - } - } - ], - "parameters": [ - { - "id": 5048, - "name": "storeIds", - "variant": "param", - "kind": 32768, - "flags": {}, "type": { "type": "array", "elementType": { - "type": "intrinsic", - "name": "string" - } - } - }, - { - "id": 5049, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5890, - "typeArguments": [ - { - "type": "reference", - "target": 5047, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - ], - "name": "SoftDeleteReturn", - "package": "@medusajs/types" + "type": "union", + "types": [ + { + "type": "reference", + "target": 6478, + "name": "CreateOrderShippingMethodAdjustmentDTO", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 6485, + "name": "UpdateOrderShippingMethodAdjustmentDTO", + "package": "@medusajs/types" + } + ] + } } }, { - "id": 5050, + "id": 5250, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -32710,35 +39995,13 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "array", + "elementType": { + "type": "reference", + "target": 6466, + "name": "OrderShippingMethodAdjustmentDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -32748,39 +40011,22 @@ ] }, { - "id": 5051, - "name": "restoreOrders", + "id": 5251, + "name": "deleteShippingMethodAdjustments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5052, - "name": "restoreOrders", + "id": 5252, + "name": "deleteShippingMethodAdjustments", "variant": "signature", "kind": 4096, "flags": {}, - "typeParameters": [ - { - "id": 5053, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "default": { - "type": "intrinsic", - "name": "string" - } - } - ], "parameters": [ { - "id": 5054, - "name": "storeIds", + "id": 5253, + "name": "adjustmentIds", "variant": "param", "kind": 32768, "flags": {}, @@ -32793,31 +40039,7 @@ } }, { - "id": 5055, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5893, - "typeArguments": [ - { - "type": "reference", - "target": 5053, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - ], - "name": "RestoreReturn", - "package": "@medusajs/types" - } - }, - { - "id": 5056, + "id": 5254, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -32826,7 +40048,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -32840,60 +40062,35 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "intrinsic", + "name": "void" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5057, - "name": "listAddresses", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5058, - "name": "listAddresses", + "id": 5255, + "name": "deleteShippingMethodAdjustments", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5059, - "name": "filters", + "id": 5256, + "name": "adjustmentId", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5257, + "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { @@ -32901,36 +40098,61 @@ }, "type": { "type": "reference", - "target": 5896, - "name": "FilterableOrderAddressProps", + "target": 5889, + "name": "Context", "package": "@medusajs/types" } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5258, + "name": "deleteShippingMethodAdjustments", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ { - "id": 5060, - "name": "config", + "id": 5259, + "name": "selector", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "reference", - "target": 5571, + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, "typeArguments": [ { "type": "reference", - "target": 5900, - "name": "OrderAddressDTO", + "target": 6466, + "name": "OrderShippingMethodAdjustmentDTO", "package": "@medusajs/types" } ], - "name": "FindConfig", - "package": "@medusajs/types" + "name": "Partial", + "package": "typescript" } }, { - "id": 5061, + "id": 5260, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -32939,7 +40161,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -32953,13 +40175,8 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 5900, - "name": "OrderAddressDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -32969,15 +40186,15 @@ ] }, { - "id": 5062, - "name": "createAddresses", + "id": 5261, + "name": "listLineItemTaxLines", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5063, - "name": "createAddresses", + "id": 5262, + "name": "listLineItemTaxLines", "variant": "signature", "kind": 4096, "flags": {}, @@ -32985,7 +40202,7 @@ "summary": [ { "kind": "text", - "text": "This method creates {return type}(s)" + "text": "This method retrieves a paginated list of {return type}(s) based on optional filters and configuration." } ], "blockTags": [ @@ -32994,7 +40211,7 @@ "content": [ { "kind": "text", - "text": "The created {return type}(s)." + "text": "The list of {return type}(s)." } ] }, @@ -33003,7 +40220,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nawait orderModuleService.createAddresses([\n {\n first_name: \"John\",\n last_name: \"Doe\",\n address_1: \"123 Main St\",\n city: \"Anytown\",\n country_code: \"US\",\n province: \"AnyState\",\n postal_code: \"12345\"\n }\n]);\n```" + "text": "```typescript\nawait orderModuleService.listLineItemTaxLines({ id: \"123\" });\n```" } ] } @@ -33011,8 +40228,8 @@ }, "parameters": [ { - "id": 5064, - "name": "data", + "id": 5263, + "name": "filters", "variant": "param", "kind": 32768, "flags": {}, @@ -33020,22 +40237,66 @@ "summary": [ { "kind": "text", - "text": "The order address to be created." + "text": "The filters to apply on the retrieved order line item tax line." } ] }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 5916, - "name": "CreateOrderAddressDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 6492, + "name": "FilterableOrderLineItemTaxLineProps", + "package": "@medusajs/types" + } + }, + { + "id": 5264, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The configurations determining how the order line item tax line is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a order line item tax line." + } + ] + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 6502, + "name": "OrderLineItemTaxLineDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" } }, { - "id": 5065, + "id": 5265, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -33052,7 +40313,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -33069,8 +40330,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 5900, - "name": "OrderAddressDTO", + "target": 6502, + "name": "OrderLineItemTaxLineDTO", "package": "@medusajs/types" } } @@ -33078,83 +40339,78 @@ "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5266, + "name": "createLineItemTaxLines", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5066, - "name": "createAddresses", + "id": 5267, + "name": "createLineItemTaxLines", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method creates {return type}(s)" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "The created {return type}(s)." - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst orderAddressData: CreateOrderAddressDTO = {\n orderId: '123',\n line1: '123 Main St',\n city: 'Metropolis',\n state: 'NY',\n postalCode: '12345',\n country: 'USA'\n};\n\nconst result = await orderModuleService.createAddresses(orderAddressData);\n```" - } - ] - } - ] - }, "parameters": [ { - "id": 5067, - "name": "data", + "id": 5268, + "name": "taxLines", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order address to be created." - } - ] - }, "type": { - "type": "reference", - "target": 5916, - "name": "CreateOrderAddressDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6517, + "name": "CreateOrderLineItemTaxLineDTO", + "package": "@medusajs/types" + } } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6502, + "name": "OrderLineItemTaxLineDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5269, + "name": "createLineItemTaxLines", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ { - "id": 5068, - "name": "sharedContext", + "id": 5270, + "name": "taxLine", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, + "flags": {}, "type": { "type": "reference", - "target": 5647, - "name": "Context", + "target": 6517, + "name": "CreateOrderLineItemTaxLineDTO", "package": "@medusajs/types" } } @@ -33168,102 +40424,71 @@ "typeArguments": [ { "type": "reference", - "target": 5900, - "name": "OrderAddressDTO", + "target": 6502, + "name": "OrderLineItemTaxLineDTO", "package": "@medusajs/types" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5069, - "name": "updateAddresses", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5070, - "name": "updateAddresses", + "id": 5271, + "name": "createLineItemTaxLines", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method updates existing {return type}(s)." - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "The updated {return type}(s)." - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst updatedAddress: UpdateOrderAddressDTO[] = [\n {\n id: \"address1\",\n first_name: \"John\",\n last_name: \"Doe\",\n address_1: \"123 Main St\",\n city: \"Anytown\",\n country_code: \"US\",\n province: \"AnyState\",\n postal_code: \"12345\"\n }\n];\n\nconst result = await orderModuleService.updateAddresses(updatedAddress);\n```" - } - ] - } - ] - }, "parameters": [ { - "id": 5071, - "name": "data", + "id": 5272, + "name": "orderId", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5273, + "name": "taxLines", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "union", + "types": [ { - "kind": "text", - "text": "The attributes to update in the order address." + "type": "reference", + "target": 6517, + "name": "CreateOrderLineItemTaxLineDTO", + "package": "@medusajs/types" + }, + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6517, + "name": "CreateOrderLineItemTaxLineDTO", + "package": "@medusajs/types" + } } ] - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 5929, - "name": "UpdateOrderAddressDTO", - "package": "@medusajs/types" - } } }, { - "id": 5072, + "id": 5274, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -33280,8 +40505,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 5900, - "name": "OrderAddressDTO", + "target": 6502, + "name": "OrderLineItemTaxLineDTO", "package": "@medusajs/types" } } @@ -33289,10 +40514,19 @@ "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5275, + "name": "setLineItemTaxLines", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5073, - "name": "updateAddresses", + "id": 5276, + "name": "setLineItemTaxLines", "variant": "signature", "kind": 4096, "flags": {}, @@ -33300,7 +40534,7 @@ "summary": [ { "kind": "text", - "text": "This method updates existing {return type}(s)." + "text": "This method Represents the completion of an asynchronous operation" } ], "blockTags": [ @@ -33309,7 +40543,7 @@ "content": [ { "kind": "text", - "text": "The updated {return type}(s)." + "text": "Represents the completion of an asynchronous operation" } ] }, @@ -33318,7 +40552,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst updateOrderAddressData: UpdateOrderAddressDTO = {\n id: '123',\n address_1: '123 Main St',\n city: 'Metropolis',\n province: 'NY',\n postal_code: '12345',\n};\n\nconst updatedAddress = await orderModuleService.updateAddresses(updateOrderAddressData);\n```" + "text": "```typescript\nconst orderId = '12345';\nconst taxLines: (CreateOrderLineItemTaxLineDTO | UpdateOrderLineItemTaxLineDTO)[] = [\n {\n code: \"TAX1001\",\n rate: 70,\n }\n];\n\nconst result = await orderModuleService.setLineItemTaxLines(orderId, taxLines);\n\nconsole.log(result);\n```" } ] } @@ -33326,8 +40560,27 @@ }, "parameters": [ { - "id": 5074, - "name": "data", + "id": 5277, + "name": "orderId", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order's ID." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5278, + "name": "taxLines", "variant": "param", "kind": 32768, "flags": {}, @@ -33335,19 +40588,33 @@ "summary": [ { "kind": "text", - "text": "The attributes to update in the order address." + "text": "The list of The order line item tax line d t o | update order line item tax line to be created." } ] }, "type": { - "type": "reference", - "target": 5929, - "name": "UpdateOrderAddressDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 6517, + "name": "CreateOrderLineItemTaxLineDTO", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 6523, + "name": "UpdateOrderLineItemTaxLineDTO", + "package": "@medusajs/types" + } + ] + } } }, { - "id": 5075, + "id": 5279, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -33364,7 +40631,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -33378,10 +40645,13 @@ }, "typeArguments": [ { - "type": "reference", - "target": 5900, - "name": "OrderAddressDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6502, + "name": "OrderLineItemTaxLineDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -33391,61 +40661,25 @@ ] }, { - "id": 5076, - "name": "deleteAddresses", + "id": 5280, + "name": "deleteLineItemTaxLines", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5077, - "name": "deleteAddresses", + "id": 5281, + "name": "deleteLineItemTaxLines", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method deletes {return type} by its ID." - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.deleteAddresses([\"your_address_id_1\", \"your_address_id_2\"]);\n```" - } - ] - } - ] - }, "parameters": [ { - "id": 5078, - "name": "ids", + "id": 5282, + "name": "taxLineIds", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The list of {summary}" - } - ] - }, "type": { "type": "array", "elementType": { @@ -33455,24 +40689,16 @@ } }, { - "id": 5079, + "id": 5283, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -33495,78 +40721,34 @@ } }, { - "id": 5080, - "name": "deleteAddresses", + "id": 5284, + "name": "deleteLineItemTaxLines", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method deletes {return type} by its ID." - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.deleteAddresses(\"123456\");\n```" - } - ] - } - ] - }, "parameters": [ { - "id": 5081, - "name": "ids", + "id": 5285, + "name": "taxLineIds", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "{summary}" - } - ] - }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 5082, + "id": 5286, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -33587,136 +40769,38 @@ "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5083, - "name": "retrieveLineItem", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5084, - "name": "retrieveLineItem", + "id": 5287, + "name": "deleteLineItemTaxLines", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method retrieves a {return type} by its ID." - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "The retrieved {return type}(s)." - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.retrieveLineItem(\"12345\");\n```" - } - ] - } - ] - }, "parameters": [ { - "id": 5085, - "name": "itemId", + "id": 5288, + "name": "selector", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The item's ID." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 5086, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The configurations determining how the order line item is retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, - { - "kind": "text", - "text": " or " - }, - { - "kind": "code", - "text": "`relations`" - }, - { - "kind": "text", - "text": ", accept the\nattributes or relations associated with a order line item." - } - ] - }, "type": { "type": "reference", - "target": 5571, - "typeArguments": [ - { - "type": "reference", - "target": 5943, - "name": "OrderLineItemDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", + "target": 6492, + "name": "FilterableOrderLineItemTaxLineProps", "package": "@medusajs/types" } }, { - "id": 5087, + "id": 5289, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -33730,10 +40814,8 @@ }, "typeArguments": [ { - "type": "reference", - "target": 5943, - "name": "OrderLineItemDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -33743,15 +40825,15 @@ ] }, { - "id": 5088, - "name": "listLineItems", + "id": 5290, + "name": "listShippingMethodTaxLines", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5089, - "name": "listLineItems", + "id": 5291, + "name": "listShippingMethodTaxLines", "variant": "signature", "kind": 4096, "flags": {}, @@ -33777,7 +40859,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst result = await orderModuleService.listLineItems({\n title: \"Sample Product Title\",\n});\n```" + "text": "```typescript\nasync function executeMethod() {\n const result = await orderModuleService.listShippingMethodTaxLines({\n id: \"123\",\n });\n}\n```" } ] } @@ -33785,7 +40867,7 @@ }, "parameters": [ { - "id": 5090, + "id": 5292, "name": "filters", "variant": "param", "kind": 32768, @@ -33794,19 +40876,19 @@ "summary": [ { "kind": "text", - "text": "The filters to apply on the retrieved order line item." + "text": "The filters to apply on the retrieved order shipping method tax line." } ] }, "type": { "type": "reference", - "target": 6001, - "name": "FilterableOrderLineItemProps", + "target": 6530, + "name": "FilterableOrderShippingMethodTaxLineProps", "package": "@medusajs/types" } }, { - "id": 5091, + "id": 5293, "name": "config", "variant": "param", "kind": 32768, @@ -33817,7 +40899,7 @@ "summary": [ { "kind": "text", - "text": "The configurations determining how the order line item is retrieved. Its properties, such as " + "text": "The configurations determining how the order shipping method tax line is retrieved. Its properties, such as " }, { "kind": "code", @@ -33833,18 +40915,18 @@ }, { "kind": "text", - "text": ", accept the\nattributes or relations associated with a order line item." + "text": ", accept the\nattributes or relations associated with a order shipping method tax line." } ] }, "type": { "type": "reference", - "target": 5571, + "target": 5812, "typeArguments": [ { "type": "reference", - "target": 5943, - "name": "OrderLineItemDTO", + "target": 6540, + "name": "OrderShippingMethodTaxLineDTO", "package": "@medusajs/types" } ], @@ -33853,7 +40935,7 @@ } }, { - "id": 5092, + "id": 5294, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -33870,7 +40952,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -33887,8 +40969,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 5943, - "name": "OrderLineItemDTO", + "target": 6540, + "name": "OrderShippingMethodTaxLineDTO", "package": "@medusajs/types" } } @@ -33900,30 +40982,33 @@ ] }, { - "id": 5093, - "name": "createLineItems", + "id": 5295, + "name": "createShippingMethodTaxLines", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5094, - "name": "createLineItems", + "id": 5296, + "name": "createShippingMethodTaxLines", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5095, - "name": "data", + "id": 5297, + "name": "taxLines", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "reference", - "target": 6009, - "name": "CreateOrderLineItemForOrderDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6555, + "name": "CreateOrderShippingMethodTaxLineDTO", + "package": "@medusajs/types" + } } } ], @@ -33938,8 +41023,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 5943, - "name": "OrderLineItemDTO", + "target": 6540, + "name": "OrderShippingMethodTaxLineDTO", "package": "@medusajs/types" } } @@ -33949,26 +41034,102 @@ } }, { - "id": 5096, - "name": "createLineItems", + "id": 5298, + "name": "createShippingMethodTaxLines", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5097, - "name": "data", + "id": 5299, + "name": "taxLine", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6009, - "name": "CreateOrderLineItemForOrderDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 6555, + "name": "CreateOrderShippingMethodTaxLineDTO", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6540, + "name": "OrderShippingMethodTaxLineDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5300, + "name": "createShippingMethodTaxLines", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5301, + "name": "orderId", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5302, + "name": "taxLines", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 6555, + "name": "CreateOrderShippingMethodTaxLineDTO", + "package": "@medusajs/types" + }, + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6555, + "name": "CreateOrderShippingMethodTaxLineDTO", + "package": "@medusajs/types" + } + } + ] + } + }, + { + "id": 5303, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" } } ], @@ -33983,8 +41144,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 5943, - "name": "OrderLineItemDTO", + "target": 6540, + "name": "OrderShippingMethodTaxLineDTO", "package": "@medusajs/types" } } @@ -33992,43 +41153,182 @@ "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5304, + "name": "setShippingMethodTaxLines", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5098, - "name": "createLineItems", + "id": 5305, + "name": "setShippingMethodTaxLines", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method Represents the completion of an asynchronous operation" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Represents the completion of an asynchronous operation" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst orderId = \"someOrderId\";\nconst taxLines = [\n {\n code: \"VAT20\",\n rate: 20,\n }\n];\n\nconst result = await orderModuleService.setShippingMethodTaxLines(orderId, taxLines);\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 5099, + "id": 5306, "name": "orderId", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order's ID." + } + ] + }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 5100, - "name": "items", + "id": 5307, + "name": "taxLines", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The list of The order shipping method tax line d t o | update order shipping method tax line to be created." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 6555, + "name": "CreateOrderShippingMethodTaxLineDTO", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 6561, + "name": "UpdateOrderShippingMethodTaxLineDTO", + "package": "@medusajs/types" + } + ] + } + } + }, + { + "id": 5308, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6540, + "name": "OrderShippingMethodTaxLineDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5309, + "name": "deleteShippingMethodTaxLines", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5310, + "name": "deleteShippingMethodTaxLines", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5311, + "name": "taxLineIds", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "array", "elementType": { - "type": "reference", - "target": 6035, - "name": "CreateOrderLineItemDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } } }, { - "id": 5101, + "id": 5312, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -34037,7 +41337,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -34051,85 +41351,45 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 5943, - "name": "OrderLineItemDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5102, - "name": "updateLineItems", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5103, - "name": "updateLineItems", + "id": 5313, + "name": "deleteShippingMethodTaxLines", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method updates existing {return type}(s)." - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "The updated {return type}(s)." - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst updateOrderLineItems: UpdateOrderLineItemWithSelectorDTO[] = [\n {\n selector: {\n id: \"line-item-id-1\"\n },\n data: {\n id: \"line-item-id-1\",\n quantity: 2,\n unit_price: 1999\n }\n }\n];\n\nconst updatedLineItems = await orderModuleService.updateLineItems(updateOrderLineItems);\n```" - } - ] - } - ] - }, "parameters": [ { - "id": 5104, - "name": "data", + "id": 5314, + "name": "taxLineIds", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The attributes to update in the order line item with selector." - } - ] + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5315, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6061, - "name": "UpdateOrderLineItemWithSelectorDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" } } ], @@ -34141,13 +41401,8 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 5943, - "name": "OrderLineItemDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -34155,123 +41410,36 @@ } }, { - "id": 5105, - "name": "updateLineItems", + "id": 5316, + "name": "deleteShippingMethodTaxLines", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method updates existing {return type}(s)." - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "The updated {return type}(s)." - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst result = await orderModuleService.updateLineItems(\n { id: \"line-item-id-1\" },\n { quantity: 10 }\n);\n```" - } - ] - } - ] - }, "parameters": [ { - "id": 5106, + "id": 5317, "name": "selector", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Make all properties in T optional" - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, - "typeArguments": [ - { - "type": "reference", - "target": 6001, - "name": "FilterableOrderLineItemProps", - "package": "@medusajs/types" - } - ], - "name": "Partial", - "package": "typescript" - } - }, - { - "id": 5107, - "name": "data", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Make all properties in T optional" - } - ] - }, "type": { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, - "typeArguments": [ - { - "type": "reference", - "target": 6064, - "name": "UpdateOrderLineItemDTO", - "package": "@medusajs/types" - } - ], - "name": "Partial", - "package": "typescript" + "target": 6530, + "name": "FilterableOrderShippingMethodTaxLineProps", + "package": "@medusajs/types" } }, { - "id": 5108, + "id": 5318, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -34285,22 +41453,26 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 5943, - "name": "OrderLineItemDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5319, + "name": "retrieveOrderChange", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5109, - "name": "updateLineItems", + "id": 5320, + "name": "retrieveOrderChange", "variant": "signature", "kind": 4096, "flags": {}, @@ -34308,7 +41480,7 @@ "summary": [ { "kind": "text", - "text": "This method updates existing {return type}(s)." + "text": "This method retrieves a {return type} by its ID." } ], "blockTags": [ @@ -34317,7 +41489,7 @@ "content": [ { "kind": "text", - "text": "The updated {return type}(s)." + "text": "The retrieved {return type}(s)." } ] }, @@ -34326,7 +41498,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst result = await orderModuleService.updateLineItems(\n \"lineIdExample\",\n {\n quantity: 10,\n }\n);\n```" + "text": "```typescript\nconst result = await orderModuleService.retrieveOrder(\"orderId123\");\n```" } ] } @@ -34334,8 +41506,8 @@ }, "parameters": [ { - "id": 5110, - "name": "lineId", + "id": 5321, + "name": "orderChangeId", "variant": "param", "kind": 32768, "flags": {}, @@ -34343,7 +41515,7 @@ "summary": [ { "kind": "text", - "text": "The line's ID." + "text": "The order change ID." } ] }, @@ -34353,39 +41525,54 @@ } }, { - "id": 5111, - "name": "data", + "id": 5322, + "name": "config", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { "kind": "text", - "text": "Make all properties in T optional" + "text": "The configurations determining how the order is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a order." } ] }, "type": { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, + "target": 5812, "typeArguments": [ { "type": "reference", - "target": 6064, - "name": "UpdateOrderLineItemDTO", + "target": 6568, + "name": "OrderChangeDTO", "package": "@medusajs/types" } ], - "name": "Partial", - "package": "typescript" + "name": "FindConfig", + "package": "@medusajs/types" } }, { - "id": 5112, + "id": 5323, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -34402,7 +41589,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -34417,8 +41604,8 @@ "typeArguments": [ { "type": "reference", - "target": 5943, - "name": "OrderLineItemDTO", + "target": 6568, + "name": "OrderChangeDTO", "package": "@medusajs/types" } ], @@ -34429,35 +41616,34 @@ ] }, { - "id": 5113, - "name": "deleteLineItems", + "id": 5324, + "name": "createOrderChange", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5114, - "name": "deleteLineItems", + "id": 5325, + "name": "createOrderChange", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5115, - "name": "itemIds", + "id": 5326, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 6594, + "name": "CreateOrderChangeDTO", + "package": "@medusajs/types" } }, { - "id": 5116, + "id": 5327, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -34466,7 +41652,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -34480,8 +41666,10 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "reference", + "target": 6568, + "name": "OrderChangeDTO", + "package": "@medusajs/types" } ], "name": "Promise", @@ -34489,97 +41677,83 @@ } }, { - "id": 5117, - "name": "deleteLineItems", + "id": 5328, + "name": "createOrderChange", "variant": "signature", "kind": 4096, "flags": {}, - "parameters": [ - { - "id": 5118, - "name": "itemIds", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method creates {return type}(s)" } - }, - { - "id": 5119, - "name": "sharedContext", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The created {return type}(s)." + } + ] }, - "type": { - "type": "reference", - "target": 5647, - "name": "Context", - "package": "@medusajs/types" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\n// Example call to createOrderChange\n\nconst createOrderChangeData: CreateOrderChangeDTO[] = [{\n order_id: \"order123\",\n description: \"Change due to customer request\"\n}];\n\nconst result = await orderModuleService.createOrderChange(createOrderChangeData);\n```" + } + ] } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 5120, - "name": "deleteLineItems", - "variant": "signature", - "kind": 4096, - "flags": {}, + ] + }, "parameters": [ { - "id": 5121, - "name": "selector", + "id": 5329, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, - "typeArguments": [ + "comment": { + "summary": [ { - "type": "reference", - "target": 6001, - "name": "FilterableOrderLineItemProps", - "package": "@medusajs/types" + "kind": "text", + "text": "The order change to be created." } - ], - "name": "Partial", - "package": "typescript" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 6594, + "name": "CreateOrderChangeDTO", + "package": "@medusajs/types" + } } }, { - "id": 5122, + "id": 5330, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -34593,26 +41767,22 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "array", + "elementType": { + "type": "reference", + "target": 6568, + "name": "OrderChangeDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5123, - "name": "updateOrderItem", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5124, - "name": "updateOrderItem", + "id": 5331, + "name": "createOrderChange", "variant": "signature", "kind": 4096, "flags": {}, @@ -34620,7 +41790,7 @@ "summary": [ { "kind": "text", - "text": "This method updates existing {return type}(s)." + "text": "This method creates {return type}(s)" } ], "blockTags": [ @@ -34629,7 +41799,7 @@ "content": [ { "kind": "text", - "text": "The updated {return type}(s)." + "text": "The created {return type}(s)." } ] }, @@ -34638,7 +41808,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nawait orderModuleService.updateOrderItem(\n { id: \"item123\" },\n { quantity: \"2\" }\n);\n```" + "text": "```typescript\nconst result = await orderModuleService.createOrderChange({\n order_id: \"order123\",\n description: \"Adding new item to the order\"\n});\n```" } ] } @@ -34646,8 +41816,8 @@ }, "parameters": [ { - "id": 5125, - "name": "selector", + "id": 5332, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, @@ -34655,68 +41825,127 @@ "summary": [ { "kind": "text", - "text": "Make all properties in T optional" + "text": "The order change d t o | create order change to be created." } ] }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, - "typeArguments": [ + "type": "union", + "types": [ { "type": "reference", - "target": 6091, - "name": "FilterableOrderShippingMethodProps", + "target": 6594, + "name": "CreateOrderChangeDTO", "package": "@medusajs/types" + }, + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6594, + "name": "CreateOrderChangeDTO", + "package": "@medusajs/types" + } } - ], - "name": "Partial", - "package": "typescript" + ] } }, { - "id": 5126, - "name": "data", + "id": 5333, + "name": "sharedContext", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The attributes to update in the order item." + "text": "A context used to share resources, such as transaction manager, between the application and the module." } ] }, "type": { "type": "reference", - "target": 6098, - "name": "UpdateOrderItemDTO", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reference", + "target": 6568, + "name": "OrderChangeDTO", + "package": "@medusajs/types" + }, + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6568, + "name": "OrderChangeDTO", + "package": "@medusajs/types" + } + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5334, + "name": "updateOrderChanges", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5335, + "name": "updateOrderChanges", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5336, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 6607, + "name": "UpdateOrderChangeDTO", "package": "@medusajs/types" } }, { - "id": 5127, + "id": 5337, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -34730,13 +41959,10 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6110, - "name": "OrderItemDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 6568, + "name": "OrderChangeDTO", + "package": "@medusajs/types" } ], "name": "Promise", @@ -34744,8 +41970,8 @@ } }, { - "id": 5128, - "name": "updateOrderItem", + "id": 5338, + "name": "updateOrderChanges", "variant": "signature", "kind": 4096, "flags": {}, @@ -34753,7 +41979,7 @@ "summary": [ { "kind": "text", - "text": "This method updates existing {return type}(s)." + "text": "This method updates {return type}(s)" } ], "blockTags": [ @@ -34771,7 +41997,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nawait orderModuleService.updateOrderItem(\n 'orderDetailId123',\n {\n item_id: 'item123',\n quantity: 2\n }\n);\n```" + "text": "```typescript\n// Example call to updateOrderChanges\n\nconst updateOrderChangesData: UpdateOrderChangeDTO[] = [{\n id: \"orderchange123\",\n description: \"Change due to customer request\"\n}];\n\nconst result = await orderModuleService.updateOrderChanges(updateOrderChangesData);\n```" } ] } @@ -34779,26 +42005,7 @@ }, "parameters": [ { - "id": 5129, - "name": "orderDetailId", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order detail's ID." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 5130, + "id": 5339, "name": "data", "variant": "param", "kind": 32768, @@ -34807,30 +42014,22 @@ "summary": [ { "kind": "text", - "text": "Make all properties in T optional" + "text": "The order change to be updated." } ] }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, - "typeArguments": [ - { - "type": "reference", - "target": 6098, - "name": "UpdateOrderItemDTO", - "package": "@medusajs/types" - } - ], - "name": "Partial", - "package": "typescript" + "type": "array", + "elementType": { + "type": "reference", + "target": 6607, + "name": "UpdateOrderChangeDTO", + "package": "@medusajs/types" + } } }, { - "id": 5131, + "id": 5340, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -34847,7 +42046,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -34861,10 +42060,13 @@ }, "typeArguments": [ { - "type": "reference", - "target": 6110, - "name": "OrderItemDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6568, + "name": "OrderChangeDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -34872,8 +42074,8 @@ } }, { - "id": 5132, - "name": "updateOrderItem", + "id": 5341, + "name": "updateOrderChanges", "variant": "signature", "kind": 4096, "flags": {}, @@ -34881,7 +42083,7 @@ "summary": [ { "kind": "text", - "text": "This method updates existing {return type}(s)." + "text": "This method updates {return type}(s)" } ], "blockTags": [ @@ -34899,7 +42101,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nawait orderModuleService.updateOrderItem(\n \"order-detail-id\",\n {\n quantity: 2,\n item_id: 'item123',\n }\n);\n```" + "text": "```typescript\nconst result = await orderModuleService.createOrderChange({\n order_id: \"order123\",\n description: \"Adding new item to the order\"\n});\n```" } ] } @@ -34907,8 +42109,8 @@ }, "parameters": [ { - "id": 5133, - "name": "orderDetailIdOrDataOrSelector", + "id": 5342, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, @@ -34916,40 +42118,25 @@ "summary": [ { "kind": "text", - "text": "The string | partial< order item d t o> | update order item with selector details." + "text": "The order change d t o | order change to be updated." } ] }, "type": { "type": "union", "types": [ - { - "type": "intrinsic", - "name": "string" - }, { "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, - "typeArguments": [ - { - "type": "reference", - "target": 6110, - "name": "OrderItemDTO", - "package": "@medusajs/types" - } - ], - "name": "Partial", - "package": "typescript" + "target": 6607, + "name": "UpdateOrderChangeDTO", + "package": "@medusajs/types" }, { "type": "array", "elementType": { "type": "reference", - "target": 6131, - "name": "UpdateOrderItemWithSelectorDTO", + "target": 6607, + "name": "UpdateOrderChangeDTO", "package": "@medusajs/types" } } @@ -34957,52 +42144,7 @@ } }, { - "id": 5134, - "name": "data", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "{summary}" - } - ] - }, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "target": 6098, - "name": "UpdateOrderItemDTO", - "package": "@medusajs/types" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, - "typeArguments": [ - { - "type": "reference", - "target": 6098, - "name": "UpdateOrderItemDTO", - "package": "@medusajs/types" - } - ], - "name": "Partial", - "package": "typescript" - } - ] - } - }, - { - "id": 5135, + "id": 5343, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -35019,7 +42161,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -35037,16 +42179,16 @@ "types": [ { "type": "reference", - "target": 6110, - "name": "OrderItemDTO", + "target": 6568, + "name": "OrderChangeDTO", "package": "@medusajs/types" }, { "type": "array", "elementType": { "type": "reference", - "target": 6110, - "name": "OrderItemDTO", + "target": 6568, + "name": "OrderChangeDTO", "package": "@medusajs/types" } } @@ -35060,15 +42202,15 @@ ] }, { - "id": 5136, - "name": "listShippingMethods", + "id": 5344, + "name": "deleteOrderChanges", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5137, - "name": "listShippingMethods", + "id": 5345, + "name": "deleteOrderChanges", "variant": "signature", "kind": 4096, "flags": {}, @@ -35076,7 +42218,7 @@ "summary": [ { "kind": "text", - "text": "This method retrieves a paginated list of {return type}(s) based on optional filters and configuration." + "text": "This method deletes order change by its ID." } ], "blockTags": [ @@ -35085,7 +42227,7 @@ "content": [ { "kind": "text", - "text": "The list of {return type}(s)." + "text": "Resolves when {summary}" } ] }, @@ -35094,7 +42236,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nawait orderModuleService.listShippingMethods(\n { order_id: \"order_123\" },\n { limit: 10, offset: 0 }\n);\n```" + "text": "```typescript\nawait orderModuleService.deleteOrderChanges([\"orderChangeId1\", \"orderChangeId2\"]);\n```" } ] } @@ -35102,29 +42244,8 @@ }, "parameters": [ { - "id": 5138, - "name": "filters", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The filters to apply on the retrieved order shipping method." - } - ] - }, - "type": { - "type": "reference", - "target": 6091, - "name": "FilterableOrderShippingMethodProps", - "package": "@medusajs/types" - } - }, - { - "id": 5139, - "name": "config", + "id": 5346, + "name": "orderChangeId", "variant": "param", "kind": 32768, "flags": {}, @@ -35132,43 +42253,20 @@ "summary": [ { "kind": "text", - "text": "The configurations determining how the order shipping method is retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, - { - "kind": "text", - "text": " or " - }, - { - "kind": "code", - "text": "`relations`" - }, - { - "kind": "text", - "text": ", accept the\nattributes or relations associated with a order shipping method." + "text": "The list of {summary}" } ] }, "type": { - "type": "reference", - "target": 5571, - "typeArguments": [ - { - "type": "reference", - "target": 6134, - "name": "OrderShippingMethodDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 5140, + "id": 5347, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -35185,7 +42283,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -35199,88 +42297,89 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6134, - "name": "OrderShippingMethodDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5141, - "name": "createShippingMethods", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5142, - "name": "createShippingMethods", + "id": 5348, + "name": "deleteOrderChanges", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method deletes order change by its ID." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.deleteOrderChanges(\"orderChangeId\");\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 5143, - "name": "data", + "id": 5349, + "name": "orderChangeId", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order's ID." + } + ] + }, "type": { - "type": "reference", - "target": 6165, - "name": "CreateOrderShippingMethodDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" }, - "typeArguments": [ - { - "type": "reference", - "target": 6134, - "name": "OrderShippingMethodDTO", - "package": "@medusajs/types" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 5144, - "name": "createShippingMethods", - "variant": "signature", - "kind": 4096, - "flags": {}, - "parameters": [ { - "id": 5145, - "name": "data", + "id": 5350, + "name": "sharedContext", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6165, - "name": "CreateOrderShippingMethodDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" } } ], @@ -35292,13 +42391,8 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6134, - "name": "OrderShippingMethodDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -35306,50 +42400,81 @@ } }, { - "id": 5146, - "name": "createShippingMethods", + "id": 5351, + "name": "deleteOrderChanges", "variant": "signature", "kind": 4096, "flags": {}, - "parameters": [ - { - "id": 5147, - "name": "orderId", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method deletes order change by its ID." } - }, + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.deleteOrderChanges([\"orderChangeId1\", \"orderChangeId2\"]);\n```" + } + ] + } + ] + }, + "parameters": [ { - "id": 5148, - "name": "methods", + "id": 5352, + "name": "orderChangeId", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The list of {summary}" + } + ] + }, "type": { "type": "array", "elementType": { - "type": "reference", - "target": 6165, - "name": "CreateOrderShippingMethodDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } } }, { - "id": 5149, + "id": 5353, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -35363,60 +42488,87 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6134, - "name": "OrderShippingMethodDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5150, - "name": "deleteShippingMethods", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5151, - "name": "deleteShippingMethods", + "id": 5354, + "name": "deleteOrderChanges", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method deletes order change by its ID." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.deleteOrderChanges(\"orderChangeId\");\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 5152, - "name": "methodIds", + "id": 5355, + "name": "orderChangeId", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order's ID." + } + ] + }, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "string" } }, { - "id": 5153, + "id": 5356, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -35437,36 +42589,89 @@ "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5357, + "name": "cancelOrderChange", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5154, - "name": "deleteShippingMethods", + "id": 5358, + "name": "cancelOrderChange", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method Represents the completion of an asynchronous operation" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.cancelOrderChange(\"orderId123\");\n```" + } + ] + } + ] + }, "parameters": [ - { - "id": 5155, - "name": "methodIds", + { + "id": 5359, + "name": "orderId", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order's ID." + } + ] + }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 5156, + "id": 5360, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -35489,47 +42694,81 @@ } }, { - "id": 5157, - "name": "deleteShippingMethods", + "id": 5361, + "name": "cancelOrderChange", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method Represents the completion of an asynchronous operation" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.cancelOrderChange([\"1234ABCD\"]);\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 5158, - "name": "selector", + "id": 5362, + "name": "orderId", "variant": "param", "kind": 32768, "flags": {}, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, - "typeArguments": [ + "comment": { + "summary": [ { - "type": "reference", - "target": 6091, - "name": "FilterableOrderShippingMethodProps", - "package": "@medusajs/types" + "kind": "text", + "text": "The order's ID." } - ], - "name": "Partial", - "package": "typescript" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 5159, + "id": 5363, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -35550,19 +42789,10 @@ "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5160, - "name": "listLineItemAdjustments", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5161, - "name": "listLineItemAdjustments", + "id": 5364, + "name": "cancelOrderChange", "variant": "signature", "kind": 4096, "flags": {}, @@ -35570,7 +42800,7 @@ "summary": [ { "kind": "text", - "text": "This method retrieves a paginated list of {return type}(s) based on optional filters and configuration." + "text": "This method Represents the completion of an asynchronous operation" } ], "blockTags": [ @@ -35579,7 +42809,7 @@ "content": [ { "kind": "text", - "text": "The list of {return type}(s)." + "text": "Resolves when {summary}" } ] }, @@ -35588,7 +42818,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst orderLineItemAdjustments = await orderModuleService.listLineItemAdjustments({ item_id: \"order-line-item-123\" });\n```" + "text": "```typescript\nconst cancelOrderChangeData: CancelOrderChangeDTO = {\n id: \"orderChangeId\",\n};\n\nawait orderModuleService.cancelOrderChange(cancelOrderChangeData);\n```" } ] } @@ -35596,8 +42826,8 @@ }, "parameters": [ { - "id": 5162, - "name": "filters", + "id": 5365, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, @@ -35605,66 +42835,19 @@ "summary": [ { "kind": "text", - "text": "The filters to apply on the retrieved order line item adjustment." - } - ] - }, - "type": { - "type": "reference", - "target": 6174, - "name": "FilterableOrderLineItemAdjustmentProps", - "package": "@medusajs/types" - } - }, - { - "id": 5163, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The configurations determining how the order line item adjustment is retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, - { - "kind": "text", - "text": " or " - }, - { - "kind": "code", - "text": "`relations`" - }, - { - "kind": "text", - "text": ", accept the\nattributes or relations associated with a order line item adjustment." + "text": "The cancel order change details." } ] }, "type": { "type": "reference", - "target": 5571, - "typeArguments": [ - { - "type": "reference", - "target": 6182, - "name": "OrderLineItemAdjustmentDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", + "target": 6622, + "name": "CancelOrderChangeDTO", "package": "@medusajs/types" } }, { - "id": 5164, + "id": 5366, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -35681,7 +42864,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -35695,90 +42878,93 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6182, - "name": "OrderLineItemAdjustmentDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5165, - "name": "createLineItemAdjustments", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5166, - "name": "createLineItemAdjustments", + "id": 5367, + "name": "cancelOrderChange", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method Represents the completion of an asynchronous operation" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.cancelOrderChange([{ id: \"orderChangeId\" }]);\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 5167, + "id": 5368, "name": "data", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The cancel order change details." + } + ] + }, "type": { "type": "array", "elementType": { "type": "reference", - "target": 6194, - "name": "CreateOrderAdjustmentDTO", + "target": 6622, + "name": "CancelOrderChangeDTO", "package": "@medusajs/types" } } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" }, - "typeArguments": [ - { - "type": "array", - "elementType": { - "type": "reference", - "target": 6182, - "name": "OrderLineItemAdjustmentDTO", - "package": "@medusajs/types" - } - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 5168, - "name": "createLineItemAdjustments", - "variant": "signature", - "kind": 4096, - "flags": {}, - "parameters": [ { - "id": 5169, - "name": "data", + "id": 5369, + "name": "sharedContext", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 6194, - "name": "CreateOrderAdjustmentDTO", + "target": 5889, + "name": "Context", "package": "@medusajs/types" } } @@ -35791,28 +42977,32 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6182, - "name": "OrderLineItemAdjustmentDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5370, + "name": "previewOrderChange", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5170, - "name": "createLineItemAdjustments", + "id": 5371, + "name": "previewOrderChange", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5171, + "id": 5372, "name": "orderId", "variant": "param", "kind": 32768, @@ -35823,19 +43013,18 @@ } }, { - "id": 5172, - "name": "data", + "id": 5373, + "name": "sharedContext", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6194, - "name": "CreateOrderAdjustmentDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" } } ], @@ -35847,13 +43036,10 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6182, - "name": "OrderLineItemAdjustmentDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 5825, + "name": "OrderDTO", + "package": "@medusajs/types" } ], "name": "Promise", @@ -35863,15 +43049,15 @@ ] }, { - "id": 5173, - "name": "setLineItemAdjustments", + "id": 5374, + "name": "confirmOrderChange", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5174, - "name": "setLineItemAdjustments", + "id": 5375, + "name": "confirmOrderChange", "variant": "signature", "kind": 4096, "flags": {}, @@ -35888,7 +43074,7 @@ "content": [ { "kind": "text", - "text": "Represents the completion of an asynchronous operation" + "text": "Resolves when {summary}" } ] }, @@ -35897,7 +43083,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst adjustmentsData: UpsertOrderLineItemAdjustmentDTO[] = [{\n item_id: \"item123\",\n amount: 1000\n}];\n\nconst result = await orderModuleService.setLineItemAdjustments(\"order456\", adjustmentsData);\n```" + "text": "```typescript\nawait orderModuleService.confirmOrderChange(\"123456789\");\n```" } ] } @@ -35905,50 +43091,18 @@ }, "parameters": [ { - "id": 5175, - "name": "orderId", + "id": 5376, + "name": "orderChangeId", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order's ID." - } - ] - }, "type": { "type": "intrinsic", "name": "string" } }, { - "id": 5176, - "name": "data", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The upsert order line item adjustment details." - } - ] - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6200, - "name": "UpsertOrderLineItemAdjustmentDTO", - "package": "@medusajs/types" - } - } - }, - { - "id": 5177, + "id": 5377, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -35965,7 +43119,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -35979,41 +43133,65 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6182, - "name": "OrderLineItemAdjustmentDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 6626, + "name": "OrderChangeReturn", + "package": "@medusajs/types" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5178, - "name": "deleteLineItemAdjustments", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5179, - "name": "deleteLineItemAdjustments", + "id": 5378, + "name": "confirmOrderChange", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method Represents the completion of an asynchronous operation" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.confirmOrderChange([\"12345\"]);\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 5180, - "name": "adjustmentIds", + "id": 5379, + "name": "orderChangeId", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order change's ID." + } + ] + }, "type": { "type": "array", "elementType": { @@ -36023,16 +43201,24 @@ } }, { - "id": 5181, + "id": 5380, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -36055,34 +43241,80 @@ } }, { - "id": 5182, - "name": "deleteLineItemAdjustments", + "id": 5381, + "name": "confirmOrderChange", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method Represents the completion of an asynchronous operation" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.confirmOrderChange({\n id: \"123456\"\n});\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 5183, - "name": "adjustmentIds", + "id": 5382, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The confirm order change details." + } + ] + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 6640, + "name": "ConfirmOrderChangeDTO", + "package": "@medusajs/types" } }, { - "id": 5184, + "id": 5383, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -36099,53 +43331,89 @@ "type": "intrinsic", "name": "void" } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 5185, - "name": "deleteLineItemAdjustments", - "variant": "signature", - "kind": 4096, - "flags": {}, + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5384, + "name": "confirmOrderChange", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method Represents the completion of an asynchronous operation" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst confirmOrderChangesData: ConfirmOrderChangeDTO[] = [{\n id: \"orderChangeId\",\n}];\n\nawait orderModuleService.confirmOrderChange(confirmOrderChangesData);\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 5186, - "name": "selector", + "id": 5385, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, - "typeArguments": [ + "comment": { + "summary": [ { - "type": "reference", - "target": 6182, - "name": "OrderLineItemAdjustmentDTO", - "package": "@medusajs/types" + "kind": "text", + "text": "The confirm order change details." } - ], - "name": "Partial", - "package": "typescript" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 6640, + "name": "ConfirmOrderChangeDTO", + "package": "@medusajs/types" + } } }, { - "id": 5187, + "id": 5386, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -36170,15 +43438,15 @@ ] }, { - "id": 5188, - "name": "listShippingMethodAdjustments", + "id": 5387, + "name": "declineOrderChange", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5189, - "name": "listShippingMethodAdjustments", + "id": 5388, + "name": "declineOrderChange", "variant": "signature", "kind": 4096, "flags": {}, @@ -36186,7 +43454,7 @@ "summary": [ { "kind": "text", - "text": "This method retrieves a paginated list of {return type}(s) based on optional filters and configuration." + "text": "This method Represents the completion of an asynchronous operation" } ], "blockTags": [ @@ -36195,7 +43463,7 @@ "content": [ { "kind": "text", - "text": "The list of {return type}(s)." + "text": "Resolves when {summary}" } ] }, @@ -36204,7 +43472,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst result = await orderModuleService.listShippingMethodAdjustments({\n id: \"12345\",\n});\n```" + "text": "```typescript\nawait orderModuleService.declineOrderChange(\"orderChangeId\");\n```" } ] } @@ -36212,8 +43480,8 @@ }, "parameters": [ { - "id": 5190, - "name": "filters", + "id": 5389, + "name": "orderChangeId", "variant": "param", "kind": 32768, "flags": {}, @@ -36221,66 +43489,17 @@ "summary": [ { "kind": "text", - "text": "The filters to apply on the retrieved order shipping method adjustment." - } - ] - }, - "type": { - "type": "reference", - "target": 6208, - "name": "FilterableOrderShippingMethodAdjustmentProps", - "package": "@medusajs/types" - } - }, - { - "id": 5191, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The configurations determining how the order shipping method adjustment is retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, - { - "kind": "text", - "text": " or " - }, - { - "kind": "code", - "text": "`relations`" - }, - { - "kind": "text", - "text": ", accept the\nattributes or relations associated with a order shipping method adjustment." + "text": "The order change's ID." } ] }, "type": { - "type": "reference", - "target": 5571, - "typeArguments": [ - { - "type": "reference", - "target": 6216, - "name": "OrderShippingMethodAdjustmentDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } }, { - "id": 5192, + "id": 5390, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -36297,7 +43516,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -36311,90 +43530,91 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6216, - "name": "OrderShippingMethodAdjustmentDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5193, - "name": "createShippingMethodAdjustments", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5194, - "name": "createShippingMethodAdjustments", + "id": 5391, + "name": "declineOrderChange", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method Represents the completion of an asynchronous operation" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.declineOrderChange([\"orderChangeId\"]);\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 5195, - "name": "data", + "id": 5392, + "name": "orderChangeId", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order change's ID." + } + ] + }, "type": { "type": "array", "elementType": { - "type": "reference", - "target": 6228, - "name": "CreateOrderShippingMethodAdjustmentDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" }, - "typeArguments": [ - { - "type": "array", - "elementType": { - "type": "reference", - "target": 6216, - "name": "OrderShippingMethodAdjustmentDTO", - "package": "@medusajs/types" - } - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 5196, - "name": "createShippingMethodAdjustments", - "variant": "signature", - "kind": 4096, - "flags": {}, - "parameters": [ { - "id": 5197, - "name": "data", + "id": 5393, + "name": "sharedContext", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 6228, - "name": "CreateOrderShippingMethodAdjustmentDTO", + "target": 5889, + "name": "Context", "package": "@medusajs/types" } } @@ -36407,10 +43627,8 @@ }, "typeArguments": [ { - "type": "reference", - "target": 6216, - "name": "OrderShippingMethodAdjustmentDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -36418,50 +43636,80 @@ } }, { - "id": 5198, - "name": "createShippingMethodAdjustments", + "id": 5394, + "name": "declineOrderChange", "variant": "signature", "kind": 4096, "flags": {}, - "parameters": [ - { - "id": 5199, - "name": "orderId", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method Represents the completion of an asynchronous operation" } - }, + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.declineOrderChange({\n id: \"123456\",\n});\n```" + } + ] + } + ] + }, + "parameters": [ { - "id": 5200, + "id": 5395, "name": "data", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The decline order change details." + } + ] + }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6228, - "name": "CreateOrderShippingMethodAdjustmentDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 6644, + "name": "DeclineOrderChangeDTO", + "package": "@medusajs/types" } }, { - "id": 5201, + "id": 5396, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -36475,31 +43723,17 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6216, - "name": "OrderShippingMethodAdjustmentDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5202, - "name": "setShippingMethodAdjustments", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5203, - "name": "setShippingMethodAdjustments", + "id": 5397, + "name": "declineOrderChange", "variant": "signature", "kind": 4096, "flags": {}, @@ -36516,7 +43750,7 @@ "content": [ { "kind": "text", - "text": "Represents the completion of an asynchronous operation" + "text": "Resolves when {summary}" } ] }, @@ -36525,7 +43759,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nawait orderModuleService.setShippingMethodAdjustments(\"orderId123\", [\n {\n shipping_method_id: \"shipMethodId123\",\n code: \"CODE123\",\n amount: 1000,\n }\n]);\n```" + "text": "```typescript\nawait orderModuleService.declineOrderChange([\n {\n id: \"12345\",\n }\n]);\n```" } ] } @@ -36533,26 +43767,7 @@ }, "parameters": [ { - "id": 5204, - "name": "orderId", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order's ID." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 5205, + "id": 5398, "name": "data", "variant": "param", "kind": 32768, @@ -36561,33 +43776,22 @@ "summary": [ { "kind": "text", - "text": "The list of The order shipping method adjustment d t o | update order shipping method adjustment to be created." + "text": "The decline order change details." } ] }, "type": { "type": "array", "elementType": { - "type": "union", - "types": [ - { - "type": "reference", - "target": 6228, - "name": "CreateOrderShippingMethodAdjustmentDTO", - "package": "@medusajs/types" - }, - { - "type": "reference", - "target": 6235, - "name": "UpdateOrderShippingMethodAdjustmentDTO", - "package": "@medusajs/types" - } - ] + "type": "reference", + "target": 6644, + "name": "DeclineOrderChangeDTO", + "package": "@medusajs/types" } } }, { - "id": 5206, + "id": 5399, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -36604,7 +43808,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -36618,13 +43822,8 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6216, - "name": "OrderShippingMethodAdjustmentDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -36634,35 +43833,85 @@ ] }, { - "id": 5207, - "name": "deleteShippingMethodAdjustments", + "id": 5400, + "name": "softDeleteOrderChanges", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5208, - "name": "deleteShippingMethodAdjustments", + "id": 5401, + "name": "softDeleteOrderChanges", "variant": "signature", "kind": 4096, "flags": {}, + "typeParameters": [ + { + "id": 5402, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" + } + } + ], "parameters": [ { - "id": 5209, - "name": "adjustmentIds", + "id": 5403, + "name": "orderChangeId", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + { + "id": 5404, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 6136, + "typeArguments": [ + { + "type": "reference", + "target": 5402, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "SoftDeleteReturn", + "package": "@medusajs/types" } }, { - "id": 5210, + "id": 5405, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -36671,7 +43920,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -36685,34 +43934,123 @@ }, "typeArguments": [ { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5406, + "name": "restoreOrderChanges", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5407, + "name": "restoreOrderChanges", + "variant": "signature", + "kind": 4096, + "flags": {}, + "typeParameters": [ + { + "id": 5408, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { "type": "intrinsic", - "name": "void" + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" + } + } + ], + "parameters": [ + { + "id": 5409, + "name": "orderChangeId", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 5211, - "name": "deleteShippingMethodAdjustments", - "variant": "signature", - "kind": 4096, - "flags": {}, - "parameters": [ + }, { - "id": 5212, - "name": "adjustmentId", + "id": 5410, + "name": "config", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 6139, + "typeArguments": [ + { + "type": "reference", + "target": 5408, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "RestoreReturn", + "package": "@medusajs/types" } }, { - "id": 5213, + "id": 5411, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -36721,7 +44059,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -36735,56 +44073,135 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5412, + "name": "applyPendingOrderActions", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5214, - "name": "deleteShippingMethodAdjustments", + "id": 5413, + "name": "applyPendingOrderActions", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method {summary}" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "{summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.applyPendingOrderActions(\"12345\");\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 5215, - "name": "selector", + "id": 5414, + "name": "orderId", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order's ID." + } + ] + }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Partial" - }, - "typeArguments": [ + "type": "union", + "types": [ { - "type": "reference", - "target": 6216, - "name": "OrderShippingMethodAdjustmentDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } - ], - "name": "Partial", - "package": "typescript" + ] } }, { - "id": 5216, + "id": 5415, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -36798,8 +44215,10 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "reference", + "target": 6626, + "name": "OrderChangeReturn", + "package": "@medusajs/types" } ], "name": "Promise", @@ -36809,15 +44228,15 @@ ] }, { - "id": 5217, - "name": "listLineItemTaxLines", + "id": 5416, + "name": "listOrderChangeActions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5218, - "name": "listLineItemTaxLines", + "id": 5417, + "name": "listOrderChangeActions", "variant": "signature", "kind": 4096, "flags": {}, @@ -36843,7 +44262,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nawait orderModuleService.listLineItemTaxLines({ id: \"123\" });\n```" + "text": "```typescript\nconst orderChangeActions = await orderModuleService.listOrderChangeActions();\n```" } ] } @@ -36851,28 +44270,30 @@ }, "parameters": [ { - "id": 5219, + "id": 5418, "name": "filters", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The filters to apply on the retrieved order line item tax line." + "text": "The filters to apply on the retrieved order change action." } ] }, "type": { "type": "reference", - "target": 6242, - "name": "FilterableOrderLineItemTaxLineProps", + "target": 6648, + "name": "FilterableOrderChangeActionProps", "package": "@medusajs/types" } }, { - "id": 5220, + "id": 5419, "name": "config", "variant": "param", "kind": 32768, @@ -36883,7 +44304,7 @@ "summary": [ { "kind": "text", - "text": "The configurations determining how the order line item tax line is retrieved. Its properties, such as " + "text": "The configurations determining how the order is retrieved. Its properties, such as " }, { "kind": "code", @@ -36899,18 +44320,18 @@ }, { "kind": "text", - "text": ", accept the\nattributes or relations associated with a order line item tax line." + "text": ", accept the\nattributes or relations associated with a order." } ] }, "type": { "type": "reference", - "target": 5571, + "target": 5812, "typeArguments": [ { "type": "reference", - "target": 6252, - "name": "OrderLineItemTaxLineDTO", + "target": 6655, + "name": "OrderChangeActionDTO", "package": "@medusajs/types" } ], @@ -36919,7 +44340,7 @@ } }, { - "id": 5221, + "id": 5420, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -36936,7 +44357,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -36953,8 +44374,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 6252, - "name": "OrderLineItemTaxLineDTO", + "target": 6655, + "name": "OrderChangeActionDTO", "package": "@medusajs/types" } } @@ -36966,74 +44387,133 @@ ] }, { - "id": 5222, - "name": "createLineItemTaxLines", + "id": 5421, + "name": "retrieveOrderChangeAction", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5223, - "name": "createLineItemTaxLines", + "id": 5422, + "name": "retrieveOrderChangeAction", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method retrieves a {return type} by its ID." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The retrieved {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst result = await orderModuleService.retrieveOrderChangeAction(\"actionId123\");\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 5224, - "name": "taxLines", + "id": 5423, + "name": "actionId", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order change action's ID." + } + ] + }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6267, - "name": "CreateOrderLineItemTaxLineDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "string" } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" }, - "typeArguments": [ - { - "type": "array", - "elementType": { - "type": "reference", - "target": 6252, - "name": "OrderLineItemTaxLineDTO", - "package": "@medusajs/types" - } + { + "id": 5424, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The configurations determining how the order is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a order." + } + ] + }, + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ + { + "type": "reference", + "target": 6655, + "name": "OrderChangeActionDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 5225, - "name": "createLineItemTaxLines", - "variant": "signature", - "kind": 4096, - "flags": {}, - "parameters": [ + }, { - "id": 5226, - "name": "taxLine", + "id": 5425, + "name": "sharedContext", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 6267, - "name": "CreateOrderLineItemTaxLineDTO", + "target": 5889, + "name": "Context", "package": "@medusajs/types" } } @@ -37047,62 +44527,46 @@ "typeArguments": [ { "type": "reference", - "target": 6252, - "name": "OrderLineItemTaxLineDTO", + "target": 6655, + "name": "OrderChangeActionDTO", "package": "@medusajs/types" } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5426, + "name": "updateOrderChangeActions", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5227, - "name": "createLineItemTaxLines", + "id": 5427, + "name": "updateOrderChangeActions", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5228, - "name": "orderId", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 5229, - "name": "taxLines", + "id": 5428, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "reference", - "target": 6267, - "name": "CreateOrderLineItemTaxLineDTO", - "package": "@medusajs/types" - }, - { - "type": "array", - "elementType": { - "type": "reference", - "target": 6267, - "name": "CreateOrderLineItemTaxLineDTO", - "package": "@medusajs/types" - } - } - ] + "type": "reference", + "target": 6668, + "name": "UpdateOrderChangeActionDTO", + "package": "@medusajs/types" } }, { - "id": 5230, + "id": 5429, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -37111,7 +44575,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -37125,31 +44589,19 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6252, - "name": "OrderLineItemTaxLineDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 6655, + "name": "OrderChangeActionDTO", + "package": "@medusajs/types" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5231, - "name": "setLineItemTaxLines", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5232, - "name": "setLineItemTaxLines", + "id": 5430, + "name": "updateOrderChangeActions", "variant": "signature", "kind": 4096, "flags": {}, @@ -37157,7 +44609,7 @@ "summary": [ { "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" + "text": "This method updates {return type}(s)" } ], "blockTags": [ @@ -37166,7 +44618,7 @@ "content": [ { "kind": "text", - "text": "Represents the completion of an asynchronous operation" + "text": "The updated {return type}(s)." } ] }, @@ -37175,7 +44627,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nconst orderId = '12345';\nconst taxLines: (CreateOrderLineItemTaxLineDTO | UpdateOrderLineItemTaxLineDTO)[] = [\n {\n code: \"TAX1001\",\n rate: 70,\n }\n];\n\nconst result = await orderModuleService.setLineItemTaxLines(orderId, taxLines);\n\nconsole.log(result);\n```" + "text": "```typescript\n// Example call to updateOrderChangeActions\n\nconst updateOrderChangeActionsData: UpdateOrderChangeActionDTO[] = [{\n id: \"orderchangeaction123\",\n ...\n}];\n\nconst result = await orderModuleService.updateOrderChangeActions(updateOrderChangeActionsData);\n```" } ] } @@ -37183,27 +44635,8 @@ }, "parameters": [ { - "id": 5233, - "name": "orderId", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order's ID." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 5234, - "name": "taxLines", + "id": 5431, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, @@ -37211,33 +44644,22 @@ "summary": [ { "kind": "text", - "text": "The list of The order line item tax line d t o | update order line item tax line to be created." + "text": "The order change action to be updated." } ] }, "type": { "type": "array", "elementType": { - "type": "union", - "types": [ - { - "type": "reference", - "target": 6267, - "name": "CreateOrderLineItemTaxLineDTO", - "package": "@medusajs/types" - }, - { - "type": "reference", - "target": 6273, - "name": "UpdateOrderLineItemTaxLineDTO", - "package": "@medusajs/types" - } - ] + "type": "reference", + "target": 6668, + "name": "UpdateOrderChangeActionDTO", + "package": "@medusajs/types" } } }, { - "id": 5235, + "id": 5432, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -37254,7 +44676,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -37271,8 +44693,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 6252, - "name": "OrderLineItemTaxLineDTO", + "target": 6655, + "name": "OrderChangeActionDTO", "package": "@medusajs/types" } } @@ -37280,48 +44702,96 @@ "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5236, - "name": "deleteLineItemTaxLines", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5237, - "name": "deleteLineItemTaxLines", + "id": 5433, + "name": "updateOrderChangeActions", "variant": "signature", "kind": 4096, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method updates {return type}(s)" + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated {return type}(s)." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nconst result = await orderModuleService.updateOrderChangeActions({\n id: \"orderChangeAction123\",\n ...\n});\n```" + } + ] + } + ] + }, "parameters": [ { - "id": 5238, - "name": "taxLineIds", + "id": 5434, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The order change action d t o | order change to be updated." + } + ] + }, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "union", + "types": [ + { + "type": "reference", + "target": 6668, + "name": "UpdateOrderChangeActionDTO", + "package": "@medusajs/types" + }, + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6668, + "name": "UpdateOrderChangeActionDTO", + "package": "@medusajs/types" + } + } + ] } }, { - "id": 5239, + "id": 5435, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -37335,34 +44805,61 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "union", + "types": [ + { + "type": "reference", + "target": 6655, + "name": "OrderChangeActionDTO", + "package": "@medusajs/types" + }, + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6655, + "name": "OrderChangeActionDTO", + "package": "@medusajs/types" + } + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5436, + "name": "addOrderAction", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5240, - "name": "deleteLineItemTaxLines", + "id": 5437, + "name": "addOrderAction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5241, - "name": "taxLineIds", + "id": 5438, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 6671, + "name": "CreateOrderChangeActionDTO", + "package": "@medusajs/types" } }, { - "id": 5242, + "id": 5439, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -37371,7 +44868,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -37385,8 +44882,10 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "reference", + "target": 6655, + "name": "OrderChangeActionDTO", + "package": "@medusajs/types" } ], "name": "Promise", @@ -37394,27 +44893,30 @@ } }, { - "id": 5243, - "name": "deleteLineItemTaxLines", + "id": 5440, + "name": "addOrderAction", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5244, - "name": "selector", + "id": 5441, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "reference", - "target": 6242, - "name": "FilterableOrderLineItemTaxLineProps", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6671, + "name": "CreateOrderChangeActionDTO", + "package": "@medusajs/types" + } } }, { - "id": 5245, + "id": 5442, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -37423,7 +44925,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -37437,8 +44939,13 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "array", + "elementType": { + "type": "reference", + "target": 6655, + "name": "OrderChangeActionDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -37448,15 +44955,15 @@ ] }, { - "id": 5246, - "name": "listShippingMethodTaxLines", + "id": 5443, + "name": "deleteOrderChangeActions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5247, - "name": "listShippingMethodTaxLines", + "id": 5444, + "name": "deleteOrderChangeActions", "variant": "signature", "kind": 4096, "flags": {}, @@ -37464,7 +44971,7 @@ "summary": [ { "kind": "text", - "text": "This method retrieves a paginated list of {return type}(s) based on optional filters and configuration." + "text": "This method deletes {return type} by its ID." } ], "blockTags": [ @@ -37473,7 +44980,7 @@ "content": [ { "kind": "text", - "text": "The list of {return type}(s)." + "text": "Resolves when {summary}" } ] }, @@ -37482,7 +44989,7 @@ "content": [ { "kind": "code", - "text": "```typescript\nasync function executeMethod() {\n const result = await orderModuleService.listShippingMethodTaxLines({\n id: \"123\",\n });\n}\n```" + "text": "```typescript\nawait orderModuleService.deleteOrderActions([\"12345abc\", \"67890def\"]);\n```" } ] } @@ -37490,8 +44997,8 @@ }, "parameters": [ { - "id": 5248, - "name": "filters", + "id": 5445, + "name": "actionId", "variant": "param", "kind": 32768, "flags": {}, @@ -37499,20 +45006,21 @@ "summary": [ { "kind": "text", - "text": "The filters to apply on the retrieved order shipping method tax line." + "text": "The list of {summary}" } ] }, "type": { - "type": "reference", - "target": 6280, - "name": "FilterableOrderShippingMethodTaxLineProps", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 5249, - "name": "config", + "id": 5446, + "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { @@ -37522,43 +45030,82 @@ "summary": [ { "kind": "text", - "text": "The configurations determining how the order shipping method tax line is retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, - { - "kind": "text", - "text": " or " - }, - { - "kind": "code", - "text": "`relations`" - }, - { - "kind": "text", - "text": ", accept the\nattributes or relations associated with a order shipping method tax line." + "text": "A context used to share resources, such as transaction manager, between the application and the module." } ] }, "type": { "type": "reference", - "target": 5571, - "typeArguments": [ + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5447, + "name": "deleteOrderChangeActions", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method deletes {return type} by its ID." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ { - "type": "reference", - "target": 6290, - "name": "OrderShippingMethodTaxLineDTO", - "package": "@medusajs/types" + "kind": "text", + "text": "Resolves when {summary}" } - ], - "name": "FindConfig", - "package": "@medusajs/types" + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.deleteOrderActions(\"orderActionId\");\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 5448, + "name": "actionId", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" } }, { - "id": 5250, + "id": 5449, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -37575,7 +45122,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -37589,13 +45136,8 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6290, - "name": "OrderShippingMethodTaxLineDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -37605,152 +45147,121 @@ ] }, { - "id": 5251, - "name": "createShippingMethodTaxLines", + "id": 5450, + "name": "softDeleteOrderChangeActions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5252, - "name": "createShippingMethodTaxLines", + "id": 5451, + "name": "softDeleteOrderChangeActions", "variant": "signature", "kind": 4096, "flags": {}, - "parameters": [ - { - "id": 5253, - "name": "taxLines", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6305, - "name": "CreateOrderShippingMethodTaxLineDTO", - "package": "@medusajs/types" - } - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ + "comment": { + "summary": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6290, - "name": "OrderShippingMethodTaxLineDTO", - "package": "@medusajs/types" - } + "kind": "text", + "text": "This method deletes {return type} by its ID." } ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 5254, - "name": "createShippingMethodTaxLines", - "variant": "signature", - "kind": 4096, - "flags": {}, - "parameters": [ + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves when {summary}" + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```typescript\nawait orderModuleService.softDeleteOrderChangeActions(\"orderActionId\");\n```" + } + ] + } + ] + }, + "typeParameters": [ { - "id": 5255, - "name": "taxLine", - "variant": "param", - "kind": 32768, + "id": 5452, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, "flags": {}, "type": { - "type": "reference", - "target": 6305, - "name": "CreateOrderShippingMethodTaxLineDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" } } ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 6290, - "name": "OrderShippingMethodTaxLineDTO", - "package": "@medusajs/types" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 5256, - "name": "createShippingMethodTaxLines", - "variant": "signature", - "kind": 4096, - "flags": {}, "parameters": [ { - "id": 5257, - "name": "orderId", + "id": 5453, + "name": "actionIds", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 5258, - "name": "taxLines", + "id": 5454, + "name": "config", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "union", - "types": [ + "type": "reference", + "target": 6136, + "typeArguments": [ { "type": "reference", - "target": 6305, - "name": "CreateOrderShippingMethodTaxLineDTO", - "package": "@medusajs/types" - }, - { - "type": "array", - "elementType": { - "type": "reference", - "target": 6305, - "name": "CreateOrderShippingMethodTaxLineDTO", - "package": "@medusajs/types" - } + "target": 5452, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true } - ] + ], + "name": "SoftDeleteReturn", + "package": "@medusajs/types" } }, { - "id": 5259, + "id": 5455, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -37764,13 +45275,38 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6290, - "name": "OrderShippingMethodTaxLineDTO", - "package": "@medusajs/types" - } + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5452, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", @@ -37780,140 +45316,136 @@ ] }, { - "id": 5260, - "name": "setShippingMethodTaxLines", + "id": 5456, + "name": "restoreOrderChangeActions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5261, - "name": "setShippingMethodTaxLines", + "id": 5457, + "name": "restoreOrderChangeActions", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Represents the completion of an asynchronous operation" - } - ] + "typeParameters": [ + { + "id": 5458, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst orderId = \"someOrderId\";\nconst taxLines = [\n {\n code: \"VAT20\",\n rate: 20,\n }\n];\n\nconst result = await orderModuleService.setShippingMethodTaxLines(orderId, taxLines);\n```" - } - ] + "default": { + "type": "intrinsic", + "name": "string" } - ] - }, + } + ], "parameters": [ { - "id": 5262, - "name": "orderId", + "id": 5459, + "name": "actionId", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ + "type": { + "type": "union", + "types": [ { - "kind": "text", - "text": "The order's ID." + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } ] - }, - "type": { - "type": "intrinsic", - "name": "string" } }, { - "id": 5263, - "name": "taxLines", + "id": 5460, + "name": "config", "variant": "param", "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The list of The order shipping method tax line d t o | update order shipping method tax line to be created." - } - ] + "flags": { + "isOptional": true }, "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "reference", - "target": 6305, - "name": "CreateOrderShippingMethodTaxLineDTO", - "package": "@medusajs/types" - }, - { - "type": "reference", - "target": 6311, - "name": "UpdateOrderShippingMethodTaxLineDTO", - "package": "@medusajs/types" - } - ] - } + "type": "reference", + "target": 6139, + "typeArguments": [ + { + "type": "reference", + "target": 5458, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "RestoreReturn", + "package": "@medusajs/types" } }, { - "id": 5264, + "id": 5461, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "union", + "types": [ { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" } ] - }, - "type": { - "type": "reference", - "target": 5647, - "name": "Context", - "package": "@medusajs/types" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "array", - "elementType": { - "type": "reference", - "target": 6290, - "name": "OrderShippingMethodTaxLineDTO", - "package": "@medusajs/types" - } } ], "name": "Promise", @@ -37923,22 +45455,39 @@ ] }, { - "id": 5265, - "name": "deleteShippingMethodTaxLines", + "id": 5462, + "name": "softDeleteAddresses", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5266, - "name": "deleteShippingMethodTaxLines", + "id": 5463, + "name": "softDeleteAddresses", "variant": "signature", "kind": 4096, "flags": {}, + "typeParameters": [ + { + "id": 5464, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" + } + } + ], "parameters": [ { - "id": 5267, - "name": "taxLineIds", + "id": 5465, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, @@ -37951,8 +45500,8 @@ } }, { - "id": 5268, - "name": "sharedContext", + "id": 5466, + "name": "config", "variant": "param", "kind": 32768, "flags": { @@ -37960,48 +45509,22 @@ }, "type": { "type": "reference", - "target": 5647, - "name": "Context", + "target": 6136, + "typeArguments": [ + { + "type": "reference", + "target": 5464, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "SoftDeleteReturn", "package": "@medusajs/types" } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "void" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 5269, - "name": "deleteShippingMethodTaxLines", - "variant": "signature", - "kind": 4096, - "flags": {}, - "parameters": [ - { - "id": 5270, - "name": "taxLineIds", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } }, { - "id": 5271, + "id": 5467, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -38010,7 +45533,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -38024,36 +45547,117 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5464, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5468, + "name": "restoreAddresses", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5272, - "name": "deleteShippingMethodTaxLines", + "id": 5469, + "name": "restoreAddresses", "variant": "signature", "kind": 4096, "flags": {}, + "typeParameters": [ + { + "id": 5470, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" + } + } + ], "parameters": [ { - "id": 5273, - "name": "selector", + "id": 5471, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 5472, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, "type": { "type": "reference", - "target": 6280, - "name": "FilterableOrderShippingMethodTaxLineProps", + "target": 6139, + "typeArguments": [ + { + "type": "reference", + "target": 5470, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "RestoreReturn", "package": "@medusajs/types" } }, { - "id": 5274, + "id": 5473, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -38062,7 +45666,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -38076,8 +45680,38 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5470, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", @@ -38087,34 +45721,76 @@ ] }, { - "id": 5275, - "name": "createOrderChange", + "id": 5474, + "name": "softDeleteLineItems", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5276, - "name": "createOrderChange", + "id": 5475, + "name": "softDeleteLineItems", "variant": "signature", "kind": 4096, "flags": {}, + "typeParameters": [ + { + "id": 5476, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" + } + } + ], "parameters": [ { - "id": 5277, - "name": "data", + "id": 5477, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 5478, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, "type": { "type": "reference", - "target": 6318, - "name": "CreateOrderChangeDTO", + "target": 6136, + "typeArguments": [ + { + "type": "reference", + "target": 5476, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "SoftDeleteReturn", "package": "@medusajs/types" } }, { - "id": 5278, + "id": 5479, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -38123,7 +45799,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -38137,94 +45813,126 @@ }, "typeArguments": [ { - "type": "reference", - "target": 6330, - "name": "OrderChangeDTO", - "package": "@medusajs/types" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5476, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5480, + "name": "restoreLineItems", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5279, - "name": "createOrderChange", + "id": 5481, + "name": "restoreLineItems", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method creates {return type}(s)" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "The created {return type}(s)." - } - ] + "typeParameters": [ + { + "id": 5482, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\n// Example call to createOrderChange\n\nconst createOrderChangeData: CreateOrderChangeDTO[] = [{\n order_id: \"order123\",\n description: \"Change due to customer request\"\n}];\n\nconst result = await orderModuleService.createOrderChange(createOrderChangeData);\n```" - } - ] + "default": { + "type": "intrinsic", + "name": "string" } - ] - }, + } + ], "parameters": [ { - "id": 5280, - "name": "data", + "id": 5483, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order change to be created." - } - ] - }, "type": { "type": "array", "elementType": { - "type": "reference", - "target": 6318, - "name": "CreateOrderChangeDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } } }, { - "id": 5281, - "name": "sharedContext", + "id": 5484, + "name": "config", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ + "type": { + "type": "reference", + "target": 6139, + "typeArguments": [ { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "type": "reference", + "target": 5482, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true } - ] + ], + "name": "RestoreReturn", + "package": "@medusajs/types" + } + }, + { + "id": 5485, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -38238,108 +45946,126 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6330, - "name": "OrderChangeDTO", - "package": "@medusajs/types" - } + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5482, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5486, + "name": "softDeleteShippingMethods", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5282, - "name": "createOrderChange", + "id": 5487, + "name": "softDeleteShippingMethods", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method creates {return type}(s)" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "The created {return type}(s)." - } - ] + "typeParameters": [ + { + "id": 5488, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst result = await orderModuleService.createOrderChange({\n order_id: \"order123\",\n description: \"Adding new item to the order\"\n});\n```" - } - ] + "default": { + "type": "intrinsic", + "name": "string" + } + } + ], + "parameters": [ + { + "id": 5489, + "name": "ids", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } - ] - }, - "parameters": [ + }, { - "id": 5283, - "name": "data", + "id": 5490, + "name": "config", "variant": "param", "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order change d t o | create order change to be created." - } - ] + "flags": { + "isOptional": true }, "type": { - "type": "union", - "types": [ + "type": "reference", + "target": 6136, + "typeArguments": [ { "type": "reference", - "target": 6318, - "name": "CreateOrderChangeDTO", - "package": "@medusajs/types" - }, - { - "type": "array", - "elementType": { - "type": "reference", - "target": 6318, - "name": "CreateOrderChangeDTO", - "package": "@medusajs/types" - } + "target": 5488, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true } - ] + ], + "name": "SoftDeleteReturn", + "package": "@medusajs/types" } }, { - "id": 5284, + "id": 5491, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -38356,19 +46082,33 @@ "type": "union", "types": [ { - "type": "reference", - "target": 6330, - "name": "OrderChangeDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "void" }, { - "type": "array", - "elementType": { - "type": "reference", - "target": 6330, - "name": "OrderChangeDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5488, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" } ] } @@ -38380,85 +46120,85 @@ ] }, { - "id": 5285, - "name": "cancelOrderChange", + "id": 5492, + "name": "restoreShippingMethods", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5286, - "name": "cancelOrderChange", + "id": 5493, + "name": "restoreShippingMethods", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] + "typeParameters": [ + { + "id": 5494, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.cancelOrderChange(\"orderId123\");\n```" - } - ] + "default": { + "type": "intrinsic", + "name": "string" } - ] - }, + } + ], "parameters": [ { - "id": 5287, - "name": "orderId", + "id": 5495, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order's ID." - } - ] - }, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 5288, - "name": "sharedContext", + "id": 5496, + "name": "config", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ + "type": { + "type": "reference", + "target": 6139, + "typeArguments": [ { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "type": "reference", + "target": 5494, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true } - ] + ], + "name": "RestoreReturn", + "package": "@medusajs/types" + } + }, + { + "id": 5497, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -38472,63 +46212,83 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5494, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5498, + "name": "softDeleteLineItemAdjustments", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5289, - "name": "cancelOrderChange", + "id": 5499, + "name": "softDeleteLineItemAdjustments", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] + "typeParameters": [ + { + "id": 5500, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.cancelOrderChange([\"1234ABCD\"]);\n```" - } - ] + "default": { + "type": "intrinsic", + "name": "string" } - ] - }, + } + ], "parameters": [ { - "id": 5290, - "name": "orderId", + "id": 5501, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order's ID." - } - ] - }, "type": { "type": "array", "elementType": { @@ -38538,24 +46298,40 @@ } }, { - "id": 5291, - "name": "sharedContext", + "id": 5502, + "name": "config", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ + "type": { + "type": "reference", + "target": 6136, + "typeArguments": [ { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "type": "reference", + "target": 5500, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true } - ] + ], + "name": "SoftDeleteReturn", + "package": "@medusajs/types" + } + }, + { + "id": 5503, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -38569,89 +46345,126 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5500, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5504, + "name": "restoreLineItemAdjustments", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5292, - "name": "cancelOrderChange", + "id": 5505, + "name": "restoreLineItemAdjustments", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] + "typeParameters": [ + { + "id": 5506, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst cancelOrderChangeData: CancelOrderChangeDTO = {\n id: \"orderChangeId\",\n};\n\nawait orderModuleService.cancelOrderChange(cancelOrderChangeData);\n```" - } - ] + "default": { + "type": "intrinsic", + "name": "string" } - ] - }, + } + ], "parameters": [ { - "id": 5293, - "name": "data", + "id": 5507, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The cancel order change details." - } - ] + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 5508, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true }, "type": { "type": "reference", - "target": 6348, - "name": "CancelOrderChangeDTO", + "target": 6139, + "typeArguments": [ + { + "type": "reference", + "target": 5506, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "RestoreReturn", "package": "@medusajs/types" } }, { - "id": 5294, + "id": 5509, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -38665,92 +46478,126 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5506, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5510, + "name": "softDeleteShippingMethodAdjustments", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5295, - "name": "cancelOrderChange", + "id": 5511, + "name": "softDeleteShippingMethodAdjustments", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] + "typeParameters": [ + { + "id": 5512, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.cancelOrderChange([{ id: \"orderChangeId\" }]);\n```" - } - ] + "default": { + "type": "intrinsic", + "name": "string" } - ] - }, + } + ], "parameters": [ { - "id": 5296, - "name": "data", + "id": 5513, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The cancel order change details." - } - ] - }, "type": { "type": "array", "elementType": { - "type": "reference", - "target": 6348, - "name": "CancelOrderChangeDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } } }, { - "id": 5297, - "name": "sharedContext", + "id": 5514, + "name": "config", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ + "type": { + "type": "reference", + "target": 6136, + "typeArguments": [ { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "type": "reference", + "target": 5512, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true } - ] + ], + "name": "SoftDeleteReturn", + "package": "@medusajs/types" + } + }, + { + "id": 5515, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -38764,8 +46611,38 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5512, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", @@ -38775,77 +46652,85 @@ ] }, { - "id": 5298, - "name": "confirmOrderChange", + "id": 5516, + "name": "restoreShippingMethodAdjustments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5299, - "name": "confirmOrderChange", + "id": 5517, + "name": "restoreShippingMethodAdjustments", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] + "typeParameters": [ + { + "id": 5518, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.confirmOrderChange(\"123456789\");\n```" - } - ] + "default": { + "type": "intrinsic", + "name": "string" } - ] - }, + } + ], "parameters": [ { - "id": 5300, - "name": "orderChangeId", + "id": 5519, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 5301, - "name": "sharedContext", + "id": 5520, + "name": "config", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ + "type": { + "type": "reference", + "target": 6139, + "typeArguments": [ { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "type": "reference", + "target": 5518, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true } - ] + ], + "name": "RestoreReturn", + "package": "@medusajs/types" + } + }, + { + "id": 5521, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -38859,65 +46744,83 @@ }, "typeArguments": [ { - "type": "reference", - "target": 6352, - "name": "OrderChangeReturn", - "package": "@medusajs/types" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5518, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5522, + "name": "softDeleteLineItemTaxLines", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5302, - "name": "confirmOrderChange", + "id": 5523, + "name": "softDeleteLineItemTaxLines", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] + "typeParameters": [ + { + "id": 5524, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.confirmOrderChange([\"12345\"]);\n```" - } - ] + "default": { + "type": "intrinsic", + "name": "string" } - ] - }, + } + ], "parameters": [ { - "id": 5303, - "name": "orderChangeId", + "id": 5525, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order change's ID." - } - ] - }, "type": { "type": "array", "elementType": { @@ -38927,24 +46830,40 @@ } }, { - "id": 5304, - "name": "sharedContext", + "id": 5526, + "name": "config", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ + "type": { + "type": "reference", + "target": 6136, + "typeArguments": [ { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "type": "reference", + "target": 5524, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true } - ] + ], + "name": "SoftDeleteReturn", + "package": "@medusajs/types" + } + }, + { + "id": 5527, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -38958,89 +46877,126 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5524, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5528, + "name": "restoreLineItemTaxLines", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5305, - "name": "confirmOrderChange", + "id": 5529, + "name": "restoreLineItemTaxLines", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] + "typeParameters": [ + { + "id": 5530, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.confirmOrderChange({\n id: \"123456\"\n});\n```" - } - ] + "default": { + "type": "intrinsic", + "name": "string" } - ] - }, + } + ], "parameters": [ { - "id": 5306, - "name": "data", + "id": 5531, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The confirm order change details." - } - ] + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 5532, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true }, "type": { "type": "reference", - "target": 6366, - "name": "ConfirmOrderChangeDTO", + "target": 6139, + "typeArguments": [ + { + "type": "reference", + "target": 5530, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "RestoreReturn", "package": "@medusajs/types" } }, { - "id": 5307, + "id": 5533, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -39054,107 +47010,38 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 5308, - "name": "confirmOrderChange", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nconst confirmOrderChangesData: ConfirmOrderChangeDTO[] = [{\n id: \"orderChangeId\",\n}];\n\nawait orderModuleService.confirmOrderChange(confirmOrderChangesData);\n```" - } - ] - } - ] - }, - "parameters": [ - { - "id": 5309, - "name": "data", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ + "type": "union", + "types": [ { - "kind": "text", - "text": "The confirm order change details." - } - ] - }, - "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6366, - "name": "ConfirmOrderChangeDTO", - "package": "@medusajs/types" - } - } - }, - { - "id": 5310, - "name": "sharedContext", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ + "type": "intrinsic", + "name": "void" + }, { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5530, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" } ] - }, - "type": { - "type": "reference", - "target": 5647, - "name": "Context", - "package": "@medusajs/types" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "void" } ], "name": "Promise", @@ -39164,85 +47051,85 @@ ] }, { - "id": 5311, - "name": "declineOrderChange", + "id": 5534, + "name": "softDeleteShippingMethodTaxLines", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5312, - "name": "declineOrderChange", + "id": 5535, + "name": "softDeleteShippingMethodTaxLines", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] + "typeParameters": [ + { + "id": 5536, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.declineOrderChange(\"orderChangeId\");\n```" - } - ] + "default": { + "type": "intrinsic", + "name": "string" } - ] - }, + } + ], "parameters": [ { - "id": 5313, - "name": "orderChangeId", + "id": 5537, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order change's ID." - } - ] - }, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 5314, - "name": "sharedContext", + "id": 5538, + "name": "config", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ + "type": { + "type": "reference", + "target": 6136, + "typeArguments": [ { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "type": "reference", + "target": 5536, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true } - ] + ], + "name": "SoftDeleteReturn", + "package": "@medusajs/types" + } + }, + { + "id": 5539, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -39256,63 +47143,83 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5536, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5540, + "name": "restoreShippingMethodTaxLines", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5315, - "name": "declineOrderChange", + "id": 5541, + "name": "restoreShippingMethodTaxLines", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] + "typeParameters": [ + { + "id": 5542, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.declineOrderChange([\"orderChangeId\"]);\n```" - } - ] + "default": { + "type": "intrinsic", + "name": "string" } - ] - }, + } + ], "parameters": [ { - "id": 5316, - "name": "orderChangeId", + "id": 5543, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order change's ID." - } - ] - }, "type": { "type": "array", "elementType": { @@ -39322,24 +47229,40 @@ } }, { - "id": 5317, - "name": "sharedContext", + "id": 5544, + "name": "config", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ + "type": { + "type": "reference", + "target": 6139, + "typeArguments": [ { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "type": "reference", + "target": 5542, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true } - ] + ], + "name": "RestoreReturn", + "package": "@medusajs/types" + } + }, + { + "id": 5545, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -39353,89 +47276,82 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5542, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5546, + "name": "revertLastVersion", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5318, - "name": "declineOrderChange", + "id": 5547, + "name": "revertLastVersion", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.declineOrderChange({\n id: \"123456\",\n});\n```" - } - ] - } - ] - }, "parameters": [ { - "id": 5319, - "name": "data", + "id": 5548, + "name": "orderId", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The decline order change details." - } - ] - }, "type": { - "type": "reference", - "target": 6370, - "name": "DeclineOrderChangeDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } }, { - "id": 5320, + "id": 5549, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -39456,85 +47372,72 @@ "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5550, + "name": "listTransactions", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5321, - "name": "declineOrderChange", + "id": 5551, + "name": "listTransactions", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method Represents the completion of an asynchronous operation" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "Resolves when {summary}" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.declineOrderChange([\n {\n id: \"12345\",\n }\n]);\n```" - } - ] - } - ] - }, "parameters": [ { - "id": 5322, - "name": "data", + "id": 5552, + "name": "filters", "variant": "param", "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The decline order change details." - } - ] + "flags": { + "isOptional": true }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6370, - "name": "DeclineOrderChangeDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 6684, + "name": "FilterableOrderTransactionProps", + "package": "@medusajs/types" } }, { - "id": 5323, - "name": "sharedContext", + "id": 5553, + "name": "config", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ + "type": { + "type": "reference", + "target": 5812, + "typeArguments": [ { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "type": "reference", + "target": 6693, + "name": "OrderTransactionDTO", + "package": "@medusajs/types" } - ] + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 5554, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -39548,8 +47451,13 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "array", + "elementType": { + "type": "reference", + "target": 6693, + "name": "OrderTransactionDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -39559,97 +47467,43 @@ ] }, { - "id": 5324, - "name": "applyPendingOrderActions", + "id": 5555, + "name": "addTransactions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5325, - "name": "applyPendingOrderActions", + "id": 5556, + "name": "addTransactions", "variant": "signature", "kind": 4096, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method {summary}" - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "{summary}" - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```typescript\nawait orderModuleService.applyPendingOrderActions(\"12345\");\n```" - } - ] - } - ] - }, "parameters": [ { - "id": 5326, - "name": "orderId", + "id": 5557, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The order's ID." - } - ] - }, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ] + "type": "reference", + "target": 6705, + "name": "CreateOrderTransactionDTO", + "package": "@medusajs/types" } }, { - "id": 5327, + "id": 5558, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -39664,46 +47518,40 @@ "typeArguments": [ { "type": "reference", - "target": 6352, - "name": "OrderChangeReturn", + "target": 6693, + "name": "OrderTransactionDTO", "package": "@medusajs/types" } ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 5328, - "name": "addOrderAction", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + "name": "Promise", + "package": "typescript" + } + }, { - "id": 5329, - "name": "addOrderAction", + "id": 5559, + "name": "addTransactions", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5330, + "id": 5560, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "reference", - "target": 6374, - "name": "CreateOrderChangeActionDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6705, + "name": "CreateOrderTransactionDTO", + "package": "@medusajs/types" + } } }, { - "id": 5331, + "id": 5561, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -39712,7 +47560,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -39726,41 +47574,71 @@ }, "typeArguments": [ { - "type": "reference", - "target": 6387, - "name": "OrderChangeActionDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6693, + "name": "OrderTransactionDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 5562, + "name": "deleteTransactions", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 5332, - "name": "addOrderAction", + "id": 5563, + "name": "deleteTransactions", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5333, - "name": "data", + "id": 5564, + "name": "transactionIds", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6374, - "name": "CreateOrderChangeActionDTO", - "package": "@medusajs/types" - } + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "object" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "object" + } + } + ] } }, { - "id": 5334, + "id": 5565, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -39769,7 +47647,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -39783,13 +47661,8 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6387, - "name": "OrderChangeActionDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -39799,21 +47672,21 @@ ] }, { - "id": 5335, - "name": "softDeleteAddresses", + "id": 5566, + "name": "softDeleteTransactions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5336, - "name": "softDeleteAddresses", + "id": 5567, + "name": "softDeleteTransactions", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 5337, + "id": 5568, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -39830,8 +47703,8 @@ ], "parameters": [ { - "id": 5338, - "name": "ids", + "id": 5569, + "name": "transactionIds", "variant": "param", "kind": 32768, "flags": {}, @@ -39844,7 +47717,7 @@ } }, { - "id": 5339, + "id": 5570, "name": "config", "variant": "param", "kind": 32768, @@ -39853,11 +47726,11 @@ }, "type": { "type": "reference", - "target": 5890, + "target": 6136, "typeArguments": [ { "type": "reference", - "target": 5337, + "target": 5568, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -39868,7 +47741,7 @@ } }, { - "id": 5340, + "id": 5571, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -39877,7 +47750,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -39905,11 +47778,8 @@ }, "typeArguments": [ { - "type": "reference", - "target": 5337, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "intrinsic", + "name": "string" }, { "type": "array", @@ -39932,21 +47802,21 @@ ] }, { - "id": 5341, - "name": "restoreAddresses", + "id": 5572, + "name": "restoreTransactions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5342, - "name": "restoreAddresses", + "id": 5573, + "name": "restoreTransactions", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 5343, + "id": 5574, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -39963,8 +47833,8 @@ ], "parameters": [ { - "id": 5344, - "name": "ids", + "id": 5575, + "name": "transactionIds", "variant": "param", "kind": 32768, "flags": {}, @@ -39977,7 +47847,7 @@ } }, { - "id": 5345, + "id": 5576, "name": "config", "variant": "param", "kind": 32768, @@ -39986,11 +47856,11 @@ }, "type": { "type": "reference", - "target": 5893, + "target": 6139, "typeArguments": [ { "type": "reference", - "target": 5343, + "target": 5574, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -40001,7 +47871,7 @@ } }, { - "id": 5346, + "id": 5577, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -40010,7 +47880,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -40038,11 +47908,8 @@ }, "typeArguments": [ { - "type": "reference", - "target": 5343, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "intrinsic", + "name": "string" }, { "type": "array", @@ -40065,52 +47932,32 @@ ] }, { - "id": 5347, - "name": "softDeleteLineItems", + "id": 5578, + "name": "retrieveReturnReason", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5348, - "name": "softDeleteLineItems", + "id": 5579, + "name": "retrieveReturnReason", "variant": "signature", "kind": 4096, "flags": {}, - "typeParameters": [ - { - "id": 5349, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "default": { - "type": "intrinsic", - "name": "string" - } - } - ], "parameters": [ { - "id": 5350, - "name": "ids", + "id": 5580, + "name": "reasonId", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "string" } }, { - "id": 5351, + "id": 5581, "name": "config", "variant": "param", "kind": 32768, @@ -40119,22 +47966,21 @@ }, "type": { "type": "reference", - "target": 5890, + "target": 5812, "typeArguments": [ { "type": "reference", - "target": 5349, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true + "target": 6715, + "name": "OrderReturnReasonDTO", + "package": "@medusajs/types" } ], - "name": "SoftDeleteReturn", + "name": "FindConfig", "package": "@medusajs/types" } }, { - "id": 5352, + "id": 5582, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -40143,7 +47989,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -40157,38 +48003,10 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "reference", - "target": 5349, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "reference", + "target": 6715, + "name": "OrderReturnReasonDTO", + "package": "@medusajs/types" } ], "name": "Promise", @@ -40198,52 +48016,34 @@ ] }, { - "id": 5353, - "name": "restoreLineItems", + "id": 5583, + "name": "listReturnReasons", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5354, - "name": "restoreLineItems", + "id": 5584, + "name": "listReturnReasons", "variant": "signature", "kind": 4096, "flags": {}, - "typeParameters": [ - { - "id": 5355, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "default": { - "type": "intrinsic", - "name": "string" - } - } - ], "parameters": [ { - "id": 5356, - "name": "ids", + "id": 5585, + "name": "filters", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 6726, + "name": "FilterableOrderReturnReasonProps", + "package": "@medusajs/types" } }, { - "id": 5357, + "id": 5586, "name": "config", "variant": "param", "kind": 32768, @@ -40252,22 +48052,21 @@ }, "type": { "type": "reference", - "target": 5893, + "target": 5812, "typeArguments": [ { "type": "reference", - "target": 5355, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true + "target": 6715, + "name": "OrderReturnReasonDTO", + "package": "@medusajs/types" } ], - "name": "RestoreReturn", + "name": "FindConfig", "package": "@medusajs/types" } }, { - "id": 5358, + "id": 5587, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -40276,7 +48075,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -40290,38 +48089,13 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "reference", - "target": 5355, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "array", + "elementType": { + "type": "reference", + "target": 6715, + "name": "OrderReturnReasonDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -40331,53 +48105,238 @@ ] }, { - "id": 5359, - "name": "softDeleteShippingMethods", + "id": 5588, + "name": "createReturnReasons", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5360, - "name": "softDeleteShippingMethods", + "id": 5589, + "name": "createReturnReasons", "variant": "signature", "kind": 4096, "flags": {}, - "typeParameters": [ + "parameters": [ { - "id": 5361, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, + "id": 5590, + "name": "returnReasonData", + "variant": "param", + "kind": 32768, "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 6733, + "name": "CreateOrderReturnReasonDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5591, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true }, - "default": { - "type": "intrinsic", - "name": "string" + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" } } ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6715, + "name": "OrderReturnReasonDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5592, + "name": "createReturnReasons", + "variant": "signature", + "kind": 4096, + "flags": {}, "parameters": [ { - "id": 5362, - "name": "ids", + "id": 5593, + "name": "returnReasonData", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "array", "elementType": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 6733, + "name": "CreateOrderReturnReasonDTO", + "package": "@medusajs/types" } } }, { - "id": 5363, - "name": "config", + "id": 5594, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6715, + "name": "OrderReturnReasonDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5595, + "name": "updateReturnReasons", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5596, + "name": "updateReturnReasons", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5597, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 6739, + "name": "UpdateOrderReturnReasonWithSelectorDTO", + "package": "@medusajs/types" + } + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6715, + "name": "OrderReturnReasonDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5598, + "name": "updateReturnReasons", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5599, + "name": "selector", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6726, + "name": "FilterableOrderReturnReasonProps", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + }, + { + "id": 5600, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6742, + "name": "UpdateOrderReturnReasonDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + }, + { + "id": 5601, + "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { @@ -40385,22 +48344,77 @@ }, "type": { "type": "reference", - "target": 5890, + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 6715, + "name": "OrderReturnReasonDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5602, + "name": "updateReturnReasons", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5603, + "name": "id", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5604, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, "typeArguments": [ { "type": "reference", - "target": 5361, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true + "target": 6742, + "name": "UpdateOrderReturnReasonDTO", + "package": "@medusajs/types" } ], - "name": "SoftDeleteReturn", - "package": "@medusajs/types" + "name": "Partial", + "package": "typescript" } }, { - "id": 5364, + "id": 5605, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -40409,7 +48423,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -40423,38 +48437,10 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "reference", - "target": 5361, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "reference", + "target": 6715, + "name": "OrderReturnReasonDTO", + "package": "@medusajs/types" } ], "name": "Promise", @@ -40464,39 +48450,22 @@ ] }, { - "id": 5365, - "name": "restoreShippingMethods", + "id": 5606, + "name": "deleteReturnReasons", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5366, - "name": "restoreShippingMethods", + "id": 5607, + "name": "deleteReturnReasons", "variant": "signature", "kind": 4096, "flags": {}, - "typeParameters": [ - { - "id": 5367, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "default": { - "type": "intrinsic", - "name": "string" - } - } - ], "parameters": [ { - "id": 5368, - "name": "ids", + "id": 5608, + "name": "returnReasonIds", "variant": "param", "kind": 32768, "flags": {}, @@ -40509,31 +48478,7 @@ } }, { - "id": 5369, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5893, - "typeArguments": [ - { - "type": "reference", - "target": 5367, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - ], - "name": "RestoreReturn", - "package": "@medusajs/types" - } - }, - { - "id": 5370, + "id": 5609, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -40542,7 +48487,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -40556,38 +48501,8 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "reference", - "target": 5367, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -40597,21 +48512,21 @@ ] }, { - "id": 5371, - "name": "softDeleteLineItemAdjustments", + "id": 5610, + "name": "softDeleteReturnReasons", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5372, - "name": "softDeleteLineItemAdjustments", + "id": 5611, + "name": "softDeleteReturnReasons", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 5373, + "id": 5612, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -40628,7 +48543,7 @@ ], "parameters": [ { - "id": 5374, + "id": 5613, "name": "ids", "variant": "param", "kind": 32768, @@ -40642,7 +48557,7 @@ } }, { - "id": 5375, + "id": 5614, "name": "config", "variant": "param", "kind": 32768, @@ -40651,11 +48566,11 @@ }, "type": { "type": "reference", - "target": 5890, + "target": 6136, "typeArguments": [ { "type": "reference", - "target": 5373, + "target": 5612, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -40666,7 +48581,7 @@ } }, { - "id": 5376, + "id": 5615, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -40675,7 +48590,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -40703,11 +48618,8 @@ }, "typeArguments": [ { - "type": "reference", - "target": 5373, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "intrinsic", + "name": "string" }, { "type": "array", @@ -40730,21 +48642,21 @@ ] }, { - "id": 5377, - "name": "restoreLineItemAdjustments", + "id": 5616, + "name": "restoreReturnReasons", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5378, - "name": "restoreLineItemAdjustments", + "id": 5617, + "name": "restoreReturnReasons", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 5379, + "id": 5618, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -40761,7 +48673,7 @@ ], "parameters": [ { - "id": 5380, + "id": 5619, "name": "ids", "variant": "param", "kind": 32768, @@ -40775,7 +48687,7 @@ } }, { - "id": 5381, + "id": 5620, "name": "config", "variant": "param", "kind": 32768, @@ -40784,11 +48696,11 @@ }, "type": { "type": "reference", - "target": 5893, + "target": 6139, "typeArguments": [ { "type": "reference", - "target": 5379, + "target": 5618, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -40799,7 +48711,7 @@ } }, { - "id": 5382, + "id": 5621, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -40808,7 +48720,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -40836,11 +48748,8 @@ }, "typeArguments": [ { - "type": "reference", - "target": 5379, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "intrinsic", + "name": "string" }, { "type": "array", @@ -40863,53 +48772,35 @@ ] }, { - "id": 5383, - "name": "softDeleteShippingMethodAdjustments", + "id": 5622, + "name": "createReturns", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5384, - "name": "softDeleteShippingMethodAdjustments", + "id": 5623, + "name": "createReturns", "variant": "signature", "kind": 4096, "flags": {}, - "typeParameters": [ - { - "id": 5385, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "default": { - "type": "intrinsic", - "name": "string" - } - } - ], "parameters": [ { - "id": 5386, - "name": "ids", + "id": 5624, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 6748, + "name": "CreateOrderReturnDTO", + "package": "@medusajs/types" } }, { - "id": 5387, - "name": "config", + "id": 5625, + "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { @@ -40917,22 +48808,55 @@ }, "type": { "type": "reference", - "target": 5890, - "typeArguments": [ - { - "type": "reference", - "target": 5385, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - ], - "name": "SoftDeleteReturn", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5910, + "name": "ReturnDTO", "package": "@medusajs/types" } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5626, + "name": "createReturns", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5627, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 6748, + "name": "CreateOrderReturnDTO", + "package": "@medusajs/types" + } + } }, { - "id": 5388, + "id": 5628, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -40941,7 +48865,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -40955,38 +48879,13 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "reference", - "target": 5385, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "array", + "elementType": { + "type": "reference", + "target": 5910, + "name": "ReturnDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -40996,76 +48895,114 @@ ] }, { - "id": 5389, - "name": "restoreShippingMethodAdjustments", + "id": 5629, + "name": "updateReturns", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5390, - "name": "restoreShippingMethodAdjustments", + "id": 5630, + "name": "updateReturns", "variant": "signature", "kind": 4096, "flags": {}, - "typeParameters": [ + "parameters": [ { - "id": 5391, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, + "id": 5631, + "name": "data", + "variant": "param", + "kind": 32768, "flags": {}, "type": { - "type": "intrinsic", - "name": "string" - }, - "default": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "target": 6770, + "name": "UpdateOrderReturnWithSelectorDTO", + "package": "@medusajs/types" + } } } ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 5910, + "name": "ReturnDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5632, + "name": "updateReturns", + "variant": "signature", + "kind": 4096, + "flags": {}, "parameters": [ { - "id": 5392, - "name": "ids", + "id": 5633, + "name": "selector", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6773, + "name": "FilterableReturnProps", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" } }, { - "id": 5393, - "name": "config", + "id": 5634, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "reference", - "target": 5893, + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, "typeArguments": [ { "type": "reference", - "target": 5391, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true + "target": 6782, + "name": "UpdateOrderReturnDTO", + "package": "@medusajs/types" } ], - "name": "RestoreReturn", - "package": "@medusajs/types" + "name": "Partial", + "package": "typescript" } }, { - "id": 5394, + "id": 5635, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -41074,7 +49011,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -41088,117 +49025,63 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "reference", - "target": 5391, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "array", + "elementType": { + "type": "reference", + "target": 5910, + "name": "ReturnDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5395, - "name": "softDeleteLineItemTaxLines", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5396, - "name": "softDeleteLineItemTaxLines", + "id": 5636, + "name": "updateReturns", "variant": "signature", "kind": 4096, "flags": {}, - "typeParameters": [ - { - "id": 5397, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "default": { - "type": "intrinsic", - "name": "string" - } - } - ], "parameters": [ { - "id": 5398, - "name": "ids", + "id": 5637, + "name": "id", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "string" } }, { - "id": 5399, - "name": "config", + "id": 5638, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { "type": "reference", - "target": 5890, + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, "typeArguments": [ { "type": "reference", - "target": 5397, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true + "target": 6782, + "name": "UpdateOrderReturnDTO", + "package": "@medusajs/types" } ], - "name": "SoftDeleteReturn", - "package": "@medusajs/types" + "name": "Partial", + "package": "typescript" } }, { - "id": 5400, + "id": 5639, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -41207,7 +49090,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -41221,79 +49104,34 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "reference", - "target": 5397, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "reference", + "target": 5910, + "name": "ReturnDTO", + "package": "@medusajs/types" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5401, - "name": "restoreLineItemTaxLines", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ - { - "id": 5402, - "name": "restoreLineItemTaxLines", - "variant": "signature", - "kind": 4096, - "flags": {}, - "typeParameters": [ - { - "id": 5403, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "default": { - "type": "intrinsic", - "name": "string" - } - } - ], + } + ] + }, + { + "id": 5640, + "name": "deleteReturns", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5641, + "name": "deleteReturns", + "variant": "signature", + "kind": 4096, + "flags": {}, "parameters": [ { - "id": 5404, + "id": 5642, "name": "ids", "variant": "param", "kind": 32768, @@ -41307,31 +49145,7 @@ } }, { - "id": 5405, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5893, - "typeArguments": [ - { - "type": "reference", - "target": 5403, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - ], - "name": "RestoreReturn", - "package": "@medusajs/types" - } - }, - { - "id": 5406, + "id": 5643, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -41340,7 +49154,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -41354,38 +49168,8 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "reference", - "target": 5403, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -41395,21 +49179,21 @@ ] }, { - "id": 5407, - "name": "softDeleteShippingMethodTaxLines", + "id": 5644, + "name": "softDeleteReturns", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5408, - "name": "softDeleteShippingMethodTaxLines", + "id": 5645, + "name": "softDeleteReturns", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 5409, + "id": 5646, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -41426,7 +49210,7 @@ ], "parameters": [ { - "id": 5410, + "id": 5647, "name": "ids", "variant": "param", "kind": 32768, @@ -41440,7 +49224,7 @@ } }, { - "id": 5411, + "id": 5648, "name": "config", "variant": "param", "kind": 32768, @@ -41449,11 +49233,11 @@ }, "type": { "type": "reference", - "target": 5890, + "target": 6136, "typeArguments": [ { "type": "reference", - "target": 5409, + "target": 5646, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -41464,7 +49248,7 @@ } }, { - "id": 5412, + "id": 5649, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -41473,7 +49257,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -41501,11 +49285,8 @@ }, "typeArguments": [ { - "type": "reference", - "target": 5409, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "intrinsic", + "name": "string" }, { "type": "array", @@ -41528,21 +49309,21 @@ ] }, { - "id": 5413, - "name": "restoreShippingMethodTaxLines", + "id": 5650, + "name": "restoreReturns", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5414, - "name": "restoreShippingMethodTaxLines", + "id": 5651, + "name": "restoreReturns", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 5415, + "id": 5652, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -41559,7 +49340,7 @@ ], "parameters": [ { - "id": 5416, + "id": 5653, "name": "ids", "variant": "param", "kind": 32768, @@ -41573,7 +49354,7 @@ } }, { - "id": 5417, + "id": 5654, "name": "config", "variant": "param", "kind": 32768, @@ -41582,11 +49363,11 @@ }, "type": { "type": "reference", - "target": 5893, + "target": 6139, "typeArguments": [ { "type": "reference", - "target": 5415, + "target": 5652, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -41597,7 +49378,7 @@ } }, { - "id": 5418, + "id": 5655, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -41606,7 +49387,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -41634,11 +49415,8 @@ }, "typeArguments": [ { - "type": "reference", - "target": 5415, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true + "type": "intrinsic", + "name": "string" }, { "type": "array", @@ -41661,32 +49439,34 @@ ] }, { - "id": 5419, - "name": "revertLastVersion", + "id": 5656, + "name": "createOrderClaims", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5420, - "name": "revertLastVersion", + "id": 5657, + "name": "createOrderClaims", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5421, - "name": "orderId", + "id": 5658, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 6788, + "name": "CreateOrderClaimDTO", + "package": "@medusajs/types" } }, { - "id": 5422, + "id": 5659, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -41695,7 +49475,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -41709,70 +49489,41 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "reference", + "target": 5975, + "name": "OrderClaimDTO", + "package": "@medusajs/types" } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 5423, - "name": "listTransactions", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 5424, - "name": "listTransactions", + "id": 5660, + "name": "createOrderClaims", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5425, - "name": "filters", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 6400, - "name": "FilterableOrderTransactionProps", - "package": "@medusajs/types" - } - }, - { - "id": 5426, - "name": "config", + "id": 5661, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "type": { - "type": "reference", - "target": 5571, - "typeArguments": [ - { - "type": "reference", - "target": 6409, - "name": "OrderTransactionDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 6788, + "name": "CreateOrderClaimDTO", + "package": "@medusajs/types" + } } }, { - "id": 5427, + "id": 5662, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -41781,7 +49532,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -41798,8 +49549,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 6409, - "name": "OrderTransactionDTO", + "target": 5975, + "name": "OrderClaimDTO", "package": "@medusajs/types" } } @@ -41811,34 +49562,114 @@ ] }, { - "id": 5428, - "name": "addTransactions", + "id": 5663, + "name": "updateOrderClaims", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5429, - "name": "addTransactions", + "id": 5664, + "name": "updateOrderClaims", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5665, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 6812, + "name": "UpdateOrderClaimWithSelectorDTO", + "package": "@medusajs/types" + } + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 5975, + "name": "OrderClaimDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 5666, + "name": "updateOrderClaims", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5430, + "id": 5667, + "name": "selector", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6815, + "name": "FilterableOrderClaimProps", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" + } + }, + { + "id": 5668, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 6421, - "name": "CreateOrderTransactionDTO", - "package": "@medusajs/types" + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6821, + "name": "UpdateOrderClaimDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" } }, { - "id": 5431, + "id": 5669, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -41847,7 +49678,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -41861,10 +49692,13 @@ }, "typeArguments": [ { - "type": "reference", - "target": 6409, - "name": "OrderTransactionDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 5975, + "name": "OrderClaimDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -41872,30 +49706,49 @@ } }, { - "id": 5432, - "name": "addTransactions", + "id": 5670, + "name": "updateOrderClaims", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5433, + "id": 5671, + "name": "id", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 5672, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 6421, - "name": "CreateOrderTransactionDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Partial" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6821, + "name": "UpdateOrderClaimDTO", + "package": "@medusajs/types" + } + ], + "name": "Partial", + "package": "typescript" } }, { - "id": 5434, + "id": 5673, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -41904,7 +49757,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -41918,13 +49771,10 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 6409, - "name": "OrderTransactionDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 5975, + "name": "OrderClaimDTO", + "package": "@medusajs/types" } ], "name": "Promise", @@ -41934,55 +49784,35 @@ ] }, { - "id": 5435, - "name": "deleteTransactions", + "id": 5674, + "name": "deleteOrderClaims", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5436, - "name": "deleteTransactions", + "id": 5675, + "name": "deleteOrderClaims", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5437, - "name": "transactionIds", + "id": 5676, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "object" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "object" - } - } - ] + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 5438, + "id": 5677, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -41991,7 +49821,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -42016,21 +49846,21 @@ ] }, { - "id": 5439, - "name": "softDeleteTransactions", + "id": 5678, + "name": "softDeleteOrderClaims", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5440, - "name": "softDeleteTransactions", + "id": 5679, + "name": "softDeleteOrderClaims", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 5441, + "id": 5680, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -42047,8 +49877,8 @@ ], "parameters": [ { - "id": 5442, - "name": "transactionIds", + "id": 5681, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, @@ -42061,7 +49891,7 @@ } }, { - "id": 5443, + "id": 5682, "name": "config", "variant": "param", "kind": 32768, @@ -42070,11 +49900,11 @@ }, "type": { "type": "reference", - "target": 5890, + "target": 6136, "typeArguments": [ { "type": "reference", - "target": 5441, + "target": 5680, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -42085,7 +49915,7 @@ } }, { - "id": 5444, + "id": 5683, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -42094,7 +49924,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -42146,21 +49976,21 @@ ] }, { - "id": 5445, - "name": "restoreTransactions", + "id": 5684, + "name": "restoreOrderClaims", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5446, - "name": "restoreTransactions", + "id": 5685, + "name": "restoreOrderClaims", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 5447, + "id": 5686, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -42177,8 +50007,8 @@ ], "parameters": [ { - "id": 5448, - "name": "transactionIds", + "id": 5687, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, @@ -42191,7 +50021,7 @@ } }, { - "id": 5449, + "id": 5688, "name": "config", "variant": "param", "kind": 32768, @@ -42200,11 +50030,11 @@ }, "type": { "type": "reference", - "target": 5893, + "target": 6139, "typeArguments": [ { "type": "reference", - "target": 5447, + "target": 5686, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -42215,7 +50045,7 @@ } }, { - "id": 5450, + "id": 5689, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -42224,7 +50054,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -42276,207 +50106,34 @@ ] }, { - "id": 5451, - "name": "retrieveReturnReason", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ - { - "id": 5452, - "name": "retrieveReturnReason", - "variant": "signature", - "kind": 4096, - "flags": {}, - "parameters": [ - { - "id": 5453, - "name": "reasonId", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 5454, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5571, - "typeArguments": [ - { - "type": "reference", - "target": 6431, - "name": "OrderReturnReasonDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" - } - }, - { - "id": 5455, - "name": "sharedContext", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5647, - "name": "Context", - "package": "@medusajs/types" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 6431, - "name": "OrderReturnReasonDTO", - "package": "@medusajs/types" - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 5456, - "name": "listReturnReasons", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ - { - "id": 5457, - "name": "listReturnReasons", - "variant": "signature", - "kind": 4096, - "flags": {}, - "parameters": [ - { - "id": 5458, - "name": "filters", - "variant": "param", - "kind": 32768, - "flags": {}, - "type": { - "type": "reference", - "target": 6442, - "name": "FilterableOrderReturnReasonProps", - "package": "@medusajs/types" - } - }, - { - "id": 5459, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5571, - "typeArguments": [ - { - "type": "reference", - "target": 6431, - "name": "OrderReturnReasonDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" - } - }, - { - "id": 5460, - "name": "sharedContext", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "type": { - "type": "reference", - "target": 5647, - "name": "Context", - "package": "@medusajs/types" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "array", - "elementType": { - "type": "reference", - "target": 6431, - "name": "OrderReturnReasonDTO", - "package": "@medusajs/types" - } - } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 5461, - "name": "createReturnReasons", + "id": 5690, + "name": "createOrderExchanges", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5462, - "name": "createReturnReasons", + "id": 5691, + "name": "createOrderExchanges", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5463, - "name": "returnReasonData", + "id": 5692, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 6447, - "name": "CreateOrderReturnReasonDTO", + "target": 6827, + "name": "CreateOrderExchangeDTO", "package": "@medusajs/types" } }, { - "id": 5464, + "id": 5693, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -42485,7 +50142,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -42500,8 +50157,8 @@ "typeArguments": [ { "type": "reference", - "target": 6431, - "name": "OrderReturnReasonDTO", + "target": 6041, + "name": "OrderExchangeDTO", "package": "@medusajs/types" } ], @@ -42510,15 +50167,15 @@ } }, { - "id": 5465, - "name": "createReturnReasons", + "id": 5694, + "name": "createOrderExchanges", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5466, - "name": "returnReasonData", + "id": 5695, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, @@ -42526,14 +50183,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 6447, - "name": "CreateOrderReturnReasonDTO", + "target": 6827, + "name": "CreateOrderExchangeDTO", "package": "@medusajs/types" } } }, { - "id": 5467, + "id": 5696, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -42542,7 +50199,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -42559,8 +50216,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 6431, - "name": "OrderReturnReasonDTO", + "target": 6041, + "name": "OrderExchangeDTO", "package": "@medusajs/types" } } @@ -42572,21 +50229,21 @@ ] }, { - "id": 5468, - "name": "updateReturnReasons", + "id": 5697, + "name": "updateOrderExchanges", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5469, - "name": "updateReturnReasons", + "id": 5698, + "name": "updateOrderExchanges", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5470, + "id": 5699, "name": "data", "variant": "param", "kind": 32768, @@ -42595,8 +50252,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 6453, - "name": "UpdateOrderReturnReasonWithSelectorDTO", + "target": 6844, + "name": "UpdateOrderExchangeWithSelectorDTO", "package": "@medusajs/types" } } @@ -42613,8 +50270,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 6431, - "name": "OrderReturnReasonDTO", + "target": 6041, + "name": "OrderExchangeDTO", "package": "@medusajs/types" } } @@ -42624,14 +50281,14 @@ } }, { - "id": 5471, - "name": "updateReturnReasons", + "id": 5700, + "name": "updateOrderExchanges", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5472, + "id": 5701, "name": "selector", "variant": "param", "kind": 32768, @@ -42645,8 +50302,8 @@ "typeArguments": [ { "type": "reference", - "target": 6442, - "name": "FilterableOrderReturnReasonProps", + "target": 6847, + "name": "FilterableOrderExchangeProps", "package": "@medusajs/types" } ], @@ -42655,7 +50312,7 @@ } }, { - "id": 5473, + "id": 5702, "name": "data", "variant": "param", "kind": 32768, @@ -42669,8 +50326,8 @@ "typeArguments": [ { "type": "reference", - "target": 6456, - "name": "UpdateOrderReturnReasonDTO", + "target": 6854, + "name": "UpdateOrderExchangeDTO", "package": "@medusajs/types" } ], @@ -42679,7 +50336,7 @@ } }, { - "id": 5474, + "id": 5703, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -42688,7 +50345,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -42705,8 +50362,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 6431, - "name": "OrderReturnReasonDTO", + "target": 6041, + "name": "OrderExchangeDTO", "package": "@medusajs/types" } } @@ -42716,14 +50373,14 @@ } }, { - "id": 5475, - "name": "updateReturnReasons", + "id": 5704, + "name": "updateOrderExchanges", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5476, + "id": 5705, "name": "id", "variant": "param", "kind": 32768, @@ -42734,7 +50391,7 @@ } }, { - "id": 5477, + "id": 5706, "name": "data", "variant": "param", "kind": 32768, @@ -42748,8 +50405,8 @@ "typeArguments": [ { "type": "reference", - "target": 6456, - "name": "UpdateOrderReturnReasonDTO", + "target": 6854, + "name": "UpdateOrderExchangeDTO", "package": "@medusajs/types" } ], @@ -42758,7 +50415,7 @@ } }, { - "id": 5478, + "id": 5707, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -42767,7 +50424,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -42782,8 +50439,8 @@ "typeArguments": [ { "type": "reference", - "target": 6431, - "name": "OrderReturnReasonDTO", + "target": 6041, + "name": "OrderExchangeDTO", "package": "@medusajs/types" } ], @@ -42794,22 +50451,22 @@ ] }, { - "id": 5479, - "name": "deleteReturnReasons", + "id": 5708, + "name": "deleteOrderExchanges", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5480, - "name": "deleteReturnReasons", + "id": 5709, + "name": "deleteOrderExchanges", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5481, - "name": "returnReasonIds", + "id": 5710, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, @@ -42822,7 +50479,7 @@ } }, { - "id": 5482, + "id": 5711, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -42831,7 +50488,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -42856,21 +50513,21 @@ ] }, { - "id": 5483, - "name": "softDeleteReturnReasons", + "id": 5712, + "name": "softDeleteOrderExchanges", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5484, - "name": "softDeleteReturnReasons", + "id": 5713, + "name": "softDeleteOrderExchanges", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 5485, + "id": 5714, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -42887,8 +50544,8 @@ ], "parameters": [ { - "id": 5486, - "name": "storeIds", + "id": 5715, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, @@ -42901,7 +50558,7 @@ } }, { - "id": 5487, + "id": 5716, "name": "config", "variant": "param", "kind": 32768, @@ -42910,11 +50567,11 @@ }, "type": { "type": "reference", - "target": 5890, + "target": 6136, "typeArguments": [ { "type": "reference", - "target": 5485, + "target": 5714, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -42925,7 +50582,7 @@ } }, { - "id": 5488, + "id": 5717, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -42934,7 +50591,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -42986,21 +50643,21 @@ ] }, { - "id": 5489, - "name": "restoreReturnReasons", + "id": 5718, + "name": "restoreOrderExchanges", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5490, - "name": "restoreReturnReasons", + "id": 5719, + "name": "restoreOrderExchanges", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 5491, + "id": 5720, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -43017,8 +50674,8 @@ ], "parameters": [ { - "id": 5492, - "name": "storeIds", + "id": 5721, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, @@ -43031,7 +50688,7 @@ } }, { - "id": 5493, + "id": 5722, "name": "config", "variant": "param", "kind": 32768, @@ -43040,11 +50697,11 @@ }, "type": { "type": "reference", - "target": 5893, + "target": 6139, "typeArguments": [ { "type": "reference", - "target": 5491, + "target": 5720, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -43055,7 +50712,7 @@ } }, { - "id": 5494, + "id": 5723, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43064,7 +50721,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43116,21 +50773,21 @@ ] }, { - "id": 5495, + "id": 5724, "name": "archive", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5496, + "id": 5725, "name": "archive", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5497, + "id": 5726, "name": "orderId", "variant": "param", "kind": 32768, @@ -43144,7 +50801,7 @@ } }, { - "id": 5498, + "id": 5727, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43153,7 +50810,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43170,7 +50827,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 5584, + "target": 5825, "name": "OrderDTO", "package": "@medusajs/types" } @@ -43181,14 +50838,14 @@ } }, { - "id": 5499, + "id": 5728, "name": "archive", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5500, + "id": 5729, "name": "orderId", "variant": "param", "kind": 32768, @@ -43199,7 +50856,7 @@ } }, { - "id": 5501, + "id": 5730, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43208,7 +50865,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43223,7 +50880,7 @@ "typeArguments": [ { "type": "reference", - "target": 5584, + "target": 5825, "name": "OrderDTO", "package": "@medusajs/types" } @@ -43235,21 +50892,21 @@ ] }, { - "id": 5502, + "id": 5731, "name": "completeOrder", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5503, + "id": 5732, "name": "completeOrder", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5504, + "id": 5733, "name": "orderId", "variant": "param", "kind": 32768, @@ -43263,7 +50920,7 @@ } }, { - "id": 5505, + "id": 5734, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43272,7 +50929,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43289,7 +50946,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 5584, + "target": 5825, "name": "OrderDTO", "package": "@medusajs/types" } @@ -43300,14 +50957,14 @@ } }, { - "id": 5506, + "id": 5735, "name": "completeOrder", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5507, + "id": 5736, "name": "orderId", "variant": "param", "kind": 32768, @@ -43318,7 +50975,7 @@ } }, { - "id": 5508, + "id": 5737, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43327,7 +50984,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43342,7 +50999,7 @@ "typeArguments": [ { "type": "reference", - "target": 5584, + "target": 5825, "name": "OrderDTO", "package": "@medusajs/types" } @@ -43354,21 +51011,21 @@ ] }, { - "id": 5509, + "id": 5738, "name": "cancel", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5510, + "id": 5739, "name": "cancel", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5511, + "id": 5740, "name": "orderId", "variant": "param", "kind": 32768, @@ -43382,7 +51039,7 @@ } }, { - "id": 5512, + "id": 5741, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43391,7 +51048,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43408,7 +51065,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 5584, + "target": 5825, "name": "OrderDTO", "package": "@medusajs/types" } @@ -43419,14 +51076,14 @@ } }, { - "id": 5513, + "id": 5742, "name": "cancel", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5514, + "id": 5743, "name": "orderId", "variant": "param", "kind": 32768, @@ -43437,7 +51094,7 @@ } }, { - "id": 5515, + "id": 5744, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43446,7 +51103,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43461,7 +51118,7 @@ "typeArguments": [ { "type": "reference", - "target": 5584, + "target": 5825, "name": "OrderDTO", "package": "@medusajs/types" } @@ -43473,34 +51130,34 @@ ] }, { - "id": 5516, + "id": 5745, "name": "registerFulfillment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5517, + "id": 5746, "name": "registerFulfillment", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5518, + "id": 5747, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 6462, + "target": 6860, "name": "RegisterOrderFulfillmentDTO", "package": "@medusajs/types" } }, { - "id": 5519, + "id": 5748, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43509,7 +51166,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43534,34 +51191,34 @@ ] }, { - "id": 5520, + "id": 5749, "name": "cancelFulfillment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5521, + "id": 5750, "name": "cancelFulfillment", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5522, + "id": 5751, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 6474, + "target": 6872, "name": "CancelOrderFulfillmentDTO", "package": "@medusajs/types" } }, { - "id": 5523, + "id": 5752, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43570,7 +51227,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43595,34 +51252,34 @@ ] }, { - "id": 5524, + "id": 5753, "name": "registerShipment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5525, + "id": 5754, "name": "registerShipment", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5526, + "id": 5755, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 6486, + "target": 6884, "name": "RegisterOrderShipmentDTO", "package": "@medusajs/types" } }, { - "id": 5527, + "id": 5756, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43631,7 +51288,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43656,34 +51313,97 @@ ] }, { - "id": 5528, + "id": 5757, "name": "createReturn", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5529, + "id": 5758, "name": "createReturn", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5530, + "id": 5759, "name": "returnData", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 6499, + "target": 6748, "name": "CreateOrderReturnDTO", "package": "@medusajs/types" } }, { - "id": 5531, + "id": 5760, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5910, + "name": "ReturnDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5761, + "name": "cancelReturn", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5762, + "name": "cancelReturn", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5763, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 6897, + "name": "CancelOrderReturnDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5764, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43692,7 +51412,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43707,7 +51427,7 @@ "typeArguments": [ { "type": "reference", - "target": 5668, + "target": 5910, "name": "ReturnDTO", "package": "@medusajs/types" } @@ -43719,34 +51439,34 @@ ] }, { - "id": 5532, + "id": 5765, "name": "receiveReturn", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5533, + "id": 5766, "name": "receiveReturn", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5534, + "id": 5767, "name": "returnData", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 6521, + "target": 6907, "name": "ReceiveOrderReturnDTO", "package": "@medusajs/types" } }, { - "id": 5535, + "id": 5768, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43755,7 +51475,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43770,7 +51490,7 @@ "typeArguments": [ { "type": "reference", - "target": 5668, + "target": 5910, "name": "ReturnDTO", "package": "@medusajs/types" } @@ -43782,34 +51502,34 @@ ] }, { - "id": 5536, + "id": 5769, "name": "createClaim", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5537, + "id": 5770, "name": "createClaim", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5538, + "id": 5771, "name": "claimData", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 6532, + "target": 6788, "name": "CreateOrderClaimDTO", "package": "@medusajs/types" } }, { - "id": 5539, + "id": 5772, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43818,7 +51538,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43833,7 +51553,7 @@ "typeArguments": [ { "type": "reference", - "target": 5731, + "target": 5975, "name": "OrderClaimDTO", "package": "@medusajs/types" } @@ -43845,34 +51565,97 @@ ] }, { - "id": 5540, + "id": 5773, + "name": "cancelClaim", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5774, + "name": "cancelClaim", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5775, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 6918, + "name": "CancelOrderClaimDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5776, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 5975, + "name": "OrderClaimDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5777, "name": "createExchange", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 5541, + "id": 5778, "name": "createExchange", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 5542, + "id": 5779, "name": "exchangeData", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 6556, + "target": 6827, "name": "CreateOrderExchangeDTO", "package": "@medusajs/types" } }, { - "id": 5543, + "id": 5780, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -43881,7 +51664,7 @@ }, "type": { "type": "reference", - "target": 5647, + "target": 5889, "name": "Context", "package": "@medusajs/types" } @@ -43896,7 +51679,70 @@ "typeArguments": [ { "type": "reference", - "target": 5796, + "target": 6041, + "name": "OrderExchangeDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 5781, + "name": "cancelExchange", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 5782, + "name": "cancelExchange", + "variant": "signature", + "kind": 4096, + "flags": {}, + "parameters": [ + { + "id": 5783, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 6928, + "name": "CancelOrderExchangeDTO", + "package": "@medusajs/types" + } + }, + { + "id": 5784, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 5889, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 6041, "name": "OrderExchangeDTO", "package": "@medusajs/types" } @@ -43912,116 +51758,146 @@ { "title": "Methods", "children": [ - 4960, - 4965, - 4970, - 4975, - 4980, - 4985, - 4990, - 4995, - 5000, - 5005, - 5010, - 5015, - 5020, - 5027, - 5038, - 5045, - 5051, - 5057, - 5062, - 5069, - 5076, - 5083, - 5088, - 5093, - 5102, + 5004, + 5009, + 5014, + 5019, + 5024, + 5029, + 5034, + 5039, + 5044, + 5049, + 5054, + 5059, + 5064, + 5071, + 5082, + 5089, + 5095, + 5101, + 5106, 5113, - 5123, - 5136, - 5141, - 5150, - 5160, - 5165, - 5173, - 5178, - 5188, - 5193, - 5202, - 5207, + 5120, + 5127, + 5132, + 5137, + 5146, + 5157, + 5167, + 5180, + 5185, + 5194, + 5204, + 5209, 5217, 5222, - 5231, - 5236, + 5232, + 5237, 5246, 5251, - 5260, - 5265, + 5261, + 5266, 5275, - 5285, - 5298, - 5311, + 5280, + 5290, + 5295, + 5304, + 5309, + 5319, 5324, - 5328, - 5335, - 5341, - 5347, - 5353, - 5359, - 5365, - 5371, - 5377, - 5383, - 5389, - 5395, - 5401, - 5407, - 5413, - 5419, - 5423, - 5428, - 5435, - 5439, - 5445, - 5451, + 5334, + 5344, + 5357, + 5370, + 5374, + 5387, + 5400, + 5406, + 5412, + 5416, + 5421, + 5426, + 5436, + 5443, + 5450, 5456, - 5461, + 5462, 5468, - 5479, - 5483, - 5489, - 5495, - 5502, - 5509, + 5474, + 5480, + 5486, + 5492, + 5498, + 5504, + 5510, 5516, - 5520, - 5524, + 5522, 5528, - 5532, - 5536, - 5540 + 5534, + 5540, + 5546, + 5550, + 5555, + 5562, + 5566, + 5572, + 5578, + 5583, + 5588, + 5595, + 5606, + 5610, + 5616, + 5622, + 5629, + 5640, + 5644, + 5650, + 5656, + 5663, + 5674, + 5678, + 5684, + 5690, + 5697, + 5708, + 5712, + 5718, + 5724, + 5731, + 5738, + 5745, + 5749, + 5753, + 5757, + 5761, + 5765, + 5769, + 5773, + 5777, + 5781 ] } ], "extendedTypes": [ { "type": "reference", - "target": 5557, + "target": 5798, "name": "IModuleService", "package": "@medusajs/types" } ] }, { - "id": 6794, + "id": 7161, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6795, + "id": 7162, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -44037,7 +51913,7 @@ } }, { - "id": 6796, + "id": 7163, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -44047,21 +51923,21 @@ "type": { "type": "reflection", "declaration": { - "id": 6797, + "id": 7164, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 6798, + "id": 7165, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 6799, + "id": 7166, "name": "key", "variant": "param", "kind": 32768, @@ -44102,35 +51978,35 @@ { "title": "Properties", "children": [ - 6795, - 6796 + 7162, + 7163 ] } ] }, { - "id": 6626, + "id": 6991, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 6627, + "id": 6992, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6628, + "id": 6993, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 6629, + "id": 6994, "name": "msg", "variant": "param", "kind": 32768, @@ -44140,7 +52016,7 @@ "types": [ { "type": "reference", - "target": 6790, + "target": 7157, "name": "Message", "package": "@medusajs/types" }, @@ -44148,7 +52024,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6790, + "target": 7157, "name": "Message", "package": "@medusajs/types" } @@ -44165,21 +52041,21 @@ ] }, { - "id": 6630, + "id": 6995, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6631, + "id": 6996, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 6632, + "id": 6997, "name": "format", "variant": "param", "kind": 32768, @@ -44188,7 +52064,7 @@ }, "type": { "type": "reference", - "target": 6794, + "target": 7161, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -44209,7 +52085,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 6790, + "target": 7157, "name": "Message", "package": "@medusajs/types" } @@ -44222,14 +52098,14 @@ ] }, { - "id": 6633, + "id": 6998, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6634, + "id": 6999, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -44242,21 +52118,21 @@ ] }, { - "id": 6635, + "id": 7000, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 6636, + "id": 7001, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 6637, + "id": 7002, "name": "T", "variant": "typeParam", "kind": 131072, @@ -44265,7 +52141,7 @@ ], "parameters": [ { - "id": 6638, + "id": 7003, "name": "messageData", "variant": "param", "kind": 32768, @@ -44275,11 +52151,11 @@ "types": [ { "type": "reference", - "target": 6800, + "target": 7167, "typeArguments": [ { "type": "reference", - "target": 6637, + "target": 7002, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -44292,11 +52168,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 6800, + "target": 7167, "typeArguments": [ { "type": "reference", - "target": 6637, + "target": 7002, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -44310,7 +52186,7 @@ } }, { - "id": 6639, + "id": 7004, "name": "options", "variant": "param", "kind": 32768, @@ -44350,16 +52226,16 @@ { "title": "Methods", "children": [ - 6627, - 6630, - 6633, - 6635 + 6992, + 6995, + 6998, + 7000 ] } ] }, { - "id": 5647, + "id": 5889, "name": "Context", "variant": "declaration", "kind": 256, @@ -44374,7 +52250,7 @@ }, "children": [ { - "id": 5648, + "id": 5890, "name": "__type", "variant": "declaration", "kind": 1024, @@ -44387,7 +52263,7 @@ } }, { - "id": 5649, + "id": 5891, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -44420,14 +52296,14 @@ }, "type": { "type": "reference", - "target": 5658, + "target": 5900, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 5650, + "id": 5892, "name": "manager", "variant": "declaration", "kind": 1024, @@ -44460,14 +52336,14 @@ }, "type": { "type": "reference", - "target": 5658, + "target": 5900, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 5651, + "id": 5893, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -44520,7 +52396,7 @@ } }, { - "id": 5652, + "id": 5894, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -44541,7 +52417,7 @@ } }, { - "id": 5653, + "id": 5895, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -44562,7 +52438,7 @@ } }, { - "id": 5654, + "id": 5896, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -44583,7 +52459,7 @@ } }, { - "id": 5655, + "id": 5897, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -44600,13 +52476,13 @@ }, "type": { "type": "reference", - "target": 6626, + "target": 6991, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 5656, + "id": 5898, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -44627,7 +52503,7 @@ } }, { - "id": 5657, + "id": 5899, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -44652,22 +52528,22 @@ { "title": "Properties", "children": [ - 5648, - 5649, - 5650, - 5651, - 5652, - 5653, - 5654, - 5655, - 5656, - 5657 + 5890, + 5891, + 5892, + 5893, + 5894, + 5895, + 5896, + 5897, + 5898, + 5899 ] } ], "typeParameters": [ { - "id": 5658, + "id": 5900, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -44680,7 +52556,7 @@ ] }, { - "id": 6621, + "id": 6986, "name": "BigNumberRawValue", "variant": "declaration", "kind": 2097152, @@ -44688,14 +52564,14 @@ "type": { "type": "reflection", "declaration": { - "id": 6622, + "id": 6987, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 6623, + "id": 6988, "name": "value", "variant": "declaration", "kind": 1024, @@ -44719,20 +52595,20 @@ { "title": "Properties", "children": [ - 6623 + 6988 ] } ], "indexSignatures": [ { - "id": 6624, + "id": 6989, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 6625, + "id": 6990, "name": "key", "variant": "param", "kind": 32768, @@ -44753,7 +52629,7 @@ } }, { - "id": 6707, + "id": 7072, "name": "BigNumberInput", "variant": "declaration", "kind": 2097152, @@ -44763,7 +52639,7 @@ "types": [ { "type": "reference", - "target": 6621, + "target": 6986, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -44789,7 +52665,7 @@ } }, { - "id": 6620, + "id": 6985, "name": "BigNumberValue", "variant": "declaration", "kind": 2097152, @@ -44823,7614 +52699,8917 @@ { "title": "Interfaces", "children": [ - 5571, + 5812, + 7005, + 6136, + 6139, + 7181, + 7134, + 5798, + 7093, + 6466, + 6432, + 7103, + 6540, + 6502, + 6146, + 6380, + 7045, + 6189, + 6356, + 5825, + 5910, + 5975, + 6041, + 6568, + 6655, + 6693, + 6715, + 5901, + 6142, + 6247, + 6424, + 6337, + 6458, + 6492, + 6530, + 6648, + 6684, + 6726, + 6773, + 6815, + 6847, + 6626, + 7032, + 6175, + 6162, + 6107, + 6124, + 6444, + 7086, + 6450, + 7073, + 7079, + 6555, + 6561, + 6517, + 6523, + 6281, + 6255, + 6307, + 6310, + 6411, + 6478, + 6485, + 6594, + 6607, + 6622, + 6644, 6640, - 5890, - 5893, - 6814, - 6767, - 5557, - 6728, - 6216, - 6182, - 6738, - 6290, - 6252, - 5900, - 6134, - 6680, - 5943, - 6110, - 5584, - 5668, - 5731, - 5796, - 6330, - 6387, - 6409, - 6431, - 5659, - 5896, - 6001, - 6174, - 6091, - 6208, - 6242, - 6280, - 6400, - 6442, - 6352, - 6667, - 5929, - 5916, - 5861, - 5878, - 6194, - 6721, - 6200, - 6708, - 6714, - 6305, - 6311, - 6267, - 6273, - 6035, - 6009, - 6061, - 6064, - 6165, - 6228, - 6235, - 6318, - 6348, - 6370, - 6366, - 6374, - 6421, - 6098, - 6131, - 6759, + 6671, + 6668, + 6705, + 6344, + 6377, + 7125, + 7113, + 6860, + 6872, + 6884, 6748, - 6462, - 6474, - 6486, - 6499, - 6532, - 6556, - 6521, - 6447, - 6456, - 6453, - 4959, - 6794, - 6626, - 5647 + 6782, + 6821, + 6854, + 6770, + 6812, + 6844, + 6897, + 6788, + 6918, + 6827, + 6928, + 6907, + 6733, + 6742, + 6739, + 5003, + 7161, + 6991, + 5889 ] }, - { - "title": "Type Aliases", - "children": [ - 6810, - 6812, - 6832, - 6860, - 6850, - 6644, - 6848, - 6842, - 6847, - 6836, - 6844, - 6826, - 6790, - 6800, - 6817, - 6784, - 6573, - 6781, - 6747, - 6598, - 6597, - 6666, - 6765, - 6766, - 6621, - 6707, - 6620 - ] - } - ], - "packageName": "@medusajs/types", - "symbolIdMap": { - "4958": { + { + "title": "Type Aliases", + "children": [ + 7177, + 7179, + 7199, + 7227, + 7217, + 7009, + 7215, + 7209, + 7214, + 7203, + 7211, + 7193, + 7157, + 7167, + 7184, + 7151, + 6938, + 7148, + 7112, + 6963, + 6962, + 7031, + 7124, + 7133, + 6986, + 7072, + 6985 + ] + } + ], + "packageName": "@medusajs/types", + "symbolIdMap": { + "5002": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "" + }, + "5003": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService" + }, + "5004": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.retrieveOrder" + }, + "5005": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.retrieveOrder" + }, + "5006": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "orderId" + }, + "5007": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5008": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5009": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listOrders" + }, + "5010": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listOrders" + }, + "5011": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "filters" + }, + "5012": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5013": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5014": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listAndCountOrders" + }, + "5015": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listAndCountOrders" + }, + "5016": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "filters" + }, + "5017": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5018": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5019": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.retrieveReturn" + }, + "5020": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.retrieveReturn" + }, + "5021": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "returnId" + }, + "5022": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5023": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5024": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listReturns" + }, + "5025": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listReturns" + }, + "5026": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "filters" + }, + "5027": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5028": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5029": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listAndCountReturns" + }, + "5030": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listAndCountReturns" + }, + "5031": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "filters" + }, + "5032": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5033": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5034": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.retrieveOrderClaim" + }, + "5035": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.retrieveOrderClaim" + }, + "5036": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "claimnId" + }, + "5037": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5038": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5039": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listOrderClaims" + }, + "5040": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listOrderClaims" + }, + "5041": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "filters" + }, + "5042": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5043": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5044": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listAndCountOrderClaims" + }, + "5045": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listAndCountOrderClaims" + }, + "5046": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "filters" + }, + "5047": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5048": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5049": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.retrieveOrderExchange" + }, + "5050": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.retrieveOrderExchange" + }, + "5051": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "claimnId" + }, + "5052": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5053": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5054": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listOrderExchanges" + }, + "5055": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listOrderExchanges" + }, + "5056": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "filters" + }, + "5057": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5058": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5059": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listAndCountOrderExchanges" + }, + "5060": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listAndCountOrderExchanges" + }, + "5061": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "filters" + }, + "5062": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5063": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5064": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createOrders" + }, + "5065": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createOrders" + }, + "5066": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5067": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5068": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createOrders" + }, + "5069": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5070": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5071": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.updateOrders" + }, + "5072": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.updateOrders" + }, + "5073": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5074": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.updateOrders" + }, + "5075": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "orderId" + }, + "5076": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5077": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5078": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.updateOrders" + }, + "5079": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "selector" + }, + "5080": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5081": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5082": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.deleteOrders" + }, + "5083": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.deleteOrders" + }, + "5084": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "orderIds" + }, + "5085": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5086": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.deleteOrders" + }, + "5087": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "orderId" + }, + "5088": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5089": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.softDeleteOrders" + }, + "5090": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.softDeleteOrders" + }, + "5091": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "TReturnableLinkableKeys" + }, + "5092": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "storeIds" + }, + "5093": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5094": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5095": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.restoreOrders" + }, + "5096": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.restoreOrders" + }, + "5097": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "TReturnableLinkableKeys" + }, + "5098": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "storeIds" + }, + "5099": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5100": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5101": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listAddresses" + }, + "5102": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listAddresses" + }, + "5103": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "filters" + }, + "5104": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5105": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5106": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createAddresses" + }, + "5107": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createAddresses" + }, + "5108": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5109": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5110": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createAddresses" + }, + "5111": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5112": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5113": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.updateAddresses" + }, + "5114": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.updateAddresses" + }, + "5115": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5116": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5117": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.updateAddresses" + }, + "5118": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "" + "qualifiedName": "data" }, - "4959": { + "5119": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService" + "qualifiedName": "sharedContext" }, - "4960": { + "5120": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.retrieveOrder" + "qualifiedName": "IOrderModuleService.deleteAddresses" }, - "4961": { + "5121": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.retrieveOrder" + "qualifiedName": "IOrderModuleService.deleteAddresses" }, - "4962": { + "5122": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "ids" }, - "4963": { + "5123": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "sharedContext" + }, + "5124": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.deleteAddresses" + }, + "5125": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "ids" }, - "4964": { + "5126": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "4965": { + "5127": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listOrders" + "qualifiedName": "IOrderModuleService.retrieveLineItem" }, - "4966": { + "5128": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listOrders" + "qualifiedName": "IOrderModuleService.retrieveLineItem" }, - "4967": { + "5129": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "filters" + "qualifiedName": "itemId" }, - "4968": { + "5130": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "4969": { + "5131": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "4970": { + "5132": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listAndCountOrders" + "qualifiedName": "IOrderModuleService.listLineItems" }, - "4971": { + "5133": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listAndCountOrders" + "qualifiedName": "IOrderModuleService.listLineItems" }, - "4972": { + "5134": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "filters" }, - "4973": { + "5135": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "4974": { + "5136": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "4975": { + "5137": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.retrieveReturn" + "qualifiedName": "IOrderModuleService.createLineItems" + }, + "5138": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createLineItems" }, - "4976": { + "5139": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.retrieveReturn" + "qualifiedName": "data" }, - "4977": { + "5140": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "returnId" + "qualifiedName": "IOrderModuleService.createLineItems" }, - "4978": { + "5141": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "data" + }, + "5142": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createLineItems" }, - "4979": { + "5143": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "orderId" + }, + "5144": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "items" + }, + "5145": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "4980": { + "5146": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listReturns" + "qualifiedName": "IOrderModuleService.updateLineItems" }, - "4981": { + "5147": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listReturns" + "qualifiedName": "IOrderModuleService.updateLineItems" + }, + "5148": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" }, - "4982": { + "5149": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "filters" + "qualifiedName": "IOrderModuleService.updateLineItems" }, - "4983": { + "5150": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "selector" + }, + "5151": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" }, - "4984": { + "5152": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "4985": { + "5153": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listAndCountReturns" + "qualifiedName": "IOrderModuleService.updateLineItems" }, - "4986": { + "5154": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listAndCountReturns" + "qualifiedName": "lineId" }, - "4987": { + "5155": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "filters" + "qualifiedName": "data" + }, + "5156": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" }, - "4988": { + "5157": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "IOrderModuleService.deleteLineItems" + }, + "5158": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.deleteLineItems" + }, + "5159": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "itemIds" }, - "4989": { + "5160": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "4990": { + "5161": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.retrieveOrderClaim" + "qualifiedName": "IOrderModuleService.deleteLineItems" }, - "4991": { + "5162": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.retrieveOrderClaim" + "qualifiedName": "itemIds" }, - "4992": { + "5163": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "claimnId" + "qualifiedName": "sharedContext" }, - "4993": { + "5164": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "IOrderModuleService.deleteLineItems" + }, + "5165": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "selector" }, - "4994": { + "5166": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "4995": { + "5167": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listOrderClaims" + "qualifiedName": "IOrderModuleService.updateOrderItem" }, - "4996": { + "5168": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listOrderClaims" + "qualifiedName": "IOrderModuleService.updateOrderItem" }, - "4997": { + "5169": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "filters" + "qualifiedName": "selector" }, - "4998": { + "5170": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "data" }, - "4999": { + "5171": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5000": { + "5172": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listAndCountOrderClaims" + "qualifiedName": "IOrderModuleService.updateOrderItem" }, - "5001": { + "5173": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listAndCountOrderClaims" + "qualifiedName": "orderDetailId" }, - "5002": { + "5174": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5175": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5176": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.updateOrderItem" + }, + "5177": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "orderDetailIdOrDataOrSelector" + }, + "5178": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5179": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5180": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listShippingMethods" + }, + "5181": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listShippingMethods" + }, + "5182": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "filters" }, - "5003": { + "5183": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5004": { + "5184": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5005": { + "5185": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.retrieveOrderExchange" + "qualifiedName": "IOrderModuleService.createShippingMethods" }, - "5006": { + "5186": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.retrieveOrderExchange" + "qualifiedName": "IOrderModuleService.createShippingMethods" }, - "5007": { + "5187": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "claimnId" + "qualifiedName": "data" }, - "5008": { + "5188": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "IOrderModuleService.createShippingMethods" }, - "5009": { + "5189": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5190": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createShippingMethods" + }, + "5191": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "orderId" + }, + "5192": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "methods" + }, + "5193": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5010": { + "5194": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listOrderExchanges" + "qualifiedName": "IOrderModuleService.deleteShippingMethods" }, - "5011": { + "5195": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listOrderExchanges" + "qualifiedName": "IOrderModuleService.deleteShippingMethods" }, - "5012": { + "5196": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "filters" + "qualifiedName": "methodIds" }, - "5013": { + "5197": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "sharedContext" }, - "5014": { + "5198": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.deleteShippingMethods" + }, + "5199": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "methodIds" + }, + "5200": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5015": { + "5201": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listAndCountOrderExchanges" + "qualifiedName": "IOrderModuleService.deleteShippingMethods" }, - "5016": { + "5202": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listAndCountOrderExchanges" + "qualifiedName": "selector" }, - "5017": { + "5203": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5204": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listLineItemAdjustments" + }, + "5205": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listLineItemAdjustments" + }, + "5206": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "filters" }, - "5018": { + "5207": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5019": { + "5208": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5020": { + "5209": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createOrders" + "qualifiedName": "IOrderModuleService.createLineItemAdjustments" }, - "5021": { + "5210": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createOrders" + "qualifiedName": "IOrderModuleService.createLineItemAdjustments" }, - "5022": { + "5211": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5023": { + "5212": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IOrderModuleService.createLineItemAdjustments" }, - "5024": { + "5213": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createOrders" + "qualifiedName": "data" }, - "5025": { + "5214": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createLineItemAdjustments" + }, + "5215": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "orderId" + }, + "5216": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5026": { + "5217": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.setLineItemAdjustments" + }, + "5218": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.setLineItemAdjustments" + }, + "5219": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "orderId" + }, + "5220": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5221": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5027": { + "5222": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateOrders" + "qualifiedName": "IOrderModuleService.deleteLineItemAdjustments" }, - "5028": { + "5223": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateOrders" + "qualifiedName": "IOrderModuleService.deleteLineItemAdjustments" }, - "5029": { + "5224": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "adjustmentIds" + }, + "5225": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5226": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.deleteLineItemAdjustments" + }, + "5227": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "adjustmentIds" + }, + "5228": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5229": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.deleteLineItemAdjustments" + }, + "5230": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "selector" + }, + "5231": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5232": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listShippingMethodAdjustments" + }, + "5233": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listShippingMethodAdjustments" + }, + "5234": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "filters" + }, + "5235": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5236": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5237": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createShippingMethodAdjustments" + }, + "5238": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createShippingMethodAdjustments" + }, + "5239": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5030": { + "5240": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateOrders" + "qualifiedName": "IOrderModuleService.createShippingMethodAdjustments" }, - "5031": { + "5241": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5242": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createShippingMethodAdjustments" + }, + "5243": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "orderId" }, - "5032": { + "5244": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5033": { + "5245": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5246": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.setShippingMethodAdjustments" + }, + "5247": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.setShippingMethodAdjustments" + }, + "5248": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "orderId" + }, + "5249": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5250": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5251": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.deleteShippingMethodAdjustments" + }, + "5252": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.deleteShippingMethodAdjustments" + }, + "5253": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "adjustmentIds" + }, + "5254": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5255": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.deleteShippingMethodAdjustments" + }, + "5256": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "adjustmentId" + }, + "5257": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5258": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.deleteShippingMethodAdjustments" + }, + "5259": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "selector" + }, + "5260": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5261": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listLineItemTaxLines" + }, + "5262": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.listLineItemTaxLines" + }, + "5263": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "filters" + }, + "5264": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5265": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5266": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IOrderModuleService.createLineItemTaxLines" }, - "5034": { + "5267": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateOrders" + "qualifiedName": "IOrderModuleService.createLineItemTaxLines" }, - "5035": { + "5268": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "selector" + "qualifiedName": "taxLines" }, - "5036": { + "5269": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "IOrderModuleService.createLineItemTaxLines" }, - "5037": { + "5270": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "taxLine" }, - "5038": { + "5271": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteOrders" + "qualifiedName": "IOrderModuleService.createLineItemTaxLines" }, - "5039": { + "5272": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteOrders" + "qualifiedName": "orderId" }, - "5040": { + "5273": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderIds" + "qualifiedName": "taxLines" }, - "5041": { + "5274": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5042": { + "5275": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteOrders" + "qualifiedName": "IOrderModuleService.setLineItemTaxLines" }, - "5043": { + "5276": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "IOrderModuleService.setLineItemTaxLines" }, - "5044": { + "5277": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "orderId" }, - "5045": { + "5278": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteOrders" + "qualifiedName": "taxLines" }, - "5046": { + "5279": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteOrders" + "qualifiedName": "sharedContext" }, - "5047": { + "5280": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "IOrderModuleService.deleteLineItemTaxLines" }, - "5048": { + "5281": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "storeIds" + "qualifiedName": "IOrderModuleService.deleteLineItemTaxLines" }, - "5049": { + "5282": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "taxLineIds" }, - "5050": { + "5283": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5051": { + "5284": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreOrders" + "qualifiedName": "IOrderModuleService.deleteLineItemTaxLines" }, - "5052": { + "5285": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreOrders" + "qualifiedName": "taxLineIds" }, - "5053": { + "5286": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "sharedContext" }, - "5054": { + "5287": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "storeIds" + "qualifiedName": "IOrderModuleService.deleteLineItemTaxLines" }, - "5055": { + "5288": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "selector" }, - "5056": { + "5289": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5057": { + "5290": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listAddresses" + "qualifiedName": "IOrderModuleService.listShippingMethodTaxLines" }, - "5058": { + "5291": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listAddresses" + "qualifiedName": "IOrderModuleService.listShippingMethodTaxLines" }, - "5059": { + "5292": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "filters" }, - "5060": { + "5293": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5061": { + "5294": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5062": { + "5295": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createAddresses" + "qualifiedName": "IOrderModuleService.createShippingMethodTaxLines" }, - "5063": { + "5296": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createAddresses" + "qualifiedName": "IOrderModuleService.createShippingMethodTaxLines" }, - "5064": { + "5297": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "taxLines" }, - "5065": { + "5298": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IOrderModuleService.createShippingMethodTaxLines" }, - "5066": { + "5299": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createAddresses" + "qualifiedName": "taxLine" }, - "5067": { + "5300": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "IOrderModuleService.createShippingMethodTaxLines" }, - "5068": { + "5301": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "orderId" }, - "5069": { + "5302": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateAddresses" + "qualifiedName": "taxLines" }, - "5070": { + "5303": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateAddresses" + "qualifiedName": "sharedContext" }, - "5071": { + "5304": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "IOrderModuleService.setShippingMethodTaxLines" }, - "5072": { + "5305": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IOrderModuleService.setShippingMethodTaxLines" }, - "5073": { + "5306": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateAddresses" + "qualifiedName": "orderId" }, - "5074": { + "5307": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "taxLines" }, - "5075": { + "5308": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5076": { + "5309": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteAddresses" + "qualifiedName": "IOrderModuleService.deleteShippingMethodTaxLines" }, - "5077": { + "5310": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteAddresses" + "qualifiedName": "IOrderModuleService.deleteShippingMethodTaxLines" }, - "5078": { + "5311": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "taxLineIds" }, - "5079": { + "5312": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5080": { + "5313": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteAddresses" + "qualifiedName": "IOrderModuleService.deleteShippingMethodTaxLines" }, - "5081": { + "5314": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "taxLineIds" }, - "5082": { + "5315": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5083": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.retrieveLineItem" - }, - "5084": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.retrieveLineItem" - }, - "5085": { + "5316": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "itemId" + "qualifiedName": "IOrderModuleService.deleteShippingMethodTaxLines" }, - "5086": { + "5317": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "selector" }, - "5087": { + "5318": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5088": { + "5319": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listLineItems" + "qualifiedName": "IOrderModuleService.retrieveOrderChange" }, - "5089": { + "5320": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listLineItems" + "qualifiedName": "IOrderModuleService.retrieveOrderChange" }, - "5090": { + "5321": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "filters" + "qualifiedName": "orderChangeId" }, - "5091": { + "5322": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5092": { + "5323": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5093": { + "5324": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createLineItems" + "qualifiedName": "IOrderModuleService.createOrderChange" }, - "5094": { + "5325": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createLineItems" + "qualifiedName": "IOrderModuleService.createOrderChange" }, - "5095": { + "5326": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5096": { + "5327": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createLineItems" + "qualifiedName": "sharedContext" }, - "5097": { + "5328": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.createOrderChange" + }, + "5329": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5098": { + "5330": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createLineItems" + "qualifiedName": "sharedContext" }, - "5099": { + "5331": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "IOrderModuleService.createOrderChange" }, - "5100": { + "5332": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "items" + "qualifiedName": "data" }, - "5101": { + "5333": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5102": { + "5334": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateLineItems" + "qualifiedName": "IOrderModuleService.updateOrderChanges" }, - "5103": { + "5335": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateLineItems" + "qualifiedName": "IOrderModuleService.updateOrderChanges" }, - "5104": { + "5336": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5105": { + "5337": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateLineItems" + "qualifiedName": "sharedContext" }, - "5106": { + "5338": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "selector" + "qualifiedName": "IOrderModuleService.updateOrderChanges" }, - "5107": { + "5339": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5108": { + "5340": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5109": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateLineItems" - }, - "5110": { + "5341": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "lineId" + "qualifiedName": "IOrderModuleService.updateOrderChanges" }, - "5111": { + "5342": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5112": { + "5343": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5113": { + "5344": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteLineItems" + "qualifiedName": "IOrderModuleService.deleteOrderChanges" }, - "5114": { + "5345": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteLineItems" + "qualifiedName": "IOrderModuleService.deleteOrderChanges" }, - "5115": { + "5346": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "itemIds" + "qualifiedName": "orderChangeId" }, - "5116": { + "5347": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5117": { + "5348": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteLineItems" + "qualifiedName": "IOrderModuleService.deleteOrderChanges" }, - "5118": { + "5349": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "itemIds" + "qualifiedName": "orderChangeId" }, - "5119": { + "5350": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5120": { + "5351": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteLineItems" + "qualifiedName": "IOrderModuleService.deleteOrderChanges" }, - "5121": { + "5352": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "selector" + "qualifiedName": "orderChangeId" }, - "5122": { + "5353": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5123": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateOrderItem" - }, - "5124": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateOrderItem" - }, - "5125": { + "5354": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "selector" + "qualifiedName": "IOrderModuleService.deleteOrderChanges" }, - "5126": { + "5355": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "orderChangeId" }, - "5127": { + "5356": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5128": { + "5357": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateOrderItem" + "qualifiedName": "IOrderModuleService.cancelOrderChange" }, - "5129": { + "5358": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderDetailId" + "qualifiedName": "IOrderModuleService.cancelOrderChange" }, - "5130": { + "5359": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "orderId" }, - "5131": { + "5360": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5132": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateOrderItem" - }, - "5133": { + "5361": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderDetailIdOrDataOrSelector" + "qualifiedName": "IOrderModuleService.cancelOrderChange" }, - "5134": { + "5362": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "orderId" }, - "5135": { + "5363": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5136": { + "5364": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listShippingMethods" + "qualifiedName": "IOrderModuleService.cancelOrderChange" }, - "5137": { + "5365": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listShippingMethods" + "qualifiedName": "data" }, - "5138": { + "5366": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "filters" + "qualifiedName": "sharedContext" }, - "5139": { + "5367": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "IOrderModuleService.cancelOrderChange" }, - "5140": { + "5368": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "data" }, - "5141": { + "5369": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createShippingMethods" + "qualifiedName": "sharedContext" }, - "5142": { + "5370": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createShippingMethods" + "qualifiedName": "IOrderModuleService.previewOrderChange" }, - "5143": { + "5371": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "IOrderModuleService.previewOrderChange" }, - "5144": { + "5372": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createShippingMethods" + "qualifiedName": "orderId" }, - "5145": { + "5373": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "sharedContext" }, - "5146": { + "5374": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createShippingMethods" + "qualifiedName": "IOrderModuleService.confirmOrderChange" }, - "5147": { + "5375": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "IOrderModuleService.confirmOrderChange" }, - "5148": { + "5376": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "methods" + "qualifiedName": "orderChangeId" }, - "5149": { + "5377": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5150": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteShippingMethods" - }, - "5151": { + "5378": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteShippingMethods" + "qualifiedName": "IOrderModuleService.confirmOrderChange" }, - "5152": { + "5379": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "methodIds" + "qualifiedName": "orderChangeId" }, - "5153": { + "5380": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5154": { + "5381": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteShippingMethods" + "qualifiedName": "IOrderModuleService.confirmOrderChange" }, - "5155": { + "5382": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "methodIds" + "qualifiedName": "data" }, - "5156": { + "5383": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5157": { + "5384": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteShippingMethods" + "qualifiedName": "IOrderModuleService.confirmOrderChange" }, - "5158": { + "5385": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "selector" + "qualifiedName": "data" }, - "5159": { + "5386": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5160": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listLineItemAdjustments" - }, - "5161": { + "5387": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listLineItemAdjustments" + "qualifiedName": "IOrderModuleService.declineOrderChange" }, - "5162": { + "5388": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "filters" + "qualifiedName": "IOrderModuleService.declineOrderChange" }, - "5163": { + "5389": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "orderChangeId" }, - "5164": { + "5390": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5165": { + "5391": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createLineItemAdjustments" + "qualifiedName": "IOrderModuleService.declineOrderChange" }, - "5166": { + "5392": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createLineItemAdjustments" + "qualifiedName": "orderChangeId" }, - "5167": { + "5393": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "sharedContext" }, - "5168": { + "5394": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createLineItemAdjustments" + "qualifiedName": "IOrderModuleService.declineOrderChange" }, - "5169": { + "5395": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5170": { + "5396": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createLineItemAdjustments" + "qualifiedName": "sharedContext" }, - "5171": { + "5397": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "IOrderModuleService.declineOrderChange" }, - "5172": { + "5398": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5173": { + "5399": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.setLineItemAdjustments" + "qualifiedName": "sharedContext" }, - "5174": { + "5400": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.setLineItemAdjustments" + "qualifiedName": "IOrderModuleService.softDeleteOrderChanges" }, - "5175": { + "5401": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "IOrderModuleService.softDeleteOrderChanges" }, - "5176": { + "5402": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "TReturnableLinkableKeys" }, - "5177": { + "5403": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "orderChangeId" }, - "5178": { + "5404": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteLineItemAdjustments" + "qualifiedName": "config" }, - "5179": { + "5405": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5406": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteLineItemAdjustments" + "qualifiedName": "IOrderModuleService.restoreOrderChanges" }, - "5180": { + "5407": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "adjustmentIds" + "qualifiedName": "IOrderModuleService.restoreOrderChanges" }, - "5181": { + "5408": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "TReturnableLinkableKeys" }, - "5182": { + "5409": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteLineItemAdjustments" + "qualifiedName": "orderChangeId" }, - "5183": { + "5410": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "adjustmentIds" + "qualifiedName": "config" }, - "5184": { + "5411": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5185": { + "5412": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteLineItemAdjustments" + "qualifiedName": "IOrderModuleService.applyPendingOrderActions" }, - "5186": { + "5413": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "selector" + "qualifiedName": "IOrderModuleService.applyPendingOrderActions" }, - "5187": { + "5414": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "orderId" + }, + "5415": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5188": { + "5416": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listShippingMethodAdjustments" + "qualifiedName": "IOrderModuleService.listOrderChangeActions" }, - "5189": { + "5417": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listShippingMethodAdjustments" + "qualifiedName": "IOrderModuleService.listOrderChangeActions" }, - "5190": { + "5418": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "filters" }, - "5191": { + "5419": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5192": { + "5420": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5193": { + "5421": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createShippingMethodAdjustments" + "qualifiedName": "IOrderModuleService.retrieveOrderChangeAction" }, - "5194": { + "5422": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createShippingMethodAdjustments" + "qualifiedName": "IOrderModuleService.retrieveOrderChangeAction" }, - "5195": { + "5423": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "actionId" }, - "5196": { + "5424": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createShippingMethodAdjustments" + "qualifiedName": "config" }, - "5197": { + "5425": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "sharedContext" }, - "5198": { + "5426": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createShippingMethodAdjustments" + "qualifiedName": "IOrderModuleService.updateOrderChangeActions" }, - "5199": { + "5427": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "IOrderModuleService.updateOrderChangeActions" }, - "5200": { + "5428": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5201": { + "5429": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5202": { + "5430": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.setShippingMethodAdjustments" + "qualifiedName": "IOrderModuleService.updateOrderChangeActions" }, - "5203": { + "5431": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.setShippingMethodAdjustments" + "qualifiedName": "data" }, - "5204": { + "5432": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "sharedContext" }, - "5205": { + "5433": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.updateOrderChangeActions" + }, + "5434": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5206": { + "5435": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5207": { + "5436": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteShippingMethodAdjustments" + "qualifiedName": "IOrderModuleService.addOrderAction" }, - "5208": { + "5437": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteShippingMethodAdjustments" + "qualifiedName": "IOrderModuleService.addOrderAction" }, - "5209": { + "5438": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "adjustmentIds" + "qualifiedName": "data" }, - "5210": { + "5439": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5211": { + "5440": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteShippingMethodAdjustments" + "qualifiedName": "IOrderModuleService.addOrderAction" }, - "5212": { + "5441": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "adjustmentId" + "qualifiedName": "data" }, - "5213": { + "5442": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5214": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteShippingMethodAdjustments" - }, - "5215": { + "5443": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "selector" + "qualifiedName": "IOrderModuleService.deleteOrderChangeActions" }, - "5216": { + "5444": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IOrderModuleService.deleteOrderChangeActions" }, - "5217": { + "5445": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listLineItemTaxLines" + "qualifiedName": "actionId" }, - "5218": { + "5446": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listLineItemTaxLines" + "qualifiedName": "sharedContext" }, - "5219": { + "5447": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "filters" + "qualifiedName": "IOrderModuleService.deleteOrderChangeActions" }, - "5220": { + "5448": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "actionId" }, - "5221": { + "5449": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5222": { + "5450": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createLineItemTaxLines" + "qualifiedName": "IOrderModuleService.softDeleteOrderChangeActions" }, - "5223": { + "5451": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createLineItemTaxLines" + "qualifiedName": "IOrderModuleService.softDeleteOrderChangeActions" }, - "5224": { + "5452": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "taxLines" + "qualifiedName": "TReturnableLinkableKeys" }, - "5225": { + "5453": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createLineItemTaxLines" + "qualifiedName": "actionIds" }, - "5226": { + "5454": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "taxLine" + "qualifiedName": "config" }, - "5227": { + "5455": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createLineItemTaxLines" + "qualifiedName": "sharedContext" }, - "5228": { + "5456": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "IOrderModuleService.restoreOrderChangeActions" }, - "5229": { + "5457": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "taxLines" + "qualifiedName": "IOrderModuleService.restoreOrderChangeActions" }, - "5230": { + "5458": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "TReturnableLinkableKeys" }, - "5231": { + "5459": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.setLineItemTaxLines" + "qualifiedName": "actionId" }, - "5232": { + "5460": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.setLineItemTaxLines" + "qualifiedName": "config" }, - "5233": { + "5461": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "sharedContext" }, - "5234": { + "5462": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "taxLines" + "qualifiedName": "IOrderModuleService.softDeleteAddresses" }, - "5235": { + "5463": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IOrderModuleService.softDeleteAddresses" }, - "5236": { + "5464": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteLineItemTaxLines" + "qualifiedName": "TReturnableLinkableKeys" }, - "5237": { + "5465": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteLineItemTaxLines" + "qualifiedName": "ids" }, - "5238": { + "5466": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "taxLineIds" + "qualifiedName": "config" }, - "5239": { + "5467": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5240": { + "5468": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteLineItemTaxLines" + "qualifiedName": "IOrderModuleService.restoreAddresses" }, - "5241": { + "5469": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "taxLineIds" + "qualifiedName": "IOrderModuleService.restoreAddresses" }, - "5242": { + "5470": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "TReturnableLinkableKeys" }, - "5243": { + "5471": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteLineItemTaxLines" + "qualifiedName": "ids" }, - "5244": { + "5472": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "selector" + "qualifiedName": "config" }, - "5245": { + "5473": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5246": { + "5474": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listShippingMethodTaxLines" + "qualifiedName": "IOrderModuleService.softDeleteLineItems" }, - "5247": { + "5475": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listShippingMethodTaxLines" + "qualifiedName": "IOrderModuleService.softDeleteLineItems" }, - "5248": { + "5476": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "filters" + "qualifiedName": "TReturnableLinkableKeys" }, - "5249": { + "5477": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "ids" + }, + "5478": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5250": { + "5479": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5251": { + "5480": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createShippingMethodTaxLines" + "qualifiedName": "IOrderModuleService.restoreLineItems" }, - "5252": { + "5481": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createShippingMethodTaxLines" + "qualifiedName": "IOrderModuleService.restoreLineItems" }, - "5253": { + "5482": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "taxLines" + "qualifiedName": "TReturnableLinkableKeys" }, - "5254": { + "5483": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createShippingMethodTaxLines" + "qualifiedName": "ids" }, - "5255": { + "5484": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "taxLine" + "qualifiedName": "config" }, - "5256": { + "5485": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createShippingMethodTaxLines" + "qualifiedName": "sharedContext" }, - "5257": { + "5486": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "IOrderModuleService.softDeleteShippingMethods" }, - "5258": { + "5487": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "taxLines" + "qualifiedName": "IOrderModuleService.softDeleteShippingMethods" }, - "5259": { + "5488": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "TReturnableLinkableKeys" }, - "5260": { + "5489": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.setShippingMethodTaxLines" + "qualifiedName": "ids" }, - "5261": { + "5490": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.setShippingMethodTaxLines" + "qualifiedName": "config" }, - "5262": { + "5491": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "sharedContext" }, - "5263": { + "5492": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "taxLines" + "qualifiedName": "IOrderModuleService.restoreShippingMethods" }, - "5264": { + "5493": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IOrderModuleService.restoreShippingMethods" }, - "5265": { + "5494": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteShippingMethodTaxLines" + "qualifiedName": "TReturnableLinkableKeys" }, - "5266": { + "5495": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteShippingMethodTaxLines" + "qualifiedName": "ids" }, - "5267": { + "5496": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "taxLineIds" + "qualifiedName": "config" }, - "5268": { + "5497": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5269": { + "5498": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteShippingMethodTaxLines" + "qualifiedName": "IOrderModuleService.softDeleteLineItemAdjustments" }, - "5270": { + "5499": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "taxLineIds" + "qualifiedName": "IOrderModuleService.softDeleteLineItemAdjustments" }, - "5271": { + "5500": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "TReturnableLinkableKeys" }, - "5272": { + "5501": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteShippingMethodTaxLines" + "qualifiedName": "ids" }, - "5273": { + "5502": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "selector" + "qualifiedName": "config" }, - "5274": { + "5503": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5275": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createOrderChange" - }, - "5276": { + "5504": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createOrderChange" + "qualifiedName": "IOrderModuleService.restoreLineItemAdjustments" }, - "5277": { + "5505": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "IOrderModuleService.restoreLineItemAdjustments" }, - "5278": { + "5506": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "TReturnableLinkableKeys" }, - "5279": { + "5507": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createOrderChange" + "qualifiedName": "ids" }, - "5280": { + "5508": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "config" }, - "5281": { + "5509": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5282": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createOrderChange" - }, - "5283": { + "5510": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "IOrderModuleService.softDeleteShippingMethodAdjustments" }, - "5284": { + "5511": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IOrderModuleService.softDeleteShippingMethodAdjustments" }, - "5285": { + "5512": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.cancelOrderChange" + "qualifiedName": "TReturnableLinkableKeys" }, - "5286": { + "5513": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.cancelOrderChange" + "qualifiedName": "ids" }, - "5287": { + "5514": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "config" }, - "5288": { + "5515": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5289": { + "5516": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.cancelOrderChange" + "qualifiedName": "IOrderModuleService.restoreShippingMethodAdjustments" }, - "5290": { + "5517": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "IOrderModuleService.restoreShippingMethodAdjustments" }, - "5291": { + "5518": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "TReturnableLinkableKeys" }, - "5292": { + "5519": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.cancelOrderChange" + "qualifiedName": "ids" }, - "5293": { + "5520": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "config" }, - "5294": { + "5521": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5295": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.cancelOrderChange" - }, - "5296": { + "5522": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "IOrderModuleService.softDeleteLineItemTaxLines" }, - "5297": { + "5523": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IOrderModuleService.softDeleteLineItemTaxLines" }, - "5298": { + "5524": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.confirmOrderChange" + "qualifiedName": "TReturnableLinkableKeys" }, - "5299": { + "5525": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.confirmOrderChange" + "qualifiedName": "ids" }, - "5300": { + "5526": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderChangeId" + "qualifiedName": "config" }, - "5301": { + "5527": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5302": { + "5528": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.confirmOrderChange" + "qualifiedName": "IOrderModuleService.restoreLineItemTaxLines" }, - "5303": { + "5529": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderChangeId" + "qualifiedName": "IOrderModuleService.restoreLineItemTaxLines" }, - "5304": { + "5530": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "TReturnableLinkableKeys" }, - "5305": { + "5531": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.confirmOrderChange" + "qualifiedName": "ids" }, - "5306": { + "5532": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "config" }, - "5307": { + "5533": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5308": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.confirmOrderChange" - }, - "5309": { + "5534": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "IOrderModuleService.softDeleteShippingMethodTaxLines" }, - "5310": { + "5535": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IOrderModuleService.softDeleteShippingMethodTaxLines" }, - "5311": { + "5536": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.declineOrderChange" + "qualifiedName": "TReturnableLinkableKeys" }, - "5312": { + "5537": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.declineOrderChange" + "qualifiedName": "ids" }, - "5313": { + "5538": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderChangeId" + "qualifiedName": "config" }, - "5314": { + "5539": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5315": { + "5540": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.declineOrderChange" + "qualifiedName": "IOrderModuleService.restoreShippingMethodTaxLines" }, - "5316": { + "5541": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderChangeId" + "qualifiedName": "IOrderModuleService.restoreShippingMethodTaxLines" }, - "5317": { + "5542": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "TReturnableLinkableKeys" }, - "5318": { + "5543": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.declineOrderChange" + "qualifiedName": "ids" }, - "5319": { + "5544": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "config" }, - "5320": { + "5545": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5321": { + "5546": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.declineOrderChange" + "qualifiedName": "IOrderModuleService.revertLastVersion" }, - "5322": { + "5547": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "data" + "qualifiedName": "IOrderModuleService.revertLastVersion" + }, + "5548": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "orderId" }, - "5323": { + "5549": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5324": { + "5550": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.applyPendingOrderActions" + "qualifiedName": "IOrderModuleService.listTransactions" }, - "5325": { + "5551": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.applyPendingOrderActions" + "qualifiedName": "IOrderModuleService.listTransactions" }, - "5326": { + "5552": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "filters" }, - "5327": { + "5553": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "config" + }, + "5554": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5328": { + "5555": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.addOrderAction" + "qualifiedName": "IOrderModuleService.addTransactions" }, - "5329": { + "5556": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.addOrderAction" + "qualifiedName": "IOrderModuleService.addTransactions" }, - "5330": { + "5557": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5331": { + "5558": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5332": { + "5559": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.addOrderAction" + "qualifiedName": "IOrderModuleService.addTransactions" }, - "5333": { + "5560": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5334": { + "5561": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5335": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteAddresses" - }, - "5336": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteAddresses" - }, - "5337": { + "5562": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "IOrderModuleService.deleteTransactions" }, - "5338": { + "5563": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "IOrderModuleService.deleteTransactions" }, - "5339": { + "5564": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "transactionIds" }, - "5340": { + "5565": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5341": { + "5566": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreAddresses" + "qualifiedName": "IOrderModuleService.softDeleteTransactions" }, - "5342": { + "5567": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreAddresses" + "qualifiedName": "IOrderModuleService.softDeleteTransactions" }, - "5343": { + "5568": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "5344": { + "5569": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "transactionIds" }, - "5345": { + "5570": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5346": { + "5571": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5347": { + "5572": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteLineItems" + "qualifiedName": "IOrderModuleService.restoreTransactions" }, - "5348": { + "5573": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteLineItems" + "qualifiedName": "IOrderModuleService.restoreTransactions" }, - "5349": { + "5574": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "5350": { + "5575": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "transactionIds" }, - "5351": { + "5576": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5352": { + "5577": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5353": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreLineItems" - }, - "5354": { + "5578": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreLineItems" + "qualifiedName": "IOrderModuleService.retrieveReturnReason" }, - "5355": { + "5579": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "IOrderModuleService.retrieveReturnReason" }, - "5356": { + "5580": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "reasonId" }, - "5357": { + "5581": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5358": { + "5582": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5359": { - "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteShippingMethods" - }, - "5360": { + "5583": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteShippingMethods" + "qualifiedName": "IOrderModuleService.listReturnReasons" }, - "5361": { + "5584": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "IOrderModuleService.listReturnReasons" }, - "5362": { + "5585": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "filters" }, - "5363": { + "5586": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5364": { + "5587": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5365": { + "5588": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreShippingMethods" + "qualifiedName": "IOrderModuleService.createReturnReasons" }, - "5366": { + "5589": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreShippingMethods" + "qualifiedName": "IOrderModuleService.createReturnReasons" }, - "5367": { + "5590": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "returnReasonData" }, - "5368": { + "5591": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "sharedContext" }, - "5369": { + "5592": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "IOrderModuleService.createReturnReasons" }, - "5370": { + "5593": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "returnReasonData" + }, + "5594": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5371": { + "5595": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteLineItemAdjustments" + "qualifiedName": "IOrderModuleService.updateReturnReasons" }, - "5372": { + "5596": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteLineItemAdjustments" + "qualifiedName": "IOrderModuleService.updateReturnReasons" }, - "5373": { + "5597": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "data" }, - "5374": { + "5598": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "IOrderModuleService.updateReturnReasons" }, - "5375": { + "5599": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "selector" }, - "5376": { + "5600": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5601": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5377": { + "5602": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreLineItemAdjustments" + "qualifiedName": "IOrderModuleService.updateReturnReasons" }, - "5378": { + "5603": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreLineItemAdjustments" + "qualifiedName": "id" }, - "5379": { + "5604": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "data" }, - "5380": { + "5605": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "sharedContext" }, - "5381": { + "5606": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "IOrderModuleService.deleteReturnReasons" }, - "5382": { + "5607": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.deleteReturnReasons" + }, + "5608": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "returnReasonIds" + }, + "5609": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5383": { + "5610": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteShippingMethodAdjustments" + "qualifiedName": "IOrderModuleService.softDeleteReturnReasons" }, - "5384": { + "5611": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteShippingMethodAdjustments" + "qualifiedName": "IOrderModuleService.softDeleteReturnReasons" }, - "5385": { + "5612": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "5386": { + "5613": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "ids" }, - "5387": { + "5614": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5388": { + "5615": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5389": { + "5616": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreShippingMethodAdjustments" + "qualifiedName": "IOrderModuleService.restoreReturnReasons" }, - "5390": { + "5617": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreShippingMethodAdjustments" + "qualifiedName": "IOrderModuleService.restoreReturnReasons" }, - "5391": { + "5618": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "5392": { + "5619": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "ids" }, - "5393": { + "5620": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5394": { + "5621": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5395": { + "5622": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteLineItemTaxLines" + "qualifiedName": "IOrderModuleService.createReturns" }, - "5396": { + "5623": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteLineItemTaxLines" + "qualifiedName": "IOrderModuleService.createReturns" }, - "5397": { + "5624": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "data" }, - "5398": { + "5625": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "sharedContext" }, - "5399": { + "5626": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "IOrderModuleService.createReturns" }, - "5400": { + "5627": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "data" }, - "5401": { + "5628": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreLineItemTaxLines" + "qualifiedName": "sharedContext" }, - "5402": { + "5629": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreLineItemTaxLines" + "qualifiedName": "IOrderModuleService.updateReturns" }, - "5403": { + "5630": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "IOrderModuleService.updateReturns" }, - "5404": { + "5631": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "data" }, - "5405": { + "5632": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "IOrderModuleService.updateReturns" }, - "5406": { + "5633": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "selector" }, - "5407": { + "5634": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteShippingMethodTaxLines" + "qualifiedName": "data" }, - "5408": { + "5635": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteShippingMethodTaxLines" + "qualifiedName": "sharedContext" }, - "5409": { + "5636": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "IOrderModuleService.updateReturns" }, - "5410": { + "5637": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "id" }, - "5411": { + "5638": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "data" }, - "5412": { + "5639": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5413": { + "5640": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreShippingMethodTaxLines" + "qualifiedName": "IOrderModuleService.deleteReturns" }, - "5414": { + "5641": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreShippingMethodTaxLines" + "qualifiedName": "IOrderModuleService.deleteReturns" }, - "5415": { + "5642": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "ids" }, - "5416": { + "5643": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "ids" + "qualifiedName": "sharedContext" }, - "5417": { + "5644": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "IOrderModuleService.softDeleteReturns" }, - "5418": { + "5645": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IOrderModuleService.softDeleteReturns" }, - "5419": { + "5646": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.revertLastVersion" + "qualifiedName": "TReturnableLinkableKeys" }, - "5420": { + "5647": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.revertLastVersion" + "qualifiedName": "ids" }, - "5421": { + "5648": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "orderId" + "qualifiedName": "config" }, - "5422": { + "5649": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5423": { + "5650": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listTransactions" + "qualifiedName": "IOrderModuleService.restoreReturns" }, - "5424": { + "5651": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listTransactions" + "qualifiedName": "IOrderModuleService.restoreReturns" }, - "5425": { + "5652": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "filters" + "qualifiedName": "TReturnableLinkableKeys" }, - "5426": { + "5653": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "ids" + }, + "5654": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5427": { + "5655": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5428": { + "5656": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.addTransactions" + "qualifiedName": "IOrderModuleService.createOrderClaims" }, - "5429": { + "5657": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.addTransactions" + "qualifiedName": "IOrderModuleService.createOrderClaims" }, - "5430": { + "5658": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5431": { + "5659": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5432": { + "5660": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.addTransactions" + "qualifiedName": "IOrderModuleService.createOrderClaims" }, - "5433": { + "5661": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5434": { + "5662": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5435": { + "5663": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteTransactions" + "qualifiedName": "IOrderModuleService.updateOrderClaims" }, - "5436": { + "5664": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteTransactions" + "qualifiedName": "IOrderModuleService.updateOrderClaims" }, - "5437": { + "5665": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "transactionIds" + "qualifiedName": "data" }, - "5438": { + "5666": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IOrderModuleService.updateOrderClaims" }, - "5439": { + "5667": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteTransactions" + "qualifiedName": "selector" }, - "5440": { + "5668": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteTransactions" + "qualifiedName": "data" }, - "5441": { + "5669": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "sharedContext" }, - "5442": { + "5670": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "transactionIds" + "qualifiedName": "IOrderModuleService.updateOrderClaims" }, - "5443": { + "5671": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "id" }, - "5444": { + "5672": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "data" }, - "5445": { + "5673": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreTransactions" + "qualifiedName": "sharedContext" }, - "5446": { + "5674": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreTransactions" + "qualifiedName": "IOrderModuleService.deleteOrderClaims" }, - "5447": { + "5675": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "IOrderModuleService.deleteOrderClaims" }, - "5448": { + "5676": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "transactionIds" + "qualifiedName": "ids" }, - "5449": { + "5677": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "config" + "qualifiedName": "sharedContext" }, - "5450": { + "5678": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IOrderModuleService.softDeleteOrderClaims" }, - "5451": { + "5679": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.retrieveReturnReason" + "qualifiedName": "IOrderModuleService.softDeleteOrderClaims" }, - "5452": { + "5680": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.retrieveReturnReason" + "qualifiedName": "TReturnableLinkableKeys" }, - "5453": { + "5681": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "reasonId" + "qualifiedName": "ids" }, - "5454": { + "5682": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5455": { + "5683": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5456": { + "5684": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listReturnReasons" + "qualifiedName": "IOrderModuleService.restoreOrderClaims" }, - "5457": { + "5685": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.listReturnReasons" + "qualifiedName": "IOrderModuleService.restoreOrderClaims" }, - "5458": { + "5686": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "filters" + "qualifiedName": "TReturnableLinkableKeys" }, - "5459": { + "5687": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "ids" + }, + "5688": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5460": { + "5689": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5461": { + "5690": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createReturnReasons" + "qualifiedName": "IOrderModuleService.createOrderExchanges" }, - "5462": { + "5691": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createReturnReasons" + "qualifiedName": "IOrderModuleService.createOrderExchanges" }, - "5463": { + "5692": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "returnReasonData" + "qualifiedName": "data" }, - "5464": { + "5693": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5465": { + "5694": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.createReturnReasons" + "qualifiedName": "IOrderModuleService.createOrderExchanges" }, - "5466": { + "5695": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "returnReasonData" + "qualifiedName": "data" }, - "5467": { + "5696": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5468": { + "5697": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateReturnReasons" + "qualifiedName": "IOrderModuleService.updateOrderExchanges" }, - "5469": { + "5698": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateReturnReasons" + "qualifiedName": "IOrderModuleService.updateOrderExchanges" }, - "5470": { + "5699": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5471": { + "5700": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateReturnReasons" + "qualifiedName": "IOrderModuleService.updateOrderExchanges" }, - "5472": { + "5701": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "selector" }, - "5473": { + "5702": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5474": { + "5703": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5475": { + "5704": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.updateReturnReasons" + "qualifiedName": "IOrderModuleService.updateOrderExchanges" }, - "5476": { + "5705": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "id" }, - "5477": { + "5706": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5478": { + "5707": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5479": { + "5708": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteReturnReasons" + "qualifiedName": "IOrderModuleService.deleteOrderExchanges" }, - "5480": { + "5709": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.deleteReturnReasons" + "qualifiedName": "IOrderModuleService.deleteOrderExchanges" }, - "5481": { + "5710": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "returnReasonIds" + "qualifiedName": "ids" }, - "5482": { + "5711": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5483": { + "5712": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteReturnReasons" + "qualifiedName": "IOrderModuleService.softDeleteOrderExchanges" }, - "5484": { + "5713": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.softDeleteReturnReasons" + "qualifiedName": "IOrderModuleService.softDeleteOrderExchanges" }, - "5485": { + "5714": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "5486": { + "5715": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "storeIds" + "qualifiedName": "ids" }, - "5487": { + "5716": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5488": { + "5717": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5489": { + "5718": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreReturnReasons" + "qualifiedName": "IOrderModuleService.restoreOrderExchanges" }, - "5490": { + "5719": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "IOrderModuleService.restoreReturnReasons" + "qualifiedName": "IOrderModuleService.restoreOrderExchanges" }, - "5491": { + "5720": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "5492": { + "5721": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", - "qualifiedName": "storeIds" + "qualifiedName": "ids" }, - "5493": { + "5722": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "config" }, - "5494": { + "5723": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5495": { + "5724": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.archive" }, - "5496": { + "5725": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.archive" }, - "5497": { + "5726": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "orderId" }, - "5498": { + "5727": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5499": { + "5728": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.archive" }, - "5500": { + "5729": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "orderId" }, - "5501": { + "5730": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5502": { + "5731": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.completeOrder" }, - "5503": { + "5732": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.completeOrder" }, - "5504": { + "5733": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "orderId" }, - "5505": { + "5734": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5506": { + "5735": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.completeOrder" }, - "5507": { + "5736": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "orderId" }, - "5508": { + "5737": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5509": { + "5738": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.cancel" }, - "5510": { + "5739": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.cancel" }, - "5511": { + "5740": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "orderId" }, - "5512": { + "5741": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5513": { + "5742": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.cancel" }, - "5514": { + "5743": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "orderId" }, - "5515": { + "5744": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5516": { + "5745": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.registerFulfillment" }, - "5517": { + "5746": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.registerFulfillment" }, - "5518": { + "5747": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5519": { + "5748": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5520": { + "5749": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.cancelFulfillment" }, - "5521": { + "5750": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.cancelFulfillment" }, - "5522": { + "5751": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5523": { + "5752": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5524": { + "5753": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.registerShipment" }, - "5525": { + "5754": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.registerShipment" }, - "5526": { + "5755": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "data" }, - "5527": { + "5756": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5528": { + "5757": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.createReturn" }, - "5529": { + "5758": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.createReturn" }, - "5530": { + "5759": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "returnData" }, - "5531": { + "5760": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5532": { + "5761": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.cancelReturn" + }, + "5762": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.cancelReturn" + }, + "5763": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5764": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5765": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.receiveReturn" }, - "5533": { + "5766": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.receiveReturn" }, - "5534": { + "5767": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "returnData" }, - "5535": { + "5768": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5536": { + "5769": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.createClaim" }, - "5537": { + "5770": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.createClaim" }, - "5538": { + "5771": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "claimData" }, - "5539": { + "5772": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5540": { + "5773": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.cancelClaim" + }, + "5774": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.cancelClaim" + }, + "5775": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5776": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5777": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.createExchange" }, - "5541": { + "5778": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "IOrderModuleService.createExchange" }, - "5542": { + "5779": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "exchangeData" }, - "5543": { + "5780": { "sourceFileName": "../../../../packages/core/types/src/order/service.ts", "qualifiedName": "sharedContext" }, - "5557": { + "5781": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.cancelExchange" + }, + "5782": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "IOrderModuleService.cancelExchange" + }, + "5783": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "data" + }, + "5784": { + "sourceFileName": "../../../../packages/core/types/src/order/service.ts", + "qualifiedName": "sharedContext" + }, + "5798": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "5571": { + "5812": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "5572": { + "5813": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "5573": { + "5814": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "5574": { + "5815": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "5575": { + "5816": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "5576": { + "5817": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "5577": { + "5818": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "5578": { + "5819": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "5580": { + "5821": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "5581": { + "5822": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "5582": { + "5823": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "5583": { + "5824": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "5584": { + "5825": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO" }, - "5585": { + "5826": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.id" }, - "5586": { + "5827": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.version" }, - "5587": { + "5828": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderDTO.order_change" + }, + "5829": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.status" }, - "5588": { + "5830": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.region_id" }, - "5589": { + "5831": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.customer_id" }, - "5590": { + "5832": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.sales_channel_id" }, - "5591": { + "5833": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.email" }, - "5592": { + "5834": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.currency_code" }, - "5593": { + "5835": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.shipping_address" }, - "5594": { + "5836": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.billing_address" }, - "5595": { + "5837": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.items" }, - "5596": { + "5838": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.shipping_methods" }, - "5597": { + "5839": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.transactions" }, - "5598": { + "5840": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.summary" }, - "5599": { + "5841": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.metadata" }, - "5600": { + "5842": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.canceled_at" }, - "5601": { + "5843": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.created_at" }, - "5602": { + "5844": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.updated_at" }, - "5603": { + "5845": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.original_item_total" }, - "5604": { + "5846": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.original_item_subtotal" }, - "5605": { + "5847": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.original_item_tax_total" }, - "5606": { + "5848": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.item_total" }, - "5607": { + "5849": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.item_subtotal" }, - "5608": { + "5850": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.item_tax_total" }, - "5609": { + "5851": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.original_total" }, - "5610": { + "5852": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.original_subtotal" }, - "5611": { + "5853": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.original_tax_total" }, - "5612": { + "5854": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.total" }, - "5613": { + "5855": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.subtotal" }, - "5614": { + "5856": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.tax_total" }, - "5615": { + "5857": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.discount_total" }, - "5616": { + "5858": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.discount_tax_total" }, - "5617": { + "5859": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.gift_card_total" }, - "5618": { + "5860": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.gift_card_tax_total" }, - "5619": { + "5861": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.shipping_total" }, - "5620": { + "5862": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.shipping_subtotal" }, - "5621": { + "5863": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.shipping_tax_total" }, - "5622": { + "5864": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.original_shipping_total" }, - "5623": { + "5865": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.original_shipping_subtotal" }, - "5624": { + "5866": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.original_shipping_tax_total" }, - "5625": { + "5867": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_original_item_total" }, - "5626": { + "5868": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_original_item_subtotal" }, - "5627": { + "5869": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_original_item_tax_total" }, - "5628": { + "5870": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_item_total" }, - "5629": { + "5871": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_item_subtotal" }, - "5630": { + "5872": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_item_tax_total" }, - "5631": { + "5873": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_original_total" }, - "5632": { + "5874": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_original_subtotal" }, - "5633": { + "5875": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_original_tax_total" }, - "5634": { + "5876": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_total" }, - "5635": { + "5877": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_subtotal" }, - "5636": { + "5878": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_tax_total" }, - "5637": { + "5879": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_discount_total" }, - "5638": { + "5880": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_discount_tax_total" }, - "5639": { + "5881": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_gift_card_total" }, - "5640": { + "5882": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_gift_card_tax_total" }, - "5641": { + "5883": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_shipping_total" }, - "5642": { + "5884": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_shipping_subtotal" }, - "5643": { + "5885": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_shipping_tax_total" }, - "5644": { + "5886": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_original_shipping_total" }, - "5645": { + "5887": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_original_shipping_subtotal" }, - "5646": { + "5888": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderDTO.raw_original_shipping_tax_total" }, - "5647": { + "5889": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "5648": { + "5890": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "5649": { + "5891": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "5650": { + "5892": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "5651": { + "5893": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "5652": { + "5894": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "5653": { + "5895": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "5654": { + "5896": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "5655": { + "5897": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "5656": { + "5898": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "5657": { + "5899": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "5658": { + "5900": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "5659": { + "5901": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderProps" }, - "5660": { + "5902": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderProps.id" }, - "5661": { + "5903": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderProps.sales_channel_id" }, - "5662": { + "5904": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderProps.customer_id" }, - "5663": { + "5905": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderProps.region_id" }, - "5664": { + "5906": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderProps.created_at" }, - "5665": { + "5907": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderProps.updated_at" }, - "5666": { + "5908": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "5667": { + "5909": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "5668": { + "5910": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "ReturnDTO" }, - "5669": { + "5911": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "ReturnDTO.status" }, - "5670": { + "5912": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "ReturnDTO.refund_amount" }, - "5671": { + "5913": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "ReturnDTO.order_id" + }, + "5914": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_total" }, - "5672": { + "5915": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "discount_total" }, - "5673": { + "5916": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "tax_total" }, - "5674": { + "5917": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "total" }, - "5675": { + "5918": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "subtotal" }, - "5676": { + "5919": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "gift_card_total" }, - "5677": { + "5920": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "gift_card_tax_total" }, - "5678": { + "5921": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "id" }, - "5679": { + "5922": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "created_at" }, - "5680": { + "5923": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "updated_at" }, - "5681": { + "5924": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "sales_channel_id" }, - "5682": { + "5925": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "customer_id" }, - "5683": { + "5926": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "region_id" }, - "5684": { + "5927": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "metadata" }, - "5685": { + "5928": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "email" }, - "5686": { + "5929": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "canceled_at" }, - "5687": { + "5930": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "currency_code" }, - "5688": { + "5931": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "order_change" + }, + "5932": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_address" }, - "5689": { + "5933": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "billing_address" }, - "5690": { + "5934": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "items" }, - "5691": { + "5935": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_methods" }, - "5692": { + "5936": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "transactions" }, - "5693": { + "5937": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "summary" }, - "5694": { + "5938": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_item_total" }, - "5695": { + "5939": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_item_subtotal" }, - "5696": { + "5940": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_item_tax_total" }, - "5697": { + "5941": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "item_total" }, - "5698": { + "5942": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "item_subtotal" }, - "5699": { + "5943": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "item_tax_total" }, - "5700": { + "5944": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_total" }, - "5701": { + "5945": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_subtotal" }, - "5702": { + "5946": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_tax_total" }, - "5703": { + "5947": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "discount_tax_total" }, - "5704": { + "5948": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_subtotal" }, - "5705": { + "5949": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_tax_total" }, - "5706": { + "5950": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_shipping_total" }, - "5707": { + "5951": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_shipping_subtotal" }, - "5708": { + "5952": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_shipping_tax_total" }, - "5709": { + "5953": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_item_total" }, - "5710": { + "5954": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_item_subtotal" }, - "5711": { + "5955": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_item_tax_total" }, - "5712": { + "5956": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_item_total" }, - "5713": { + "5957": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_item_subtotal" }, - "5714": { + "5958": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_item_tax_total" }, - "5715": { + "5959": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_total" }, - "5716": { + "5960": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_subtotal" }, - "5717": { + "5961": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_tax_total" }, - "5718": { + "5962": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_total" }, - "5719": { + "5963": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_subtotal" }, - "5720": { + "5964": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_tax_total" }, - "5721": { + "5965": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_discount_total" }, - "5722": { + "5966": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_discount_tax_total" }, - "5723": { + "5967": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_gift_card_total" }, - "5724": { + "5968": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_gift_card_tax_total" }, - "5725": { + "5969": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_shipping_total" }, - "5726": { + "5970": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_shipping_subtotal" }, - "5727": { + "5971": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_shipping_tax_total" }, - "5728": { + "5972": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_shipping_total" }, - "5729": { + "5973": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_shipping_subtotal" }, - "5730": { + "5974": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_shipping_tax_total" }, - "5731": { + "5975": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderClaimDTO" }, - "5732": { + "5976": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderClaimDTO.claim_items" }, - "5733": { + "5977": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderClaimDTO.additional_items" }, - "5734": { + "5978": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderClaimDTO.return" }, - "5735": { + "5979": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderClaimDTO.no_notification" }, - "5736": { + "5980": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderClaimDTO.refund_amount" }, - "5737": { + "5981": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_total" }, - "5738": { + "5982": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "discount_total" }, - "5739": { + "5983": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "tax_total" }, - "5740": { + "5984": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "total" }, - "5741": { + "5985": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "subtotal" }, - "5742": { + "5986": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "gift_card_total" }, - "5743": { + "5987": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "gift_card_tax_total" }, - "5744": { + "5988": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "id" }, - "5745": { + "5989": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "created_at" }, - "5746": { + "5990": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "updated_at" }, - "5747": { + "5991": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "sales_channel_id" }, - "5748": { + "5992": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "customer_id" }, - "5749": { + "5993": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "region_id" }, - "5750": { + "5994": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "metadata" }, - "5751": { + "5995": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "email" }, - "5752": { + "5996": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "canceled_at" }, - "5753": { + "5997": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "currency_code" }, - "5754": { + "5998": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "order_change" + }, + "5999": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_address" }, - "5755": { + "6000": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "billing_address" }, - "5756": { + "6001": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_methods" }, - "5757": { + "6002": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "transactions" }, - "5758": { + "6003": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "summary" }, - "5759": { + "6004": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_item_total" }, - "5760": { + "6005": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_item_subtotal" }, - "5761": { + "6006": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_item_tax_total" }, - "5762": { + "6007": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "item_total" }, - "5763": { + "6008": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "item_subtotal" }, - "5764": { + "6009": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "item_tax_total" }, - "5765": { + "6010": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_total" }, - "5766": { + "6011": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_subtotal" }, - "5767": { + "6012": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_tax_total" }, - "5768": { + "6013": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "discount_tax_total" }, - "5769": { + "6014": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_subtotal" }, - "5770": { + "6015": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_tax_total" }, - "5771": { + "6016": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_shipping_total" }, - "5772": { + "6017": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_shipping_subtotal" }, - "5773": { + "6018": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_shipping_tax_total" }, - "5774": { + "6019": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_item_total" }, - "5775": { + "6020": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_item_subtotal" }, - "5776": { + "6021": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_item_tax_total" }, - "5777": { + "6022": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_item_total" }, - "5778": { + "6023": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_item_subtotal" }, - "5779": { + "6024": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_item_tax_total" }, - "5780": { + "6025": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_total" }, - "5781": { + "6026": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_subtotal" }, - "5782": { + "6027": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_tax_total" }, - "5783": { + "6028": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_total" }, - "5784": { + "6029": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_subtotal" }, - "5785": { + "6030": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_tax_total" }, - "5786": { + "6031": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_discount_total" }, - "5787": { + "6032": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_discount_tax_total" }, - "5788": { + "6033": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_gift_card_total" }, - "5789": { + "6034": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_gift_card_tax_total" }, - "5790": { + "6035": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_shipping_total" }, - "5791": { + "6036": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_shipping_subtotal" }, - "5792": { + "6037": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_shipping_tax_total" }, - "5793": { + "6038": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_shipping_total" }, - "5794": { + "6039": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_shipping_subtotal" }, - "5795": { + "6040": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_shipping_tax_total" }, - "5796": { + "6041": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderExchangeDTO" }, - "5797": { + "6042": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderExchangeDTO.return_items" }, - "5798": { + "6043": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderExchangeDTO.additional_items" }, - "5799": { + "6044": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderExchangeDTO.no_notification" }, - "5800": { + "6045": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderExchangeDTO.difference_due" }, - "5801": { + "6046": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderExchangeDTO.return" }, - "5802": { + "6047": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_total" }, - "5803": { + "6048": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "discount_total" }, - "5804": { + "6049": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "tax_total" }, - "5805": { + "6050": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "total" }, - "5806": { + "6051": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "subtotal" }, - "5807": { + "6052": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "gift_card_total" }, - "5808": { + "6053": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "gift_card_tax_total" }, - "5809": { + "6054": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "id" }, - "5810": { + "6055": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "created_at" }, - "5811": { + "6056": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "updated_at" }, - "5812": { + "6057": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "sales_channel_id" }, - "5813": { + "6058": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "customer_id" }, - "5814": { + "6059": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "region_id" }, - "5815": { + "6060": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "metadata" }, - "5816": { + "6061": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "email" }, - "5817": { + "6062": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "canceled_at" }, - "5818": { + "6063": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "currency_code" }, - "5819": { + "6064": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "order_change" + }, + "6065": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_address" }, - "5820": { + "6066": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "billing_address" }, - "5821": { + "6067": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_methods" }, - "5822": { + "6068": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "transactions" }, - "5823": { + "6069": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "summary" }, - "5824": { + "6070": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_item_total" }, - "5825": { + "6071": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_item_subtotal" }, - "5826": { + "6072": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_item_tax_total" }, - "5827": { + "6073": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "item_total" }, - "5828": { + "6074": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "item_subtotal" }, - "5829": { + "6075": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "item_tax_total" }, - "5830": { + "6076": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_total" }, - "5831": { + "6077": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_subtotal" }, - "5832": { + "6078": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_tax_total" }, - "5833": { + "6079": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "discount_tax_total" }, - "5834": { + "6080": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_subtotal" }, - "5835": { + "6081": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "shipping_tax_total" }, - "5836": { + "6082": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_shipping_total" }, - "5837": { + "6083": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_shipping_subtotal" }, - "5838": { + "6084": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "original_shipping_tax_total" }, - "5839": { + "6085": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_item_total" }, - "5840": { + "6086": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_item_subtotal" }, - "5841": { + "6087": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_item_tax_total" }, - "5842": { + "6088": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_item_total" }, - "5843": { + "6089": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_item_subtotal" }, - "5844": { + "6090": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_item_tax_total" }, - "5845": { + "6091": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_total" }, - "5846": { + "6092": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_subtotal" }, - "5847": { + "6093": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_tax_total" }, - "5848": { + "6094": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_total" }, - "5849": { + "6095": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_subtotal" }, - "5850": { + "6096": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_tax_total" }, - "5851": { + "6097": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_discount_total" }, - "5852": { + "6098": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_discount_tax_total" }, - "5853": { + "6099": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_gift_card_total" }, - "5854": { + "6100": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_gift_card_tax_total" }, - "5855": { + "6101": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_shipping_total" }, - "5856": { + "6102": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_shipping_subtotal" }, - "5857": { + "6103": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_shipping_tax_total" }, - "5858": { + "6104": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_shipping_total" }, - "5859": { + "6105": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_shipping_subtotal" }, - "5860": { + "6106": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "raw_original_shipping_tax_total" }, - "5861": { + "6107": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO" }, - "5862": { + "6108": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.region_id" }, - "5863": { + "6109": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.customer_id" }, - "5864": { + "6110": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.sales_channel_id" }, - "5865": { + "6111": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.status" }, - "5866": { + "6112": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.email" }, - "5867": { + "6113": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.currency_code" }, - "5868": { + "6114": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.shipping_address_id" }, - "5869": { + "6115": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.billing_address_id" }, - "5870": { + "6116": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.shipping_address" }, - "5871": { + "6117": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.billing_address" }, - "5872": { + "6118": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.no_notification" }, - "5873": { + "6119": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.items" }, - "5874": { + "6120": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.shipping_methods" }, - "5875": { + "6121": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.transactions" }, - "5876": { + "6122": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.metadata" }, - "5877": { + "6123": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderDTO.promo_codes" }, - "5878": { + "6124": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderDTO" }, - "5879": { + "6125": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderDTO.id" }, - "5880": { + "6126": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderDTO.version" }, - "5881": { + "6127": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderDTO.region_id" }, - "5882": { + "6128": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderDTO.customer_id" }, - "5883": { + "6129": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderDTO.sales_channel_id" }, - "5884": { + "6130": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderDTO.items" }, - "5885": { + "6131": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderDTO.shipping_address" }, - "5886": { + "6132": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderDTO.billing_address" }, - "5887": { + "6133": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderDTO.email" }, - "5888": { + "6134": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderDTO.no_notification" }, - "5889": { + "6135": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderDTO.metadata" }, - "5890": { + "6136": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "SoftDeleteReturn" }, - "5891": { + "6137": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "5892": { + "6138": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "5893": { + "6139": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RestoreReturn" }, - "5894": { + "6140": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "5895": { + "6141": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "5896": { + "6142": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderAddressProps" }, - "5897": { + "6143": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderAddressProps.id" }, - "5898": { + "6144": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "5899": { + "6145": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "5900": { + "6146": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO" }, - "5901": { + "6147": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.id" }, - "5902": { + "6148": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.customer_id" }, - "5903": { + "6149": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.first_name" }, - "5904": { + "6150": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.last_name" }, - "5905": { + "6151": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.phone" }, - "5906": { + "6152": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.company" }, - "5907": { + "6153": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.address_1" }, - "5908": { + "6154": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.address_2" }, - "5909": { + "6155": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.city" }, - "5910": { + "6156": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.country_code" }, - "5911": { + "6157": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.province" }, - "5912": { + "6158": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.postal_code" }, - "5913": { + "6159": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.metadata" }, - "5914": { + "6160": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.created_at" }, - "5915": { + "6161": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAddressDTO.updated_at" }, - "5916": { + "6162": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderAddressDTO" }, - "5917": { + "6163": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.customer_id" }, - "5918": { + "6164": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.company" }, - "5919": { + "6165": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.first_name" }, - "5920": { + "6166": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.last_name" }, - "5921": { + "6167": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.address_1" }, - "5922": { + "6168": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.address_2" }, - "5923": { + "6169": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.city" }, - "5924": { + "6170": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.country_code" }, - "5925": { + "6171": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.province" }, - "5926": { + "6172": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.postal_code" }, - "5927": { + "6173": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.phone" }, - "5928": { + "6174": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.metadata" }, - "5929": { + "6175": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderAddressDTO" }, - "5930": { + "6176": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderAddressDTO.id" }, - "5931": { + "6177": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.customer_id" }, - "5932": { + "6178": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.company" }, - "5933": { + "6179": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.first_name" }, - "5934": { + "6180": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.last_name" }, - "5935": { + "6181": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.address_1" }, - "5936": { + "6182": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.address_2" }, - "5937": { + "6183": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.city" }, - "5938": { + "6184": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.country_code" }, - "5939": { + "6185": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.province" }, - "5940": { + "6186": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.postal_code" }, - "5941": { + "6187": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.phone" }, - "5942": { + "6188": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.metadata" }, - "5943": { + "6189": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO" }, - "5944": { + "6190": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.id" }, - "5945": { + "6191": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.title" }, - "5946": { + "6192": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.subtitle" }, - "5947": { + "6193": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.thumbnail" }, - "5948": { + "6194": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.variant_id" }, - "5949": { + "6195": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.product_id" }, - "5950": { + "6196": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.product_title" }, - "5951": { + "6197": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.product_description" }, - "5952": { + "6198": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.product_subtitle" }, - "5953": { + "6199": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.product_type" }, - "5954": { + "6200": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.product_collection" }, - "5955": { + "6201": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.product_handle" }, - "5956": { + "6202": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.variant_sku" }, - "5957": { + "6203": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.variant_barcode" }, - "5958": { + "6204": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.variant_title" }, - "5959": { + "6205": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.variant_option_values" }, - "5960": { + "6206": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.requires_shipping" }, - "5961": { + "6207": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.is_discountable" }, - "5962": { + "6208": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.is_tax_inclusive" }, - "5963": { + "6209": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.compare_at_unit_price" }, - "5964": { + "6210": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.raw_compare_at_unit_price" }, - "5965": { + "6211": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.unit_price" }, - "5966": { + "6212": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.raw_unit_price" }, - "5967": { + "6213": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.quantity" }, - "5968": { + "6214": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.raw_quantity" }, - "5969": { + "6215": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.tax_lines" }, - "5970": { + "6216": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.adjustments" }, - "5971": { + "6217": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.detail" }, - "5972": { + "6218": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.created_at" }, - "5973": { + "6219": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.updated_at" }, - "5974": { + "6220": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemDTO.metadata" }, - "5975": { + "6221": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.original_total" }, - "5976": { + "6222": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.original_subtotal" }, - "5977": { + "6223": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.original_tax_total" }, - "5978": { + "6224": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.item_total" }, - "5979": { + "6225": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.item_subtotal" }, - "5980": { + "6226": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.item_tax_total" }, - "5981": { + "6227": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.total" }, - "5982": { + "6228": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.subtotal" }, - "5983": { + "6229": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.tax_total" }, - "5984": { + "6230": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.discount_total" }, - "5985": { + "6231": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.discount_tax_total" }, - "5986": { + "6232": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.refundable_total" }, - "5987": { + "6233": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.refundable_total_per_unit" }, - "5988": { + "6234": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_original_total" }, - "5989": { + "6235": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_original_subtotal" }, - "5990": { + "6236": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_original_tax_total" }, - "5991": { + "6237": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_item_total" }, - "5992": { + "6238": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_item_subtotal" }, - "5993": { + "6239": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_item_tax_total" }, - "5994": { + "6240": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_total" }, - "5995": { + "6241": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_subtotal" }, - "5996": { + "6242": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_tax_total" }, - "5997": { + "6243": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_discount_total" }, - "5998": { + "6244": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_discount_tax_total" }, - "5999": { + "6245": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_refundable_total" }, - "6000": { + "6246": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_refundable_total_per_unit" }, - "6001": { + "6247": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemProps" }, - "6002": { + "6248": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemProps.id" }, - "6003": { + "6249": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemProps.order_id" }, - "6004": { + "6250": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemProps.title" }, - "6005": { + "6251": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemProps.variant_id" }, - "6006": { + "6252": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemProps.product_id" }, - "6007": { + "6253": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "6008": { + "6254": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "6009": { + "6255": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemForOrderDTO" }, - "6010": { + "6256": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemForOrderDTO.order_id" }, - "6011": { + "6257": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.title" }, - "6012": { + "6258": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.subtitle" }, - "6013": { + "6259": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.thumbnail" }, - "6014": { + "6260": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.quantity" }, - "6015": { + "6261": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_id" }, - "6016": { + "6262": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_title" }, - "6017": { + "6263": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_description" }, - "6018": { + "6264": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_subtitle" }, - "6019": { + "6265": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_type" }, - "6020": { + "6266": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_collection" }, - "6021": { + "6267": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_handle" }, - "6022": { + "6268": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.variant_id" }, - "6023": { + "6269": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.variant_sku" }, - "6024": { + "6270": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.variant_barcode" }, - "6025": { + "6271": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.variant_title" }, - "6026": { + "6272": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.variant_option_values" }, - "6027": { + "6273": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.requires_shipping" }, - "6028": { + "6274": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.is_discountable" }, - "6029": { + "6275": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.is_tax_inclusive" }, - "6030": { + "6276": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.compare_at_unit_price" }, - "6031": { + "6277": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.unit_price" }, - "6032": { + "6278": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.tax_lines" }, - "6033": { + "6279": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.adjustments" }, - "6034": { + "6280": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.metadata" }, - "6035": { + "6281": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO" }, - "6036": { + "6282": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.title" }, - "6037": { + "6283": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.subtitle" }, - "6038": { + "6284": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.thumbnail" }, - "6039": { + "6285": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.order_id" }, - "6040": { + "6286": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.quantity" }, - "6041": { + "6287": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_id" }, - "6042": { + "6288": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_title" }, - "6043": { + "6289": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_description" }, - "6044": { + "6290": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_subtitle" }, - "6045": { + "6291": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_type" }, - "6046": { + "6292": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_collection" }, - "6047": { + "6293": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.product_handle" }, - "6048": { + "6294": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.variant_id" }, - "6049": { + "6295": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.variant_sku" }, - "6050": { + "6296": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.variant_barcode" }, - "6051": { + "6297": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.variant_title" }, - "6052": { + "6298": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.variant_option_values" }, - "6053": { + "6299": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.requires_shipping" }, - "6054": { + "6300": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.is_discountable" }, - "6055": { + "6301": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.is_tax_inclusive" }, - "6056": { + "6302": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.compare_at_unit_price" }, - "6057": { + "6303": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.unit_price" }, - "6058": { + "6304": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.tax_lines" }, - "6059": { + "6305": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.adjustments" }, - "6060": { + "6306": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemDTO.metadata" }, - "6061": { + "6307": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderLineItemWithSelectorDTO" }, - "6062": { + "6308": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderLineItemWithSelectorDTO.selector" }, - "6063": { + "6309": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderLineItemWithSelectorDTO.data" }, - "6064": { + "6310": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderLineItemDTO" }, - "6065": { + "6311": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderLineItemDTO.id" }, - "6066": { + "6312": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderLineItemDTO.title" }, - "6067": { + "6313": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderLineItemDTO.quantity" }, - "6068": { + "6314": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderLineItemDTO.unit_price" }, - "6069": { + "6315": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderLineItemDTO.tax_lines" }, - "6070": { + "6316": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderLineItemDTO.adjustments" }, - "6071": { + "6317": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "variant_id" }, - "6072": { + "6318": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "product_id" }, - "6073": { + "6319": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "subtitle" }, - "6074": { + "6320": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "thumbnail" }, - "6075": { + "6321": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "product_title" }, - "6076": { + "6322": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "product_description" }, - "6077": { + "6323": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "product_subtitle" }, - "6078": { + "6324": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "product_type" }, - "6079": { + "6325": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "product_collection" }, - "6080": { + "6326": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "product_handle" }, - "6081": { + "6327": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "variant_sku" }, - "6082": { + "6328": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "variant_barcode" }, - "6083": { + "6329": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "variant_title" }, - "6084": { + "6330": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "variant_option_values" }, - "6085": { + "6331": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "requires_shipping" }, - "6086": { + "6332": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "is_discountable" }, - "6087": { + "6333": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "is_tax_inclusive" }, - "6088": { + "6334": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "compare_at_unit_price" }, - "6089": { + "6335": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "metadata" }, - "6090": { + "6336": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "order_id" }, - "6091": { + "6337": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodProps" }, - "6092": { + "6338": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodProps.id" }, - "6093": { + "6339": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodProps.order_id" }, - "6094": { + "6340": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodProps.name" }, - "6095": { + "6341": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodProps.shipping_option_id" }, - "6096": { + "6342": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "6097": { + "6343": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "6098": { + "6344": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemDTO" }, - "6099": { + "6345": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemDTO.id" }, - "6100": { + "6346": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemDTO.order_id" }, - "6101": { + "6347": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemDTO.version" }, - "6102": { + "6348": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemDTO.item_id" }, - "6103": { + "6349": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemDTO.quantity" }, - "6104": { + "6350": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemDTO.fulfilled_quantity" }, - "6105": { + "6351": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemDTO.return_requested_quantity" }, - "6106": { + "6352": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemDTO.return_received_quantity" }, - "6107": { + "6353": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemDTO.return_dismissed_quantity" }, - "6108": { + "6354": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemDTO.written_off_quantity" }, - "6109": { + "6355": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemDTO.metadata" }, - "6110": { + "6356": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO" }, - "6111": { + "6357": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.id" }, - "6112": { + "6358": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.item_id" }, - "6113": { + "6359": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.item" }, - "6114": { + "6360": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.quantity" }, - "6115": { + "6361": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.raw_quantity" }, - "6116": { + "6362": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.fulfilled_quantity" }, - "6117": { + "6363": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.raw_fulfilled_quantity" }, - "6118": { + "6364": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.shipped_quantity" }, - "6119": { + "6365": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.raw_shipped_quantity" }, - "6120": { + "6366": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.return_requested_quantity" }, - "6121": { + "6367": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.raw_return_requested_quantity" }, - "6122": { + "6368": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.return_received_quantity" }, - "6123": { + "6369": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.raw_return_received_quantity" }, - "6124": { + "6370": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.return_dismissed_quantity" }, - "6125": { + "6371": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.raw_return_dismissed_quantity" }, - "6126": { + "6372": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.written_off_quantity" }, - "6127": { + "6373": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.raw_written_off_quantity" }, - "6128": { + "6374": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.metadata" }, - "6129": { + "6375": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.created_at" }, - "6130": { + "6376": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderItemDTO.updated_at" }, - "6131": { + "6377": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemWithSelectorDTO" }, - "6132": { + "6378": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemWithSelectorDTO.selector" }, - "6133": { + "6379": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderItemWithSelectorDTO.data" }, - "6134": { + "6380": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO" }, - "6135": { + "6381": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.id" }, - "6136": { + "6382": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.order_id" }, - "6137": { + "6383": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.name" }, - "6138": { + "6384": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.description" }, - "6139": { + "6385": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.amount" }, - "6140": { + "6386": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.raw_amount" }, - "6141": { + "6387": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.is_tax_inclusive" }, - "6142": { + "6388": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.shipping_option_id" }, - "6143": { + "6389": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.data" }, - "6144": { + "6390": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.metadata" }, - "6145": { + "6391": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.tax_lines" }, - "6146": { + "6392": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.adjustments" }, - "6147": { + "6393": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.created_at" }, - "6148": { + "6394": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.updated_at" }, - "6149": { + "6395": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.original_total" }, - "6150": { + "6396": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.original_subtotal" }, - "6151": { + "6397": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.original_tax_total" }, - "6152": { + "6398": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.total" }, - "6153": { + "6399": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.subtotal" }, - "6154": { + "6400": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.tax_total" }, - "6155": { + "6401": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.discount_total" }, - "6156": { + "6402": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.discount_tax_total" }, - "6157": { + "6403": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.raw_original_total" }, - "6158": { + "6404": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.raw_original_subtotal" }, - "6159": { + "6405": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.raw_original_tax_total" }, - "6160": { + "6406": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.raw_total" }, - "6161": { + "6407": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.raw_subtotal" }, - "6162": { + "6408": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.raw_tax_total" }, - "6163": { + "6409": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.raw_discount_total" }, - "6164": { + "6410": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodDTO.raw_discount_tax_total" }, - "6165": { + "6411": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodDTO" }, - "6166": { + "6412": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodDTO.name" }, - "6167": { + "6413": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodDTO.order_id" }, - "6168": { + "6414": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderShippingMethodDTO.return_id" + }, + "6415": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderShippingMethodDTO.claim_id" + }, + "6416": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderShippingMethodDTO.exchange_id" + }, + "6417": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodDTO.version" }, - "6169": { + "6418": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodDTO.amount" }, - "6170": { + "6419": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderShippingMethodDTO.is_tax_inclusive" + }, + "6420": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodDTO.shipping_option_id" }, - "6171": { + "6421": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodDTO.data" }, - "6172": { + "6422": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodDTO.tax_lines" }, - "6173": { + "6423": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodDTO.adjustments" }, - "6174": { + "6424": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemAdjustmentProps" }, - "6175": { + "6425": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemAdjustmentProps.id" }, - "6176": { + "6426": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemAdjustmentProps.item_id" }, - "6177": { + "6427": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemAdjustmentProps.promotion_id" }, - "6178": { + "6428": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemAdjustmentProps.provider_id" }, - "6179": { + "6429": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemAdjustmentProps.item" }, - "6180": { + "6430": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "6181": { + "6431": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "6182": { + "6432": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemAdjustmentDTO" }, - "6183": { + "6433": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemAdjustmentDTO.item" }, - "6184": { + "6434": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemAdjustmentDTO.item_id" }, - "6185": { + "6435": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.id" }, - "6186": { + "6436": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.code" }, - "6187": { + "6437": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.amount" }, - "6188": { + "6438": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.order_id" }, - "6189": { + "6439": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.description" }, - "6190": { + "6440": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.promotion_id" }, - "6191": { + "6441": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.provider_id" }, - "6192": { + "6442": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.created_at" }, - "6193": { + "6443": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.updated_at" }, - "6194": { + "6444": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderAdjustmentDTO" }, - "6195": { + "6445": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderAdjustmentDTO.code" }, - "6196": { + "6446": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderAdjustmentDTO.amount" }, - "6197": { + "6447": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderAdjustmentDTO.description" }, - "6198": { + "6448": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderAdjustmentDTO.promotion_id" }, - "6199": { + "6449": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderAdjustmentDTO.provider_id" }, - "6200": { + "6450": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderLineItemAdjustmentDTO" }, - "6201": { + "6451": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderLineItemAdjustmentDTO.id" }, - "6202": { + "6452": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderLineItemAdjustmentDTO.item_id" }, - "6203": { + "6453": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderLineItemAdjustmentDTO.code" }, - "6204": { + "6454": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderLineItemAdjustmentDTO.amount" }, - "6205": { + "6455": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderLineItemAdjustmentDTO.description" }, - "6206": { + "6456": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderLineItemAdjustmentDTO.promotion_id" }, - "6207": { + "6457": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderLineItemAdjustmentDTO.provider_id" }, - "6208": { + "6458": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodAdjustmentProps" }, - "6209": { + "6459": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodAdjustmentProps.id" }, - "6210": { + "6460": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodAdjustmentProps.shipping_method_id" }, - "6211": { + "6461": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodAdjustmentProps.promotion_id" }, - "6212": { + "6462": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodAdjustmentProps.provider_id" }, - "6213": { + "6463": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodAdjustmentProps.shipping_method" }, - "6214": { + "6464": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "6215": { + "6465": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "6216": { + "6466": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodAdjustmentDTO" }, - "6217": { + "6467": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodAdjustmentDTO.shipping_method" }, - "6218": { + "6468": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodAdjustmentDTO.shipping_method_id" }, - "6219": { + "6469": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.id" }, - "6220": { + "6470": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.code" }, - "6221": { + "6471": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.amount" }, - "6222": { + "6472": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.order_id" }, - "6223": { + "6473": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.description" }, - "6224": { + "6474": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.promotion_id" }, - "6225": { + "6475": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.provider_id" }, - "6226": { + "6476": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.created_at" }, - "6227": { + "6477": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.updated_at" }, - "6228": { + "6478": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodAdjustmentDTO" }, - "6229": { + "6479": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodAdjustmentDTO.shipping_method_id" }, - "6230": { + "6480": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodAdjustmentDTO.code" }, - "6231": { + "6481": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodAdjustmentDTO.amount" }, - "6232": { + "6482": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodAdjustmentDTO.description" }, - "6233": { + "6483": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodAdjustmentDTO.promotion_id" }, - "6234": { + "6484": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodAdjustmentDTO.provider_id" }, - "6235": { + "6485": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderShippingMethodAdjustmentDTO" }, - "6236": { + "6486": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderShippingMethodAdjustmentDTO.id" }, - "6237": { + "6487": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderShippingMethodAdjustmentDTO.code" }, - "6238": { + "6488": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderShippingMethodAdjustmentDTO.amount" }, - "6239": { + "6489": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderShippingMethodAdjustmentDTO.description" }, - "6240": { + "6490": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderShippingMethodAdjustmentDTO.promotion_id" }, - "6241": { + "6491": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderShippingMethodAdjustmentDTO.provider_id" }, - "6242": { + "6492": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemTaxLineProps" }, - "6243": { + "6493": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemTaxLineProps.id" }, - "6244": { + "6494": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemTaxLineProps.description" }, - "6245": { + "6495": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemTaxLineProps.code" }, - "6246": { + "6496": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemTaxLineProps.tax_rate_id" }, - "6247": { + "6497": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemTaxLineProps.provider_id" }, - "6248": { + "6498": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemTaxLineProps.item_id" }, - "6249": { + "6499": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderLineItemTaxLineProps.item" }, - "6250": { + "6500": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "6251": { + "6501": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "6252": { + "6502": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTaxLineDTO" }, - "6253": { + "6503": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTaxLineDTO.item" }, - "6254": { + "6504": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTaxLineDTO.item_id" }, - "6255": { + "6505": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTaxLineDTO.total" }, - "6256": { + "6506": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTaxLineDTO.subtotal" }, - "6257": { + "6507": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTaxLineDTO.raw_total" }, - "6258": { + "6508": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTaxLineDTO.raw_subtotal" }, - "6259": { + "6509": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.id" }, - "6260": { + "6510": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.description" }, - "6261": { + "6511": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.tax_rate_id" }, - "6262": { + "6512": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.code" }, - "6263": { + "6513": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.rate" }, - "6264": { + "6514": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.provider_id" }, - "6265": { + "6515": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.created_at" }, - "6266": { + "6516": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.updated_at" }, - "6267": { + "6517": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderLineItemTaxLineDTO" }, - "6268": { + "6518": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.description" }, - "6269": { + "6519": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.tax_rate_id" }, - "6270": { + "6520": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.code" }, - "6271": { + "6521": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.rate" }, - "6272": { + "6522": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.provider_id" }, - "6273": { + "6523": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderLineItemTaxLineDTO" }, - "6274": { + "6524": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.id" }, - "6275": { + "6525": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.description" }, - "6276": { + "6526": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.tax_rate_id" }, - "6277": { + "6527": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.code" }, - "6278": { + "6528": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.rate" }, - "6279": { + "6529": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.provider_id" }, - "6280": { + "6530": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodTaxLineProps" }, - "6281": { + "6531": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodTaxLineProps.id" }, - "6282": { + "6532": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodTaxLineProps.description" }, - "6283": { + "6533": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodTaxLineProps.code" }, - "6284": { + "6534": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodTaxLineProps.tax_rate_id" }, - "6285": { + "6535": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodTaxLineProps.provider_id" }, - "6286": { + "6536": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodTaxLineProps.shipping_method_id" }, - "6287": { + "6537": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderShippingMethodTaxLineProps.shipping_method" }, - "6288": { + "6538": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "6289": { + "6539": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "6290": { + "6540": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodTaxLineDTO" }, - "6291": { + "6541": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodTaxLineDTO.shipping_method" }, - "6292": { + "6542": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodTaxLineDTO.shipping_method_id" }, - "6293": { + "6543": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodTaxLineDTO.total" }, - "6294": { + "6544": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodTaxLineDTO.subtotal" }, - "6295": { + "6545": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodTaxLineDTO.raw_total" }, - "6296": { + "6546": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderShippingMethodTaxLineDTO.raw_subtotal" }, - "6297": { + "6547": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.id" }, - "6298": { + "6548": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.description" }, - "6299": { + "6549": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.tax_rate_id" }, - "6300": { + "6550": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.code" }, - "6301": { + "6551": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.rate" }, - "6302": { + "6552": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.provider_id" }, - "6303": { + "6553": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.created_at" }, - "6304": { + "6554": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.updated_at" }, - "6305": { + "6555": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderShippingMethodTaxLineDTO" }, - "6306": { + "6556": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.description" }, - "6307": { + "6557": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.tax_rate_id" }, - "6308": { + "6558": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.code" }, - "6309": { + "6559": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.rate" }, - "6310": { + "6560": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.provider_id" }, - "6311": { + "6561": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderShippingMethodTaxLineDTO" }, - "6312": { + "6562": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.id" }, - "6313": { + "6563": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.description" }, - "6314": { + "6564": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.tax_rate_id" }, - "6315": { + "6565": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.code" }, - "6316": { + "6566": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.rate" }, - "6317": { + "6567": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.provider_id" }, - "6318": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeDTO" - }, - "6319": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeDTO.order_id" - }, - "6320": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeDTO.return_id" - }, - "6321": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeDTO.claim_id" - }, - "6322": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeDTO.exchange_id" + "6568": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO" }, - "6323": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeDTO.description" + "6569": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.id" }, - "6324": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeDTO.internal_note" + "6570": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.version" }, - "6325": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeDTO.requested_by" + "6571": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.change_type" }, - "6326": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeDTO.requested_at" + "6572": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.order_id" }, - "6327": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeDTO.created_by" + "6573": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.return_id" }, - "6328": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeDTO.metadata" + "6574": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.exchange_id" }, - "6329": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeDTO.actions" + "6575": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeDTO.claim_id" }, - "6330": { + "6576": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderChangeDTO" + "qualifiedName": "OrderChangeDTO.order" }, - "6331": { + "6577": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderChangeDTO.id" + "qualifiedName": "OrderChangeDTO.return_order" }, - "6332": { + "6578": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderChangeDTO.order_id" + "qualifiedName": "OrderChangeDTO.exchange" }, - "6333": { + "6579": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderChangeDTO.order" + "qualifiedName": "OrderChangeDTO.claim" }, - "6334": { + "6580": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.actions" }, - "6335": { + "6581": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.status" }, - "6336": { + "6582": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.requested_by" }, - "6337": { + "6583": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.requested_at" }, - "6338": { + "6584": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.confirmed_by" }, - "6339": { + "6585": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.confirmed_at" }, - "6340": { + "6586": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.declined_by" }, - "6341": { + "6587": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.declined_reason" }, - "6342": { + "6588": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.metadata" }, - "6343": { + "6589": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.declined_at" }, - "6344": { + "6590": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.canceled_by" }, - "6345": { + "6591": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.canceled_at" }, - "6346": { + "6592": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.created_at" }, - "6347": { + "6593": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeDTO.updated_at" }, - "6348": { + "6594": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeDTO" + }, + "6595": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeDTO.order_id" + }, + "6596": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeDTO.return_id" + }, + "6597": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeDTO.claim_id" + }, + "6598": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeDTO.exchange_id" + }, + "6599": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeDTO.change_type" + }, + "6600": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeDTO.description" + }, + "6601": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeDTO.internal_note" + }, + "6602": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeDTO.requested_by" + }, + "6603": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeDTO.requested_at" + }, + "6604": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeDTO.created_by" + }, + "6605": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeDTO.metadata" + }, + "6606": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeDTO.actions" + }, + "6607": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO" + }, + "6608": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.id" + }, + "6609": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.status" + }, + "6610": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.description" + }, + "6611": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.internal_note" + }, + "6612": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.requested_by" + }, + "6613": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.requested_at" + }, + "6614": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.confirmed_by" + }, + "6615": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.confirmed_at" + }, + "6616": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.declined_by" + }, + "6617": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.declined_reason" + }, + "6618": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.declined_at" + }, + "6619": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.canceled_by" + }, + "6620": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.canceled_at" + }, + "6621": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeDTO.metadata" + }, + "6622": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CancelOrderChangeDTO" }, - "6349": { + "6623": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CancelOrderChangeDTO.id" }, - "6350": { + "6624": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CancelOrderChangeDTO.canceled_by" }, - "6351": { + "6625": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CancelOrderChangeDTO.metadata" }, - "6352": { + "6626": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeReturn" }, - "6353": { + "6627": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeReturn.items" }, - "6354": { + "6628": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type" }, - "6355": { + "6629": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.item_id" }, - "6356": { + "6630": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.order_id" }, - "6357": { + "6631": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.fulfilled_quantity" }, - "6358": { + "6632": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.shipped_quantity" }, - "6359": { + "6633": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.return_requested_quantity" }, - "6360": { + "6634": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.return_received_quantity" }, - "6361": { + "6635": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.return_dismissed_quantity" }, - "6362": { + "6636": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.written_off_quantity" }, - "6363": { + "6637": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.__index" }, - "6365": { + "6639": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeReturn.shippingMethods" }, - "6366": { + "6640": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "ConfirmOrderChangeDTO" }, - "6367": { + "6641": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "ConfirmOrderChangeDTO.id" }, - "6368": { + "6642": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "ConfirmOrderChangeDTO.confirmed_by" }, - "6369": { + "6643": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "ConfirmOrderChangeDTO.metadata" }, - "6370": { + "6644": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "DeclineOrderChangeDTO" }, - "6371": { + "6645": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "DeclineOrderChangeDTO.id" }, - "6372": { + "6646": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "DeclineOrderChangeDTO.declined_by" }, - "6373": { + "6647": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "DeclineOrderChangeDTO.metadata" }, - "6374": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeActionDTO" - }, - "6375": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeActionDTO.order_change_id" - }, - "6376": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeActionDTO.order_id" - }, - "6377": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeActionDTO.return_id" - }, - "6378": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeActionDTO.claim_id" - }, - "6379": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeActionDTO.exchange_id" - }, - "6380": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeActionDTO.version" + "6648": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderChangeActionProps" }, - "6381": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeActionDTO.reference" + "6649": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderChangeActionProps.id" }, - "6382": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeActionDTO.reference_id" + "6650": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderChangeActionProps.order_change_id" }, - "6383": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeActionDTO.action" + "6651": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderChangeActionProps.reference" }, - "6384": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeActionDTO.internal_note" + "6652": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderChangeActionProps.reference_id" }, - "6385": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeActionDTO.amount" + "6653": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" }, - "6386": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderChangeActionDTO.details" + "6654": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" }, - "6387": { + "6655": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeActionDTO" }, - "6388": { + "6656": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeActionDTO.id" }, - "6389": { + "6657": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeActionDTO.order_change_id" }, - "6390": { + "6658": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeActionDTO.order_change" }, - "6391": { + "6659": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeActionDTO.order_id" }, - "6392": { + "6660": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeActionDTO.order" }, - "6393": { + "6661": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeActionDTO.reference" }, - "6394": { + "6662": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeActionDTO.reference_id" }, - "6395": { + "6663": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeActionDTO.action" }, - "6396": { + "6664": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderChangeActionDTO.details" }, - "6397": { - "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderChangeActionDTO.internal_note" + "6665": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeActionDTO.internal_note" + }, + "6666": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeActionDTO.created_at" + }, + "6667": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "OrderChangeActionDTO.updated_at" + }, + "6668": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeActionDTO" + }, + "6669": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeActionDTO.id" + }, + "6670": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderChangeActionDTO.internal_note" + }, + "6671": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeActionDTO" + }, + "6672": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeActionDTO.order_change_id" + }, + "6673": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeActionDTO.order_id" + }, + "6674": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeActionDTO.return_id" + }, + "6675": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeActionDTO.claim_id" + }, + "6676": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeActionDTO.exchange_id" + }, + "6677": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeActionDTO.version" + }, + "6678": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeActionDTO.reference" + }, + "6679": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeActionDTO.reference_id" + }, + "6680": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeActionDTO.action" }, - "6398": { - "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderChangeActionDTO.created_at" + "6681": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeActionDTO.internal_note" }, - "6399": { - "sourceFileName": "../../../../packages/core/types/src/order/common.ts", - "qualifiedName": "OrderChangeActionDTO.updated_at" + "6682": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeActionDTO.amount" }, - "6400": { + "6683": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderChangeActionDTO.details" + }, + "6684": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderTransactionProps" }, - "6401": { + "6685": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderTransactionProps.id" }, - "6402": { + "6686": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderTransactionProps.order_id" }, - "6403": { + "6687": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderTransactionProps.currency_code" }, - "6404": { + "6688": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderTransactionProps.reference" }, - "6405": { + "6689": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderTransactionProps.reference_id" }, - "6406": { + "6690": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderTransactionProps.created_at" }, - "6407": { + "6691": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "6408": { + "6692": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "6409": { + "6693": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTransactionDTO" }, - "6410": { + "6694": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTransactionDTO.id" }, - "6411": { + "6695": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTransactionDTO.order_id" }, - "6412": { + "6696": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTransactionDTO.order" }, - "6413": { + "6697": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTransactionDTO.amount" }, - "6414": { + "6698": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTransactionDTO.raw_amount" }, - "6415": { + "6699": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTransactionDTO.currency_code" }, - "6416": { + "6700": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTransactionDTO.reference" }, - "6417": { + "6701": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTransactionDTO.reference_id" }, - "6418": { + "6702": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTransactionDTO.created_at" }, - "6419": { + "6703": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTransactionDTO.updated_at" }, - "6420": { + "6704": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTransactionDTO.metadata" }, - "6421": { + "6705": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTransactionDTO" }, - "6422": { + "6706": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTransactionDTO.order_id" }, - "6423": { + "6707": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTransactionDTO.description" }, - "6424": { + "6708": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTransactionDTO.reference" }, - "6425": { + "6709": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTransactionDTO.reference_id" }, - "6426": { + "6710": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTransactionDTO.internal_note" }, - "6427": { + "6711": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTransactionDTO.created_by" }, - "6428": { + "6712": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTransactionDTO.amount" }, - "6429": { + "6713": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTransactionDTO.currency_code" }, - "6430": { + "6714": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTransactionDTO.metadata" }, - "6431": { + "6715": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderReturnReasonDTO" }, - "6432": { + "6716": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderReturnReasonDTO.id" }, - "6433": { + "6717": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderReturnReasonDTO.value" }, - "6434": { + "6718": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderReturnReasonDTO.label" }, - "6435": { + "6719": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderReturnReasonDTO.description" }, - "6436": { + "6720": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderReturnReasonDTO.parent_return_reason_id" }, - "6437": { + "6721": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderReturnReasonDTO.parent_return_reason" }, - "6438": { + "6722": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderReturnReasonDTO.return_reason_children" }, - "6439": { + "6723": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderReturnReasonDTO.metadata" }, - "6440": { + "6724": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderReturnReasonDTO.created_at" }, - "6441": { + "6725": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderReturnReasonDTO.updated_at" }, - "6442": { + "6726": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderReturnReasonProps" }, - "6443": { + "6727": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderReturnReasonProps.id" }, - "6444": { + "6728": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderReturnReasonProps.value" }, - "6445": { + "6729": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderReturnReasonProps.label" }, - "6446": { + "6730": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "FilterableOrderReturnReasonProps.description" }, - "6447": { + "6731": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" + }, + "6732": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" + }, + "6733": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderReturnReasonDTO" }, - "6448": { + "6734": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderReturnReasonDTO.value" }, - "6449": { + "6735": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderReturnReasonDTO.label" }, - "6450": { + "6736": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderReturnReasonDTO.description" }, - "6451": { + "6737": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderReturnReasonDTO.parent_return_reason_id" }, - "6452": { + "6738": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderReturnReasonDTO.metadata" }, - "6453": { + "6739": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderReturnReasonWithSelectorDTO" }, - "6454": { + "6740": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderReturnReasonWithSelectorDTO.selector" }, - "6455": { + "6741": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderReturnReasonWithSelectorDTO.data" }, - "6456": { + "6742": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderReturnReasonDTO" }, - "6457": { + "6743": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderReturnReasonDTO.id" }, - "6458": { + "6744": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderReturnReasonDTO.label" }, - "6459": { + "6745": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderReturnReasonDTO.value" }, - "6460": { + "6746": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderReturnReasonDTO.description" }, - "6461": { + "6747": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderReturnReasonDTO.metadata" }, - "6462": { + "6748": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "RegisterOrderFulfillmentDTO" + "qualifiedName": "CreateOrderReturnDTO" }, - "6463": { + "6749": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "RegisterOrderFulfillmentDTO.items" + "qualifiedName": "CreateOrderReturnDTO.items" }, - "6464": { + "6750": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "__type" + }, + "6751": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "__type.id" + }, + "6752": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "__type.quantity" + }, + "6753": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "__type.internal_note" + }, + "6754": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "__type.note" + }, + "6755": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "__type.reason_id" + }, + "6756": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "__type.metadata" + }, + "6757": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderReturnDTO.shipping_method" + }, + "6758": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderReturnDTO.refund_amount" + }, + "6759": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderReturnDTO.no_notification" + }, + "6760": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderReturnDTO.claim_id" + }, + "6761": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderReturnDTO.exchange_id" + }, + "6762": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.order_id" }, - "6465": { + "6763": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.return_id" }, - "6466": { + "6764": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "BaseOrderBundledActionsDTO.description" + }, + "6765": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "BaseOrderBundledActionsDTO.internal_note" + }, + "6766": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "BaseOrderBundledActionsDTO.reference" + }, + "6767": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "BaseOrderBundledActionsDTO.reference_id" + }, + "6768": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "BaseOrderBundledActionsDTO.created_by" + }, + "6769": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "BaseOrderBundledActionsDTO.metadata" + }, + "6770": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderReturnWithSelectorDTO" + }, + "6771": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderReturnWithSelectorDTO.selector" + }, + "6772": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderReturnWithSelectorDTO.data" + }, + "6773": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableReturnProps" + }, + "6774": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableReturnProps.id" + }, + "6775": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableReturnProps.order_id" + }, + "6776": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableReturnProps.claim_id" + }, + "6777": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableReturnProps.exchange_id" + }, + "6778": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableReturnProps.status" + }, + "6779": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableReturnProps.refund_amount" + }, + "6780": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" + }, + "6781": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" + }, + "6782": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderReturnDTO" + }, + "6783": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderReturnDTO.refund_amount" + }, + "6784": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderReturnDTO.no_notification" + }, + "6785": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderReturnDTO.claim_id" + }, + "6786": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderReturnDTO.exchange_id" + }, + "6787": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderReturnDTO.metadata" + }, + "6788": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderClaimDTO" + }, + "6789": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderClaimDTO.type" + }, + "6790": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderClaimDTO.claim_items" + }, + "6791": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "__type" + }, + "6792": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "__type.reason" + }, + "6793": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "__type.images" + }, + "6794": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "__type" + }, + "6795": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "__type.url" + }, + "6796": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "__type.metadata" + }, + "6797": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderClaimDTO.additional_items" + }, + "6798": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderClaimDTO.shipping_methods" + }, + "6799": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderClaimDTO.return_shipping" + }, + "6800": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderClaimDTO.refund_amount" + }, + "6801": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderClaimDTO.no_notification" + }, + "6802": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "BaseOrderBundledActionsDTO.order_id" + }, + "6803": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "BaseOrderBundledActionsDTO.return_id" + }, + "6804": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.claim_id" }, - "6467": { + "6805": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.exchange_id" }, - "6468": { + "6806": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.description" }, - "6469": { + "6807": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.internal_note" }, - "6470": { + "6808": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.reference" }, - "6471": { + "6809": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.reference_id" }, - "6472": { + "6810": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.created_by" }, - "6473": { + "6811": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.metadata" }, - "6474": { + "6812": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CancelOrderFulfillmentDTO" + "qualifiedName": "UpdateOrderClaimWithSelectorDTO" }, - "6475": { + "6813": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CancelOrderFulfillmentDTO.items" + "qualifiedName": "UpdateOrderClaimWithSelectorDTO.selector" }, - "6476": { + "6814": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderClaimWithSelectorDTO.data" + }, + "6815": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderClaimProps" + }, + "6816": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderClaimProps.id" + }, + "6817": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderClaimProps.order_id" + }, + "6818": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderClaimProps.return_id" + }, + "6819": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" + }, + "6820": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" + }, + "6821": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderClaimDTO" + }, + "6822": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderClaimDTO.refund_amount" + }, + "6823": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderClaimDTO.no_notification" + }, + "6824": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderClaimDTO.return_id" + }, + "6825": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderClaimDTO.type" + }, + "6826": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderClaimDTO.metadata" + }, + "6827": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderExchangeDTO" + }, + "6828": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderExchangeDTO.additional_items" + }, + "6829": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderExchangeDTO.shipping_methods" + }, + "6830": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderExchangeDTO.return_shipping" + }, + "6831": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderExchangeDTO.difference_due" + }, + "6832": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderExchangeDTO.allow_backorder" + }, + "6833": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "CreateOrderExchangeDTO.no_notification" + }, + "6834": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.order_id" }, - "6477": { + "6835": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.return_id" }, - "6478": { + "6836": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.claim_id" }, - "6479": { + "6837": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.exchange_id" }, - "6480": { + "6838": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.description" }, - "6481": { + "6839": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.internal_note" }, - "6482": { + "6840": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.reference" }, - "6483": { + "6841": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.reference_id" }, - "6484": { + "6842": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.created_by" }, - "6485": { + "6843": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "BaseOrderBundledActionsDTO.metadata" + }, + "6844": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderExchangeWithSelectorDTO" + }, + "6845": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderExchangeWithSelectorDTO.selector" + }, + "6846": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderExchangeWithSelectorDTO.data" + }, + "6847": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderExchangeProps" + }, + "6848": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderExchangeProps.id" + }, + "6849": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderExchangeProps.order_id" + }, + "6850": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderExchangeProps.return_id" + }, + "6851": { + "sourceFileName": "../../../../packages/core/types/src/order/common.ts", + "qualifiedName": "FilterableOrderExchangeProps.allow_backorder" + }, + "6852": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" + }, + "6853": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" + }, + "6854": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderExchangeDTO" + }, + "6855": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderExchangeDTO.difference_due" + }, + "6856": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderExchangeDTO.no_notification" + }, + "6857": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "UpdateOrderExchangeDTO.return_id" + }, + "6858": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.metadata" + "qualifiedName": "UpdateOrderExchangeDTO.allow_backorder" }, - "6486": { + "6859": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "RegisterOrderShipmentDTO" + "qualifiedName": "UpdateOrderExchangeDTO.metadata" }, - "6487": { + "6860": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "RegisterOrderShipmentDTO.items" + "qualifiedName": "RegisterOrderFulfillmentDTO" }, - "6488": { + "6861": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "RegisterOrderShipmentDTO.no_notification" + "qualifiedName": "RegisterOrderFulfillmentDTO.items" }, - "6489": { + "6862": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.order_id" }, - "6490": { + "6863": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.return_id" }, - "6491": { + "6864": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.claim_id" }, - "6492": { + "6865": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.exchange_id" }, - "6493": { + "6866": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.description" }, - "6494": { + "6867": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.internal_note" }, - "6495": { + "6868": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.reference" }, - "6496": { + "6869": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.reference_id" }, - "6497": { + "6870": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.created_by" }, - "6498": { + "6871": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.metadata" }, - "6499": { + "6872": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderReturnDTO" + "qualifiedName": "CancelOrderFulfillmentDTO" }, - "6500": { + "6873": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderReturnDTO.items" + "qualifiedName": "CancelOrderFulfillmentDTO.items" }, - "6501": { + "6874": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "__type" + "qualifiedName": "BaseOrderBundledActionsDTO.order_id" }, - "6502": { + "6875": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "__type.id" + "qualifiedName": "BaseOrderBundledActionsDTO.return_id" }, - "6503": { + "6876": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "__type.quantity" + "qualifiedName": "BaseOrderBundledActionsDTO.claim_id" }, - "6504": { + "6877": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "__type.internal_note" + "qualifiedName": "BaseOrderBundledActionsDTO.exchange_id" }, - "6505": { + "6878": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "__type.note" + "qualifiedName": "BaseOrderBundledActionsDTO.description" }, - "6506": { + "6879": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "__type.reason_id" + "qualifiedName": "BaseOrderBundledActionsDTO.internal_note" }, - "6507": { + "6880": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "__type.metadata" + "qualifiedName": "BaseOrderBundledActionsDTO.reference" }, - "6508": { + "6881": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderReturnDTO.shipping_method" + "qualifiedName": "BaseOrderBundledActionsDTO.reference_id" }, - "6509": { + "6882": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderReturnDTO.refund_amount" + "qualifiedName": "BaseOrderBundledActionsDTO.created_by" }, - "6510": { + "6883": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderReturnDTO.no_notification" + "qualifiedName": "BaseOrderBundledActionsDTO.metadata" }, - "6511": { + "6884": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "RegisterOrderShipmentDTO" + }, + "6885": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "RegisterOrderShipmentDTO.items" + }, + "6886": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "RegisterOrderShipmentDTO.no_notification" + }, + "6887": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.order_id" }, - "6512": { + "6888": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.return_id" }, - "6513": { + "6889": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.claim_id" }, - "6514": { + "6890": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.exchange_id" }, - "6515": { + "6891": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.description" }, - "6516": { + "6892": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.internal_note" }, - "6517": { + "6893": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.reference" }, - "6518": { + "6894": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.reference_id" }, - "6519": { + "6895": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.created_by" }, - "6520": { + "6896": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.metadata" }, - "6521": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "ReceiveOrderReturnDTO" - }, - "6522": { + "6897": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "ReceiveOrderReturnDTO.items" + "qualifiedName": "CancelOrderReturnDTO" }, - "6523": { + "6898": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "ReceiveOrderReturnDTO.return_id" + "qualifiedName": "CancelOrderReturnDTO.return_id" }, - "6524": { + "6899": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "description" }, - "6525": { + "6900": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "metadata" }, - "6526": { + "6901": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "created_by" }, - "6527": { + "6902": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "reference" }, - "6528": { + "6903": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "reference_id" }, - "6529": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "internal_note" - }, - "6530": { + "6904": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "claim_id" }, - "6531": { + "6905": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "exchange_id" }, - "6532": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderClaimDTO" - }, - "6533": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderClaimDTO.type" - }, - "6534": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderClaimDTO.claim_items" - }, - "6535": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "__type" - }, - "6536": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "__type.reason" - }, - "6537": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "__type.images" - }, - "6538": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "__type" - }, - "6539": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "__type.url" - }, - "6540": { - "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "__type.metadata" - }, - "6541": { + "6906": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderClaimDTO.additional_items" + "qualifiedName": "internal_note" }, - "6542": { + "6907": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderClaimDTO.shipping_methods" + "qualifiedName": "ReceiveOrderReturnDTO" }, - "6543": { + "6908": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderClaimDTO.return_shipping" + "qualifiedName": "ReceiveOrderReturnDTO.items" }, - "6544": { + "6909": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderClaimDTO.refund_amount" + "qualifiedName": "ReceiveOrderReturnDTO.return_id" }, - "6545": { + "6910": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderClaimDTO.no_notification" + "qualifiedName": "description" }, - "6546": { + "6911": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.order_id" + "qualifiedName": "metadata" }, - "6547": { + "6912": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.return_id" + "qualifiedName": "created_by" }, - "6548": { + "6913": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.claim_id" + "qualifiedName": "reference" }, - "6549": { + "6914": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.exchange_id" + "qualifiedName": "reference_id" }, - "6550": { + "6915": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.description" + "qualifiedName": "claim_id" }, - "6551": { + "6916": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.internal_note" + "qualifiedName": "exchange_id" }, - "6552": { + "6917": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.reference" + "qualifiedName": "internal_note" }, - "6553": { + "6918": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.reference_id" + "qualifiedName": "CancelOrderClaimDTO" }, - "6554": { + "6919": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.created_by" + "qualifiedName": "CancelOrderClaimDTO.claim_id" }, - "6555": { + "6920": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.metadata" + "qualifiedName": "description" }, - "6556": { + "6921": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderExchangeDTO" + "qualifiedName": "metadata" }, - "6557": { + "6922": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderExchangeDTO.additional_items" + "qualifiedName": "created_by" }, - "6558": { + "6923": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderExchangeDTO.shipping_methods" + "qualifiedName": "reference" }, - "6559": { + "6924": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderExchangeDTO.return_shipping" + "qualifiedName": "reference_id" }, - "6560": { + "6925": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderExchangeDTO.difference_due" + "qualifiedName": "exchange_id" }, - "6561": { + "6926": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderExchangeDTO.allow_backorder" + "qualifiedName": "return_id" }, - "6562": { + "6927": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "CreateOrderExchangeDTO.no_notification" + "qualifiedName": "internal_note" }, - "6563": { + "6928": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.order_id" + "qualifiedName": "CancelOrderExchangeDTO" }, - "6564": { + "6929": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.return_id" + "qualifiedName": "CancelOrderExchangeDTO.exchange_id" }, - "6565": { + "6930": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.claim_id" + "qualifiedName": "description" }, - "6566": { + "6931": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.exchange_id" + "qualifiedName": "metadata" }, - "6567": { + "6932": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.description" + "qualifiedName": "created_by" }, - "6568": { + "6933": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.internal_note" + "qualifiedName": "reference" }, - "6569": { + "6934": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.reference" + "qualifiedName": "reference_id" }, - "6570": { + "6935": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.reference_id" + "qualifiedName": "claim_id" }, - "6571": { + "6936": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.created_by" + "qualifiedName": "return_id" }, - "6572": { + "6937": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "BaseOrderBundledActionsDTO.metadata" + "qualifiedName": "internal_note" }, - "6573": { + "6938": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "6574": { + "6939": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "6575": { + "6940": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "6576": { + "6941": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "6577": { + "6942": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "6578": { + "6943": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "6579": { + "6944": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "6580": { + "6945": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "6581": { + "6946": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "6582": { + "6947": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "6583": { + "6948": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "6584": { + "6949": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "6585": { + "6950": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "6586": { + "6951": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "6587": { + "6952": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "6588": { + "6953": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "6589": { + "6954": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "6590": { + "6955": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "6591": { + "6956": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "6592": { + "6957": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "6593": { + "6958": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "6594": { + "6959": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "6595": { + "6960": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "6596": { + "6961": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "6597": { + "6962": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderStatus" }, - "6598": { + "6963": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderSummaryDTO" }, - "6599": { + "6964": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type" }, - "6600": { + "6965": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.total" }, - "6601": { + "6966": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.subtotal" }, - "6602": { + "6967": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.total_tax" }, - "6603": { + "6968": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.ordered_total" }, - "6604": { + "6969": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.fulfilled_total" }, - "6605": { + "6970": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.returned_total" }, - "6606": { + "6971": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.return_request_total" }, - "6607": { + "6972": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.write_off_total" }, - "6608": { + "6973": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.projected_total" }, - "6609": { + "6974": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.net_total" }, - "6610": { + "6975": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.net_subtotal" }, - "6611": { + "6976": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.net_total_tax" }, - "6612": { + "6977": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.future_total" }, - "6613": { + "6978": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.future_subtotal" }, - "6614": { + "6979": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.future_total_tax" }, - "6615": { + "6980": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.future_projected_total" }, - "6616": { + "6981": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.balance" }, - "6617": { + "6982": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.future_balance" }, - "6618": { + "6983": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.paid_total" }, - "6619": { + "6984": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "__type.refunded_total" }, - "6620": { + "6985": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberValue" }, - "6621": { + "6986": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberRawValue" }, - "6622": { + "6987": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type" }, - "6623": { + "6988": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type.value" }, - "6624": { + "6989": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type.__index" }, - "6626": { + "6991": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "6627": { + "6992": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "6628": { + "6993": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "6629": { + "6994": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "6630": { + "6995": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "6631": { + "6996": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "6632": { + "6997": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "6633": { + "6998": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "6634": { + "6999": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "6635": { + "7000": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "6636": { + "7001": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "6637": { + "7002": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "6638": { + "7003": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "6639": { + "7004": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "6640": { + "7005": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "6641": { + "7006": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "6642": { + "7007": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "6643": { + "7008": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "6644": { + "7009": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "OperatorMap" }, - "6645": { + "7010": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "6646": { + "7011": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$and" }, - "6647": { + "7012": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$or" }, - "6648": { + "7013": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$eq" }, - "6649": { + "7014": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ne" }, - "6650": { + "7015": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$in" }, - "6651": { + "7016": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$nin" }, - "6652": { + "7017": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$not" }, - "6653": { + "7018": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gt" }, - "6654": { + "7019": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gte" }, - "6655": { + "7020": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lt" }, - "6656": { + "7021": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lte" }, - "6657": { + "7022": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$like" }, - "6658": { + "7023": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$re" }, - "6659": { + "7024": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ilike" }, - "6660": { + "7025": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$fulltext" }, - "6661": { + "7026": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$overlap" }, - "6662": { + "7027": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contains" }, - "6663": { + "7028": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contained" }, - "6664": { + "7029": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$exists" }, - "6665": { + "7030": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "6666": { + "7031": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "ReturnStatus" }, - "6667": { + "7032": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO" }, - "6668": { + "7033": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.customer_id" }, - "6669": { + "7034": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.company" }, - "6670": { + "7035": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.first_name" }, - "6671": { + "7036": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.last_name" }, - "6672": { + "7037": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.address_1" }, - "6673": { + "7038": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.address_2" }, - "6674": { + "7039": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.city" }, - "6675": { + "7040": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.country_code" }, - "6676": { + "7041": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.province" }, - "6677": { + "7042": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.postal_code" }, - "6678": { + "7043": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.phone" }, - "6679": { + "7044": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpsertOrderAddressDTO.metadata" }, - "6680": { + "7045": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO" }, - "6681": { + "7046": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.original_total" }, - "6682": { + "7047": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.original_subtotal" }, - "6683": { + "7048": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.original_tax_total" }, - "6684": { + "7049": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.item_total" }, - "6685": { + "7050": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.item_subtotal" }, - "6686": { + "7051": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.item_tax_total" }, - "6687": { + "7052": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.total" }, - "6688": { + "7053": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.subtotal" }, - "6689": { + "7054": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.tax_total" }, - "6690": { + "7055": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.discount_total" }, - "6691": { + "7056": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.discount_tax_total" }, - "6692": { + "7057": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.refundable_total" }, - "6693": { + "7058": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.refundable_total_per_unit" }, - "6694": { + "7059": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_original_total" }, - "6695": { + "7060": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_original_subtotal" }, - "6696": { + "7061": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_original_tax_total" }, - "6697": { + "7062": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_item_total" }, - "6698": { + "7063": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_item_subtotal" }, - "6699": { + "7064": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_item_tax_total" }, - "6700": { + "7065": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_total" }, - "6701": { + "7066": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_subtotal" }, - "6702": { + "7067": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_tax_total" }, - "6703": { + "7068": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_discount_total" }, - "6704": { + "7069": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_discount_tax_total" }, - "6705": { + "7070": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_refundable_total" }, - "6706": { + "7071": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderLineItemTotalsDTO.raw_refundable_total_per_unit" }, - "6707": { + "7072": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberInput" }, - "6708": { + "7073": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO" }, - "6709": { + "7074": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.description" }, - "6710": { + "7075": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.tax_rate_id" }, - "6711": { + "7076": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.code" }, - "6712": { + "7077": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.rate" }, - "6713": { + "7078": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "CreateOrderTaxLineDTO.provider_id" }, - "6714": { + "7079": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO" }, - "6715": { + "7080": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.id" }, - "6716": { + "7081": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.description" }, - "6717": { + "7082": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.tax_rate_id" }, - "6718": { + "7083": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.code" }, - "6719": { + "7084": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.rate" }, - "6720": { + "7085": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderTaxLineDTO.provider_id" }, - "6721": { + "7086": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderAdjustmentDTO" }, - "6722": { + "7087": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderAdjustmentDTO.id" }, - "6723": { + "7088": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderAdjustmentDTO.code" }, - "6724": { + "7089": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderAdjustmentDTO.amount" }, - "6725": { + "7090": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderAdjustmentDTO.description" }, - "6726": { + "7091": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderAdjustmentDTO.promotion_id" }, - "6727": { + "7092": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "UpdateOrderAdjustmentDTO.provider_id" }, - "6728": { + "7093": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO" }, - "6729": { + "7094": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.id" }, - "6730": { + "7095": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.code" }, - "6731": { + "7096": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.amount" }, - "6732": { + "7097": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.order_id" }, - "6733": { + "7098": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.description" }, - "6734": { + "7099": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.promotion_id" }, - "6735": { + "7100": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.provider_id" }, - "6736": { + "7101": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.created_at" }, - "6737": { + "7102": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderAdjustmentLineDTO.updated_at" }, - "6738": { + "7103": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO" }, - "6739": { + "7104": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.id" }, - "6740": { + "7105": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.description" }, - "6741": { + "7106": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.tax_rate_id" }, - "6742": { + "7107": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.code" }, - "6743": { + "7108": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.rate" }, - "6744": { + "7109": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.provider_id" }, - "6745": { + "7110": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.created_at" }, - "6746": { + "7111": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "OrderTaxLineDTO.updated_at" }, - "6747": { + "7112": { "sourceFileName": "../../../../packages/core/types/src/order/common.ts", "qualifiedName": "ChangeActionType" }, - "6748": { + "7113": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO" }, - "6749": { + "7114": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.order_id" }, - "6750": { + "7115": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.return_id" }, - "6751": { + "7116": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.claim_id" }, - "6752": { + "7117": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.exchange_id" }, - "6753": { + "7118": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.description" }, - "6754": { + "7119": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.internal_note" }, - "6755": { + "7120": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.reference" }, - "6756": { + "7121": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.reference_id" }, - "6757": { + "7122": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.created_by" }, - "6758": { + "7123": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledActionsDTO.metadata" }, - "6759": { + "7124": { + "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", + "qualifiedName": "OrderClaimType" + }, + "7125": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledItemActionsDTO" }, - "6760": { + "7126": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledItemActionsDTO.id" }, - "6761": { + "7127": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledItemActionsDTO.quantity" }, - "6762": { + "7128": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledItemActionsDTO.internal_note" }, - "6763": { + "7129": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledItemActionsDTO.note" }, - "6764": { + "7130": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "BaseOrderBundledItemActionsDTO.metadata" }, - "6765": { + "7131": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", - "qualifiedName": "OrderClaimType" + "qualifiedName": "BaseOrderBundledItemActionsDTO.__index" }, - "6766": { + "7133": { "sourceFileName": "../../../../packages/core/types/src/order/mutations.ts", "qualifiedName": "ClaimReason" }, - "6767": { + "7134": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "6768": { + "7135": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "6769": { + "7136": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "6770": { + "7137": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "6771": { + "7138": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "6772": { + "7139": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "6773": { + "7140": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "6774": { + "7141": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "6775": { + "7142": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "6776": { + "7143": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "6777": { + "7144": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "6778": { + "7145": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "6779": { + "7146": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "6780": { + "7147": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "6781": { + "7148": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "6782": { + "7149": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "6783": { + "7150": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "6784": { + "7151": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "6785": { + "7152": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "6786": { + "7153": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "6787": { + "7154": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "6788": { + "7155": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "6789": { + "7156": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "6790": { + "7157": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "6791": { + "7158": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "6792": { + "7159": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "6793": { + "7160": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "6794": { + "7161": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "6795": { + "7162": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "6796": { + "7163": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "6797": { + "7164": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "6798": { + "7165": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "6800": { + "7167": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "6801": { + "7168": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "6802": { + "7169": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "6803": { + "7170": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "6804": { + "7171": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "6805": { + "7172": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "6806": { + "7173": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "6807": { + "7174": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "6808": { + "7175": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "6809": { + "7176": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "6810": { + "7177": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Query" }, - "6811": { + "7178": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "6812": { + "7179": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ExpandScalar" }, - "6813": { + "7180": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "6814": { + "7181": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "6815": { + "7182": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "6816": { + "7183": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "6817": { + "7184": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "6818": { + "7185": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "6819": { + "7186": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "6820": { + "7187": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "6821": { + "7188": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "6822": { + "7189": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "6823": { + "7190": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "6824": { + "7191": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "6825": { + "7192": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "6826": { + "7193": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "6827": { + "7194": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "6828": { + "7195": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "6829": { + "7196": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "6830": { + "7197": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "6831": { + "7198": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "6832": { + "7199": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Scalar" }, - "6833": { + "7200": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "6834": { + "7201": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "6835": { + "7202": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "6836": { + "7203": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterQuery" }, - "6837": { + "7204": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "6838": { + "7205": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "6840": { + "7207": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "6841": { + "7208": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Prev" }, - "6842": { + "7209": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue" }, - "6843": { + "7210": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "6844": { + "7211": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "6845": { + "7212": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "6846": { + "7213": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" }, - "6847": { + "7214": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "PrevLimit" }, - "6848": { + "7215": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue2" }, - "6849": { + "7216": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "6850": { + "7217": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Primary" }, - "6851": { + "7218": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "6852": { + "7219": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.[PrimaryKeyType]" }, - "6853": { + "7220": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "6854": { + "7221": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type._id" }, - "6855": { + "7222": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "6856": { + "7223": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.uuid" }, - "6857": { + "7224": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "6858": { + "7225": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.id" }, - "6859": { + "7226": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "6860": { + "7227": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ReadonlyPrimary" }, - "6861": { + "7228": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" } @@ -52440,7 +61619,7 @@ "1": "../../../../packages/core/types/src/order/service.ts" }, "reflections": { - "1": 4958 + "1": 5002 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/payment-models.json b/www/utils/generated/typedoc-json-output/payment-models.json index 1fbfe9e02dbf7..7b8a10807430a 100644 --- a/www/utils/generated/typedoc-json-output/payment-models.json +++ b/www/utils/generated/typedoc-json-output/payment-models.json @@ -1,5 +1,5 @@ { - "id": 7979, + "id": 8346, "name": "payment-models", "variant": "project", "kind": 1, @@ -18,28 +18,28 @@ }, "children": [ { - "id": 7980, + "id": 8347, "name": "Capture", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7981, + "id": 8348, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7982, + "id": 8349, "name": "new Capture", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7980, + "target": 8347, "name": "Capture", "package": "@medusajs/payment", "qualifiedName": "default" @@ -48,7 +48,7 @@ ] }, { - "id": 7995, + "id": 8362, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -61,7 +61,7 @@ } }, { - "id": 7983, + "id": 8350, "name": "id", "variant": "declaration", "kind": 1024, @@ -72,7 +72,7 @@ } }, { - "id": 7984, + "id": 8351, "name": "amount", "variant": "declaration", "kind": 1024, @@ -97,7 +97,7 @@ } }, { - "id": 7985, + "id": 8352, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -113,21 +113,21 @@ } }, { - "id": 7986, + "id": 8353, "name": "payment", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7996, + "target": 8363, "name": "Payment", "package": "@medusajs/payment", "qualifiedName": "default" } }, { - "id": 7987, + "id": 8354, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -143,7 +143,7 @@ } }, { - "id": 7988, + "id": 8355, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -159,7 +159,7 @@ } }, { - "id": 7989, + "id": 8356, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -185,7 +185,7 @@ "defaultValue": "null" }, { - "id": 7990, + "id": 8357, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -206,14 +206,14 @@ "defaultValue": "null" }, { - "id": 7991, + "id": 8358, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7992, + "id": 8359, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -226,14 +226,14 @@ ] }, { - "id": 7993, + "id": 8360, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7994, + "id": 8361, "name": "onInit", "variant": "signature", "kind": 4096, @@ -250,55 +250,55 @@ { "title": "Constructors", "children": [ - 7981 + 8348 ] }, { "title": "Properties", "children": [ - 7995, - 7983, - 7984, - 7985, - 7986, - 7987, - 7988, - 7989, - 7990 + 8362, + 8350, + 8351, + 8352, + 8353, + 8354, + 8355, + 8356, + 8357 ] }, { "title": "Methods", "children": [ - 7991, - 7993 + 8358, + 8360 ] } ] }, { - "id": 8024, + "id": 8391, "name": "PaymentCollection", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 8025, + "id": 8392, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 8026, + "id": 8393, "name": "new PaymentCollection", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 8024, + "target": 8391, "name": "PaymentCollection", "package": "@medusajs/payment", "qualifiedName": "default" @@ -307,7 +307,7 @@ ] }, { - "id": 8051, + "id": 8418, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -325,7 +325,7 @@ } }, { - "id": 8027, + "id": 8394, "name": "id", "variant": "declaration", "kind": 1024, @@ -336,7 +336,7 @@ } }, { - "id": 8028, + "id": 8395, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -347,7 +347,7 @@ } }, { - "id": 8029, + "id": 8396, "name": "amount", "variant": "declaration", "kind": 1024, @@ -372,7 +372,7 @@ } }, { - "id": 8030, + "id": 8397, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -388,7 +388,7 @@ } }, { - "id": 8031, + "id": 8398, "name": "authorized_amount", "variant": "declaration", "kind": 1024, @@ -418,7 +418,7 @@ "defaultValue": "null" }, { - "id": 8032, + "id": 8399, "name": "raw_authorized_amount", "variant": "declaration", "kind": 1024, @@ -444,7 +444,7 @@ "defaultValue": "null" }, { - "id": 8033, + "id": 8400, "name": "captured_amount", "variant": "declaration", "kind": 1024, @@ -474,7 +474,7 @@ "defaultValue": "null" }, { - "id": 8034, + "id": 8401, "name": "raw_captured_amount", "variant": "declaration", "kind": 1024, @@ -500,7 +500,7 @@ "defaultValue": "null" }, { - "id": 8035, + "id": 8402, "name": "refunded_amount", "variant": "declaration", "kind": 1024, @@ -530,7 +530,7 @@ "defaultValue": "null" }, { - "id": 8036, + "id": 8403, "name": "raw_refunded_amount", "variant": "declaration", "kind": 1024, @@ -556,7 +556,7 @@ "defaultValue": "null" }, { - "id": 8037, + "id": 8404, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -567,7 +567,7 @@ } }, { - "id": 8038, + "id": 8405, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -583,7 +583,7 @@ } }, { - "id": 8039, + "id": 8406, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -599,7 +599,7 @@ } }, { - "id": 8040, + "id": 8407, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -625,7 +625,7 @@ "defaultValue": "null" }, { - "id": 8041, + "id": 8408, "name": "completed_at", "variant": "declaration", "kind": 1024, @@ -651,7 +651,7 @@ "defaultValue": "null" }, { - "id": 8042, + "id": 8409, "name": "status", "variant": "declaration", "kind": 1024, @@ -668,7 +668,7 @@ "defaultValue": "PaymentCollectionStatus.NOT_PAID" }, { - "id": 8043, + "id": 8410, "name": "payment_providers", "variant": "declaration", "kind": 1024, @@ -682,7 +682,7 @@ "typeArguments": [ { "type": "reference", - "target": 8069, + "target": 8436, "name": "PaymentProvider", "package": "@medusajs/payment", "qualifiedName": "default" @@ -698,7 +698,7 @@ "defaultValue": "..." }, { - "id": 8044, + "id": 8411, "name": "payment_sessions", "variant": "declaration", "kind": 1024, @@ -712,7 +712,7 @@ "typeArguments": [ { "type": "reference", - "target": 8075, + "target": 8442, "name": "PaymentSession", "package": "@medusajs/payment", "qualifiedName": "default" @@ -728,7 +728,7 @@ "defaultValue": "..." }, { - "id": 8045, + "id": 8412, "name": "payments", "variant": "declaration", "kind": 1024, @@ -742,7 +742,7 @@ "typeArguments": [ { "type": "reference", - "target": 7996, + "target": 8363, "name": "Payment", "package": "@medusajs/payment", "qualifiedName": "default" @@ -758,7 +758,7 @@ "defaultValue": "..." }, { - "id": 8046, + "id": 8413, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -794,14 +794,14 @@ "defaultValue": "null" }, { - "id": 8047, + "id": 8414, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8048, + "id": 8415, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -814,14 +814,14 @@ ] }, { - "id": 8049, + "id": 8416, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8050, + "id": 8417, "name": "onInit", "variant": "signature", "kind": 4096, @@ -838,67 +838,67 @@ { "title": "Constructors", "children": [ - 8025 + 8392 ] }, { "title": "Properties", "children": [ - 8051, - 8027, - 8028, - 8029, - 8030, - 8031, - 8032, - 8033, - 8034, - 8035, - 8036, - 8037, - 8038, - 8039, - 8040, - 8041, - 8042, - 8043, - 8044, - 8045, - 8046 + 8418, + 8394, + 8395, + 8396, + 8397, + 8398, + 8399, + 8400, + 8401, + 8402, + 8403, + 8404, + 8405, + 8406, + 8407, + 8408, + 8409, + 8410, + 8411, + 8412, + 8413 ] }, { "title": "Methods", "children": [ - 8047, - 8049 + 8414, + 8416 ] } ] }, { - "id": 8052, + "id": 8419, "name": "PaymentMethodToken", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 8053, + "id": 8420, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 8054, + "id": 8421, "name": "new PaymentMethodToken", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 8052, + "target": 8419, "name": "PaymentMethodToken", "package": "@medusajs/payment", "qualifiedName": "default" @@ -907,7 +907,7 @@ ] }, { - "id": 8055, + "id": 8422, "name": "id", "variant": "declaration", "kind": 1024, @@ -918,7 +918,7 @@ } }, { - "id": 8056, + "id": 8423, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -929,7 +929,7 @@ } }, { - "id": 8057, + "id": 8424, "name": "data", "variant": "declaration", "kind": 1024, @@ -965,7 +965,7 @@ "defaultValue": "null" }, { - "id": 8058, + "id": 8425, "name": "name", "variant": "declaration", "kind": 1024, @@ -976,7 +976,7 @@ } }, { - "id": 8059, + "id": 8426, "name": "type_detail", "variant": "declaration", "kind": 1024, @@ -997,7 +997,7 @@ "defaultValue": "null" }, { - "id": 8060, + "id": 8427, "name": "description_detail", "variant": "declaration", "kind": 1024, @@ -1018,7 +1018,7 @@ "defaultValue": "null" }, { - "id": 8061, + "id": 8428, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1034,7 +1034,7 @@ } }, { - "id": 8062, + "id": 8429, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1050,7 +1050,7 @@ } }, { - "id": 8063, + "id": 8430, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1076,7 +1076,7 @@ "defaultValue": "null" }, { - "id": 8064, + "id": 8431, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1112,14 +1112,14 @@ "defaultValue": "null" }, { - "id": 8065, + "id": 8432, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8066, + "id": 8433, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1132,14 +1132,14 @@ ] }, { - "id": 8067, + "id": 8434, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8068, + "id": 8435, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1156,56 +1156,56 @@ { "title": "Constructors", "children": [ - 8053 + 8420 ] }, { "title": "Properties", "children": [ - 8055, - 8056, - 8057, - 8058, - 8059, - 8060, - 8061, - 8062, - 8063, - 8064 + 8422, + 8423, + 8424, + 8425, + 8426, + 8427, + 8428, + 8429, + 8430, + 8431 ] }, { "title": "Methods", "children": [ - 8065, - 8067 + 8432, + 8434 ] } ] }, { - "id": 8069, + "id": 8436, "name": "PaymentProvider", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 8070, + "id": 8437, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 8071, + "id": 8438, "name": "new PaymentProvider", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 8069, + "target": 8436, "name": "PaymentProvider", "package": "@medusajs/payment", "qualifiedName": "default" @@ -1214,7 +1214,7 @@ ] }, { - "id": 8074, + "id": 8441, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -1227,7 +1227,7 @@ } }, { - "id": 8072, + "id": 8439, "name": "id", "variant": "declaration", "kind": 1024, @@ -1238,7 +1238,7 @@ } }, { - "id": 8073, + "id": 8440, "name": "is_enabled", "variant": "declaration", "kind": 1024, @@ -1254,42 +1254,42 @@ { "title": "Constructors", "children": [ - 8070 + 8437 ] }, { "title": "Properties", "children": [ - 8074, - 8072, - 8073 + 8441, + 8439, + 8440 ] } ] }, { - "id": 8075, + "id": 8442, "name": "PaymentSession", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 8076, + "id": 8443, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 8077, + "id": 8444, "name": "new PaymentSession", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 8075, + "target": 8442, "name": "PaymentSession", "package": "@medusajs/payment", "qualifiedName": "default" @@ -1298,7 +1298,7 @@ ] }, { - "id": 8097, + "id": 8464, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -1320,7 +1320,7 @@ } }, { - "id": 8078, + "id": 8445, "name": "id", "variant": "declaration", "kind": 1024, @@ -1331,7 +1331,7 @@ } }, { - "id": 8079, + "id": 8446, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -1342,7 +1342,7 @@ } }, { - "id": 8080, + "id": 8447, "name": "amount", "variant": "declaration", "kind": 1024, @@ -1367,7 +1367,7 @@ } }, { - "id": 8081, + "id": 8448, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -1383,7 +1383,7 @@ } }, { - "id": 8082, + "id": 8449, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -1394,7 +1394,7 @@ } }, { - "id": 8083, + "id": 8450, "name": "data", "variant": "declaration", "kind": 1024, @@ -1421,7 +1421,7 @@ "defaultValue": "{}" }, { - "id": 8084, + "id": 8451, "name": "context", "variant": "declaration", "kind": 1024, @@ -1456,7 +1456,7 @@ } }, { - "id": 8085, + "id": 8452, "name": "status", "variant": "declaration", "kind": 1024, @@ -1473,7 +1473,7 @@ "defaultValue": "PaymentSessionStatus.PENDING" }, { - "id": 8086, + "id": 8453, "name": "authorized_at", "variant": "declaration", "kind": 1024, @@ -1499,21 +1499,21 @@ "defaultValue": "null" }, { - "id": 8087, + "id": 8454, "name": "payment_collection", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 8024, + "target": 8391, "name": "PaymentCollection", "package": "@medusajs/payment", "qualifiedName": "default" } }, { - "id": 8088, + "id": 8455, "name": "payment_collection_id", "variant": "declaration", "kind": 1024, @@ -1524,7 +1524,7 @@ } }, { - "id": 8089, + "id": 8456, "name": "payment", "variant": "declaration", "kind": 1024, @@ -1540,7 +1540,7 @@ }, { "type": "reference", - "target": 7996, + "target": 8363, "name": "Payment", "package": "@medusajs/payment", "qualifiedName": "default" @@ -1549,7 +1549,7 @@ } }, { - "id": 8090, + "id": 8457, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1565,7 +1565,7 @@ } }, { - "id": 8091, + "id": 8458, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1581,7 +1581,7 @@ } }, { - "id": 8092, + "id": 8459, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1607,14 +1607,14 @@ "defaultValue": "null" }, { - "id": 8093, + "id": 8460, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8094, + "id": 8461, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1627,14 +1627,14 @@ ] }, { - "id": 8095, + "id": 8462, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8096, + "id": 8463, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1651,62 +1651,62 @@ { "title": "Constructors", "children": [ - 8076 + 8443 ] }, { "title": "Properties", "children": [ - 8097, - 8078, - 8079, - 8080, - 8081, - 8082, - 8083, - 8084, - 8085, - 8086, - 8087, - 8088, - 8089, - 8090, - 8091, - 8092 + 8464, + 8445, + 8446, + 8447, + 8448, + 8449, + 8450, + 8451, + 8452, + 8453, + 8454, + 8455, + 8456, + 8457, + 8458, + 8459 ] }, { "title": "Methods", "children": [ - 8093, - 8095 + 8460, + 8462 ] } ] }, { - "id": 7996, + "id": 8363, "name": "Payment", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 7997, + "id": 8364, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 7998, + "id": 8365, "name": "new Payment", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 7996, + "target": 8363, "name": "Payment", "package": "@medusajs/payment", "qualifiedName": "default" @@ -1715,7 +1715,7 @@ ] }, { - "id": 8023, + "id": 8390, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -1726,14 +1726,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "EntityDateColumns" + "qualifiedName": "ModelDateColumns" }, - "name": "EntityDateColumns", + "name": "ModelDateColumns", "package": "@medusajs/types" } }, { - "id": 7999, + "id": 8366, "name": "id", "variant": "declaration", "kind": 1024, @@ -1744,7 +1744,7 @@ } }, { - "id": 8000, + "id": 8367, "name": "amount", "variant": "declaration", "kind": 1024, @@ -1769,7 +1769,7 @@ } }, { - "id": 8001, + "id": 8368, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -1785,7 +1785,7 @@ } }, { - "id": 8002, + "id": 8369, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -1796,7 +1796,7 @@ } }, { - "id": 8003, + "id": 8370, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -1807,7 +1807,7 @@ } }, { - "id": 8004, + "id": 8371, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -1828,7 +1828,7 @@ "defaultValue": "null" }, { - "id": 8005, + "id": 8372, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -1849,7 +1849,7 @@ "defaultValue": "null" }, { - "id": 8006, + "id": 8373, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -1870,7 +1870,7 @@ "defaultValue": "null" }, { - "id": 8007, + "id": 8374, "name": "data", "variant": "declaration", "kind": 1024, @@ -1906,7 +1906,7 @@ "defaultValue": "null" }, { - "id": 8008, + "id": 8375, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1942,7 +1942,7 @@ "defaultValue": "null" }, { - "id": 8009, + "id": 8376, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1958,7 +1958,7 @@ } }, { - "id": 8010, + "id": 8377, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1974,7 +1974,7 @@ } }, { - "id": 8011, + "id": 8378, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -2000,7 +2000,7 @@ "defaultValue": "null" }, { - "id": 8012, + "id": 8379, "name": "captured_at", "variant": "declaration", "kind": 1024, @@ -2026,7 +2026,7 @@ "defaultValue": "null" }, { - "id": 8013, + "id": 8380, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -2052,7 +2052,7 @@ "defaultValue": "null" }, { - "id": 8014, + "id": 8381, "name": "refunds", "variant": "declaration", "kind": 1024, @@ -2066,7 +2066,7 @@ "typeArguments": [ { "type": "reference", - "target": 8098, + "target": 8465, "name": "Refund", "package": "@medusajs/payment", "qualifiedName": "default" @@ -2082,7 +2082,7 @@ "defaultValue": "..." }, { - "id": 8015, + "id": 8382, "name": "captures", "variant": "declaration", "kind": 1024, @@ -2096,7 +2096,7 @@ "typeArguments": [ { "type": "reference", - "target": 7980, + "target": 8347, "name": "Capture", "package": "@medusajs/payment", "qualifiedName": "default" @@ -2112,21 +2112,21 @@ "defaultValue": "..." }, { - "id": 8016, + "id": 8383, "name": "payment_collection", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 8024, + "target": 8391, "name": "PaymentCollection", "package": "@medusajs/payment", "qualifiedName": "default" } }, { - "id": 8017, + "id": 8384, "name": "payment_collection_id", "variant": "declaration", "kind": 1024, @@ -2137,28 +2137,28 @@ } }, { - "id": 8018, + "id": 8385, "name": "payment_session", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 8075, + "target": 8442, "name": "PaymentSession", "package": "@medusajs/payment", "qualifiedName": "default" } }, { - "id": 8019, + "id": 8386, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8020, + "id": 8387, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -2171,14 +2171,14 @@ ] }, { - "id": 8021, + "id": 8388, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8022, + "id": 8389, "name": "onInit", "variant": "signature", "kind": 4096, @@ -2195,67 +2195,67 @@ { "title": "Constructors", "children": [ - 7997 + 8364 ] }, { "title": "Properties", "children": [ - 8023, - 7999, - 8000, - 8001, - 8002, - 8003, - 8004, - 8005, - 8006, - 8007, - 8008, - 8009, - 8010, - 8011, - 8012, - 8013, - 8014, - 8015, - 8016, - 8017, - 8018 + 8390, + 8366, + 8367, + 8368, + 8369, + 8370, + 8371, + 8372, + 8373, + 8374, + 8375, + 8376, + 8377, + 8378, + 8379, + 8380, + 8381, + 8382, + 8383, + 8384, + 8385 ] }, { "title": "Methods", "children": [ - 8019, - 8021 + 8386, + 8388 ] } ] }, { - "id": 8098, + "id": 8465, "name": "Refund", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 8099, + "id": 8466, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 8100, + "id": 8467, "name": "new Refund", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 8098, + "target": 8465, "name": "Refund", "package": "@medusajs/payment", "qualifiedName": "default" @@ -2264,7 +2264,7 @@ ] }, { - "id": 8101, + "id": 8468, "name": "id", "variant": "declaration", "kind": 1024, @@ -2275,7 +2275,7 @@ } }, { - "id": 8102, + "id": 8469, "name": "amount", "variant": "declaration", "kind": 1024, @@ -2300,7 +2300,7 @@ } }, { - "id": 8103, + "id": 8470, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -2316,21 +2316,21 @@ } }, { - "id": 8104, + "id": 8471, "name": "payment", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7996, + "target": 8363, "name": "Payment", "package": "@medusajs/payment", "qualifiedName": "default" } }, { - "id": 8105, + "id": 8472, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -2346,7 +2346,7 @@ } }, { - "id": 8106, + "id": 8473, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -2362,7 +2362,7 @@ } }, { - "id": 8107, + "id": 8474, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -2388,7 +2388,7 @@ "defaultValue": "null" }, { - "id": 8108, + "id": 8475, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -2409,7 +2409,7 @@ "defaultValue": "null" }, { - "id": 8109, + "id": 8476, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2445,14 +2445,14 @@ "defaultValue": "null" }, { - "id": 8110, + "id": 8477, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8111, + "id": 8478, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -2465,14 +2465,14 @@ ] }, { - "id": 8112, + "id": 8479, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8113, + "id": 8480, "name": "onInit", "variant": "signature", "kind": 4096, @@ -2489,28 +2489,28 @@ { "title": "Constructors", "children": [ - 8099 + 8466 ] }, { "title": "Properties", "children": [ - 8101, - 8102, - 8103, - 8104, - 8105, - 8106, - 8107, - 8108, - 8109 + 8468, + 8469, + 8470, + 8471, + 8472, + 8473, + 8474, + 8475, + 8476 ] }, { "title": "Methods", "children": [ - 8110, - 8112 + 8477, + 8479 ] } ] @@ -2520,499 +2520,499 @@ { "title": "Classes", "children": [ - 7980, - 8024, - 8052, - 8069, - 8075, - 7996, - 8098 + 8347, + 8391, + 8419, + 8436, + 8442, + 8363, + 8465 ] } ], "packageName": "@medusajs/payment", "symbolIdMap": { - "7979": { + "8346": { "sourceFileName": "../../../../packages/modules/payment/src/models/index.ts", "qualifiedName": "" }, - "7980": { + "8347": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default" }, - "7983": { + "8350": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default.id" }, - "7984": { + "8351": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default.amount" }, - "7985": { + "8352": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default.raw_amount" }, - "7986": { + "8353": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default.payment" }, - "7987": { + "8354": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default.created_at" }, - "7988": { + "8355": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default.updated_at" }, - "7989": { + "8356": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default.deleted_at" }, - "7990": { + "8357": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default.created_by" }, - "7991": { + "8358": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default.onCreate" }, - "7992": { + "8359": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default.onCreate" }, - "7993": { + "8360": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default.onInit" }, - "7994": { + "8361": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default.onInit" }, - "7995": { + "8362": { "sourceFileName": "../../../../packages/modules/payment/src/models/capture.ts", "qualifiedName": "default.[OptionalProps]" }, - "7996": { + "8363": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default" }, - "7999": { + "8366": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.id" }, - "8000": { + "8367": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.amount" }, - "8001": { + "8368": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.raw_amount" }, - "8002": { + "8369": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.currency_code" }, - "8003": { + "8370": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.provider_id" }, - "8004": { + "8371": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.cart_id" }, - "8005": { + "8372": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.order_id" }, - "8006": { + "8373": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.customer_id" }, - "8007": { + "8374": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.data" }, - "8008": { + "8375": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.metadata" }, - "8009": { + "8376": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.created_at" }, - "8010": { + "8377": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.updated_at" }, - "8011": { + "8378": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.deleted_at" }, - "8012": { + "8379": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.captured_at" }, - "8013": { + "8380": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.canceled_at" }, - "8014": { + "8381": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.refunds" }, - "8015": { + "8382": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.captures" }, - "8016": { + "8383": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.payment_collection" }, - "8017": { + "8384": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.payment_collection_id" }, - "8018": { + "8385": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.payment_session" }, - "8019": { + "8386": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.onCreate" }, - "8020": { + "8387": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.onCreate" }, - "8021": { + "8388": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.onInit" }, - "8022": { + "8389": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.onInit" }, - "8023": { + "8390": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment.ts", "qualifiedName": "default.[OptionalProps]" }, - "8024": { + "8391": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default" }, - "8027": { + "8394": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.id" }, - "8028": { + "8395": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.currency_code" }, - "8029": { + "8396": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.amount" }, - "8030": { + "8397": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.raw_amount" }, - "8031": { + "8398": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.authorized_amount" }, - "8032": { + "8399": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.raw_authorized_amount" }, - "8033": { + "8400": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.captured_amount" }, - "8034": { + "8401": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.raw_captured_amount" }, - "8035": { + "8402": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.refunded_amount" }, - "8036": { + "8403": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.raw_refunded_amount" }, - "8037": { + "8404": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.region_id" }, - "8038": { + "8405": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.created_at" }, - "8039": { + "8406": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.updated_at" }, - "8040": { + "8407": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.deleted_at" }, - "8041": { + "8408": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.completed_at" }, - "8042": { + "8409": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.status" }, - "8043": { + "8410": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.payment_providers" }, - "8044": { + "8411": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.payment_sessions" }, - "8045": { + "8412": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.payments" }, - "8046": { + "8413": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.metadata" }, - "8047": { + "8414": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.onCreate" }, - "8048": { + "8415": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.onCreate" }, - "8049": { + "8416": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.onInit" }, - "8050": { + "8417": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.onInit" }, - "8051": { + "8418": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-collection.ts", "qualifiedName": "default.[OptionalProps]" }, - "8052": { + "8419": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default" }, - "8055": { + "8422": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.id" }, - "8056": { + "8423": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.provider_id" }, - "8057": { + "8424": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.data" }, - "8058": { + "8425": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.name" }, - "8059": { + "8426": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.type_detail" }, - "8060": { + "8427": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.description_detail" }, - "8061": { + "8428": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.created_at" }, - "8062": { + "8429": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.updated_at" }, - "8063": { + "8430": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.deleted_at" }, - "8064": { + "8431": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.metadata" }, - "8065": { + "8432": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.onCreate" }, - "8066": { + "8433": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.onCreate" }, - "8067": { + "8434": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.onInit" }, - "8068": { + "8435": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-method-token.ts", "qualifiedName": "default.onInit" }, - "8069": { + "8436": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-provider.ts", "qualifiedName": "default" }, - "8072": { + "8439": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-provider.ts", "qualifiedName": "default.id" }, - "8073": { + "8440": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-provider.ts", "qualifiedName": "default.is_enabled" }, - "8074": { + "8441": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-provider.ts", "qualifiedName": "default.[OptionalProps]" }, - "8075": { + "8442": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default" }, - "8078": { + "8445": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.id" }, - "8079": { + "8446": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.currency_code" }, - "8080": { + "8447": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.amount" }, - "8081": { + "8448": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.raw_amount" }, - "8082": { + "8449": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.provider_id" }, - "8083": { + "8450": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.data" }, - "8084": { + "8451": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.context" }, - "8085": { + "8452": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.status" }, - "8086": { + "8453": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.authorized_at" }, - "8087": { + "8454": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.payment_collection" }, - "8088": { + "8455": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.payment_collection_id" }, - "8089": { + "8456": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.payment" }, - "8090": { + "8457": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.created_at" }, - "8091": { + "8458": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.updated_at" }, - "8092": { + "8459": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.deleted_at" }, - "8093": { + "8460": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.onCreate" }, - "8094": { + "8461": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.onCreate" }, - "8095": { + "8462": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.onInit" }, - "8096": { + "8463": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.onInit" }, - "8097": { + "8464": { "sourceFileName": "../../../../packages/modules/payment/src/models/payment-session.ts", "qualifiedName": "default.[OptionalProps]" }, - "8098": { + "8465": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default" }, - "8101": { + "8468": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default.id" }, - "8102": { + "8469": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default.amount" }, - "8103": { + "8470": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default.raw_amount" }, - "8104": { + "8471": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default.payment" }, - "8105": { + "8472": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default.created_at" }, - "8106": { + "8473": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default.updated_at" }, - "8107": { + "8474": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default.deleted_at" }, - "8108": { + "8475": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default.created_by" }, - "8109": { + "8476": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default.metadata" }, - "8110": { + "8477": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default.onCreate" }, - "8111": { + "8478": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default.onCreate" }, - "8112": { + "8479": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default.onInit" }, - "8113": { + "8480": { "sourceFileName": "../../../../packages/modules/payment/src/models/refund.ts", "qualifiedName": "default.onInit" } @@ -3022,7 +3022,7 @@ "1": "../../../../packages/modules/payment/src/models/index.ts" }, "reflections": { - "1": 7979 + "1": 8346 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/payment.json b/www/utils/generated/typedoc-json-output/payment.json index ec2f5d4bc8604..1c94320d24ee9 100644 --- a/www/utils/generated/typedoc-json-output/payment.json +++ b/www/utils/generated/typedoc-json-output/payment.json @@ -1,12 +1,12 @@ { - "id": 7400, + "id": 7767, "name": "payment", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 7877, + "id": 8244, "name": "AddressDTO", "variant": "declaration", "kind": 2097152, @@ -14,14 +14,14 @@ "type": { "type": "reflection", "declaration": { - "id": 7878, + "id": 8245, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7879, + "id": 8246, "name": "id", "variant": "declaration", "kind": 1024, @@ -34,7 +34,7 @@ } }, { - "id": 7880, + "id": 8247, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -45,7 +45,7 @@ } }, { - "id": 7881, + "id": 8248, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -67,7 +67,7 @@ } }, { - "id": 7882, + "id": 8249, "name": "company", "variant": "declaration", "kind": 1024, @@ -89,7 +89,7 @@ } }, { - "id": 7883, + "id": 8250, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 7884, + "id": 8251, "name": "city", "variant": "declaration", "kind": 1024, @@ -122,7 +122,7 @@ } }, { - "id": 7885, + "id": 8252, "name": "phone", "variant": "declaration", "kind": 1024, @@ -144,7 +144,7 @@ } }, { - "id": 7886, + "id": 8253, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -166,7 +166,7 @@ } }, { - "id": 7887, + "id": 8254, "name": "province", "variant": "declaration", "kind": 1024, @@ -188,7 +188,7 @@ } }, { - "id": 7888, + "id": 8255, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -225,7 +225,7 @@ } }, { - "id": 7889, + "id": 8256, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -252,7 +252,7 @@ } }, { - "id": 7890, + "id": 8257, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -279,7 +279,7 @@ } }, { - "id": 7891, + "id": 8258, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -314,19 +314,19 @@ { "title": "Properties", "children": [ - 7879, - 7880, - 7881, - 7882, - 7883, - 7884, - 7885, - 7886, - 7887, - 7888, - 7889, - 7890, - 7891 + 8246, + 8247, + 8248, + 8249, + 8250, + 8251, + 8252, + 8253, + 8254, + 8255, + 8256, + 8257, + 8258 ] } ] @@ -334,7 +334,7 @@ } }, { - "id": 7589, + "id": 7956, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -357,7 +357,7 @@ }, "children": [ { - "id": 7590, + "id": 7957, "name": "select", "variant": "declaration", "kind": 1024, @@ -386,7 +386,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 7601, + "target": 7968, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -398,7 +398,7 @@ } }, { - "id": 7591, + "id": 7958, "name": "skip", "variant": "declaration", "kind": 1024, @@ -428,7 +428,7 @@ } }, { - "id": 7592, + "id": 7959, "name": "take", "variant": "declaration", "kind": 1024, @@ -458,7 +458,7 @@ } }, { - "id": 7593, + "id": 7960, "name": "relations", "variant": "declaration", "kind": 1024, @@ -482,7 +482,7 @@ } }, { - "id": 7594, + "id": 7961, "name": "order", "variant": "declaration", "kind": 1024, @@ -516,21 +516,21 @@ "type": { "type": "reflection", "declaration": { - "id": 7595, + "id": 7962, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 7596, + "id": 7963, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 7597, + "id": 7964, "name": "K", "variant": "param", "kind": 32768, @@ -560,7 +560,7 @@ } }, { - "id": 7598, + "id": 7965, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -589,7 +589,7 @@ } }, { - "id": 7599, + "id": 7966, "name": "filters", "variant": "declaration", "kind": 1024, @@ -625,7 +625,7 @@ } }, { - "id": 7600, + "id": 7967, "name": "options", "variant": "declaration", "kind": 1024, @@ -665,20 +665,20 @@ { "title": "Properties", "children": [ - 7590, - 7591, - 7592, - 7593, - 7594, - 7598, - 7599, - 7600 + 7957, + 7958, + 7959, + 7960, + 7961, + 7965, + 7966, + 7967 ] } ], "typeParameters": [ { - "id": 7601, + "id": 7968, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -687,7 +687,7 @@ ] }, { - "id": 7942, + "id": 8309, "name": "CustomerAddressDTO", "variant": "declaration", "kind": 256, @@ -702,7 +702,7 @@ }, "children": [ { - "id": 7943, + "id": 8310, "name": "id", "variant": "declaration", "kind": 1024, @@ -721,7 +721,7 @@ } }, { - "id": 7944, + "id": 8311, "name": "address_name", "variant": "declaration", "kind": 1024, @@ -742,7 +742,7 @@ } }, { - "id": 7945, + "id": 8312, "name": "is_default_shipping", "variant": "declaration", "kind": 1024, @@ -761,7 +761,7 @@ } }, { - "id": 7946, + "id": 8313, "name": "is_default_billing", "variant": "declaration", "kind": 1024, @@ -780,7 +780,7 @@ } }, { - "id": 7947, + "id": 8314, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -799,7 +799,7 @@ } }, { - "id": 7948, + "id": 8315, "name": "company", "variant": "declaration", "kind": 1024, @@ -820,7 +820,7 @@ } }, { - "id": 7949, + "id": 8316, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -841,7 +841,7 @@ } }, { - "id": 7950, + "id": 8317, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -862,7 +862,7 @@ } }, { - "id": 7951, + "id": 8318, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -883,7 +883,7 @@ } }, { - "id": 7952, + "id": 8319, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -904,7 +904,7 @@ } }, { - "id": 7953, + "id": 8320, "name": "city", "variant": "declaration", "kind": 1024, @@ -925,7 +925,7 @@ } }, { - "id": 7954, + "id": 8321, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -946,7 +946,7 @@ } }, { - "id": 7955, + "id": 8322, "name": "province", "variant": "declaration", "kind": 1024, @@ -967,7 +967,7 @@ } }, { - "id": 7956, + "id": 8323, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -988,7 +988,7 @@ } }, { - "id": 7957, + "id": 8324, "name": "phone", "variant": "declaration", "kind": 1024, @@ -1009,7 +1009,7 @@ } }, { - "id": 7958, + "id": 8325, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1045,7 +1045,7 @@ } }, { - "id": 7959, + "id": 8326, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1064,7 +1064,7 @@ } }, { - "id": 7960, + "id": 8327, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1087,30 +1087,30 @@ { "title": "Properties", "children": [ - 7943, - 7944, - 7945, - 7946, - 7947, - 7948, - 7949, - 7950, - 7951, - 7952, - 7953, - 7954, - 7955, - 7956, - 7957, - 7958, - 7959, - 7960 + 8310, + 8311, + 8312, + 8313, + 8314, + 8315, + 8316, + 8317, + 8318, + 8319, + 8320, + 8321, + 8322, + 8323, + 8324, + 8325, + 8326, + 8327 ] } ] }, { - "id": 7892, + "id": 8259, "name": "CustomerDTO", "variant": "declaration", "kind": 256, @@ -1125,7 +1125,7 @@ }, "children": [ { - "id": 7893, + "id": 8260, "name": "id", "variant": "declaration", "kind": 1024, @@ -1144,7 +1144,7 @@ } }, { - "id": 7894, + "id": 8261, "name": "email", "variant": "declaration", "kind": 1024, @@ -1163,7 +1163,7 @@ } }, { - "id": 7895, + "id": 8262, "name": "has_account", "variant": "declaration", "kind": 1024, @@ -1182,7 +1182,7 @@ } }, { - "id": 7896, + "id": 8263, "name": "default_billing_address_id", "variant": "declaration", "kind": 1024, @@ -1210,7 +1210,7 @@ } }, { - "id": 7897, + "id": 8264, "name": "default_shipping_address_id", "variant": "declaration", "kind": 1024, @@ -1238,7 +1238,7 @@ } }, { - "id": 7898, + "id": 8265, "name": "company_name", "variant": "declaration", "kind": 1024, @@ -1266,7 +1266,7 @@ } }, { - "id": 7899, + "id": 8266, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -1294,7 +1294,7 @@ } }, { - "id": 7900, + "id": 8267, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -1322,7 +1322,7 @@ } }, { - "id": 7901, + "id": 8268, "name": "addresses", "variant": "declaration", "kind": 1024, @@ -1339,14 +1339,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 7942, + "target": 8309, "name": "CustomerAddressDTO", "package": "@medusajs/types" } } }, { - "id": 7902, + "id": 8269, "name": "phone", "variant": "declaration", "kind": 1024, @@ -1374,7 +1374,7 @@ } }, { - "id": 7903, + "id": 8270, "name": "groups", "variant": "declaration", "kind": 1024, @@ -1392,14 +1392,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 7904, + "id": 8271, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7905, + "id": 8272, "name": "id", "variant": "declaration", "kind": 1024, @@ -1418,7 +1418,7 @@ } }, { - "id": 7906, + "id": 8273, "name": "name", "variant": "declaration", "kind": 1024, @@ -1441,8 +1441,8 @@ { "title": "Properties", "children": [ - 7905, - 7906 + 8272, + 8273 ] } ] @@ -1451,7 +1451,7 @@ } }, { - "id": 7907, + "id": 8274, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1485,7 +1485,7 @@ } }, { - "id": 7908, + "id": 8275, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -1513,7 +1513,7 @@ } }, { - "id": 7909, + "id": 8276, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1550,7 +1550,7 @@ } }, { - "id": 7910, + "id": 8277, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1583,7 +1583,7 @@ } }, { - "id": 7911, + "id": 8278, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1620,28 +1620,28 @@ { "title": "Properties", "children": [ - 7893, - 7894, - 7895, - 7896, - 7897, - 7898, - 7899, - 7900, - 7901, - 7902, - 7903, - 7907, - 7908, - 7909, - 7910, - 7911 + 8260, + 8261, + 8262, + 8263, + 8264, + 8265, + 8266, + 8267, + 8268, + 8269, + 8270, + 8274, + 8275, + 8276, + 8277, + 8278 ] } ] }, { - "id": 7792, + "id": 8159, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -1656,7 +1656,7 @@ }, "children": [ { - "id": 7793, + "id": 8160, "name": "$and", "variant": "declaration", "kind": 1024, @@ -1678,11 +1678,11 @@ "types": [ { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7795, + "target": 8162, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -1694,7 +1694,7 @@ }, { "type": "reference", - "target": 7795, + "target": 8162, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -1705,7 +1705,7 @@ } }, { - "id": 7794, + "id": 8161, "name": "$or", "variant": "declaration", "kind": 1024, @@ -1727,11 +1727,11 @@ "types": [ { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7795, + "target": 8162, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -1743,7 +1743,7 @@ }, { "type": "reference", - "target": 7795, + "target": 8162, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -1758,14 +1758,14 @@ { "title": "Properties", "children": [ - 7793, - 7794 + 8160, + 8161 ] } ], "typeParameters": [ { - "id": 7795, + "id": 8162, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1775,45 +1775,45 @@ "extendedBy": [ { "type": "reference", - "target": 7602, + "target": 7969, "name": "FilterablePaymentCollectionProps" }, { "type": "reference", - "target": 7664, + "target": 8031, "name": "FilterablePaymentSessionProps" }, { "type": "reference", - "target": 7676, + "target": 8043, "name": "FilterablePaymentProps" }, { "type": "reference", - "target": 7704, + "target": 8071, "name": "FilterablePaymentProviderProps" }, { "type": "reference", - "target": 7712, + "target": 8079, "name": "FilterableCaptureProps" }, { "type": "reference", - "target": 7728, + "target": 8095, "name": "FilterableRefundProps" } ] }, { - "id": 7873, + "id": 8240, "name": "Query", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 7874, + "id": 8241, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1824,7 +1824,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 7874, + "target": 8241, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1837,14 +1837,14 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 7874, + "target": 8241, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 7930, + "target": 8297, "name": "Scalar", "package": "@medusajs/types" }, @@ -1854,11 +1854,11 @@ }, "falseType": { "type": "reference", - "target": 7934, + "target": 8301, "typeArguments": [ { "type": "reference", - "target": 7874, + "target": 8241, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1870,11 +1870,11 @@ }, "falseType": { "type": "reference", - "target": 7940, + "target": 8307, "typeArguments": [ { "type": "reference", - "target": 7874, + "target": 8241, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1886,14 +1886,14 @@ } }, { - "id": 7875, + "id": 8242, "name": "ExpandScalar", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 7876, + "id": 8243, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1911,7 +1911,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 7876, + "target": 8243, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1942,7 +1942,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 7876, + "target": 8243, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1976,7 +1976,7 @@ }, "falseType": { "type": "reference", - "target": 7876, + "target": 8243, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1987,7 +1987,7 @@ } }, { - "id": 7930, + "id": 8297, "name": "Scalar", "variant": "declaration", "kind": 2097152, @@ -2046,21 +2046,21 @@ { "type": "reflection", "declaration": { - "id": 7931, + "id": 8298, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7932, + "id": 8299, "name": "toHexString", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7933, + "id": 8300, "name": "toHexString", "variant": "signature", "kind": 4096, @@ -2077,7 +2077,7 @@ { "title": "Methods", "children": [ - 7932 + 8299 ] } ] @@ -2087,14 +2087,14 @@ } }, { - "id": 7977, + "id": 8344, "name": "ReadonlyPrimary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 7978, + "id": 8345, "name": "T", "variant": "typeParam", "kind": 131072, @@ -2105,7 +2105,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 7978, + "target": 8345, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2126,7 +2126,7 @@ "typeArguments": [ { "type": "reference", - "target": 7978, + "target": 8345, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2137,7 +2137,7 @@ }, "falseType": { "type": "reference", - "target": 7978, + "target": 8345, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2145,14 +2145,14 @@ } }, { - "id": 7967, + "id": 8334, "name": "Primary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 7976, + "id": 8343, "name": "T", "variant": "typeParam", "kind": 131072, @@ -2163,7 +2163,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 7976, + "target": 8343, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2171,14 +2171,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 7968, + "id": 8335, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7969, + "id": 8336, "name": "[PrimaryKeyType]", "variant": "declaration", "kind": 1024, @@ -2195,7 +2195,7 @@ { "title": "Properties", "children": [ - 7969 + 8336 ] } ] @@ -2203,7 +2203,7 @@ }, "trueType": { "type": "reference", - "target": 7977, + "target": 8344, "typeArguments": [ { "type": "reference", @@ -2223,7 +2223,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 7976, + "target": 8343, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2231,14 +2231,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 7970, + "id": 8337, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7971, + "id": 8338, "name": "_id", "variant": "declaration", "kind": 1024, @@ -2255,7 +2255,7 @@ { "title": "Properties", "children": [ - 7971 + 8338 ] } ] @@ -2266,7 +2266,7 @@ "types": [ { "type": "reference", - "target": 7977, + "target": 8344, "typeArguments": [ { "type": "reference", @@ -2292,7 +2292,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 7976, + "target": 8343, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2300,14 +2300,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 7972, + "id": 8339, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7973, + "id": 8340, "name": "uuid", "variant": "declaration", "kind": 1024, @@ -2324,7 +2324,7 @@ { "title": "Properties", "children": [ - 7973 + 8340 ] } ] @@ -2332,7 +2332,7 @@ }, "trueType": { "type": "reference", - "target": 7977, + "target": 8344, "typeArguments": [ { "type": "reference", @@ -2352,7 +2352,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 7976, + "target": 8343, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2360,14 +2360,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 7974, + "id": 8341, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7975, + "id": 8342, "name": "id", "variant": "declaration", "kind": 1024, @@ -2384,7 +2384,7 @@ { "title": "Properties", "children": [ - 7975 + 8342 ] } ] @@ -2392,7 +2392,7 @@ }, "trueType": { "type": "reference", - "target": 7977, + "target": 8344, "typeArguments": [ { "type": "reference", @@ -2418,14 +2418,14 @@ } }, { - "id": 7796, + "id": 8163, "name": "OperatorMap", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 7817, + "id": 8184, "name": "T", "variant": "typeParam", "kind": 131072, @@ -2435,14 +2435,14 @@ "type": { "type": "reflection", "declaration": { - "id": 7797, + "id": 8164, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7798, + "id": 8165, "name": "$and", "variant": "declaration", "kind": 1024, @@ -2453,11 +2453,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 7873, + "target": 8240, "typeArguments": [ { "type": "reference", - "target": 7817, + "target": 8184, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2469,7 +2469,7 @@ } }, { - "id": 7799, + "id": 8166, "name": "$or", "variant": "declaration", "kind": 1024, @@ -2480,11 +2480,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 7873, + "target": 8240, "typeArguments": [ { "type": "reference", - "target": 7817, + "target": 8184, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2496,7 +2496,7 @@ } }, { - "id": 7800, + "id": 8167, "name": "$eq", "variant": "declaration", "kind": 1024, @@ -2508,11 +2508,11 @@ "types": [ { "type": "reference", - "target": 7875, + "target": 8242, "typeArguments": [ { "type": "reference", - "target": 7817, + "target": 8184, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2525,11 +2525,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 7875, + "target": 8242, "typeArguments": [ { "type": "reference", - "target": 7817, + "target": 8184, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2543,7 +2543,7 @@ } }, { - "id": 7801, + "id": 8168, "name": "$ne", "variant": "declaration", "kind": 1024, @@ -2552,11 +2552,11 @@ }, "type": { "type": "reference", - "target": 7875, + "target": 8242, "typeArguments": [ { "type": "reference", - "target": 7817, + "target": 8184, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2567,7 +2567,7 @@ } }, { - "id": 7802, + "id": 8169, "name": "$in", "variant": "declaration", "kind": 1024, @@ -2578,11 +2578,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 7875, + "target": 8242, "typeArguments": [ { "type": "reference", - "target": 7817, + "target": 8184, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2594,7 +2594,7 @@ } }, { - "id": 7803, + "id": 8170, "name": "$nin", "variant": "declaration", "kind": 1024, @@ -2605,11 +2605,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 7875, + "target": 8242, "typeArguments": [ { "type": "reference", - "target": 7817, + "target": 8184, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2621,7 +2621,7 @@ } }, { - "id": 7804, + "id": 8171, "name": "$not", "variant": "declaration", "kind": 1024, @@ -2630,11 +2630,11 @@ }, "type": { "type": "reference", - "target": 7873, + "target": 8240, "typeArguments": [ { "type": "reference", - "target": 7817, + "target": 8184, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2645,7 +2645,7 @@ } }, { - "id": 7805, + "id": 8172, "name": "$gt", "variant": "declaration", "kind": 1024, @@ -2654,11 +2654,11 @@ }, "type": { "type": "reference", - "target": 7875, + "target": 8242, "typeArguments": [ { "type": "reference", - "target": 7817, + "target": 8184, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2669,7 +2669,7 @@ } }, { - "id": 7806, + "id": 8173, "name": "$gte", "variant": "declaration", "kind": 1024, @@ -2678,11 +2678,11 @@ }, "type": { "type": "reference", - "target": 7875, + "target": 8242, "typeArguments": [ { "type": "reference", - "target": 7817, + "target": 8184, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2693,7 +2693,7 @@ } }, { - "id": 7807, + "id": 8174, "name": "$lt", "variant": "declaration", "kind": 1024, @@ -2702,11 +2702,11 @@ }, "type": { "type": "reference", - "target": 7875, + "target": 8242, "typeArguments": [ { "type": "reference", - "target": 7817, + "target": 8184, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2717,7 +2717,7 @@ } }, { - "id": 7808, + "id": 8175, "name": "$lte", "variant": "declaration", "kind": 1024, @@ -2726,11 +2726,11 @@ }, "type": { "type": "reference", - "target": 7875, + "target": 8242, "typeArguments": [ { "type": "reference", - "target": 7817, + "target": 8184, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2741,7 +2741,7 @@ } }, { - "id": 7809, + "id": 8176, "name": "$like", "variant": "declaration", "kind": 1024, @@ -2754,7 +2754,7 @@ } }, { - "id": 7810, + "id": 8177, "name": "$re", "variant": "declaration", "kind": 1024, @@ -2767,7 +2767,7 @@ } }, { - "id": 7811, + "id": 8178, "name": "$ilike", "variant": "declaration", "kind": 1024, @@ -2780,7 +2780,7 @@ } }, { - "id": 7812, + "id": 8179, "name": "$fulltext", "variant": "declaration", "kind": 1024, @@ -2793,7 +2793,7 @@ } }, { - "id": 7813, + "id": 8180, "name": "$overlap", "variant": "declaration", "kind": 1024, @@ -2809,7 +2809,7 @@ } }, { - "id": 7814, + "id": 8181, "name": "$contains", "variant": "declaration", "kind": 1024, @@ -2825,7 +2825,7 @@ } }, { - "id": 7815, + "id": 8182, "name": "$contained", "variant": "declaration", "kind": 1024, @@ -2841,7 +2841,7 @@ } }, { - "id": 7816, + "id": 8183, "name": "$exists", "variant": "declaration", "kind": 1024, @@ -2858,25 +2858,25 @@ { "title": "Properties", "children": [ - 7798, - 7799, - 7800, - 7801, - 7802, - 7803, - 7804, - 7805, - 7806, - 7807, - 7808, - 7809, - 7810, - 7811, - 7812, - 7813, - 7814, - 7815, - 7816 + 8165, + 8166, + 8167, + 8168, + 8169, + 8170, + 8171, + 8172, + 8173, + 8174, + 8175, + 8176, + 8177, + 8178, + 8179, + 8180, + 8181, + 8182, + 8183 ] } ] @@ -2884,14 +2884,14 @@ } }, { - "id": 7965, + "id": 8332, "name": "FilterValue2", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 7966, + "id": 8333, "name": "T", "variant": "typeParam", "kind": 131072, @@ -2903,18 +2903,18 @@ "types": [ { "type": "reference", - "target": 7966, + "target": 8333, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, { "type": "reference", - "target": 7875, + "target": 8242, "typeArguments": [ { "type": "reference", - "target": 7966, + "target": 8333, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2925,11 +2925,11 @@ }, { "type": "reference", - "target": 7967, + "target": 8334, "typeArguments": [ { "type": "reference", - "target": 7966, + "target": 8333, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2942,14 +2942,14 @@ } }, { - "id": 7940, + "id": 8307, "name": "FilterValue", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 7941, + "id": 8308, "name": "T", "variant": "typeParam", "kind": 131072, @@ -2961,15 +2961,15 @@ "types": [ { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "reference", - "target": 7965, + "target": 8332, "typeArguments": [ { "type": "reference", - "target": 7941, + "target": 8308, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2984,11 +2984,11 @@ }, { "type": "reference", - "target": 7965, + "target": 8332, "typeArguments": [ { "type": "reference", - "target": 7941, + "target": 8308, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3001,11 +3001,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 7965, + "target": 8332, "typeArguments": [ { "type": "reference", - "target": 7941, + "target": 8308, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3023,7 +3023,7 @@ } }, { - "id": 7964, + "id": 8331, "name": "PrevLimit", "variant": "declaration", "kind": 2097152, @@ -3051,14 +3051,14 @@ } }, { - "id": 7934, + "id": 8301, "name": "FilterQuery", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 7938, + "id": 8305, "name": "T", "variant": "typeParam", "kind": 131072, @@ -3069,7 +3069,7 @@ } }, { - "id": 7939, + "id": 8306, "name": "Prev", "variant": "typeParam", "kind": 131072, @@ -3088,7 +3088,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 7939, + "target": 8306, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3109,7 +3109,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 7938, + "target": 8305, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3131,7 +3131,7 @@ }, "objectType": { "type": "reference", - "target": 7938, + "target": 8305, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3188,7 +3188,7 @@ }, "objectType": { "type": "reference", - "target": 7938, + "target": 8305, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3196,7 +3196,7 @@ }, { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "indexedAccess", @@ -3212,7 +3212,7 @@ }, "objectType": { "type": "reference", - "target": 7938, + "target": 8305, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3240,7 +3240,7 @@ }, "objectType": { "type": "reference", - "target": 7938, + "target": 8305, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3265,21 +3265,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 7935, + "id": 8302, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 7936, + "id": 8303, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 7937, + "id": 8304, "name": "x", "variant": "param", "kind": 32768, @@ -3316,7 +3316,7 @@ }, "trueType": { "type": "reference", - "target": 7934, + "target": 8301, "typeArguments": [ { "type": "reference", @@ -3343,14 +3343,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 7939, + "target": 8306, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 7964, + "target": 8331, "name": "PrevLimit", "package": "@medusajs/types" } @@ -3380,7 +3380,7 @@ } }, { - "id": 7961, + "id": 8328, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -3410,14 +3410,14 @@ { "type": "reflection", "declaration": { - "id": 7962, + "id": 8329, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7963, + "id": 8330, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -3434,7 +3434,7 @@ { "title": "Properties", "children": [ - 7963 + 8330 ] } ] @@ -3444,14 +3444,14 @@ } }, { - "id": 7924, + "id": 8291, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 7929, + "id": 8296, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -3465,14 +3465,14 @@ "type": { "type": "reflection", "declaration": { - "id": 7925, + "id": 8292, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7926, + "id": 8293, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -3483,7 +3483,7 @@ } }, { - "id": 7927, + "id": 8294, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3492,20 +3492,20 @@ }, "type": { "type": "reference", - "target": 7961, + "target": 8328, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 7928, + "id": 8295, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7929, + "target": 8296, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3516,9 +3516,9 @@ { "title": "Properties", "children": [ - 7926, - 7927, - 7928 + 8293, + 8294, + 8295 ] } ] @@ -3526,14 +3526,14 @@ } }, { - "id": 7853, + "id": 8220, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 7856, + "id": 8223, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -3549,11 +3549,11 @@ "types": [ { "type": "reference", - "target": 7924, + "target": 8291, "typeArguments": [ { "type": "reference", - "target": 7856, + "target": 8223, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -3565,14 +3565,14 @@ { "type": "reflection", "declaration": { - "id": 7854, + "id": 8221, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7855, + "id": 8222, "name": "options", "variant": "declaration", "kind": 1024, @@ -3604,7 +3604,7 @@ { "title": "Properties", "children": [ - 7855 + 8222 ] } ] @@ -3614,14 +3614,14 @@ } }, { - "id": 7863, + "id": 8230, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 7872, + "id": 8239, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -3635,14 +3635,14 @@ "type": { "type": "reflection", "declaration": { - "id": 7864, + "id": 8231, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7865, + "id": 8232, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -3653,21 +3653,21 @@ } }, { - "id": 7866, + "id": 8233, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7872, + "target": 8239, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 7867, + "id": 8234, "name": "source", "variant": "declaration", "kind": 1024, @@ -3678,7 +3678,7 @@ } }, { - "id": 7868, + "id": 8235, "name": "object", "variant": "declaration", "kind": 1024, @@ -3689,7 +3689,7 @@ } }, { - "id": 7869, + "id": 8236, "name": "action", "variant": "declaration", "kind": 1024, @@ -3702,7 +3702,7 @@ } }, { - "id": 7870, + "id": 8237, "name": "context", "variant": "declaration", "kind": 1024, @@ -3718,7 +3718,7 @@ "typeArguments": [ { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" }, @@ -3732,7 +3732,7 @@ } }, { - "id": 7871, + "id": 8238, "name": "options", "variant": "declaration", "kind": 1024, @@ -3764,13 +3764,13 @@ { "title": "Properties", "children": [ - 7865, - 7866, - 7867, - 7868, - 7869, - 7870, - 7871 + 8232, + 8233, + 8234, + 8235, + 8236, + 8237, + 8238 ] } ] @@ -3778,7 +3778,7 @@ } }, { - "id": 7915, + "id": 8282, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -3786,14 +3786,14 @@ "type": { "type": "reflection", "declaration": { - "id": 7916, + "id": 8283, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7917, + "id": 8284, "name": "alias", "variant": "declaration", "kind": 1024, @@ -3804,7 +3804,7 @@ } }, { - "id": 7918, + "id": 8285, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -3815,7 +3815,7 @@ } }, { - "id": 7919, + "id": 8286, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -3826,7 +3826,7 @@ } }, { - "id": 7920, + "id": 8287, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3837,7 +3837,7 @@ } }, { - "id": 7921, + "id": 8288, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -3858,7 +3858,7 @@ } }, { - "id": 7922, + "id": 8289, "name": "isList", "variant": "declaration", "kind": 1024, @@ -3879,7 +3879,7 @@ } }, { - "id": 7923, + "id": 8290, "name": "args", "variant": "declaration", "kind": 1024, @@ -3919,13 +3919,13 @@ { "title": "Properties", "children": [ - 7917, - 7918, - 7919, - 7920, - 7921, - 7922, - 7923 + 8284, + 8285, + 8286, + 8287, + 8288, + 8289, + 8290 ] } ] @@ -3933,14 +3933,14 @@ } }, { - "id": 7912, + "id": 8279, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 7913, + "id": 8280, "name": "name", "variant": "declaration", "kind": 1024, @@ -3963,7 +3963,7 @@ } }, { - "id": 7914, + "id": 8281, "name": "args", "variant": "declaration", "kind": 1024, @@ -4003,21 +4003,21 @@ { "title": "Properties", "children": [ - 7913, - 7914 + 8280, + 8281 ] } ] }, { - "id": 7825, + "id": 8192, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 7826, + "id": 8193, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -4028,7 +4028,7 @@ } }, { - "id": 7827, + "id": 8194, "name": "alias", "variant": "declaration", "kind": 1024, @@ -4048,7 +4048,7 @@ "types": [ { "type": "reference", - "target": 7912, + "target": 8279, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -4056,7 +4056,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7912, + "target": 8279, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -4065,7 +4065,7 @@ } }, { - "id": 7828, + "id": 8195, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -4101,14 +4101,14 @@ { "type": "reflection", "declaration": { - "id": 7829, + "id": 8196, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7830, + "id": 8197, "name": "path", "variant": "declaration", "kind": 1024, @@ -4119,7 +4119,7 @@ } }, { - "id": 7831, + "id": 8198, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -4137,8 +4137,8 @@ { "title": "Properties", "children": [ - 7830, - 7831 + 8197, + 8198 ] } ] @@ -4152,7 +4152,7 @@ } }, { - "id": 7832, + "id": 8199, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -4166,7 +4166,7 @@ } }, { - "id": 7833, + "id": 8200, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -4177,14 +4177,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 7915, + "target": 8282, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 7834, + "id": 8201, "name": "extends", "variant": "declaration", "kind": 1024, @@ -4196,14 +4196,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 7835, + "id": 8202, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7836, + "id": 8203, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -4214,14 +4214,14 @@ } }, { - "id": 7837, + "id": 8204, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7915, + "target": 8282, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -4231,8 +4231,8 @@ { "title": "Properties", "children": [ - 7836, - 7837 + 8203, + 8204 ] } ] @@ -4241,7 +4241,7 @@ } }, { - "id": 7838, + "id": 8205, "name": "args", "variant": "declaration", "kind": 1024, @@ -4281,19 +4281,19 @@ { "title": "Properties", "children": [ - 7826, - 7827, - 7828, - 7832, - 7833, - 7834, - 7838 + 8193, + 8194, + 8195, + 8199, + 8200, + 8201, + 8205 ] } ] }, { - "id": 7842, + "id": 8209, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -4312,14 +4312,14 @@ { "type": "reflection", "declaration": { - "id": 7843, + "id": 8210, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7844, + "id": 8211, "name": "type", "variant": "declaration", "kind": 1024, @@ -4415,7 +4415,7 @@ } }, { - "id": 7845, + "id": 8212, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -4428,7 +4428,7 @@ } }, { - "id": 7846, + "id": 8213, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -4441,7 +4441,7 @@ } }, { - "id": 7847, + "id": 8214, "name": "options", "variant": "declaration", "kind": 1024, @@ -4481,10 +4481,10 @@ { "title": "Properties", "children": [ - 7844, - 7845, - 7846, - 7847 + 8211, + 8212, + 8213, + 8214 ] } ] @@ -4496,7 +4496,7 @@ } }, { - "id": 7751, + "id": 8118, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -4513,7 +4513,7 @@ "typeArguments": [ { "type": "reference", - "target": 7825, + "target": 8192, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -4545,14 +4545,14 @@ { "type": "reflection", "declaration": { - "id": 7752, + "id": 8119, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7753, + "id": 8120, "name": "schema", "variant": "declaration", "kind": 1024, @@ -4573,7 +4573,7 @@ } }, { - "id": 7754, + "id": 8121, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -4584,14 +4584,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 7839, + "target": 8206, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 7755, + "id": 8122, "name": "extends", "variant": "declaration", "kind": 1024, @@ -4603,14 +4603,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 7756, + "id": 8123, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7757, + "id": 8124, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -4621,7 +4621,7 @@ } }, { - "id": 7758, + "id": 8125, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -4649,14 +4649,14 @@ { "type": "reflection", "declaration": { - "id": 7759, + "id": 8126, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7760, + "id": 8127, "name": "path", "variant": "declaration", "kind": 1024, @@ -4667,7 +4667,7 @@ } }, { - "id": 7761, + "id": 8128, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -4683,7 +4683,7 @@ } }, { - "id": 7762, + "id": 8129, "name": "isList", "variant": "declaration", "kind": 1024, @@ -4700,9 +4700,9 @@ { "title": "Properties", "children": [ - 7760, - 7761, - 7762 + 8127, + 8128, + 8129 ] } ] @@ -4716,14 +4716,14 @@ } }, { - "id": 7763, + "id": 8130, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 7839, + "target": 8206, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -4733,9 +4733,9 @@ { "title": "Properties", "children": [ - 7757, - 7758, - 7763 + 8124, + 8125, + 8130 ] } ] @@ -4744,7 +4744,7 @@ } }, { - "id": 7764, + "id": 8131, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -4757,7 +4757,7 @@ } }, { - "id": 7765, + "id": 8132, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -4773,7 +4773,7 @@ } }, { - "id": 7766, + "id": 8133, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -4794,7 +4794,7 @@ } }, { - "id": 7767, + "id": 8134, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -4830,7 +4830,7 @@ } }, { - "id": 7768, + "id": 8135, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -4851,7 +4851,7 @@ } }, { - "id": 7769, + "id": 8136, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -4875,7 +4875,7 @@ } }, { - "id": 7770, + "id": 8137, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -4885,14 +4885,14 @@ "type": { "type": "reflection", "declaration": { - "id": 7771, + "id": 8138, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7772, + "id": 8139, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -4913,7 +4913,7 @@ } }, { - "id": 7773, + "id": 8140, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -4934,7 +4934,7 @@ } }, { - "id": 7774, + "id": 8141, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -4943,7 +4943,7 @@ }, "type": { "type": "reference", - "target": 7842, + "target": 8209, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -4953,9 +4953,9 @@ { "title": "Properties", "children": [ - 7772, - 7773, - 7774 + 8139, + 8140, + 8141 ] } ] @@ -4967,16 +4967,16 @@ { "title": "Properties", "children": [ - 7753, - 7754, - 7755, - 7764, - 7765, - 7766, - 7767, - 7768, - 7769, - 7770 + 8120, + 8121, + 8122, + 8131, + 8132, + 8133, + 8134, + 8135, + 8136, + 8137 ] } ] @@ -4986,7 +4986,7 @@ } }, { - "id": 7839, + "id": 8206, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -4996,21 +4996,21 @@ "types": [ { "type": "reference", - "target": 7915, + "target": 8282, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 7840, + "id": 8207, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7841, + "id": 8208, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -5035,7 +5035,7 @@ { "title": "Properties", "children": [ - 7841 + 8208 ] } ] @@ -5045,7 +5045,7 @@ } }, { - "id": 7542, + "id": 7909, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -5053,13 +5053,13 @@ "extendedBy": [ { "type": "reference", - "target": 7401, + "target": 7768, "name": "IPaymentModuleService" } ] }, { - "id": 7791, + "id": 8158, "name": "PaymentCollectionStatus", "variant": "declaration", "kind": 2097152, @@ -5091,7 +5091,7 @@ } }, { - "id": 7818, + "id": 8185, "name": "PaymentSessionStatus", "variant": "declaration", "kind": 2097152, @@ -5127,7 +5127,7 @@ } }, { - "id": 7573, + "id": 7940, "name": "PaymentCollectionDTO", "variant": "declaration", "kind": 256, @@ -5142,7 +5142,7 @@ }, "children": [ { - "id": 7574, + "id": 7941, "name": "id", "variant": "declaration", "kind": 1024, @@ -5161,7 +5161,7 @@ } }, { - "id": 7575, + "id": 7942, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -5180,7 +5180,7 @@ } }, { - "id": 7576, + "id": 7943, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -5199,7 +5199,7 @@ } }, { - "id": 7577, + "id": 7944, "name": "amount", "variant": "declaration", "kind": 1024, @@ -5214,13 +5214,13 @@ }, "type": { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 7578, + "id": 7945, "name": "authorized_amount", "variant": "declaration", "kind": 1024, @@ -5237,13 +5237,13 @@ }, "type": { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 7579, + "id": 7946, "name": "refunded_amount", "variant": "declaration", "kind": 1024, @@ -5260,13 +5260,13 @@ }, "type": { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 7580, + "id": 7947, "name": "captured_amount", "variant": "declaration", "kind": 1024, @@ -5283,13 +5283,13 @@ }, "type": { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 7581, + "id": 7948, "name": "completed_at", "variant": "declaration", "kind": 1024, @@ -5324,7 +5324,7 @@ } }, { - "id": 7582, + "id": 7949, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5359,7 +5359,7 @@ } }, { - "id": 7583, + "id": 7950, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5394,7 +5394,7 @@ } }, { - "id": 7584, + "id": 7951, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5430,7 +5430,7 @@ } }, { - "id": 7585, + "id": 7952, "name": "status", "variant": "declaration", "kind": 1024, @@ -5445,13 +5445,13 @@ }, "type": { "type": "reference", - "target": 7791, + "target": 8158, "name": "PaymentCollectionStatus", "package": "@medusajs/types" } }, { - "id": 7586, + "id": 7953, "name": "payment_providers", "variant": "declaration", "kind": 1024, @@ -5471,14 +5471,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 7709, + "target": 8076, "name": "PaymentProviderDTO", "package": "@medusajs/types" } } }, { - "id": 7587, + "id": 7954, "name": "payment_sessions", "variant": "declaration", "kind": 1024, @@ -5500,14 +5500,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 7620, + "target": 7987, "name": "PaymentSessionDTO", "package": "@medusajs/types" } } }, { - "id": 7588, + "id": 7955, "name": "payments", "variant": "declaration", "kind": 1024, @@ -5529,7 +5529,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7643, + "target": 8010, "name": "PaymentDTO", "package": "@medusajs/types" } @@ -5540,27 +5540,27 @@ { "title": "Properties", "children": [ - 7574, - 7575, - 7576, - 7577, - 7578, - 7579, - 7580, - 7581, - 7582, - 7583, - 7584, - 7585, - 7586, - 7587, - 7588 + 7941, + 7942, + 7943, + 7944, + 7945, + 7946, + 7947, + 7948, + 7949, + 7950, + 7951, + 7952, + 7953, + 7954, + 7955 ] } ] }, { - "id": 7602, + "id": 7969, "name": "FilterablePaymentCollectionProps", "variant": "declaration", "kind": 256, @@ -5575,7 +5575,7 @@ }, "children": [ { - "id": 7607, + "id": 7974, "name": "$and", "variant": "declaration", "kind": 1024, @@ -5598,17 +5598,17 @@ "types": [ { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -5621,12 +5621,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 7793, + "target": 8160, "name": "BaseFilterable.$and" } }, { - "id": 7608, + "id": 7975, "name": "$or", "variant": "declaration", "kind": 1024, @@ -5649,17 +5649,17 @@ "types": [ { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -5672,12 +5672,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 7794, + "target": 8161, "name": "BaseFilterable.$or" } }, { - "id": 7603, + "id": 7970, "name": "id", "variant": "declaration", "kind": 1024, @@ -5710,7 +5710,7 @@ } }, { - "id": 7604, + "id": 7971, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -5741,7 +5741,7 @@ }, { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -5755,7 +5755,7 @@ } }, { - "id": 7605, + "id": 7972, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5772,7 +5772,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -5784,7 +5784,7 @@ } }, { - "id": 7606, + "id": 7973, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5801,7 +5801,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -5817,23 +5817,23 @@ { "title": "Properties", "children": [ - 7607, - 7608, - 7603, - 7604, - 7605, - 7606 + 7974, + 7975, + 7970, + 7971, + 7972, + 7973 ] } ], "extendedTypes": [ { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -5844,7 +5844,7 @@ ] }, { - "id": 7664, + "id": 8031, "name": "FilterablePaymentSessionProps", "variant": "declaration", "kind": 256, @@ -5859,7 +5859,7 @@ }, "children": [ { - "id": 7674, + "id": 8041, "name": "$and", "variant": "declaration", "kind": 1024, @@ -5882,17 +5882,17 @@ "types": [ { "type": "reference", - "target": 7620, + "target": 7987, "name": "PaymentSessionDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7620, + "target": 7987, "name": "PaymentSessionDTO", "package": "@medusajs/types" } @@ -5905,12 +5905,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 7793, + "target": 8160, "name": "BaseFilterable.$and" } }, { - "id": 7675, + "id": 8042, "name": "$or", "variant": "declaration", "kind": 1024, @@ -5933,17 +5933,17 @@ "types": [ { "type": "reference", - "target": 7620, + "target": 7987, "name": "PaymentSessionDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7620, + "target": 7987, "name": "PaymentSessionDTO", "package": "@medusajs/types" } @@ -5956,12 +5956,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 7794, + "target": 8161, "name": "BaseFilterable.$or" } }, { - "id": 7665, + "id": 8032, "name": "id", "variant": "declaration", "kind": 1024, @@ -5994,7 +5994,7 @@ } }, { - "id": 7666, + "id": 8033, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -6027,7 +6027,7 @@ } }, { - "id": 7667, + "id": 8034, "name": "amount", "variant": "declaration", "kind": 1024, @@ -6047,17 +6047,17 @@ "types": [ { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" }, { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } @@ -6069,7 +6069,7 @@ } }, { - "id": 7668, + "id": 8035, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -6102,7 +6102,7 @@ } }, { - "id": 7669, + "id": 8036, "name": "payment_collection_id", "variant": "declaration", "kind": 1024, @@ -6135,7 +6135,7 @@ } }, { - "id": 7670, + "id": 8037, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -6166,7 +6166,7 @@ }, { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -6180,7 +6180,7 @@ } }, { - "id": 7671, + "id": 8038, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6197,7 +6197,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -6209,7 +6209,7 @@ } }, { - "id": 7672, + "id": 8039, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6226,7 +6226,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -6238,7 +6238,7 @@ } }, { - "id": 7673, + "id": 8040, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -6255,7 +6255,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -6271,28 +6271,28 @@ { "title": "Properties", "children": [ - 7674, - 7675, - 7665, - 7666, - 7667, - 7668, - 7669, - 7670, - 7671, - 7672, - 7673 + 8041, + 8042, + 8032, + 8033, + 8034, + 8035, + 8036, + 8037, + 8038, + 8039, + 8040 ] } ], "extendedTypes": [ { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7620, + "target": 7987, "name": "PaymentSessionDTO", "package": "@medusajs/types" } @@ -6303,7 +6303,7 @@ ] }, { - "id": 7712, + "id": 8079, "name": "FilterableCaptureProps", "variant": "declaration", "kind": 256, @@ -6318,7 +6318,7 @@ }, "children": [ { - "id": 7720, + "id": 8087, "name": "$and", "variant": "declaration", "kind": 1024, @@ -6341,17 +6341,17 @@ "types": [ { "type": "reference", - "target": 7722, + "target": 8089, "name": "CaptureDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7722, + "target": 8089, "name": "CaptureDTO", "package": "@medusajs/types" } @@ -6364,12 +6364,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 7793, + "target": 8160, "name": "BaseFilterable.$and" } }, { - "id": 7721, + "id": 8088, "name": "$or", "variant": "declaration", "kind": 1024, @@ -6392,17 +6392,17 @@ "types": [ { "type": "reference", - "target": 7722, + "target": 8089, "name": "CaptureDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7722, + "target": 8089, "name": "CaptureDTO", "package": "@medusajs/types" } @@ -6415,12 +6415,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 7794, + "target": 8161, "name": "BaseFilterable.$or" } }, { - "id": 7713, + "id": 8080, "name": "id", "variant": "declaration", "kind": 1024, @@ -6453,7 +6453,7 @@ } }, { - "id": 7714, + "id": 8081, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -6486,7 +6486,7 @@ } }, { - "id": 7715, + "id": 8082, "name": "amount", "variant": "declaration", "kind": 1024, @@ -6506,17 +6506,17 @@ "types": [ { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" }, { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } @@ -6528,7 +6528,7 @@ } }, { - "id": 7716, + "id": 8083, "name": "payment_id", "variant": "declaration", "kind": 1024, @@ -6561,7 +6561,7 @@ } }, { - "id": 7717, + "id": 8084, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6578,7 +6578,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -6590,7 +6590,7 @@ } }, { - "id": 7718, + "id": 8085, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6607,7 +6607,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -6619,7 +6619,7 @@ } }, { - "id": 7719, + "id": 8086, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -6636,7 +6636,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -6652,26 +6652,26 @@ { "title": "Properties", "children": [ - 7720, - 7721, - 7713, - 7714, - 7715, - 7716, - 7717, - 7718, - 7719 + 8087, + 8088, + 8080, + 8081, + 8082, + 8083, + 8084, + 8085, + 8086 ] } ], "extendedTypes": [ { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7722, + "target": 8089, "name": "CaptureDTO", "package": "@medusajs/types" } @@ -6682,7 +6682,7 @@ ] }, { - "id": 7728, + "id": 8095, "name": "FilterableRefundProps", "variant": "declaration", "kind": 256, @@ -6697,7 +6697,7 @@ }, "children": [ { - "id": 7736, + "id": 8103, "name": "$and", "variant": "declaration", "kind": 1024, @@ -6720,17 +6720,17 @@ "types": [ { "type": "reference", - "target": 7738, + "target": 8105, "name": "RefundDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7738, + "target": 8105, "name": "RefundDTO", "package": "@medusajs/types" } @@ -6743,12 +6743,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 7793, + "target": 8160, "name": "BaseFilterable.$and" } }, { - "id": 7737, + "id": 8104, "name": "$or", "variant": "declaration", "kind": 1024, @@ -6771,17 +6771,17 @@ "types": [ { "type": "reference", - "target": 7738, + "target": 8105, "name": "RefundDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7738, + "target": 8105, "name": "RefundDTO", "package": "@medusajs/types" } @@ -6794,12 +6794,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 7794, + "target": 8161, "name": "BaseFilterable.$or" } }, { - "id": 7729, + "id": 8096, "name": "id", "variant": "declaration", "kind": 1024, @@ -6832,7 +6832,7 @@ } }, { - "id": 7730, + "id": 8097, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -6865,7 +6865,7 @@ } }, { - "id": 7731, + "id": 8098, "name": "amount", "variant": "declaration", "kind": 1024, @@ -6885,17 +6885,17 @@ "types": [ { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" }, { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } @@ -6907,7 +6907,7 @@ } }, { - "id": 7732, + "id": 8099, "name": "payment_id", "variant": "declaration", "kind": 1024, @@ -6940,7 +6940,7 @@ } }, { - "id": 7733, + "id": 8100, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6957,7 +6957,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -6969,7 +6969,7 @@ } }, { - "id": 7734, + "id": 8101, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6986,7 +6986,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -6998,7 +6998,7 @@ } }, { - "id": 7735, + "id": 8102, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -7015,7 +7015,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -7031,26 +7031,26 @@ { "title": "Properties", "children": [ - 7736, - 7737, - 7729, - 7730, - 7731, - 7732, - 7733, - 7734, - 7735 + 8103, + 8104, + 8096, + 8097, + 8098, + 8099, + 8100, + 8101, + 8102 ] } ], "extendedTypes": [ { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7738, + "target": 8105, "name": "RefundDTO", "package": "@medusajs/types" } @@ -7061,14 +7061,14 @@ ] }, { - "id": 7643, + "id": 8010, "name": "PaymentDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 7644, + "id": 8011, "name": "id", "variant": "declaration", "kind": 1024, @@ -7087,7 +7087,7 @@ } }, { - "id": 7645, + "id": 8012, "name": "amount", "variant": "declaration", "kind": 1024, @@ -7102,13 +7102,13 @@ }, "type": { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 7646, + "id": 8013, "name": "authorized_amount", "variant": "declaration", "kind": 1024, @@ -7125,13 +7125,13 @@ }, "type": { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 7647, + "id": 8014, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -7150,7 +7150,7 @@ } }, { - "id": 7648, + "id": 8015, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -7169,7 +7169,7 @@ } }, { - "id": 7649, + "id": 8016, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -7190,7 +7190,7 @@ } }, { - "id": 7650, + "id": 8017, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -7211,7 +7211,7 @@ } }, { - "id": 7651, + "id": 8018, "name": "order_edit_id", "variant": "declaration", "kind": 1024, @@ -7232,7 +7232,7 @@ } }, { - "id": 7652, + "id": 8019, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -7253,7 +7253,7 @@ } }, { - "id": 7653, + "id": 8020, "name": "data", "variant": "declaration", "kind": 1024, @@ -7289,7 +7289,7 @@ } }, { - "id": 7654, + "id": 8021, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -7324,7 +7324,7 @@ } }, { - "id": 7655, + "id": 8022, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -7359,7 +7359,7 @@ } }, { - "id": 7656, + "id": 8023, "name": "captured_at", "variant": "declaration", "kind": 1024, @@ -7394,7 +7394,7 @@ } }, { - "id": 7657, + "id": 8024, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -7429,7 +7429,7 @@ } }, { - "id": 7658, + "id": 8025, "name": "captured_amount", "variant": "declaration", "kind": 1024, @@ -7446,13 +7446,13 @@ }, "type": { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 7659, + "id": 8026, "name": "refunded_amount", "variant": "declaration", "kind": 1024, @@ -7469,13 +7469,13 @@ }, "type": { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 7660, + "id": 8027, "name": "captures", "variant": "declaration", "kind": 1024, @@ -7497,14 +7497,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 7722, + "target": 8089, "name": "CaptureDTO", "package": "@medusajs/types" } } }, { - "id": 7661, + "id": 8028, "name": "refunds", "variant": "declaration", "kind": 1024, @@ -7526,14 +7526,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 7738, + "target": 8105, "name": "RefundDTO", "package": "@medusajs/types" } } }, { - "id": 7662, + "id": 8029, "name": "payment_collection", "variant": "declaration", "kind": 1024, @@ -7553,13 +7553,13 @@ }, "type": { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } }, { - "id": 7663, + "id": 8030, "name": "payment_session", "variant": "declaration", "kind": 1024, @@ -7579,7 +7579,7 @@ }, "type": { "type": "reference", - "target": 7620, + "target": 7987, "name": "PaymentSessionDTO", "package": "@medusajs/types" } @@ -7589,32 +7589,32 @@ { "title": "Properties", "children": [ - 7644, - 7645, - 7646, - 7647, - 7648, - 7649, - 7650, - 7651, - 7652, - 7653, - 7654, - 7655, - 7656, - 7657, - 7658, - 7659, - 7660, - 7661, - 7662, - 7663 + 8011, + 8012, + 8013, + 8014, + 8015, + 8016, + 8017, + 8018, + 8019, + 8020, + 8021, + 8022, + 8023, + 8024, + 8025, + 8026, + 8027, + 8028, + 8029, + 8030 ] } ] }, { - "id": 7676, + "id": 8043, "name": "FilterablePaymentProps", "variant": "declaration", "kind": 256, @@ -7629,7 +7629,7 @@ }, "children": [ { - "id": 7688, + "id": 8055, "name": "$and", "variant": "declaration", "kind": 1024, @@ -7652,17 +7652,17 @@ "types": [ { "type": "reference", - "target": 7676, + "target": 8043, "name": "FilterablePaymentProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7676, + "target": 8043, "name": "FilterablePaymentProps", "package": "@medusajs/types" } @@ -7675,12 +7675,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 7793, + "target": 8160, "name": "BaseFilterable.$and" } }, { - "id": 7689, + "id": 8056, "name": "$or", "variant": "declaration", "kind": 1024, @@ -7703,17 +7703,17 @@ "types": [ { "type": "reference", - "target": 7676, + "target": 8043, "name": "FilterablePaymentProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7676, + "target": 8043, "name": "FilterablePaymentProps", "package": "@medusajs/types" } @@ -7726,12 +7726,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 7794, + "target": 8161, "name": "BaseFilterable.$or" } }, { - "id": 7677, + "id": 8044, "name": "q", "variant": "declaration", "kind": 1024, @@ -7752,7 +7752,7 @@ } }, { - "id": 7678, + "id": 8045, "name": "id", "variant": "declaration", "kind": 1024, @@ -7785,7 +7785,7 @@ } }, { - "id": 7679, + "id": 8046, "name": "payment_session_id", "variant": "declaration", "kind": 1024, @@ -7816,7 +7816,7 @@ }, { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -7830,7 +7830,7 @@ } }, { - "id": 7680, + "id": 8047, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -7861,7 +7861,7 @@ }, { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -7875,7 +7875,7 @@ } }, { - "id": 7681, + "id": 8048, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -7906,7 +7906,7 @@ }, { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -7920,7 +7920,7 @@ } }, { - "id": 7682, + "id": 8049, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -7951,7 +7951,7 @@ }, { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -7965,7 +7965,7 @@ } }, { - "id": 7683, + "id": 8050, "name": "order_edit_id", "variant": "declaration", "kind": 1024, @@ -7996,7 +7996,7 @@ }, { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -8010,7 +8010,7 @@ } }, { - "id": 7684, + "id": 8051, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -8027,7 +8027,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -8039,7 +8039,7 @@ } }, { - "id": 7685, + "id": 8052, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -8056,7 +8056,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -8068,7 +8068,7 @@ } }, { - "id": 7686, + "id": 8053, "name": "captured_at", "variant": "declaration", "kind": 1024, @@ -8085,7 +8085,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -8097,7 +8097,7 @@ } }, { - "id": 7687, + "id": 8054, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -8114,7 +8114,7 @@ }, "type": { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "intrinsic", @@ -8130,30 +8130,30 @@ { "title": "Properties", "children": [ - 7688, - 7689, - 7677, - 7678, - 7679, - 7680, - 7681, - 7682, - 7683, - 7684, - 7685, - 7686, - 7687 + 8055, + 8056, + 8044, + 8045, + 8046, + 8047, + 8048, + 8049, + 8050, + 8051, + 8052, + 8053, + 8054 ] } ], "extendedTypes": [ { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7676, + "target": 8043, "name": "FilterablePaymentProps", "package": "@medusajs/types" } @@ -8164,7 +8164,7 @@ ] }, { - "id": 7722, + "id": 8089, "name": "CaptureDTO", "variant": "declaration", "kind": 256, @@ -8179,7 +8179,7 @@ }, "children": [ { - "id": 7723, + "id": 8090, "name": "id", "variant": "declaration", "kind": 1024, @@ -8198,7 +8198,7 @@ } }, { - "id": 7724, + "id": 8091, "name": "amount", "variant": "declaration", "kind": 1024, @@ -8213,13 +8213,13 @@ }, "type": { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 7725, + "id": 8092, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -8243,7 +8243,7 @@ } }, { - "id": 7726, + "id": 8093, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -8264,7 +8264,7 @@ } }, { - "id": 7727, + "id": 8094, "name": "payment", "variant": "declaration", "kind": 1024, @@ -8279,7 +8279,7 @@ }, "type": { "type": "reference", - "target": 7643, + "target": 8010, "name": "PaymentDTO", "package": "@medusajs/types" } @@ -8289,17 +8289,17 @@ { "title": "Properties", "children": [ - 7723, - 7724, - 7725, - 7726, - 7727 + 8090, + 8091, + 8092, + 8093, + 8094 ] } ] }, { - "id": 7738, + "id": 8105, "name": "RefundDTO", "variant": "declaration", "kind": 256, @@ -8314,7 +8314,7 @@ }, "children": [ { - "id": 7739, + "id": 8106, "name": "id", "variant": "declaration", "kind": 1024, @@ -8333,7 +8333,7 @@ } }, { - "id": 7740, + "id": 8107, "name": "amount", "variant": "declaration", "kind": 1024, @@ -8348,13 +8348,13 @@ }, "type": { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 7741, + "id": 8108, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -8378,7 +8378,7 @@ } }, { - "id": 7742, + "id": 8109, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -8399,7 +8399,7 @@ } }, { - "id": 7743, + "id": 8110, "name": "payment", "variant": "declaration", "kind": 1024, @@ -8414,7 +8414,7 @@ }, "type": { "type": "reference", - "target": 7643, + "target": 8010, "name": "PaymentDTO", "package": "@medusajs/types" } @@ -8424,17 +8424,17 @@ { "title": "Properties", "children": [ - 7739, - 7740, - 7741, - 7742, - 7743 + 8106, + 8107, + 8108, + 8109, + 8110 ] } ] }, { - "id": 7620, + "id": 7987, "name": "PaymentSessionDTO", "variant": "declaration", "kind": 256, @@ -8449,7 +8449,7 @@ }, "children": [ { - "id": 7621, + "id": 7988, "name": "id", "variant": "declaration", "kind": 1024, @@ -8468,7 +8468,7 @@ } }, { - "id": 7622, + "id": 7989, "name": "amount", "variant": "declaration", "kind": 1024, @@ -8483,13 +8483,13 @@ }, "type": { "type": "reference", - "target": 7790, + "target": 8157, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 7623, + "id": 7990, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -8508,7 +8508,7 @@ } }, { - "id": 7624, + "id": 7991, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -8527,7 +8527,7 @@ } }, { - "id": 7625, + "id": 7992, "name": "data", "variant": "declaration", "kind": 1024, @@ -8561,7 +8561,7 @@ } }, { - "id": 7626, + "id": 7993, "name": "context", "variant": "declaration", "kind": 1024, @@ -8597,7 +8597,7 @@ } }, { - "id": 7627, + "id": 7994, "name": "status", "variant": "declaration", "kind": 1024, @@ -8612,13 +8612,13 @@ }, "type": { "type": "reference", - "target": 7818, + "target": 8185, "name": "PaymentSessionStatus", "package": "@medusajs/types" } }, { - "id": 7628, + "id": 7995, "name": "authorized_at", "variant": "declaration", "kind": 1024, @@ -8644,7 +8644,7 @@ } }, { - "id": 7629, + "id": 7996, "name": "payment_collection", "variant": "declaration", "kind": 1024, @@ -8664,13 +8664,13 @@ }, "type": { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } }, { - "id": 7630, + "id": 7997, "name": "payment", "variant": "declaration", "kind": 1024, @@ -8690,7 +8690,7 @@ }, "type": { "type": "reference", - "target": 7643, + "target": 8010, "name": "PaymentDTO", "package": "@medusajs/types" } @@ -8700,22 +8700,22 @@ { "title": "Properties", "children": [ - 7621, - 7622, - 7623, - 7624, - 7625, - 7626, - 7627, - 7628, - 7629, - 7630 + 7988, + 7989, + 7990, + 7991, + 7992, + 7993, + 7994, + 7995, + 7996, + 7997 ] } ] }, { - "id": 7709, + "id": 8076, "name": "PaymentProviderDTO", "variant": "declaration", "kind": 256, @@ -8730,7 +8730,7 @@ }, "children": [ { - "id": 7710, + "id": 8077, "name": "id", "variant": "declaration", "kind": 1024, @@ -8749,7 +8749,7 @@ } }, { - "id": 7711, + "id": 8078, "name": "is_enabled", "variant": "declaration", "kind": 1024, @@ -8772,14 +8772,14 @@ { "title": "Properties", "children": [ - 7710, - 7711 + 8077, + 8078 ] } ] }, { - "id": 7704, + "id": 8071, "name": "FilterablePaymentProviderProps", "variant": "declaration", "kind": 256, @@ -8794,7 +8794,7 @@ }, "children": [ { - "id": 7707, + "id": 8074, "name": "$and", "variant": "declaration", "kind": 1024, @@ -8817,17 +8817,17 @@ "types": [ { "type": "reference", - "target": 7709, + "target": 8076, "name": "PaymentProviderDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7709, + "target": 8076, "name": "PaymentProviderDTO", "package": "@medusajs/types" } @@ -8840,12 +8840,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 7793, + "target": 8160, "name": "BaseFilterable.$and" } }, { - "id": 7708, + "id": 8075, "name": "$or", "variant": "declaration", "kind": 1024, @@ -8868,17 +8868,17 @@ "types": [ { "type": "reference", - "target": 7709, + "target": 8076, "name": "PaymentProviderDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7709, + "target": 8076, "name": "PaymentProviderDTO", "package": "@medusajs/types" } @@ -8891,12 +8891,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 7794, + "target": 8161, "name": "BaseFilterable.$or" } }, { - "id": 7705, + "id": 8072, "name": "id", "variant": "declaration", "kind": 1024, @@ -8927,7 +8927,7 @@ }, { "type": "reference", - "target": 7796, + "target": 8163, "typeArguments": [ { "type": "union", @@ -8953,7 +8953,7 @@ } }, { - "id": 7706, + "id": 8073, "name": "is_enabled", "variant": "declaration", "kind": 1024, @@ -8978,21 +8978,21 @@ { "title": "Properties", "children": [ - 7707, - 7708, - 7705, - 7706 + 8074, + 8075, + 8072, + 8073 ] } ], "extendedTypes": [ { "type": "reference", - "target": 7792, + "target": 8159, "typeArguments": [ { "type": "reference", - "target": 7709, + "target": 8076, "name": "PaymentProviderDTO", "package": "@medusajs/types" } @@ -9003,7 +9003,7 @@ ] }, { - "id": 7556, + "id": 7923, "name": "CreatePaymentCollectionDTO", "variant": "declaration", "kind": 256, @@ -9018,7 +9018,7 @@ }, "children": [ { - "id": 7557, + "id": 7924, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -9037,7 +9037,7 @@ } }, { - "id": 7558, + "id": 7925, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -9056,7 +9056,7 @@ } }, { - "id": 7559, + "id": 7926, "name": "amount", "variant": "declaration", "kind": 1024, @@ -9071,13 +9071,13 @@ }, "type": { "type": "reference", - "target": 7775, + "target": 8142, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 7560, + "id": 7927, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -9117,16 +9117,16 @@ { "title": "Properties", "children": [ - 7557, - 7558, - 7559, - 7560 + 7924, + 7925, + 7926, + 7927 ] } ] }, { - "id": 7614, + "id": 7981, "name": "UpsertPaymentCollectionDTO", "variant": "declaration", "kind": 256, @@ -9141,7 +9141,7 @@ }, "children": [ { - "id": 7615, + "id": 7982, "name": "id", "variant": "declaration", "kind": 1024, @@ -9162,7 +9162,7 @@ } }, { - "id": 7616, + "id": 7983, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -9183,7 +9183,7 @@ } }, { - "id": 7617, + "id": 7984, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -9204,7 +9204,7 @@ } }, { - "id": 7618, + "id": 7985, "name": "amount", "variant": "declaration", "kind": 1024, @@ -9221,13 +9221,13 @@ }, "type": { "type": "reference", - "target": 7775, + "target": 8142, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 7619, + "id": 7986, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -9267,17 +9267,17 @@ { "title": "Properties", "children": [ - 7615, - 7616, - 7617, - 7618, - 7619 + 7982, + 7983, + 7984, + 7985, + 7986 ] } ] }, { - "id": 7609, + "id": 7976, "name": "PaymentCollectionUpdatableFields", "variant": "declaration", "kind": 256, @@ -9292,7 +9292,7 @@ }, "children": [ { - "id": 7610, + "id": 7977, "name": "region_id", "variant": "declaration", "kind": 1024, @@ -9313,7 +9313,7 @@ } }, { - "id": 7611, + "id": 7978, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -9334,7 +9334,7 @@ } }, { - "id": 7612, + "id": 7979, "name": "amount", "variant": "declaration", "kind": 1024, @@ -9351,13 +9351,13 @@ }, "type": { "type": "reference", - "target": 7775, + "target": 8142, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 7613, + "id": 7980, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -9397,16 +9397,16 @@ { "title": "Properties", "children": [ - 7610, - 7611, - 7612, - 7613 + 7977, + 7978, + 7979, + 7980 ] } ] }, { - "id": 7690, + "id": 8057, "name": "UpdatePaymentDTO", "variant": "declaration", "kind": 256, @@ -9421,7 +9421,7 @@ }, "children": [ { - "id": 7691, + "id": 8058, "name": "id", "variant": "declaration", "kind": 1024, @@ -9440,7 +9440,7 @@ } }, { - "id": 7692, + "id": 8059, "name": "cart_id", "variant": "declaration", "kind": 1024, @@ -9461,7 +9461,7 @@ } }, { - "id": 7693, + "id": 8060, "name": "order_id", "variant": "declaration", "kind": 1024, @@ -9482,7 +9482,7 @@ } }, { - "id": 7694, + "id": 8061, "name": "order_edit_id", "variant": "declaration", "kind": 1024, @@ -9503,7 +9503,7 @@ } }, { - "id": 7695, + "id": 8062, "name": "customer_id", "variant": "declaration", "kind": 1024, @@ -9528,17 +9528,17 @@ { "title": "Properties", "children": [ - 7691, - 7692, - 7693, - 7694, - 7695 + 8058, + 8059, + 8060, + 8061, + 8062 ] } ] }, { - "id": 7696, + "id": 8063, "name": "CreateCaptureDTO", "variant": "declaration", "kind": 256, @@ -9553,7 +9553,7 @@ }, "children": [ { - "id": 7697, + "id": 8064, "name": "amount", "variant": "declaration", "kind": 1024, @@ -9570,13 +9570,13 @@ }, "type": { "type": "reference", - "target": 7775, + "target": 8142, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 7698, + "id": 8065, "name": "payment_id", "variant": "declaration", "kind": 1024, @@ -9595,7 +9595,7 @@ } }, { - "id": 7699, + "id": 8066, "name": "captured_by", "variant": "declaration", "kind": 1024, @@ -9620,15 +9620,15 @@ { "title": "Properties", "children": [ - 7697, - 7698, - 7699 + 8064, + 8065, + 8066 ] } ] }, { - "id": 7700, + "id": 8067, "name": "CreateRefundDTO", "variant": "declaration", "kind": 256, @@ -9643,7 +9643,7 @@ }, "children": [ { - "id": 7701, + "id": 8068, "name": "amount", "variant": "declaration", "kind": 1024, @@ -9660,13 +9660,13 @@ }, "type": { "type": "reference", - "target": 7775, + "target": 8142, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 7702, + "id": 8069, "name": "payment_id", "variant": "declaration", "kind": 1024, @@ -9685,7 +9685,7 @@ } }, { - "id": 7703, + "id": 8070, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -9710,15 +9710,15 @@ { "title": "Properties", "children": [ - 7701, - 7702, - 7703 + 8068, + 8069, + 8070 ] } ] }, { - "id": 7631, + "id": 7998, "name": "CreatePaymentSessionDTO", "variant": "declaration", "kind": 256, @@ -9733,7 +9733,7 @@ }, "children": [ { - "id": 7632, + "id": 7999, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -9752,7 +9752,7 @@ } }, { - "id": 7633, + "id": 8000, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -9771,7 +9771,7 @@ } }, { - "id": 7634, + "id": 8001, "name": "amount", "variant": "declaration", "kind": 1024, @@ -9786,13 +9786,13 @@ }, "type": { "type": "reference", - "target": 7775, + "target": 8142, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 7635, + "id": 8002, "name": "data", "variant": "declaration", "kind": 1024, @@ -9826,7 +9826,7 @@ } }, { - "id": 7636, + "id": 8003, "name": "context", "variant": "declaration", "kind": 1024, @@ -9843,7 +9843,7 @@ }, "type": { "type": "reference", - "target": 7819, + "target": 8186, "name": "PaymentProviderContext", "package": "@medusajs/types" } @@ -9853,17 +9853,17 @@ { "title": "Properties", "children": [ - 7632, - 7633, - 7634, - 7635, - 7636 + 7999, + 8000, + 8001, + 8002, + 8003 ] } ] }, { - "id": 7637, + "id": 8004, "name": "UpdatePaymentSessionDTO", "variant": "declaration", "kind": 256, @@ -9878,7 +9878,7 @@ }, "children": [ { - "id": 7638, + "id": 8005, "name": "id", "variant": "declaration", "kind": 1024, @@ -9897,7 +9897,7 @@ } }, { - "id": 7639, + "id": 8006, "name": "data", "variant": "declaration", "kind": 1024, @@ -9931,7 +9931,7 @@ } }, { - "id": 7640, + "id": 8007, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -9950,7 +9950,7 @@ } }, { - "id": 7641, + "id": 8008, "name": "amount", "variant": "declaration", "kind": 1024, @@ -9965,13 +9965,13 @@ }, "type": { "type": "reference", - "target": 7775, + "target": 8142, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 7642, + "id": 8009, "name": "context", "variant": "declaration", "kind": 1024, @@ -9988,7 +9988,7 @@ }, "type": { "type": "reference", - "target": 7819, + "target": 8186, "name": "PaymentProviderContext", "package": "@medusajs/types" } @@ -9998,17 +9998,17 @@ { "title": "Properties", "children": [ - 7638, - 7639, - 7640, - 7641, - 7642 + 8005, + 8006, + 8007, + 8008, + 8009 ] } ] }, { - "id": 7744, + "id": 8111, "name": "ProviderWebhookPayload", "variant": "declaration", "kind": 256, @@ -10023,7 +10023,7 @@ }, "children": [ { - "id": 7745, + "id": 8112, "name": "provider", "variant": "declaration", "kind": 1024, @@ -10042,7 +10042,7 @@ } }, { - "id": 7746, + "id": 8113, "name": "payload", "variant": "declaration", "kind": 1024, @@ -10058,14 +10058,14 @@ "type": { "type": "reflection", "declaration": { - "id": 7747, + "id": 8114, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7748, + "id": 8115, "name": "data", "variant": "declaration", "kind": 1024, @@ -10099,7 +10099,7 @@ } }, { - "id": 7749, + "id": 8116, "name": "rawData", "variant": "declaration", "kind": 1024, @@ -10133,7 +10133,7 @@ } }, { - "id": 7750, + "id": 8117, "name": "headers", "variant": "declaration", "kind": 1024, @@ -10171,9 +10171,9 @@ { "title": "Properties", "children": [ - 7748, - 7749, - 7750 + 8115, + 8116, + 8117 ] } ] @@ -10185,14 +10185,14 @@ { "title": "Properties", "children": [ - 7745, - 7746 + 8112, + 8113 ] } ] }, { - "id": 7819, + "id": 8186, "name": "PaymentProviderContext", "variant": "declaration", "kind": 256, @@ -10207,7 +10207,7 @@ }, "children": [ { - "id": 7820, + "id": 8187, "name": "billing_address", "variant": "declaration", "kind": 1024, @@ -10231,7 +10231,7 @@ "typeArguments": [ { "type": "reference", - "target": 7877, + "target": 8244, "name": "AddressDTO", "package": "@medusajs/types" } @@ -10241,7 +10241,7 @@ } }, { - "id": 7821, + "id": 8188, "name": "email", "variant": "declaration", "kind": 1024, @@ -10262,7 +10262,7 @@ } }, { - "id": 7822, + "id": 8189, "name": "resource_id", "variant": "declaration", "kind": 1024, @@ -10283,7 +10283,7 @@ } }, { - "id": 7823, + "id": 8190, "name": "customer", "variant": "declaration", "kind": 1024, @@ -10307,7 +10307,7 @@ "typeArguments": [ { "type": "reference", - "target": 7892, + "target": 8259, "name": "CustomerDTO", "package": "@medusajs/types" } @@ -10317,7 +10317,7 @@ } }, { - "id": 7824, + "id": 8191, "name": "extra", "variant": "declaration", "kind": 1024, @@ -10357,17 +10357,17 @@ { "title": "Properties", "children": [ - 7820, - 7821, - 7822, - 7823, - 7824 + 8187, + 8188, + 8189, + 8190, + 8191 ] } ] }, { - "id": 7401, + "id": 7768, "name": "IPaymentModuleService", "variant": "declaration", "kind": 256, @@ -10382,14 +10382,14 @@ }, "children": [ { - "id": 7402, + "id": 7769, "name": "createPaymentCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7403, + "id": 7770, "name": "createPaymentCollections", "variant": "signature", "kind": 4096, @@ -10424,7 +10424,7 @@ }, "parameters": [ { - "id": 7404, + "id": 7771, "name": "data", "variant": "param", "kind": 32768, @@ -10441,14 +10441,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 7556, + "target": 7923, "name": "CreatePaymentCollectionDTO", "package": "@medusajs/types" } } }, { - "id": 7405, + "id": 7772, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10465,7 +10465,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -10482,7 +10482,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -10493,7 +10493,7 @@ } }, { - "id": 7406, + "id": 7773, "name": "createPaymentCollections", "variant": "signature", "kind": 4096, @@ -10528,7 +10528,7 @@ }, "parameters": [ { - "id": 7407, + "id": 7774, "name": "data", "variant": "param", "kind": 32768, @@ -10543,13 +10543,13 @@ }, "type": { "type": "reference", - "target": 7556, + "target": 7923, "name": "CreatePaymentCollectionDTO", "package": "@medusajs/types" } }, { - "id": 7408, + "id": 7775, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10566,7 +10566,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -10581,7 +10581,7 @@ "typeArguments": [ { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -10593,14 +10593,14 @@ ] }, { - "id": 7409, + "id": 7776, "name": "retrievePaymentCollection", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7410, + "id": 7777, "name": "retrievePaymentCollection", "variant": "signature", "kind": 4096, @@ -10647,7 +10647,7 @@ }, "parameters": [ { - "id": 7411, + "id": 7778, "name": "paymentCollectionId", "variant": "param", "kind": 32768, @@ -10666,7 +10666,7 @@ } }, { - "id": 7412, + "id": 7779, "name": "config", "variant": "param", "kind": 32768, @@ -10699,11 +10699,11 @@ }, "type": { "type": "reference", - "target": 7589, + "target": 7956, "typeArguments": [ { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -10713,7 +10713,7 @@ } }, { - "id": 7413, + "id": 7780, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10730,7 +10730,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -10745,7 +10745,7 @@ "typeArguments": [ { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -10757,14 +10757,14 @@ ] }, { - "id": 7414, + "id": 7781, "name": "listPaymentCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7415, + "id": 7782, "name": "listPaymentCollections", "variant": "signature", "kind": 4096, @@ -10851,7 +10851,7 @@ }, "parameters": [ { - "id": 7416, + "id": 7783, "name": "filters", "variant": "param", "kind": 32768, @@ -10868,13 +10868,13 @@ }, "type": { "type": "reference", - "target": 7602, + "target": 7969, "name": "FilterablePaymentCollectionProps", "package": "@medusajs/types" } }, { - "id": 7417, + "id": 7784, "name": "config", "variant": "param", "kind": 32768, @@ -10907,11 +10907,11 @@ }, "type": { "type": "reference", - "target": 7589, + "target": 7956, "typeArguments": [ { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -10921,7 +10921,7 @@ } }, { - "id": 7418, + "id": 7785, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10938,7 +10938,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -10955,7 +10955,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -10968,14 +10968,14 @@ ] }, { - "id": 7419, + "id": 7786, "name": "listAndCountPaymentCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7420, + "id": 7787, "name": "listAndCountPaymentCollections", "variant": "signature", "kind": 4096, @@ -11062,7 +11062,7 @@ }, "parameters": [ { - "id": 7421, + "id": 7788, "name": "filters", "variant": "param", "kind": 32768, @@ -11079,13 +11079,13 @@ }, "type": { "type": "reference", - "target": 7602, + "target": 7969, "name": "FilterablePaymentCollectionProps", "package": "@medusajs/types" } }, { - "id": 7422, + "id": 7789, "name": "config", "variant": "param", "kind": 32768, @@ -11118,11 +11118,11 @@ }, "type": { "type": "reference", - "target": 7589, + "target": 7956, "typeArguments": [ { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -11132,7 +11132,7 @@ } }, { - "id": 7423, + "id": 7790, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11149,7 +11149,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -11169,7 +11169,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -11188,14 +11188,14 @@ ] }, { - "id": 7424, + "id": 7791, "name": "updatePaymentCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7425, + "id": 7792, "name": "updatePaymentCollections", "variant": "signature", "kind": 4096, @@ -11230,7 +11230,7 @@ }, "parameters": [ { - "id": 7426, + "id": 7793, "name": "paymentCollectionId", "variant": "param", "kind": 32768, @@ -11249,7 +11249,7 @@ } }, { - "id": 7427, + "id": 7794, "name": "data", "variant": "param", "kind": 32768, @@ -11264,13 +11264,13 @@ }, "type": { "type": "reference", - "target": 7609, + "target": 7976, "name": "PaymentCollectionUpdatableFields", "package": "@medusajs/types" } }, { - "id": 7428, + "id": 7795, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11287,7 +11287,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -11302,7 +11302,7 @@ "typeArguments": [ { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -11312,7 +11312,7 @@ } }, { - "id": 7429, + "id": 7796, "name": "updatePaymentCollections", "variant": "signature", "kind": 4096, @@ -11347,7 +11347,7 @@ }, "parameters": [ { - "id": 7430, + "id": 7797, "name": "selector", "variant": "param", "kind": 32768, @@ -11362,13 +11362,13 @@ }, "type": { "type": "reference", - "target": 7602, + "target": 7969, "name": "FilterablePaymentCollectionProps", "package": "@medusajs/types" } }, { - "id": 7431, + "id": 7798, "name": "data", "variant": "param", "kind": 32768, @@ -11383,13 +11383,13 @@ }, "type": { "type": "reference", - "target": 7609, + "target": 7976, "name": "PaymentCollectionUpdatableFields", "package": "@medusajs/types" } }, { - "id": 7432, + "id": 7799, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11406,7 +11406,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -11423,7 +11423,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -11436,14 +11436,14 @@ ] }, { - "id": 7433, + "id": 7800, "name": "upsertPaymentCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7434, + "id": 7801, "name": "upsertPaymentCollections", "variant": "signature", "kind": 4096, @@ -11478,7 +11478,7 @@ }, "parameters": [ { - "id": 7435, + "id": 7802, "name": "data", "variant": "param", "kind": 32768, @@ -11503,14 +11503,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 7614, + "target": 7981, "name": "UpsertPaymentCollectionDTO", "package": "@medusajs/types" } } }, { - "id": 7436, + "id": 7803, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11527,7 +11527,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -11544,7 +11544,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -11555,7 +11555,7 @@ } }, { - "id": 7437, + "id": 7804, "name": "upsertPaymentCollections", "variant": "signature", "kind": 4096, @@ -11590,7 +11590,7 @@ }, "parameters": [ { - "id": 7438, + "id": 7805, "name": "data", "variant": "param", "kind": 32768, @@ -11613,13 +11613,13 @@ }, "type": { "type": "reference", - "target": 7614, + "target": 7981, "name": "UpsertPaymentCollectionDTO", "package": "@medusajs/types" } }, { - "id": 7439, + "id": 7806, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11636,7 +11636,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -11651,7 +11651,7 @@ "typeArguments": [ { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -11663,14 +11663,14 @@ ] }, { - "id": 7440, + "id": 7807, "name": "deletePaymentCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7441, + "id": 7808, "name": "deletePaymentCollections", "variant": "signature", "kind": 4096, @@ -11705,7 +11705,7 @@ }, "parameters": [ { - "id": 7442, + "id": 7809, "name": "paymentCollectionId", "variant": "param", "kind": 32768, @@ -11727,7 +11727,7 @@ } }, { - "id": 7443, + "id": 7810, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11744,7 +11744,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -11767,7 +11767,7 @@ } }, { - "id": 7444, + "id": 7811, "name": "deletePaymentCollections", "variant": "signature", "kind": 4096, @@ -11802,7 +11802,7 @@ }, "parameters": [ { - "id": 7445, + "id": 7812, "name": "paymentCollectionId", "variant": "param", "kind": 32768, @@ -11821,7 +11821,7 @@ } }, { - "id": 7446, + "id": 7813, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11838,7 +11838,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -11863,14 +11863,14 @@ ] }, { - "id": 7447, + "id": 7814, "name": "completePaymentCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7448, + "id": 7815, "name": "completePaymentCollections", "variant": "signature", "kind": 4096, @@ -11913,7 +11913,7 @@ }, "parameters": [ { - "id": 7449, + "id": 7816, "name": "paymentCollectionId", "variant": "param", "kind": 32768, @@ -11932,7 +11932,7 @@ } }, { - "id": 7450, + "id": 7817, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11949,7 +11949,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -11964,7 +11964,7 @@ "typeArguments": [ { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -11974,7 +11974,7 @@ } }, { - "id": 7451, + "id": 7818, "name": "completePaymentCollections", "variant": "signature", "kind": 4096, @@ -12017,7 +12017,7 @@ }, "parameters": [ { - "id": 7452, + "id": 7819, "name": "paymentCollectionId", "variant": "param", "kind": 32768, @@ -12039,7 +12039,7 @@ } }, { - "id": 7453, + "id": 7820, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12056,7 +12056,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -12073,7 +12073,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7573, + "target": 7940, "name": "PaymentCollectionDTO", "package": "@medusajs/types" } @@ -12086,21 +12086,21 @@ ] }, { - "id": 7454, + "id": 7821, "name": "retrievePaymentSession", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7455, + "id": 7822, "name": "retrievePaymentSession", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 7456, + "id": 7823, "name": "paymentSessionId", "variant": "param", "kind": 32768, @@ -12111,7 +12111,7 @@ } }, { - "id": 7457, + "id": 7824, "name": "config", "variant": "param", "kind": 32768, @@ -12120,11 +12120,11 @@ }, "type": { "type": "reference", - "target": 7589, + "target": 7956, "typeArguments": [ { "type": "reference", - "target": 7620, + "target": 7987, "name": "PaymentSessionDTO", "package": "@medusajs/types" } @@ -12134,7 +12134,7 @@ } }, { - "id": 7458, + "id": 7825, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12143,7 +12143,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -12158,7 +12158,7 @@ "typeArguments": [ { "type": "reference", - "target": 7620, + "target": 7987, "name": "PaymentSessionDTO", "package": "@medusajs/types" } @@ -12170,14 +12170,14 @@ ] }, { - "id": 7459, + "id": 7826, "name": "createPaymentSession", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7460, + "id": 7827, "name": "createPaymentSession", "variant": "signature", "kind": 4096, @@ -12212,7 +12212,7 @@ }, "parameters": [ { - "id": 7461, + "id": 7828, "name": "paymentCollectionId", "variant": "param", "kind": 32768, @@ -12231,7 +12231,7 @@ } }, { - "id": 7462, + "id": 7829, "name": "data", "variant": "param", "kind": 32768, @@ -12246,13 +12246,13 @@ }, "type": { "type": "reference", - "target": 7631, + "target": 7998, "name": "CreatePaymentSessionDTO", "package": "@medusajs/types" } }, { - "id": 7463, + "id": 7830, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12269,7 +12269,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -12284,7 +12284,7 @@ "typeArguments": [ { "type": "reference", - "target": 7620, + "target": 7987, "name": "PaymentSessionDTO", "package": "@medusajs/types" } @@ -12296,14 +12296,14 @@ ] }, { - "id": 7464, + "id": 7831, "name": "updatePaymentSession", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7465, + "id": 7832, "name": "updatePaymentSession", "variant": "signature", "kind": 4096, @@ -12338,7 +12338,7 @@ }, "parameters": [ { - "id": 7466, + "id": 7833, "name": "data", "variant": "param", "kind": 32768, @@ -12353,13 +12353,13 @@ }, "type": { "type": "reference", - "target": 7637, + "target": 8004, "name": "UpdatePaymentSessionDTO", "package": "@medusajs/types" } }, { - "id": 7467, + "id": 7834, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12376,7 +12376,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -12391,7 +12391,7 @@ "typeArguments": [ { "type": "reference", - "target": 7620, + "target": 7987, "name": "PaymentSessionDTO", "package": "@medusajs/types" } @@ -12403,14 +12403,14 @@ ] }, { - "id": 7468, + "id": 7835, "name": "deletePaymentSession", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7469, + "id": 7836, "name": "deletePaymentSession", "variant": "signature", "kind": 4096, @@ -12445,7 +12445,7 @@ }, "parameters": [ { - "id": 7470, + "id": 7837, "name": "id", "variant": "param", "kind": 32768, @@ -12464,7 +12464,7 @@ } }, { - "id": 7471, + "id": 7838, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12481,7 +12481,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -12506,14 +12506,14 @@ ] }, { - "id": 7472, + "id": 7839, "name": "authorizePaymentSession", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7473, + "id": 7840, "name": "authorizePaymentSession", "variant": "signature", "kind": 4096, @@ -12548,7 +12548,7 @@ }, "parameters": [ { - "id": 7474, + "id": 7841, "name": "id", "variant": "param", "kind": 32768, @@ -12567,7 +12567,7 @@ } }, { - "id": 7475, + "id": 7842, "name": "context", "variant": "param", "kind": 32768, @@ -12601,7 +12601,7 @@ } }, { - "id": 7476, + "id": 7843, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12618,7 +12618,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -12633,7 +12633,7 @@ "typeArguments": [ { "type": "reference", - "target": 7643, + "target": 8010, "name": "PaymentDTO", "package": "@medusajs/types" } @@ -12645,14 +12645,14 @@ ] }, { - "id": 7477, + "id": 7844, "name": "listPaymentSessions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7478, + "id": 7845, "name": "listPaymentSessions", "variant": "signature", "kind": 4096, @@ -12739,7 +12739,7 @@ }, "parameters": [ { - "id": 7479, + "id": 7846, "name": "filters", "variant": "param", "kind": 32768, @@ -12756,13 +12756,13 @@ }, "type": { "type": "reference", - "target": 7664, + "target": 8031, "name": "FilterablePaymentSessionProps", "package": "@medusajs/types" } }, { - "id": 7480, + "id": 7847, "name": "config", "variant": "param", "kind": 32768, @@ -12795,11 +12795,11 @@ }, "type": { "type": "reference", - "target": 7589, + "target": 7956, "typeArguments": [ { "type": "reference", - "target": 7620, + "target": 7987, "name": "PaymentSessionDTO", "package": "@medusajs/types" } @@ -12809,7 +12809,7 @@ } }, { - "id": 7481, + "id": 7848, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12826,7 +12826,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -12843,7 +12843,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7620, + "target": 7987, "name": "PaymentSessionDTO", "package": "@medusajs/types" } @@ -12856,14 +12856,14 @@ ] }, { - "id": 7482, + "id": 7849, "name": "listPayments", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7483, + "id": 7850, "name": "listPayments", "variant": "signature", "kind": 4096, @@ -12950,7 +12950,7 @@ }, "parameters": [ { - "id": 7484, + "id": 7851, "name": "filters", "variant": "param", "kind": 32768, @@ -12967,13 +12967,13 @@ }, "type": { "type": "reference", - "target": 7676, + "target": 8043, "name": "FilterablePaymentProps", "package": "@medusajs/types" } }, { - "id": 7485, + "id": 7852, "name": "config", "variant": "param", "kind": 32768, @@ -13006,11 +13006,11 @@ }, "type": { "type": "reference", - "target": 7589, + "target": 7956, "typeArguments": [ { "type": "reference", - "target": 7643, + "target": 8010, "name": "PaymentDTO", "package": "@medusajs/types" } @@ -13020,7 +13020,7 @@ } }, { - "id": 7486, + "id": 7853, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13037,7 +13037,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -13054,7 +13054,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7643, + "target": 8010, "name": "PaymentDTO", "package": "@medusajs/types" } @@ -13067,14 +13067,14 @@ ] }, { - "id": 7487, + "id": 7854, "name": "updatePayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7488, + "id": 7855, "name": "updatePayment", "variant": "signature", "kind": 4096, @@ -13109,7 +13109,7 @@ }, "parameters": [ { - "id": 7489, + "id": 7856, "name": "data", "variant": "param", "kind": 32768, @@ -13124,13 +13124,13 @@ }, "type": { "type": "reference", - "target": 7690, + "target": 8057, "name": "UpdatePaymentDTO", "package": "@medusajs/types" } }, { - "id": 7490, + "id": 7857, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13147,7 +13147,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -13162,7 +13162,7 @@ "typeArguments": [ { "type": "reference", - "target": 7643, + "target": 8010, "name": "PaymentDTO", "package": "@medusajs/types" } @@ -13174,14 +13174,14 @@ ] }, { - "id": 7491, + "id": 7858, "name": "capturePayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7492, + "id": 7859, "name": "capturePayment", "variant": "signature", "kind": 4096, @@ -13216,7 +13216,7 @@ }, "parameters": [ { - "id": 7493, + "id": 7860, "name": "data", "variant": "param", "kind": 32768, @@ -13231,13 +13231,13 @@ }, "type": { "type": "reference", - "target": 7696, + "target": 8063, "name": "CreateCaptureDTO", "package": "@medusajs/types" } }, { - "id": 7494, + "id": 7861, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13254,7 +13254,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -13269,7 +13269,7 @@ "typeArguments": [ { "type": "reference", - "target": 7643, + "target": 8010, "name": "PaymentDTO", "package": "@medusajs/types" } @@ -13281,14 +13281,14 @@ ] }, { - "id": 7495, + "id": 7862, "name": "refundPayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7496, + "id": 7863, "name": "refundPayment", "variant": "signature", "kind": 4096, @@ -13323,7 +13323,7 @@ }, "parameters": [ { - "id": 7497, + "id": 7864, "name": "data", "variant": "param", "kind": 32768, @@ -13338,13 +13338,13 @@ }, "type": { "type": "reference", - "target": 7700, + "target": 8067, "name": "CreateRefundDTO", "package": "@medusajs/types" } }, { - "id": 7498, + "id": 7865, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13361,7 +13361,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -13376,7 +13376,7 @@ "typeArguments": [ { "type": "reference", - "target": 7643, + "target": 8010, "name": "PaymentDTO", "package": "@medusajs/types" } @@ -13388,14 +13388,14 @@ ] }, { - "id": 7499, + "id": 7866, "name": "cancelPayment", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7500, + "id": 7867, "name": "cancelPayment", "variant": "signature", "kind": 4096, @@ -13430,7 +13430,7 @@ }, "parameters": [ { - "id": 7501, + "id": 7868, "name": "paymentId", "variant": "param", "kind": 32768, @@ -13449,7 +13449,7 @@ } }, { - "id": 7502, + "id": 7869, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13466,7 +13466,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -13481,7 +13481,7 @@ "typeArguments": [ { "type": "reference", - "target": 7643, + "target": 8010, "name": "PaymentDTO", "package": "@medusajs/types" } @@ -13493,14 +13493,14 @@ ] }, { - "id": 7503, + "id": 7870, "name": "listPaymentProviders", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7504, + "id": 7871, "name": "listPaymentProviders", "variant": "signature", "kind": 4096, @@ -13579,7 +13579,7 @@ }, "parameters": [ { - "id": 7505, + "id": 7872, "name": "filters", "variant": "param", "kind": 32768, @@ -13596,13 +13596,13 @@ }, "type": { "type": "reference", - "target": 7704, + "target": 8071, "name": "FilterablePaymentProviderProps", "package": "@medusajs/types" } }, { - "id": 7506, + "id": 7873, "name": "config", "variant": "param", "kind": 32768, @@ -13635,11 +13635,11 @@ }, "type": { "type": "reference", - "target": 7589, + "target": 7956, "typeArguments": [ { "type": "reference", - "target": 7709, + "target": 8076, "name": "PaymentProviderDTO", "package": "@medusajs/types" } @@ -13649,7 +13649,7 @@ } }, { - "id": 7507, + "id": 7874, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13666,7 +13666,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -13683,7 +13683,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7709, + "target": 8076, "name": "PaymentProviderDTO", "package": "@medusajs/types" } @@ -13696,21 +13696,21 @@ ] }, { - "id": 7508, + "id": 7875, "name": "listAndCountPaymentProviders", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7509, + "id": 7876, "name": "listAndCountPaymentProviders", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 7510, + "id": 7877, "name": "filters", "variant": "param", "kind": 32768, @@ -13719,13 +13719,13 @@ }, "type": { "type": "reference", - "target": 7704, + "target": 8071, "name": "FilterablePaymentProviderProps", "package": "@medusajs/types" } }, { - "id": 7511, + "id": 7878, "name": "config", "variant": "param", "kind": 32768, @@ -13734,11 +13734,11 @@ }, "type": { "type": "reference", - "target": 7589, + "target": 7956, "typeArguments": [ { "type": "reference", - "target": 7709, + "target": 8076, "name": "PaymentProviderDTO", "package": "@medusajs/types" } @@ -13748,7 +13748,7 @@ } }, { - "id": 7512, + "id": 7879, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13757,7 +13757,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -13777,7 +13777,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7709, + "target": 8076, "name": "PaymentProviderDTO", "package": "@medusajs/types" } @@ -13796,14 +13796,14 @@ ] }, { - "id": 7513, + "id": 7880, "name": "listCaptures", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7514, + "id": 7881, "name": "listCaptures", "variant": "signature", "kind": 4096, @@ -13890,7 +13890,7 @@ }, "parameters": [ { - "id": 7515, + "id": 7882, "name": "filters", "variant": "param", "kind": 32768, @@ -13907,13 +13907,13 @@ }, "type": { "type": "reference", - "target": 7712, + "target": 8079, "name": "FilterableCaptureProps", "package": "@medusajs/types" } }, { - "id": 7516, + "id": 7883, "name": "config", "variant": "param", "kind": 32768, @@ -13946,11 +13946,11 @@ }, "type": { "type": "reference", - "target": 7589, + "target": 7956, "typeArguments": [ { "type": "reference", - "target": 7722, + "target": 8089, "name": "CaptureDTO", "package": "@medusajs/types" } @@ -13960,7 +13960,7 @@ } }, { - "id": 7517, + "id": 7884, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13977,7 +13977,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -13994,7 +13994,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7722, + "target": 8089, "name": "CaptureDTO", "package": "@medusajs/types" } @@ -14007,14 +14007,14 @@ ] }, { - "id": 7518, + "id": 7885, "name": "listRefunds", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7519, + "id": 7886, "name": "listRefunds", "variant": "signature", "kind": 4096, @@ -14101,7 +14101,7 @@ }, "parameters": [ { - "id": 7520, + "id": 7887, "name": "filters", "variant": "param", "kind": 32768, @@ -14118,13 +14118,13 @@ }, "type": { "type": "reference", - "target": 7728, + "target": 8095, "name": "FilterableRefundProps", "package": "@medusajs/types" } }, { - "id": 7521, + "id": 7888, "name": "config", "variant": "param", "kind": 32768, @@ -14157,11 +14157,11 @@ }, "type": { "type": "reference", - "target": 7589, + "target": 7956, "typeArguments": [ { "type": "reference", - "target": 7738, + "target": 8105, "name": "RefundDTO", "package": "@medusajs/types" } @@ -14171,7 +14171,7 @@ } }, { - "id": 7522, + "id": 7889, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -14188,7 +14188,7 @@ }, "type": { "type": "reference", - "target": 7561, + "target": 7928, "name": "Context", "package": "@medusajs/types" } @@ -14205,7 +14205,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7738, + "target": 8105, "name": "RefundDTO", "package": "@medusajs/types" } @@ -14218,14 +14218,14 @@ ] }, { - "id": 7523, + "id": 7890, "name": "processEvent", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7524, + "id": 7891, "name": "processEvent", "variant": "signature", "kind": 4096, @@ -14280,7 +14280,7 @@ }, "parameters": [ { - "id": 7525, + "id": 7892, "name": "data", "variant": "param", "kind": 32768, @@ -14295,7 +14295,7 @@ }, "type": { "type": "reference", - "target": 7744, + "target": 8111, "name": "ProviderWebhookPayload", "package": "@medusajs/types" } @@ -14324,44 +14324,44 @@ { "title": "Methods", "children": [ - 7402, - 7409, - 7414, - 7419, - 7424, - 7433, - 7440, - 7447, - 7454, - 7459, - 7464, - 7468, - 7472, - 7477, - 7482, - 7487, - 7491, - 7495, - 7499, - 7503, - 7508, - 7513, - 7518, - 7523 + 7769, + 7776, + 7781, + 7786, + 7791, + 7800, + 7807, + 7814, + 7821, + 7826, + 7831, + 7835, + 7839, + 7844, + 7849, + 7854, + 7858, + 7862, + 7866, + 7870, + 7875, + 7880, + 7885, + 7890 ] } ], "extendedTypes": [ { "type": "reference", - "target": 7542, + "target": 7909, "name": "IModuleService", "package": "@medusajs/types" } ] }, { - "id": 7539, + "id": 7906, "name": "PaymentModuleOptions", "variant": "declaration", "kind": 256, @@ -14376,7 +14376,7 @@ }, "children": [ { - "id": 7540, + "id": 7907, "name": "webhook_delay", "variant": "declaration", "kind": 1024, @@ -14408,7 +14408,7 @@ } }, { - "id": 7541, + "id": 7908, "name": "webhook_retries", "variant": "declaration", "kind": 1024, @@ -14444,21 +14444,21 @@ { "title": "Properties", "children": [ - 7540, - 7541 + 7907, + 7908 ] } ] }, { - "id": 7857, + "id": 8224, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 7858, + "id": 8225, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -14474,7 +14474,7 @@ } }, { - "id": 7859, + "id": 8226, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -14484,21 +14484,21 @@ "type": { "type": "reflection", "declaration": { - "id": 7860, + "id": 8227, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 7861, + "id": 8228, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 7862, + "id": 8229, "name": "key", "variant": "param", "kind": 32768, @@ -14539,35 +14539,35 @@ { "title": "Properties", "children": [ - 7858, - 7859 + 8225, + 8226 ] } ] }, { - "id": 7776, + "id": 8143, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 7777, + "id": 8144, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7778, + "id": 8145, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 7779, + "id": 8146, "name": "msg", "variant": "param", "kind": 32768, @@ -14577,7 +14577,7 @@ "types": [ { "type": "reference", - "target": 7853, + "target": 8220, "name": "Message", "package": "@medusajs/types" }, @@ -14585,7 +14585,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7853, + "target": 8220, "name": "Message", "package": "@medusajs/types" } @@ -14602,21 +14602,21 @@ ] }, { - "id": 7780, + "id": 8147, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7781, + "id": 8148, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 7782, + "id": 8149, "name": "format", "variant": "param", "kind": 32768, @@ -14625,7 +14625,7 @@ }, "type": { "type": "reference", - "target": 7857, + "target": 8224, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -14646,7 +14646,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 7853, + "target": 8220, "name": "Message", "package": "@medusajs/types" } @@ -14659,14 +14659,14 @@ ] }, { - "id": 7783, + "id": 8150, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7784, + "id": 8151, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -14679,21 +14679,21 @@ ] }, { - "id": 7785, + "id": 8152, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 7786, + "id": 8153, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 7787, + "id": 8154, "name": "T", "variant": "typeParam", "kind": 131072, @@ -14702,7 +14702,7 @@ ], "parameters": [ { - "id": 7788, + "id": 8155, "name": "messageData", "variant": "param", "kind": 32768, @@ -14712,11 +14712,11 @@ "types": [ { "type": "reference", - "target": 7863, + "target": 8230, "typeArguments": [ { "type": "reference", - "target": 7787, + "target": 8154, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -14729,11 +14729,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 7863, + "target": 8230, "typeArguments": [ { "type": "reference", - "target": 7787, + "target": 8154, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -14747,7 +14747,7 @@ } }, { - "id": 7789, + "id": 8156, "name": "options", "variant": "param", "kind": 32768, @@ -14787,16 +14787,16 @@ { "title": "Methods", "children": [ - 7777, - 7780, - 7783, - 7785 + 8144, + 8147, + 8150, + 8152 ] } ] }, { - "id": 7561, + "id": 7928, "name": "Context", "variant": "declaration", "kind": 256, @@ -14811,7 +14811,7 @@ }, "children": [ { - "id": 7562, + "id": 7929, "name": "__type", "variant": "declaration", "kind": 1024, @@ -14824,7 +14824,7 @@ } }, { - "id": 7563, + "id": 7930, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -14857,14 +14857,14 @@ }, "type": { "type": "reference", - "target": 7572, + "target": 7939, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 7564, + "id": 7931, "name": "manager", "variant": "declaration", "kind": 1024, @@ -14897,14 +14897,14 @@ }, "type": { "type": "reference", - "target": 7572, + "target": 7939, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 7565, + "id": 7932, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -14957,7 +14957,7 @@ } }, { - "id": 7566, + "id": 7933, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -14978,7 +14978,7 @@ } }, { - "id": 7567, + "id": 7934, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -14999,7 +14999,7 @@ } }, { - "id": 7568, + "id": 7935, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -15020,7 +15020,7 @@ } }, { - "id": 7569, + "id": 7936, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -15037,13 +15037,13 @@ }, "type": { "type": "reference", - "target": 7776, + "target": 8143, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 7570, + "id": 7937, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -15064,7 +15064,7 @@ } }, { - "id": 7571, + "id": 7938, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -15089,22 +15089,22 @@ { "title": "Properties", "children": [ - 7562, - 7563, - 7564, - 7565, - 7566, - 7567, - 7568, - 7569, - 7570, - 7571 + 7929, + 7930, + 7931, + 7932, + 7933, + 7934, + 7935, + 7936, + 7937, + 7938 ] } ], "typeParameters": [ { - "id": 7572, + "id": 7939, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -15117,7 +15117,7 @@ ] }, { - "id": 7848, + "id": 8215, "name": "BigNumberRawValue", "variant": "declaration", "kind": 2097152, @@ -15125,14 +15125,14 @@ "type": { "type": "reflection", "declaration": { - "id": 7849, + "id": 8216, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 7850, + "id": 8217, "name": "value", "variant": "declaration", "kind": 1024, @@ -15156,20 +15156,20 @@ { "title": "Properties", "children": [ - 7850 + 8217 ] } ], "indexSignatures": [ { - "id": 7851, + "id": 8218, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 7852, + "id": 8219, "name": "key", "variant": "param", "kind": 32768, @@ -15190,7 +15190,7 @@ } }, { - "id": 7775, + "id": 8142, "name": "BigNumberInput", "variant": "declaration", "kind": 2097152, @@ -15200,7 +15200,7 @@ "types": [ { "type": "reference", - "target": 7848, + "target": 8215, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -15226,7 +15226,7 @@ } }, { - "id": 7790, + "id": 8157, "name": "BigNumberValue", "variant": "declaration", "kind": 2097152, @@ -15260,2267 +15260,2267 @@ { "title": "Interfaces", "children": [ - 7589, - 7942, - 7892, - 7792, - 7912, - 7825, - 7542, - 7573, - 7602, - 7664, - 7712, - 7728, - 7643, - 7676, - 7722, - 7738, - 7620, - 7709, - 7704, - 7556, - 7614, - 7609, - 7690, - 7696, - 7700, - 7631, - 7637, - 7744, - 7819, - 7401, - 7539, - 7857, - 7776, - 7561 + 7956, + 8309, + 8259, + 8159, + 8279, + 8192, + 7909, + 7940, + 7969, + 8031, + 8079, + 8095, + 8010, + 8043, + 8089, + 8105, + 7987, + 8076, + 8071, + 7923, + 7981, + 7976, + 8057, + 8063, + 8067, + 7998, + 8004, + 8111, + 8186, + 7768, + 7906, + 8224, + 8143, + 7928 ] }, { "title": "Type Aliases", "children": [ - 7877, - 7873, - 7875, - 7930, - 7977, - 7967, - 7796, - 7965, - 7940, - 7964, - 7934, - 7961, - 7924, - 7853, - 7863, - 7915, - 7842, - 7751, - 7839, - 7791, - 7818, - 7848, - 7775, - 7790 + 8244, + 8240, + 8242, + 8297, + 8344, + 8334, + 8163, + 8332, + 8307, + 8331, + 8301, + 8328, + 8291, + 8220, + 8230, + 8282, + 8209, + 8118, + 8206, + 8158, + 8185, + 8215, + 8142, + 8157 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "7400": { + "7767": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "" }, - "7401": { + "7768": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService" }, - "7402": { + "7769": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.createPaymentCollections" }, - "7403": { + "7770": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.createPaymentCollections" }, - "7404": { + "7771": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "data" }, - "7405": { + "7772": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7406": { + "7773": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.createPaymentCollections" }, - "7407": { + "7774": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "data" }, - "7408": { + "7775": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7409": { + "7776": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.retrievePaymentCollection" }, - "7410": { + "7777": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.retrievePaymentCollection" }, - "7411": { + "7778": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "paymentCollectionId" }, - "7412": { + "7779": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "config" }, - "7413": { + "7780": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7414": { + "7781": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listPaymentCollections" }, - "7415": { + "7782": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listPaymentCollections" }, - "7416": { + "7783": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "filters" }, - "7417": { + "7784": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "config" }, - "7418": { + "7785": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7419": { + "7786": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listAndCountPaymentCollections" }, - "7420": { + "7787": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listAndCountPaymentCollections" }, - "7421": { + "7788": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "filters" }, - "7422": { + "7789": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "config" }, - "7423": { + "7790": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7424": { + "7791": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.updatePaymentCollections" }, - "7425": { + "7792": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.updatePaymentCollections" }, - "7426": { + "7793": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "paymentCollectionId" }, - "7427": { + "7794": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "data" }, - "7428": { + "7795": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7429": { + "7796": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.updatePaymentCollections" }, - "7430": { + "7797": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "selector" }, - "7431": { + "7798": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "data" }, - "7432": { + "7799": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7433": { + "7800": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.upsertPaymentCollections" }, - "7434": { + "7801": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.upsertPaymentCollections" }, - "7435": { + "7802": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "data" }, - "7436": { + "7803": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7437": { + "7804": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.upsertPaymentCollections" }, - "7438": { + "7805": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "data" }, - "7439": { + "7806": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7440": { + "7807": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.deletePaymentCollections" }, - "7441": { + "7808": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.deletePaymentCollections" }, - "7442": { + "7809": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "paymentCollectionId" }, - "7443": { + "7810": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7444": { + "7811": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.deletePaymentCollections" }, - "7445": { + "7812": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "paymentCollectionId" }, - "7446": { + "7813": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7447": { + "7814": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.completePaymentCollections" }, - "7448": { + "7815": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.completePaymentCollections" }, - "7449": { + "7816": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "paymentCollectionId" }, - "7450": { + "7817": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7451": { + "7818": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.completePaymentCollections" }, - "7452": { + "7819": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "paymentCollectionId" }, - "7453": { + "7820": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7454": { + "7821": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.retrievePaymentSession" }, - "7455": { + "7822": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.retrievePaymentSession" }, - "7456": { + "7823": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "paymentSessionId" }, - "7457": { + "7824": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "config" }, - "7458": { + "7825": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7459": { + "7826": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.createPaymentSession" }, - "7460": { + "7827": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.createPaymentSession" }, - "7461": { + "7828": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "paymentCollectionId" }, - "7462": { + "7829": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "data" }, - "7463": { + "7830": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7464": { + "7831": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.updatePaymentSession" }, - "7465": { + "7832": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.updatePaymentSession" }, - "7466": { + "7833": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "data" }, - "7467": { + "7834": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7468": { + "7835": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.deletePaymentSession" }, - "7469": { + "7836": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.deletePaymentSession" }, - "7470": { + "7837": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "id" }, - "7471": { + "7838": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7472": { + "7839": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.authorizePaymentSession" }, - "7473": { + "7840": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.authorizePaymentSession" }, - "7474": { + "7841": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "id" }, - "7475": { + "7842": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "context" }, - "7476": { + "7843": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7477": { + "7844": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listPaymentSessions" }, - "7478": { + "7845": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listPaymentSessions" }, - "7479": { + "7846": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "filters" }, - "7480": { + "7847": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "config" }, - "7481": { + "7848": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7482": { + "7849": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listPayments" }, - "7483": { + "7850": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listPayments" }, - "7484": { + "7851": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "filters" }, - "7485": { + "7852": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "config" }, - "7486": { + "7853": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7487": { + "7854": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.updatePayment" }, - "7488": { + "7855": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.updatePayment" }, - "7489": { + "7856": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "data" }, - "7490": { + "7857": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7491": { + "7858": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.capturePayment" }, - "7492": { + "7859": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.capturePayment" }, - "7493": { + "7860": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "data" }, - "7494": { + "7861": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7495": { + "7862": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.refundPayment" }, - "7496": { + "7863": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.refundPayment" }, - "7497": { + "7864": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "data" }, - "7498": { + "7865": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7499": { + "7866": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.cancelPayment" }, - "7500": { + "7867": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.cancelPayment" }, - "7501": { + "7868": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "paymentId" }, - "7502": { + "7869": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7503": { + "7870": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listPaymentProviders" }, - "7504": { + "7871": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listPaymentProviders" }, - "7505": { + "7872": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "filters" }, - "7506": { + "7873": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "config" }, - "7507": { + "7874": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7508": { + "7875": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listAndCountPaymentProviders" }, - "7509": { + "7876": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listAndCountPaymentProviders" }, - "7510": { + "7877": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "filters" }, - "7511": { + "7878": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "config" }, - "7512": { + "7879": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7513": { + "7880": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listCaptures" }, - "7514": { + "7881": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listCaptures" }, - "7515": { + "7882": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "filters" }, - "7516": { + "7883": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "config" }, - "7517": { + "7884": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7518": { + "7885": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listRefunds" }, - "7519": { + "7886": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.listRefunds" }, - "7520": { + "7887": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "filters" }, - "7521": { + "7888": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "config" }, - "7522": { + "7889": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "sharedContext" }, - "7523": { + "7890": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.processEvent" }, - "7524": { + "7891": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "IPaymentModuleService.processEvent" }, - "7525": { + "7892": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "data" }, - "7539": { + "7906": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "PaymentModuleOptions" }, - "7540": { + "7907": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "PaymentModuleOptions.webhook_delay" }, - "7541": { + "7908": { "sourceFileName": "../../../../packages/core/types/src/payment/service.ts", "qualifiedName": "PaymentModuleOptions.webhook_retries" }, - "7542": { + "7909": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "7556": { + "7923": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreatePaymentCollectionDTO" }, - "7557": { + "7924": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreatePaymentCollectionDTO.region_id" }, - "7558": { + "7925": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreatePaymentCollectionDTO.currency_code" }, - "7559": { + "7926": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreatePaymentCollectionDTO.amount" }, - "7560": { + "7927": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreatePaymentCollectionDTO.metadata" }, - "7561": { + "7928": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "7562": { + "7929": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "7563": { + "7930": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "7564": { + "7931": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "7565": { + "7932": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "7566": { + "7933": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "7567": { + "7934": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "7568": { + "7935": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "7569": { + "7936": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "7570": { + "7937": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "7571": { + "7938": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "7572": { + "7939": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "7573": { + "7940": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO" }, - "7574": { + "7941": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.id" }, - "7575": { + "7942": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.currency_code" }, - "7576": { + "7943": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.region_id" }, - "7577": { + "7944": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.amount" }, - "7578": { + "7945": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.authorized_amount" }, - "7579": { + "7946": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.refunded_amount" }, - "7580": { + "7947": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.captured_amount" }, - "7581": { + "7948": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.completed_at" }, - "7582": { + "7949": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.created_at" }, - "7583": { + "7950": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.updated_at" }, - "7584": { + "7951": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.metadata" }, - "7585": { + "7952": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.status" }, - "7586": { + "7953": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.payment_providers" }, - "7587": { + "7954": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.payment_sessions" }, - "7588": { + "7955": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionDTO.payments" }, - "7589": { + "7956": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "7590": { + "7957": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "7591": { + "7958": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "7592": { + "7959": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "7593": { + "7960": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "7594": { + "7961": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "7595": { + "7962": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "7596": { + "7963": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "7598": { + "7965": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "7599": { + "7966": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "7600": { + "7967": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "7601": { + "7968": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "7602": { + "7969": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentCollectionProps" }, - "7603": { + "7970": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentCollectionProps.id" }, - "7604": { + "7971": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentCollectionProps.region_id" }, - "7605": { + "7972": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentCollectionProps.created_at" }, - "7606": { + "7973": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentCollectionProps.updated_at" }, - "7607": { + "7974": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "7608": { + "7975": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "7609": { + "7976": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "PaymentCollectionUpdatableFields" }, - "7610": { + "7977": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "PaymentCollectionUpdatableFields.region_id" }, - "7611": { + "7978": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "PaymentCollectionUpdatableFields.currency_code" }, - "7612": { + "7979": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "PaymentCollectionUpdatableFields.amount" }, - "7613": { + "7980": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "PaymentCollectionUpdatableFields.metadata" }, - "7614": { + "7981": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpsertPaymentCollectionDTO" }, - "7615": { + "7982": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpsertPaymentCollectionDTO.id" }, - "7616": { + "7983": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpsertPaymentCollectionDTO.region_id" }, - "7617": { + "7984": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpsertPaymentCollectionDTO.currency_code" }, - "7618": { + "7985": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpsertPaymentCollectionDTO.amount" }, - "7619": { + "7986": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpsertPaymentCollectionDTO.metadata" }, - "7620": { + "7987": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentSessionDTO" }, - "7621": { + "7988": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentSessionDTO.id" }, - "7622": { + "7989": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentSessionDTO.amount" }, - "7623": { + "7990": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentSessionDTO.currency_code" }, - "7624": { + "7991": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentSessionDTO.provider_id" }, - "7625": { + "7992": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentSessionDTO.data" }, - "7626": { + "7993": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentSessionDTO.context" }, - "7627": { + "7994": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentSessionDTO.status" }, - "7628": { + "7995": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentSessionDTO.authorized_at" }, - "7629": { + "7996": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentSessionDTO.payment_collection" }, - "7630": { + "7997": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentSessionDTO.payment" }, - "7631": { + "7998": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreatePaymentSessionDTO" }, - "7632": { + "7999": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreatePaymentSessionDTO.provider_id" }, - "7633": { + "8000": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreatePaymentSessionDTO.currency_code" }, - "7634": { + "8001": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreatePaymentSessionDTO.amount" }, - "7635": { + "8002": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreatePaymentSessionDTO.data" }, - "7636": { + "8003": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreatePaymentSessionDTO.context" }, - "7637": { + "8004": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpdatePaymentSessionDTO" }, - "7638": { + "8005": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpdatePaymentSessionDTO.id" }, - "7639": { + "8006": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpdatePaymentSessionDTO.data" }, - "7640": { + "8007": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpdatePaymentSessionDTO.currency_code" }, - "7641": { + "8008": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpdatePaymentSessionDTO.amount" }, - "7642": { + "8009": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpdatePaymentSessionDTO.context" }, - "7643": { + "8010": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO" }, - "7644": { + "8011": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.id" }, - "7645": { + "8012": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.amount" }, - "7646": { + "8013": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.authorized_amount" }, - "7647": { + "8014": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.currency_code" }, - "7648": { + "8015": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.provider_id" }, - "7649": { + "8016": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.cart_id" }, - "7650": { + "8017": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.order_id" }, - "7651": { + "8018": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.order_edit_id" }, - "7652": { + "8019": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.customer_id" }, - "7653": { + "8020": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.data" }, - "7654": { + "8021": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.created_at" }, - "7655": { + "8022": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.updated_at" }, - "7656": { + "8023": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.captured_at" }, - "7657": { + "8024": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.canceled_at" }, - "7658": { + "8025": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.captured_amount" }, - "7659": { + "8026": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.refunded_amount" }, - "7660": { + "8027": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.captures" }, - "7661": { + "8028": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.refunds" }, - "7662": { + "8029": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.payment_collection" }, - "7663": { + "8030": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentDTO.payment_session" }, - "7664": { + "8031": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentSessionProps" }, - "7665": { + "8032": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentSessionProps.id" }, - "7666": { + "8033": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentSessionProps.currency_code" }, - "7667": { + "8034": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentSessionProps.amount" }, - "7668": { + "8035": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentSessionProps.provider_id" }, - "7669": { + "8036": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentSessionProps.payment_collection_id" }, - "7670": { + "8037": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentSessionProps.region_id" }, - "7671": { + "8038": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentSessionProps.created_at" }, - "7672": { + "8039": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentSessionProps.updated_at" }, - "7673": { + "8040": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentSessionProps.deleted_at" }, - "7674": { + "8041": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "7675": { + "8042": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "7676": { + "8043": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProps" }, - "7677": { + "8044": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProps.q" }, - "7678": { + "8045": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProps.id" }, - "7679": { + "8046": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProps.payment_session_id" }, - "7680": { + "8047": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProps.customer_id" }, - "7681": { + "8048": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProps.cart_id" }, - "7682": { + "8049": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProps.order_id" }, - "7683": { + "8050": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProps.order_edit_id" }, - "7684": { + "8051": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProps.created_at" }, - "7685": { + "8052": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProps.updated_at" }, - "7686": { + "8053": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProps.captured_at" }, - "7687": { + "8054": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProps.canceled_at" }, - "7688": { + "8055": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "7689": { + "8056": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "7690": { + "8057": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpdatePaymentDTO" }, - "7691": { + "8058": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpdatePaymentDTO.id" }, - "7692": { + "8059": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpdatePaymentDTO.cart_id" }, - "7693": { + "8060": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpdatePaymentDTO.order_id" }, - "7694": { + "8061": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpdatePaymentDTO.order_edit_id" }, - "7695": { + "8062": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "UpdatePaymentDTO.customer_id" }, - "7696": { + "8063": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreateCaptureDTO" }, - "7697": { + "8064": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreateCaptureDTO.amount" }, - "7698": { + "8065": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreateCaptureDTO.payment_id" }, - "7699": { + "8066": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreateCaptureDTO.captured_by" }, - "7700": { + "8067": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreateRefundDTO" }, - "7701": { + "8068": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreateRefundDTO.amount" }, - "7702": { + "8069": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreateRefundDTO.payment_id" }, - "7703": { + "8070": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "CreateRefundDTO.created_by" }, - "7704": { + "8071": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProviderProps" }, - "7705": { + "8072": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProviderProps.id" }, - "7706": { + "8073": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterablePaymentProviderProps.is_enabled" }, - "7707": { + "8074": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "7708": { + "8075": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "7709": { + "8076": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentProviderDTO" }, - "7710": { + "8077": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentProviderDTO.id" }, - "7711": { + "8078": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentProviderDTO.is_enabled" }, - "7712": { + "8079": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableCaptureProps" }, - "7713": { + "8080": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableCaptureProps.id" }, - "7714": { + "8081": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableCaptureProps.currency_code" }, - "7715": { + "8082": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableCaptureProps.amount" }, - "7716": { + "8083": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableCaptureProps.payment_id" }, - "7717": { + "8084": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableCaptureProps.created_at" }, - "7718": { + "8085": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableCaptureProps.updated_at" }, - "7719": { + "8086": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableCaptureProps.deleted_at" }, - "7720": { + "8087": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "7721": { + "8088": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "7722": { + "8089": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "CaptureDTO" }, - "7723": { + "8090": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "CaptureDTO.id" }, - "7724": { + "8091": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "CaptureDTO.amount" }, - "7725": { + "8092": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "CaptureDTO.created_at" }, - "7726": { + "8093": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "CaptureDTO.created_by" }, - "7727": { + "8094": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "CaptureDTO.payment" }, - "7728": { + "8095": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableRefundProps" }, - "7729": { + "8096": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableRefundProps.id" }, - "7730": { + "8097": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableRefundProps.currency_code" }, - "7731": { + "8098": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableRefundProps.amount" }, - "7732": { + "8099": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableRefundProps.payment_id" }, - "7733": { + "8100": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableRefundProps.created_at" }, - "7734": { + "8101": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableRefundProps.updated_at" }, - "7735": { + "8102": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "FilterableRefundProps.deleted_at" }, - "7736": { + "8103": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "7737": { + "8104": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "7738": { + "8105": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "RefundDTO" }, - "7739": { + "8106": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "RefundDTO.id" }, - "7740": { + "8107": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "RefundDTO.amount" }, - "7741": { + "8108": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "RefundDTO.created_at" }, - "7742": { + "8109": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "RefundDTO.created_by" }, - "7743": { + "8110": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "RefundDTO.payment" }, - "7744": { + "8111": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "ProviderWebhookPayload" }, - "7745": { + "8112": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "ProviderWebhookPayload.provider" }, - "7746": { + "8113": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "ProviderWebhookPayload.payload" }, - "7747": { + "8114": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "__type" }, - "7748": { + "8115": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "__type.data" }, - "7749": { + "8116": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "__type.rawData" }, - "7750": { + "8117": { "sourceFileName": "../../../../packages/core/types/src/payment/mutations.ts", "qualifiedName": "__type.headers" }, - "7751": { + "8118": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "7752": { + "8119": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "7753": { + "8120": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "7754": { + "8121": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "7755": { + "8122": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "7756": { + "8123": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "7757": { + "8124": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "7758": { + "8125": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "7759": { + "8126": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "7760": { + "8127": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "7761": { + "8128": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "7762": { + "8129": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "7763": { + "8130": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "7764": { + "8131": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "7765": { + "8132": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "7766": { + "8133": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "7767": { + "8134": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "7768": { + "8135": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "7769": { + "8136": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "7770": { + "8137": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "7771": { + "8138": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "7772": { + "8139": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "7773": { + "8140": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "7774": { + "8141": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "7775": { + "8142": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberInput" }, - "7776": { + "8143": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "7777": { + "8144": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "7778": { + "8145": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "7779": { + "8146": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "7780": { + "8147": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "7781": { + "8148": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "7782": { + "8149": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "7783": { + "8150": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "7784": { + "8151": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "7785": { + "8152": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "7786": { + "8153": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "7787": { + "8154": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "7788": { + "8155": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "7789": { + "8156": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "7790": { + "8157": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberValue" }, - "7791": { + "8158": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentCollectionStatus" }, - "7792": { + "8159": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "7793": { + "8160": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "7794": { + "8161": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "7795": { + "8162": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "7796": { + "8163": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "OperatorMap" }, - "7797": { + "8164": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "7798": { + "8165": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$and" }, - "7799": { + "8166": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$or" }, - "7800": { + "8167": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$eq" }, - "7801": { + "8168": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ne" }, - "7802": { + "8169": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$in" }, - "7803": { + "8170": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$nin" }, - "7804": { + "8171": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$not" }, - "7805": { + "8172": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gt" }, - "7806": { + "8173": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gte" }, - "7807": { + "8174": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lt" }, - "7808": { + "8175": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lte" }, - "7809": { + "8176": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$like" }, - "7810": { + "8177": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$re" }, - "7811": { + "8178": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ilike" }, - "7812": { + "8179": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$fulltext" }, - "7813": { + "8180": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$overlap" }, - "7814": { + "8181": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contains" }, - "7815": { + "8182": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contained" }, - "7816": { + "8183": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$exists" }, - "7817": { + "8184": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "7818": { + "8185": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentSessionStatus" }, - "7819": { + "8186": { "sourceFileName": "../../../../packages/core/types/src/payment/provider.ts", "qualifiedName": "PaymentProviderContext" }, - "7820": { + "8187": { "sourceFileName": "../../../../packages/core/types/src/payment/provider.ts", "qualifiedName": "__type.billing_address" }, - "7821": { + "8188": { "sourceFileName": "../../../../packages/core/types/src/payment/provider.ts", "qualifiedName": "__type.email" }, - "7822": { + "8189": { "sourceFileName": "../../../../packages/core/types/src/payment/provider.ts", "qualifiedName": "__type.resource_id" }, - "7823": { + "8190": { "sourceFileName": "../../../../packages/core/types/src/payment/provider.ts", "qualifiedName": "__type.customer" }, - "7824": { + "8191": { "sourceFileName": "../../../../packages/core/types/src/payment/provider.ts", "qualifiedName": "__type.extra" }, - "7825": { + "8192": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "7826": { + "8193": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "7827": { + "8194": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "7828": { + "8195": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "7829": { + "8196": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "7830": { + "8197": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "7831": { + "8198": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "7832": { + "8199": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "7833": { + "8200": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "7834": { + "8201": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "7835": { + "8202": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "7836": { + "8203": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "7837": { + "8204": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "7838": { + "8205": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "7839": { + "8206": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "7840": { + "8207": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "7841": { + "8208": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "7842": { + "8209": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "7843": { + "8210": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "7844": { + "8211": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "7845": { + "8212": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "7846": { + "8213": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "7847": { + "8214": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "7848": { + "8215": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberRawValue" }, - "7849": { + "8216": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type" }, - "7850": { + "8217": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type.value" }, - "7851": { + "8218": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type.__index" }, - "7853": { + "8220": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "7854": { + "8221": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "7855": { + "8222": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "7856": { + "8223": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "7857": { + "8224": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "7858": { + "8225": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "7859": { + "8226": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "7860": { + "8227": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "7861": { + "8228": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "7863": { + "8230": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "7864": { + "8231": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "7865": { + "8232": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "7866": { + "8233": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "7867": { + "8234": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "7868": { + "8235": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "7869": { + "8236": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "7870": { + "8237": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "7871": { + "8238": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "7872": { + "8239": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "7873": { + "8240": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Query" }, - "7874": { + "8241": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "7875": { + "8242": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ExpandScalar" }, - "7876": { + "8243": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "7877": { + "8244": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "AddressDTO" }, - "7878": { + "8245": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type" }, - "7879": { + "8246": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.id" }, - "7880": { + "8247": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.address_1" }, - "7881": { + "8248": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.address_2" }, - "7882": { + "8249": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.company" }, - "7883": { + "8250": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.country_code" }, - "7884": { + "8251": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.city" }, - "7885": { + "8252": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.phone" }, - "7886": { + "8253": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.postal_code" }, - "7887": { + "8254": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.province" }, - "7888": { + "8255": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.metadata" }, - "7889": { + "8256": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.created_at" }, - "7890": { + "8257": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.updated_at" }, - "7891": { + "8258": { "sourceFileName": "../../../../packages/core/types/src/address/common.ts", "qualifiedName": "__type.deleted_at" }, - "7892": { + "8259": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO" }, - "7893": { + "8260": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.id" }, - "7894": { + "8261": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.email" }, - "7895": { + "8262": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.has_account" }, - "7896": { + "8263": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.default_billing_address_id" }, - "7897": { + "8264": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.default_shipping_address_id" }, - "7898": { + "8265": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.company_name" }, - "7899": { + "8266": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.first_name" }, - "7900": { + "8267": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.last_name" }, - "7901": { + "8268": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.addresses" }, - "7902": { + "8269": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.phone" }, - "7903": { + "8270": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.groups" }, - "7904": { + "8271": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "__type" }, - "7905": { + "8272": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "__type.id" }, - "7906": { + "8273": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "__type.name" }, - "7907": { + "8274": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.metadata" }, - "7908": { + "8275": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.created_by" }, - "7909": { + "8276": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.deleted_at" }, - "7910": { + "8277": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.created_at" }, - "7911": { + "8278": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerDTO.updated_at" }, - "7912": { + "8279": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "7913": { + "8280": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "7914": { + "8281": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "7915": { + "8282": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "7916": { + "8283": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "7917": { + "8284": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "7918": { + "8285": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "7919": { + "8286": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "7920": { + "8287": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "7921": { + "8288": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "7922": { + "8289": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "7923": { + "8290": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "7924": { + "8291": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "7925": { + "8292": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "7926": { + "8293": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "7927": { + "8294": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "7928": { + "8295": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "7929": { + "8296": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "7930": { + "8297": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Scalar" }, - "7931": { + "8298": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "7932": { + "8299": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "7933": { + "8300": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "7934": { + "8301": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterQuery" }, - "7935": { + "8302": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "7936": { + "8303": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "7938": { + "8305": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "7939": { + "8306": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Prev" }, - "7940": { + "8307": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue" }, - "7941": { + "8308": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "7942": { + "8309": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO" }, - "7943": { + "8310": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.id" }, - "7944": { + "8311": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.address_name" }, - "7945": { + "8312": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.is_default_shipping" }, - "7946": { + "8313": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.is_default_billing" }, - "7947": { + "8314": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.customer_id" }, - "7948": { + "8315": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.company" }, - "7949": { + "8316": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.first_name" }, - "7950": { + "8317": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.last_name" }, - "7951": { + "8318": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.address_1" }, - "7952": { + "8319": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.address_2" }, - "7953": { + "8320": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.city" }, - "7954": { + "8321": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.country_code" }, - "7955": { + "8322": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.province" }, - "7956": { + "8323": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.postal_code" }, - "7957": { + "8324": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.phone" }, - "7958": { + "8325": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.metadata" }, - "7959": { + "8326": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.created_at" }, - "7960": { + "8327": { "sourceFileName": "../../../../packages/core/types/src/customer/common.ts", "qualifiedName": "CustomerAddressDTO.updated_at" }, - "7961": { + "8328": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "7962": { + "8329": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "7963": { + "8330": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" }, - "7964": { + "8331": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "PrevLimit" }, - "7965": { + "8332": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue2" }, - "7966": { + "8333": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "7967": { + "8334": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Primary" }, - "7968": { + "8335": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "7969": { + "8336": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.[PrimaryKeyType]" }, - "7970": { + "8337": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "7971": { + "8338": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type._id" }, - "7972": { + "8339": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "7973": { + "8340": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.uuid" }, - "7974": { + "8341": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "7975": { + "8342": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.id" }, - "7976": { + "8343": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "7977": { + "8344": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ReadonlyPrimary" }, - "7978": { + "8345": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" } @@ -17530,7 +17530,7 @@ "1": "../../../../packages/core/types/src/payment/service.ts" }, "reflections": { - "1": 7400 + "1": 7767 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/pricing-models.json b/www/utils/generated/typedoc-json-output/pricing-models.json index ec661d5b5eb2c..e326f62f67104 100644 --- a/www/utils/generated/typedoc-json-output/pricing-models.json +++ b/www/utils/generated/typedoc-json-output/pricing-models.json @@ -1,5 +1,5 @@ { - "id": 8734, + "id": 9179, "name": "pricing-models", "variant": "project", "kind": 1, @@ -18,28 +18,28 @@ }, "children": [ { - "id": 8780, + "id": 9225, "name": "PriceListRule", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 8781, + "id": 9226, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 8782, + "id": 9227, "name": "new PriceListRule", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 8780, + "target": 9225, "name": "PriceListRule", "package": "@medusajs/pricing", "qualifiedName": "default" @@ -48,7 +48,7 @@ ] }, { - "id": 8795, + "id": 9240, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -57,14 +57,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 8783, + "id": 9228, "name": "id", "variant": "declaration", "kind": 1024, @@ -75,7 +75,7 @@ } }, { - "id": 8784, + "id": 9229, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -86,7 +86,7 @@ } }, { - "id": 8785, + "id": 9230, "name": "value", "variant": "declaration", "kind": 1024, @@ -114,7 +114,7 @@ "defaultValue": "null" }, { - "id": 8786, + "id": 9231, "name": "price_list_id", "variant": "declaration", "kind": 1024, @@ -125,21 +125,21 @@ } }, { - "id": 8787, + "id": 9232, "name": "price_list", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 8759, + "target": 9204, "name": "PriceList", "package": "@medusajs/pricing", "qualifiedName": "default" } }, { - "id": 8788, + "id": 9233, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -155,7 +155,7 @@ } }, { - "id": 8789, + "id": 9234, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -171,7 +171,7 @@ } }, { - "id": 8790, + "id": 9235, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -197,14 +197,14 @@ "defaultValue": "null" }, { - "id": 8791, + "id": 9236, "name": "beforeCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8792, + "id": 9237, "name": "beforeCreate", "variant": "signature", "kind": 4096, @@ -217,14 +217,14 @@ ] }, { - "id": 8793, + "id": 9238, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8794, + "id": 9239, "name": "onInit", "variant": "signature", "kind": 4096, @@ -241,55 +241,55 @@ { "title": "Constructors", "children": [ - 8781 + 9226 ] }, { "title": "Properties", "children": [ - 8795, - 8783, - 8784, - 8785, - 8786, - 8787, - 8788, - 8789, - 8790 + 9240, + 9228, + 9229, + 9230, + 9231, + 9232, + 9233, + 9234, + 9235 ] }, { "title": "Methods", "children": [ - 8791, - 8793 + 9236, + 9238 ] } ] }, { - "id": 8759, + "id": 9204, "name": "PriceList", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 8760, + "id": 9205, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 8761, + "id": 9206, "name": "new PriceList", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 8759, + "target": 9204, "name": "PriceList", "package": "@medusajs/pricing", "qualifiedName": "default" @@ -298,7 +298,7 @@ ] }, { - "id": 8779, + "id": 9224, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -314,7 +314,7 @@ } }, { - "id": 8762, + "id": 9207, "name": "id", "variant": "declaration", "kind": 1024, @@ -325,7 +325,7 @@ } }, { - "id": 8763, + "id": 9208, "name": "title", "variant": "declaration", "kind": 1024, @@ -336,7 +336,7 @@ } }, { - "id": 8764, + "id": 9209, "name": "description", "variant": "declaration", "kind": 1024, @@ -347,7 +347,7 @@ } }, { - "id": 8765, + "id": 9210, "name": "status", "variant": "declaration", "kind": 1024, @@ -363,7 +363,7 @@ } }, { - "id": 8766, + "id": 9211, "name": "type", "variant": "declaration", "kind": 1024, @@ -379,7 +379,7 @@ } }, { - "id": 8767, + "id": 9212, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -405,7 +405,7 @@ "defaultValue": "null" }, { - "id": 8768, + "id": 9213, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -431,7 +431,7 @@ "defaultValue": "null" }, { - "id": 8769, + "id": 9214, "name": "prices", "variant": "declaration", "kind": 1024, @@ -445,7 +445,7 @@ "typeArguments": [ { "type": "reference", - "target": 8735, + "target": 9180, "name": "Price", "package": "@medusajs/pricing", "qualifiedName": "default" @@ -461,7 +461,7 @@ "defaultValue": "..." }, { - "id": 8770, + "id": 9215, "name": "price_list_rules", "variant": "declaration", "kind": 1024, @@ -475,7 +475,7 @@ "typeArguments": [ { "type": "reference", - "target": 8780, + "target": 9225, "name": "PriceListRule", "package": "@medusajs/pricing", "qualifiedName": "default" @@ -491,7 +491,7 @@ "defaultValue": "..." }, { - "id": 8771, + "id": 9216, "name": "rules_count", "variant": "declaration", "kind": 1024, @@ -503,7 +503,7 @@ "defaultValue": "0" }, { - "id": 8772, + "id": 9217, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -519,7 +519,7 @@ } }, { - "id": 8773, + "id": 9218, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -535,7 +535,7 @@ } }, { - "id": 8774, + "id": 9219, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -561,14 +561,14 @@ "defaultValue": "null" }, { - "id": 8775, + "id": 9220, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8776, + "id": 9221, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -581,14 +581,14 @@ ] }, { - "id": 8777, + "id": 9222, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8778, + "id": 9223, "name": "onInit", "variant": "signature", "kind": 4096, @@ -605,60 +605,271 @@ { "title": "Constructors", "children": [ - 8760 + 9205 ] }, { "title": "Properties", "children": [ - 8779, - 8762, - 8763, - 8764, - 8765, - 8766, - 8767, - 8768, - 8769, - 8770, - 8771, - 8772, - 8773, - 8774 + 9224, + 9207, + 9208, + 9209, + 9210, + 9211, + 9212, + 9213, + 9214, + 9215, + 9216, + 9217, + 9218, + 9219 ] }, { "title": "Methods", "children": [ - 8775, - 8777 + 9220, + 9222 ] } ] }, { - "id": 8796, + "id": 9270, + "name": "PricePreference", + "variant": "declaration", + "kind": 128, + "flags": {}, + "children": [ + { + "id": 9271, + "name": "constructor", + "variant": "declaration", + "kind": 512, + "flags": {}, + "signatures": [ + { + "id": 9272, + "name": "new PricePreference", + "variant": "signature", + "kind": 16384, + "flags": {}, + "type": { + "type": "reference", + "target": 9270, + "name": "PricePreference", + "package": "@medusajs/pricing", + "qualifiedName": "default" + } + } + ] + }, + { + "id": 9273, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 9274, + "name": "attribute", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 9275, + "name": "value", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "defaultValue": "null" + }, + { + "id": 9276, + "name": "is_tax_inclusive", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 9277, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + }, + { + "id": 9278, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + }, + { + "id": 9279, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + }, + "defaultValue": "null" + }, + { + "id": 9280, + "name": "onCreate", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 9281, + "name": "onCreate", + "variant": "signature", + "kind": 4096, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + }, + { + "id": 9282, + "name": "onInit", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 9283, + "name": "onInit", + "variant": "signature", + "kind": 4096, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "children": [ + 9271 + ] + }, + { + "title": "Properties", + "children": [ + 9273, + 9274, + 9275, + 9276, + 9277, + 9278, + 9279 + ] + }, + { + "title": "Methods", + "children": [ + 9280, + 9282 + ] + } + ] + }, + { + "id": 9241, "name": "PriceRule", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 8797, + "id": 9242, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 8798, + "id": 9243, "name": "new PriceRule", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 8796, + "target": 9241, "name": "PriceRule", "package": "@medusajs/pricing", "qualifiedName": "default" @@ -667,7 +878,7 @@ ] }, { - "id": 8812, + "id": 9257, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -678,14 +889,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 8799, + "id": 9244, "name": "id", "variant": "declaration", "kind": 1024, @@ -696,7 +907,7 @@ } }, { - "id": 8800, + "id": 9245, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -707,7 +918,7 @@ } }, { - "id": 8801, + "id": 9246, "name": "value", "variant": "declaration", "kind": 1024, @@ -718,7 +929,7 @@ } }, { - "id": 8802, + "id": 9247, "name": "priority", "variant": "declaration", "kind": 1024, @@ -730,7 +941,7 @@ "defaultValue": "0" }, { - "id": 8803, + "id": 9248, "name": "price_id", "variant": "declaration", "kind": 1024, @@ -741,21 +952,21 @@ } }, { - "id": 8804, + "id": 9249, "name": "price", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 8735, + "target": 9180, "name": "Price", "package": "@medusajs/pricing", "qualifiedName": "default" } }, { - "id": 8805, + "id": 9250, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -771,7 +982,7 @@ } }, { - "id": 8806, + "id": 9251, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -787,7 +998,7 @@ } }, { - "id": 8807, + "id": 9252, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -813,14 +1024,14 @@ "defaultValue": "null" }, { - "id": 8808, + "id": 9253, "name": "beforeCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8809, + "id": 9254, "name": "beforeCreate", "variant": "signature", "kind": 4096, @@ -833,14 +1044,14 @@ ] }, { - "id": 8810, + "id": 9255, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8811, + "id": 9256, "name": "onInit", "variant": "signature", "kind": 4096, @@ -857,56 +1068,56 @@ { "title": "Constructors", "children": [ - 8797 + 9242 ] }, { "title": "Properties", "children": [ - 8812, - 8799, - 8800, - 8801, - 8802, - 8803, - 8804, - 8805, - 8806, - 8807 + 9257, + 9244, + 9245, + 9246, + 9247, + 9248, + 9249, + 9250, + 9251, + 9252 ] }, { "title": "Methods", "children": [ - 8808, - 8810 + 9253, + 9255 ] } ] }, { - "id": 8813, + "id": 9258, "name": "PriceSet", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 8814, + "id": 9259, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 8815, + "id": 9260, "name": "new PriceSet", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 8813, + "target": 9258, "name": "PriceSet", "package": "@medusajs/pricing", "qualifiedName": "default" @@ -915,7 +1126,7 @@ ] }, { - "id": 8816, + "id": 9261, "name": "id", "variant": "declaration", "kind": 1024, @@ -926,7 +1137,7 @@ } }, { - "id": 8817, + "id": 9262, "name": "prices", "variant": "declaration", "kind": 1024, @@ -940,7 +1151,7 @@ "typeArguments": [ { "type": "reference", - "target": 8735, + "target": 9180, "name": "Price", "package": "@medusajs/pricing", "qualifiedName": "default" @@ -956,7 +1167,7 @@ "defaultValue": "..." }, { - "id": 8818, + "id": 9263, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -972,7 +1183,7 @@ } }, { - "id": 8819, + "id": 9264, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -988,7 +1199,7 @@ } }, { - "id": 8820, + "id": 9265, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1014,14 +1225,14 @@ "defaultValue": "null" }, { - "id": 8821, + "id": 9266, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8822, + "id": 9267, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1034,14 +1245,14 @@ ] }, { - "id": 8823, + "id": 9268, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8824, + "id": 9269, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1058,51 +1269,51 @@ { "title": "Constructors", "children": [ - 8814 + 9259 ] }, { "title": "Properties", "children": [ - 8816, - 8817, - 8818, - 8819, - 8820 + 9261, + 9262, + 9263, + 9264, + 9265 ] }, { "title": "Methods", "children": [ - 8821, - 8823 + 9266, + 9268 ] } ] }, { - "id": 8735, + "id": 9180, "name": "Price", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 8736, + "id": 9181, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 8737, + "id": 9182, "name": "new Price", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 8735, + "target": 9180, "name": "Price", "package": "@medusajs/pricing", "qualifiedName": "default" @@ -1111,7 +1322,7 @@ ] }, { - "id": 8758, + "id": 9203, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -1122,14 +1333,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 8738, + "id": 9183, "name": "id", "variant": "declaration", "kind": 1024, @@ -1140,7 +1351,7 @@ } }, { - "id": 8739, + "id": 9184, "name": "title", "variant": "declaration", "kind": 1024, @@ -1161,7 +1372,7 @@ "defaultValue": "null" }, { - "id": 8740, + "id": 9185, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -1172,7 +1383,7 @@ } }, { - "id": 8741, + "id": 9186, "name": "amount", "variant": "declaration", "kind": 1024, @@ -1197,7 +1408,7 @@ } }, { - "id": 8742, + "id": 9187, "name": "raw_amount", "variant": "declaration", "kind": 1024, @@ -1223,7 +1434,7 @@ } }, { - "id": 8743, + "id": 9188, "name": "min_quantity", "variant": "declaration", "kind": 1024, @@ -1244,7 +1455,7 @@ "defaultValue": "null" }, { - "id": 8744, + "id": 9189, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -1265,7 +1476,7 @@ "defaultValue": "null" }, { - "id": 8745, + "id": 9190, "name": "price_set_id", "variant": "declaration", "kind": 1024, @@ -1276,7 +1487,7 @@ } }, { - "id": 8746, + "id": 9191, "name": "price_set", "variant": "declaration", "kind": 1024, @@ -1285,14 +1496,14 @@ }, "type": { "type": "reference", - "target": 8813, + "target": 9258, "name": "PriceSet", "package": "@medusajs/pricing", "qualifiedName": "default" } }, { - "id": 8747, + "id": 9192, "name": "rules_count", "variant": "declaration", "kind": 1024, @@ -1304,7 +1515,7 @@ "defaultValue": "0" }, { - "id": 8748, + "id": 9193, "name": "price_rules", "variant": "declaration", "kind": 1024, @@ -1318,7 +1529,7 @@ "typeArguments": [ { "type": "reference", - "target": 8796, + "target": 9241, "name": "PriceRule", "package": "@medusajs/pricing", "qualifiedName": "default" @@ -1334,7 +1545,7 @@ "defaultValue": "..." }, { - "id": 8749, + "id": 9194, "name": "price_list_id", "variant": "declaration", "kind": 1024, @@ -1355,7 +1566,7 @@ "defaultValue": "null" }, { - "id": 8750, + "id": 9195, "name": "price_list", "variant": "declaration", "kind": 1024, @@ -1369,7 +1580,7 @@ }, { "type": "reference", - "target": 8759, + "target": 9204, "name": "PriceList", "package": "@medusajs/pricing", "qualifiedName": "default" @@ -1379,7 +1590,7 @@ "defaultValue": "null" }, { - "id": 8751, + "id": 9196, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1395,7 +1606,7 @@ } }, { - "id": 8752, + "id": 9197, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1411,7 +1622,7 @@ } }, { - "id": 8753, + "id": 9198, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1437,14 +1648,14 @@ "defaultValue": "null" }, { - "id": 8754, + "id": 9199, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8755, + "id": 9200, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1457,14 +1668,14 @@ ] }, { - "id": 8756, + "id": 9201, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8757, + "id": 9202, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1481,36 +1692,36 @@ { "title": "Constructors", "children": [ - 8736 + 9181 ] }, { "title": "Properties", "children": [ - 8758, - 8738, - 8739, - 8740, - 8741, - 8742, - 8743, - 8744, - 8745, - 8746, - 8747, - 8748, - 8749, - 8750, - 8751, - 8752, - 8753 + 9203, + 9183, + 9184, + 9185, + 9186, + 9187, + 9188, + 9189, + 9190, + 9191, + 9192, + 9193, + 9194, + 9195, + 9196, + 9197, + 9198 ] }, { "title": "Methods", "children": [ - 8754, - 8756 + 9199, + 9201 ] } ] @@ -1520,339 +1731,388 @@ { "title": "Classes", "children": [ - 8780, - 8759, - 8796, - 8813, - 8735 + 9225, + 9204, + 9270, + 9241, + 9258, + 9180 ] } ], "packageName": "@medusajs/pricing", "symbolIdMap": { - "8734": { + "9179": { "sourceFileName": "../../../../packages/modules/pricing/src/models/index.ts", "qualifiedName": "" }, - "8735": { + "9180": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default" }, - "8738": { + "9183": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.id" }, - "8739": { + "9184": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.title" }, - "8740": { + "9185": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.currency_code" }, - "8741": { + "9186": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.amount" }, - "8742": { + "9187": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.raw_amount" }, - "8743": { + "9188": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.min_quantity" }, - "8744": { + "9189": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.max_quantity" }, - "8745": { + "9190": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.price_set_id" }, - "8746": { + "9191": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.price_set" }, - "8747": { + "9192": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.rules_count" }, - "8748": { + "9193": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.price_rules" }, - "8749": { + "9194": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.price_list_id" }, - "8750": { + "9195": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.price_list" }, - "8751": { + "9196": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.created_at" }, - "8752": { + "9197": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.updated_at" }, - "8753": { + "9198": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.deleted_at" }, - "8754": { + "9199": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.onCreate" }, - "8755": { + "9200": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.onCreate" }, - "8756": { + "9201": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.onInit" }, - "8757": { + "9202": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.onInit" }, - "8758": { + "9203": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price.ts", "qualifiedName": "default.[OptionalProps]" }, - "8759": { + "9204": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default" }, - "8762": { + "9207": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.id" }, - "8763": { + "9208": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.title" }, - "8764": { + "9209": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.description" }, - "8765": { + "9210": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.status" }, - "8766": { + "9211": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.type" }, - "8767": { + "9212": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.starts_at" }, - "8768": { + "9213": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.ends_at" }, - "8769": { + "9214": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.prices" }, - "8770": { + "9215": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.price_list_rules" }, - "8771": { + "9216": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.rules_count" }, - "8772": { + "9217": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.created_at" }, - "8773": { + "9218": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.updated_at" }, - "8774": { + "9219": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.deleted_at" }, - "8775": { + "9220": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.onCreate" }, - "8776": { + "9221": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.onCreate" }, - "8777": { + "9222": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.onInit" }, - "8778": { + "9223": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.onInit" }, - "8779": { + "9224": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list.ts", "qualifiedName": "default.[OptionalProps]" }, - "8780": { + "9225": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default" }, - "8783": { + "9228": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default.id" }, - "8784": { + "9229": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default.attribute" }, - "8785": { + "9230": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default.value" }, - "8786": { + "9231": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default.price_list_id" }, - "8787": { + "9232": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default.price_list" }, - "8788": { + "9233": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default.created_at" }, - "8789": { + "9234": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default.updated_at" }, - "8790": { + "9235": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default.deleted_at" }, - "8791": { + "9236": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default.beforeCreate" }, - "8792": { + "9237": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default.beforeCreate" }, - "8793": { + "9238": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default.onInit" }, - "8794": { + "9239": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default.onInit" }, - "8795": { + "9240": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-list-rule.ts", "qualifiedName": "default.[OptionalProps]" }, - "8796": { + "9241": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default" }, - "8799": { + "9244": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.id" }, - "8800": { + "9245": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.attribute" }, - "8801": { + "9246": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.value" }, - "8802": { + "9247": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.priority" }, - "8803": { + "9248": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.price_id" }, - "8804": { + "9249": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.price" }, - "8805": { + "9250": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.created_at" }, - "8806": { + "9251": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.updated_at" }, - "8807": { + "9252": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.deleted_at" }, - "8808": { + "9253": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.beforeCreate" }, - "8809": { + "9254": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.beforeCreate" }, - "8810": { + "9255": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.onInit" }, - "8811": { + "9256": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.onInit" }, - "8812": { + "9257": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-rule.ts", "qualifiedName": "default.[OptionalProps]" }, - "8813": { + "9258": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-set.ts", "qualifiedName": "default" }, - "8816": { + "9261": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-set.ts", "qualifiedName": "default.id" }, - "8817": { + "9262": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-set.ts", "qualifiedName": "default.prices" }, - "8818": { + "9263": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-set.ts", "qualifiedName": "default.created_at" }, - "8819": { + "9264": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-set.ts", "qualifiedName": "default.updated_at" }, - "8820": { + "9265": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-set.ts", "qualifiedName": "default.deleted_at" }, - "8821": { + "9266": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-set.ts", "qualifiedName": "default.onCreate" }, - "8822": { + "9267": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-set.ts", "qualifiedName": "default.onCreate" }, - "8823": { + "9268": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-set.ts", "qualifiedName": "default.onInit" }, - "8824": { + "9269": { "sourceFileName": "../../../../packages/modules/pricing/src/models/price-set.ts", "qualifiedName": "default.onInit" + }, + "9270": { + "sourceFileName": "../../../../packages/modules/pricing/src/models/price-preference.ts", + "qualifiedName": "default" + }, + "9273": { + "sourceFileName": "../../../../packages/modules/pricing/src/models/price-preference.ts", + "qualifiedName": "default.id" + }, + "9274": { + "sourceFileName": "../../../../packages/modules/pricing/src/models/price-preference.ts", + "qualifiedName": "default.attribute" + }, + "9275": { + "sourceFileName": "../../../../packages/modules/pricing/src/models/price-preference.ts", + "qualifiedName": "default.value" + }, + "9276": { + "sourceFileName": "../../../../packages/modules/pricing/src/models/price-preference.ts", + "qualifiedName": "default.is_tax_inclusive" + }, + "9277": { + "sourceFileName": "../../../../packages/modules/pricing/src/models/price-preference.ts", + "qualifiedName": "default.created_at" + }, + "9278": { + "sourceFileName": "../../../../packages/modules/pricing/src/models/price-preference.ts", + "qualifiedName": "default.updated_at" + }, + "9279": { + "sourceFileName": "../../../../packages/modules/pricing/src/models/price-preference.ts", + "qualifiedName": "default.deleted_at" + }, + "9280": { + "sourceFileName": "../../../../packages/modules/pricing/src/models/price-preference.ts", + "qualifiedName": "default.onCreate" + }, + "9281": { + "sourceFileName": "../../../../packages/modules/pricing/src/models/price-preference.ts", + "qualifiedName": "default.onCreate" + }, + "9282": { + "sourceFileName": "../../../../packages/modules/pricing/src/models/price-preference.ts", + "qualifiedName": "default.onInit" + }, + "9283": { + "sourceFileName": "../../../../packages/modules/pricing/src/models/price-preference.ts", + "qualifiedName": "default.onInit" } }, "files": { @@ -1860,7 +2120,7 @@ "1": "../../../../packages/modules/pricing/src/models/index.ts" }, "reflections": { - "1": 8734 + "1": 9179 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/pricing.json b/www/utils/generated/typedoc-json-output/pricing.json index eaf995b64e492..9057ec60a2f98 100644 --- a/www/utils/generated/typedoc-json-output/pricing.json +++ b/www/utils/generated/typedoc-json-output/pricing.json @@ -1,12 +1,12 @@ { - "id": 8114, + "id": 8481, "name": "pricing", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 8361, + "id": 8779, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 8362, + "id": 8780, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 8373, + "target": 8791, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 8363, + "id": 8781, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 8364, + "id": 8782, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 8365, + "id": 8783, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 8366, + "id": 8784, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 8367, + "id": 8785, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 8368, + "id": 8786, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 8369, + "id": 8787, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 8370, + "id": 8788, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 8371, + "id": 8789, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 8372, + "id": 8790, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 8362, - 8363, - 8364, - 8365, - 8366, - 8370, - 8371, - 8372 + 8780, + 8781, + 8782, + 8783, + 8784, + 8788, + 8789, + 8790 ] } ], "typeParameters": [ { - "id": 8373, + "id": 8791, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 8563, + "id": 9008, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -374,7 +374,7 @@ }, "children": [ { - "id": 8564, + "id": 9009, "name": "$and", "variant": "declaration", "kind": 1024, @@ -396,11 +396,11 @@ "types": [ { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8566, + "target": 9011, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -412,7 +412,7 @@ }, { "type": "reference", - "target": 8566, + "target": 9011, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -423,7 +423,7 @@ } }, { - "id": 8565, + "id": 9010, "name": "$or", "variant": "declaration", "kind": 1024, @@ -445,11 +445,11 @@ "types": [ { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8566, + "target": 9011, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -461,7 +461,7 @@ }, { "type": "reference", - "target": 8566, + "target": 9011, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -476,14 +476,14 @@ { "title": "Properties", "children": [ - 8564, - 8565 + 9009, + 9010 ] } ], "typeParameters": [ { - "id": 8566, + "id": 9011, "name": "T", "variant": "typeParam", "kind": 131072, @@ -493,38 +493,43 @@ "extendedBy": [ { "type": "reference", - "target": 8378, + "target": 8796, "name": "FilterablePriceSetProps" }, { "type": "reference", - "target": 8394, + "target": 8812, "name": "FilterablePriceProps" }, { "type": "reference", - "target": 8433, + "target": 8851, "name": "FilterablePriceRuleProps" }, { "type": "reference", - "target": 8465, + "target": 8883, "name": "FilterablePriceListProps" }, { "type": "reference", - "target": 8496, + "target": 8914, "name": "FilterablePriceListRuleProps" }, { "type": "reference", - "target": 8567, + "target": 8940, + "name": "FilterablePricePreferenceProps" + }, + { + "type": "reference", + "target": 9012, "name": "FilterableMoneyAmountProps" } ] }, { - "id": 8415, + "id": 8833, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -539,7 +544,7 @@ }, "children": [ { - "id": 8416, + "id": 8834, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -558,7 +563,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 8417, + "target": 8835, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -570,13 +575,13 @@ { "title": "Properties", "children": [ - 8416 + 8834 ] } ], "typeParameters": [ { - "id": 8417, + "id": 8835, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -589,7 +594,7 @@ ] }, { - "id": 8418, + "id": 8836, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -604,7 +609,7 @@ }, "children": [ { - "id": 8419, + "id": 8837, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -623,7 +628,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 8420, + "target": 8838, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -635,13 +640,13 @@ { "title": "Properties", "children": [ - 8419 + 8837 ] } ], "typeParameters": [ { - "id": 8420, + "id": 8838, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -654,14 +659,14 @@ ] }, { - "id": 8675, + "id": 9120, "name": "Query", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 8676, + "id": 9121, "name": "T", "variant": "typeParam", "kind": 131072, @@ -672,7 +677,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 8676, + "target": 9121, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -685,14 +690,14 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 8676, + "target": 9121, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 8704, + "target": 9149, "name": "Scalar", "package": "@medusajs/types" }, @@ -702,11 +707,11 @@ }, "falseType": { "type": "reference", - "target": 8708, + "target": 9153, "typeArguments": [ { "type": "reference", - "target": 8676, + "target": 9121, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -718,11 +723,11 @@ }, "falseType": { "type": "reference", - "target": 8714, + "target": 9159, "typeArguments": [ { "type": "reference", - "target": 8676, + "target": 9121, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -734,14 +739,14 @@ } }, { - "id": 8677, + "id": 9122, "name": "ExpandScalar", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 8678, + "id": 9123, "name": "T", "variant": "typeParam", "kind": 131072, @@ -759,7 +764,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 8678, + "target": 9123, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -790,7 +795,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 8678, + "target": 9123, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -824,7 +829,7 @@ }, "falseType": { "type": "reference", - "target": 8678, + "target": 9123, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -835,7 +840,7 @@ } }, { - "id": 8704, + "id": 9149, "name": "Scalar", "variant": "declaration", "kind": 2097152, @@ -894,21 +899,21 @@ { "type": "reflection", "declaration": { - "id": 8705, + "id": 9150, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8706, + "id": 9151, "name": "toHexString", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8707, + "id": 9152, "name": "toHexString", "variant": "signature", "kind": 4096, @@ -925,7 +930,7 @@ { "title": "Methods", "children": [ - 8706 + 9151 ] } ] @@ -935,14 +940,14 @@ } }, { - "id": 8732, + "id": 9177, "name": "ReadonlyPrimary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 8733, + "id": 9178, "name": "T", "variant": "typeParam", "kind": 131072, @@ -953,7 +958,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 8733, + "target": 9178, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -974,7 +979,7 @@ "typeArguments": [ { "type": "reference", - "target": 8733, + "target": 9178, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -985,7 +990,7 @@ }, "falseType": { "type": "reference", - "target": 8733, + "target": 9178, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -993,14 +998,14 @@ } }, { - "id": 8722, + "id": 9167, "name": "Primary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 8731, + "id": 9176, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1011,7 +1016,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 8731, + "target": 9176, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1019,14 +1024,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 8723, + "id": 9168, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8724, + "id": 9169, "name": "[PrimaryKeyType]", "variant": "declaration", "kind": 1024, @@ -1043,7 +1048,7 @@ { "title": "Properties", "children": [ - 8724 + 9169 ] } ] @@ -1051,7 +1056,7 @@ }, "trueType": { "type": "reference", - "target": 8732, + "target": 9177, "typeArguments": [ { "type": "reference", @@ -1071,7 +1076,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 8731, + "target": 9176, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1079,14 +1084,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 8725, + "id": 9170, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8726, + "id": 9171, "name": "_id", "variant": "declaration", "kind": 1024, @@ -1103,7 +1108,7 @@ { "title": "Properties", "children": [ - 8726 + 9171 ] } ] @@ -1114,7 +1119,7 @@ "types": [ { "type": "reference", - "target": 8732, + "target": 9177, "typeArguments": [ { "type": "reference", @@ -1140,7 +1145,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 8731, + "target": 9176, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1148,14 +1153,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 8727, + "id": 9172, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8728, + "id": 9173, "name": "uuid", "variant": "declaration", "kind": 1024, @@ -1172,7 +1177,7 @@ { "title": "Properties", "children": [ - 8728 + 9173 ] } ] @@ -1180,7 +1185,7 @@ }, "trueType": { "type": "reference", - "target": 8732, + "target": 9177, "typeArguments": [ { "type": "reference", @@ -1200,7 +1205,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 8731, + "target": 9176, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1208,14 +1213,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 8729, + "id": 9174, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8730, + "id": 9175, "name": "id", "variant": "declaration", "kind": 1024, @@ -1232,7 +1237,7 @@ { "title": "Properties", "children": [ - 8730 + 9175 ] } ] @@ -1240,7 +1245,7 @@ }, "trueType": { "type": "reference", - "target": 8732, + "target": 9177, "typeArguments": [ { "type": "reference", @@ -1266,14 +1271,14 @@ } }, { - "id": 8581, + "id": 9026, "name": "OperatorMap", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 8602, + "id": 9047, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1283,14 +1288,14 @@ "type": { "type": "reflection", "declaration": { - "id": 8582, + "id": 9027, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8583, + "id": 9028, "name": "$and", "variant": "declaration", "kind": 1024, @@ -1301,11 +1306,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 8675, + "target": 9120, "typeArguments": [ { "type": "reference", - "target": 8602, + "target": 9047, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1317,7 +1322,7 @@ } }, { - "id": 8584, + "id": 9029, "name": "$or", "variant": "declaration", "kind": 1024, @@ -1328,11 +1333,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 8675, + "target": 9120, "typeArguments": [ { "type": "reference", - "target": 8602, + "target": 9047, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1344,7 +1349,7 @@ } }, { - "id": 8585, + "id": 9030, "name": "$eq", "variant": "declaration", "kind": 1024, @@ -1356,11 +1361,11 @@ "types": [ { "type": "reference", - "target": 8677, + "target": 9122, "typeArguments": [ { "type": "reference", - "target": 8602, + "target": 9047, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1373,11 +1378,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 8677, + "target": 9122, "typeArguments": [ { "type": "reference", - "target": 8602, + "target": 9047, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1391,7 +1396,7 @@ } }, { - "id": 8586, + "id": 9031, "name": "$ne", "variant": "declaration", "kind": 1024, @@ -1400,11 +1405,11 @@ }, "type": { "type": "reference", - "target": 8677, + "target": 9122, "typeArguments": [ { "type": "reference", - "target": 8602, + "target": 9047, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1415,7 +1420,7 @@ } }, { - "id": 8587, + "id": 9032, "name": "$in", "variant": "declaration", "kind": 1024, @@ -1426,11 +1431,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 8677, + "target": 9122, "typeArguments": [ { "type": "reference", - "target": 8602, + "target": 9047, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1442,7 +1447,7 @@ } }, { - "id": 8588, + "id": 9033, "name": "$nin", "variant": "declaration", "kind": 1024, @@ -1453,11 +1458,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 8677, + "target": 9122, "typeArguments": [ { "type": "reference", - "target": 8602, + "target": 9047, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1469,7 +1474,7 @@ } }, { - "id": 8589, + "id": 9034, "name": "$not", "variant": "declaration", "kind": 1024, @@ -1478,11 +1483,11 @@ }, "type": { "type": "reference", - "target": 8675, + "target": 9120, "typeArguments": [ { "type": "reference", - "target": 8602, + "target": 9047, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1493,7 +1498,7 @@ } }, { - "id": 8590, + "id": 9035, "name": "$gt", "variant": "declaration", "kind": 1024, @@ -1502,11 +1507,11 @@ }, "type": { "type": "reference", - "target": 8677, + "target": 9122, "typeArguments": [ { "type": "reference", - "target": 8602, + "target": 9047, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1517,7 +1522,7 @@ } }, { - "id": 8591, + "id": 9036, "name": "$gte", "variant": "declaration", "kind": 1024, @@ -1526,11 +1531,11 @@ }, "type": { "type": "reference", - "target": 8677, + "target": 9122, "typeArguments": [ { "type": "reference", - "target": 8602, + "target": 9047, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1541,7 +1546,7 @@ } }, { - "id": 8592, + "id": 9037, "name": "$lt", "variant": "declaration", "kind": 1024, @@ -1550,11 +1555,11 @@ }, "type": { "type": "reference", - "target": 8677, + "target": 9122, "typeArguments": [ { "type": "reference", - "target": 8602, + "target": 9047, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1565,7 +1570,7 @@ } }, { - "id": 8593, + "id": 9038, "name": "$lte", "variant": "declaration", "kind": 1024, @@ -1574,11 +1579,11 @@ }, "type": { "type": "reference", - "target": 8677, + "target": 9122, "typeArguments": [ { "type": "reference", - "target": 8602, + "target": 9047, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1589,7 +1594,7 @@ } }, { - "id": 8594, + "id": 9039, "name": "$like", "variant": "declaration", "kind": 1024, @@ -1602,7 +1607,7 @@ } }, { - "id": 8595, + "id": 9040, "name": "$re", "variant": "declaration", "kind": 1024, @@ -1615,7 +1620,7 @@ } }, { - "id": 8596, + "id": 9041, "name": "$ilike", "variant": "declaration", "kind": 1024, @@ -1628,7 +1633,7 @@ } }, { - "id": 8597, + "id": 9042, "name": "$fulltext", "variant": "declaration", "kind": 1024, @@ -1641,7 +1646,7 @@ } }, { - "id": 8598, + "id": 9043, "name": "$overlap", "variant": "declaration", "kind": 1024, @@ -1657,7 +1662,7 @@ } }, { - "id": 8599, + "id": 9044, "name": "$contains", "variant": "declaration", "kind": 1024, @@ -1673,7 +1678,7 @@ } }, { - "id": 8600, + "id": 9045, "name": "$contained", "variant": "declaration", "kind": 1024, @@ -1689,7 +1694,7 @@ } }, { - "id": 8601, + "id": 9046, "name": "$exists", "variant": "declaration", "kind": 1024, @@ -1706,25 +1711,25 @@ { "title": "Properties", "children": [ - 8583, - 8584, - 8585, - 8586, - 8587, - 8588, - 8589, - 8590, - 8591, - 8592, - 8593, - 8594, - 8595, - 8596, - 8597, - 8598, - 8599, - 8600, - 8601 + 9028, + 9029, + 9030, + 9031, + 9032, + 9033, + 9034, + 9035, + 9036, + 9037, + 9038, + 9039, + 9040, + 9041, + 9042, + 9043, + 9044, + 9045, + 9046 ] } ] @@ -1732,14 +1737,14 @@ } }, { - "id": 8720, + "id": 9165, "name": "FilterValue2", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 8721, + "id": 9166, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1751,18 +1756,18 @@ "types": [ { "type": "reference", - "target": 8721, + "target": 9166, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, { "type": "reference", - "target": 8677, + "target": 9122, "typeArguments": [ { "type": "reference", - "target": 8721, + "target": 9166, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1773,11 +1778,11 @@ }, { "type": "reference", - "target": 8722, + "target": 9167, "typeArguments": [ { "type": "reference", - "target": 8721, + "target": 9166, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1790,14 +1795,14 @@ } }, { - "id": 8714, + "id": 9159, "name": "FilterValue", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 8715, + "id": 9160, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1809,15 +1814,15 @@ "types": [ { "type": "reference", - "target": 8581, + "target": 9026, "typeArguments": [ { "type": "reference", - "target": 8720, + "target": 9165, "typeArguments": [ { "type": "reference", - "target": 8715, + "target": 9160, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1832,11 +1837,11 @@ }, { "type": "reference", - "target": 8720, + "target": 9165, "typeArguments": [ { "type": "reference", - "target": 8715, + "target": 9160, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1849,11 +1854,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 8720, + "target": 9165, "typeArguments": [ { "type": "reference", - "target": 8715, + "target": 9160, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1871,7 +1876,7 @@ } }, { - "id": 8719, + "id": 9164, "name": "PrevLimit", "variant": "declaration", "kind": 2097152, @@ -1899,14 +1904,14 @@ } }, { - "id": 8708, + "id": 9153, "name": "FilterQuery", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 8712, + "id": 9157, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1917,7 +1922,7 @@ } }, { - "id": 8713, + "id": 9158, "name": "Prev", "variant": "typeParam", "kind": 131072, @@ -1936,7 +1941,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 8713, + "target": 9158, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1957,7 +1962,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 8712, + "target": 9157, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1979,7 +1984,7 @@ }, "objectType": { "type": "reference", - "target": 8712, + "target": 9157, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2036,7 +2041,7 @@ }, "objectType": { "type": "reference", - "target": 8712, + "target": 9157, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2044,7 +2049,7 @@ }, { "type": "reference", - "target": 8581, + "target": 9026, "typeArguments": [ { "type": "indexedAccess", @@ -2060,7 +2065,7 @@ }, "objectType": { "type": "reference", - "target": 8712, + "target": 9157, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2088,7 +2093,7 @@ }, "objectType": { "type": "reference", - "target": 8712, + "target": 9157, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2113,21 +2118,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 8709, + "id": 9154, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 8710, + "id": 9155, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 8711, + "id": 9156, "name": "x", "variant": "param", "kind": 32768, @@ -2164,7 +2169,7 @@ }, "trueType": { "type": "reference", - "target": 8708, + "target": 9153, "typeArguments": [ { "type": "reference", @@ -2191,14 +2196,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 8713, + "target": 9158, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 8719, + "target": 9164, "name": "PrevLimit", "package": "@medusajs/types" } @@ -2228,7 +2233,7 @@ } }, { - "id": 8716, + "id": 9161, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -2258,14 +2263,14 @@ { "type": "reflection", "declaration": { - "id": 8717, + "id": 9162, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8718, + "id": 9163, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -2282,7 +2287,7 @@ { "title": "Properties", "children": [ - 8718 + 9163 ] } ] @@ -2292,14 +2297,14 @@ } }, { - "id": 8698, + "id": 9143, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 8703, + "id": 9148, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2313,14 +2318,14 @@ "type": { "type": "reflection", "declaration": { - "id": 8699, + "id": 9144, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8700, + "id": 9145, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2331,7 +2336,7 @@ } }, { - "id": 8701, + "id": 9146, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2340,20 +2345,20 @@ }, "type": { "type": "reference", - "target": 8716, + "target": 9161, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 8702, + "id": 9147, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 8703, + "target": 9148, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2364,9 +2369,9 @@ { "title": "Properties", "children": [ - 8700, - 8701, - 8702 + 9145, + 9146, + 9147 ] } ] @@ -2374,14 +2379,14 @@ } }, { - "id": 8648, + "id": 9093, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 8651, + "id": 9096, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2397,11 +2402,11 @@ "types": [ { "type": "reference", - "target": 8698, + "target": 9143, "typeArguments": [ { "type": "reference", - "target": 8651, + "target": 9096, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2413,14 +2418,14 @@ { "type": "reflection", "declaration": { - "id": 8649, + "id": 9094, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8650, + "id": 9095, "name": "options", "variant": "declaration", "kind": 1024, @@ -2452,7 +2457,7 @@ { "title": "Properties", "children": [ - 8650 + 9095 ] } ] @@ -2462,14 +2467,14 @@ } }, { - "id": 8658, + "id": 9103, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 8667, + "id": 9112, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2483,14 +2488,14 @@ "type": { "type": "reflection", "declaration": { - "id": 8659, + "id": 9104, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8660, + "id": 9105, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2501,21 +2506,21 @@ } }, { - "id": 8661, + "id": 9106, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 8667, + "target": 9112, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 8662, + "id": 9107, "name": "source", "variant": "declaration", "kind": 1024, @@ -2526,7 +2531,7 @@ } }, { - "id": 8663, + "id": 9108, "name": "object", "variant": "declaration", "kind": 1024, @@ -2537,7 +2542,7 @@ } }, { - "id": 8664, + "id": 9109, "name": "action", "variant": "declaration", "kind": 1024, @@ -2550,7 +2555,7 @@ } }, { - "id": 8665, + "id": 9110, "name": "context", "variant": "declaration", "kind": 1024, @@ -2566,7 +2571,7 @@ "typeArguments": [ { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" }, @@ -2580,7 +2585,7 @@ } }, { - "id": 8666, + "id": 9111, "name": "options", "variant": "declaration", "kind": 1024, @@ -2612,13 +2617,13 @@ { "title": "Properties", "children": [ - 8660, - 8661, - 8662, - 8663, - 8664, - 8665, - 8666 + 9105, + 9106, + 9107, + 9108, + 9109, + 9110, + 9111 ] } ] @@ -2626,7 +2631,7 @@ } }, { - "id": 8689, + "id": 9134, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -2634,14 +2639,14 @@ "type": { "type": "reflection", "declaration": { - "id": 8690, + "id": 9135, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8691, + "id": 9136, "name": "alias", "variant": "declaration", "kind": 1024, @@ -2652,7 +2657,7 @@ } }, { - "id": 8692, + "id": 9137, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -2663,7 +2668,7 @@ } }, { - "id": 8693, + "id": 9138, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -2674,7 +2679,7 @@ } }, { - "id": 8694, + "id": 9139, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2685,7 +2690,7 @@ } }, { - "id": 8695, + "id": 9140, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -2706,7 +2711,7 @@ } }, { - "id": 8696, + "id": 9141, "name": "isList", "variant": "declaration", "kind": 1024, @@ -2727,7 +2732,7 @@ } }, { - "id": 8697, + "id": 9142, "name": "args", "variant": "declaration", "kind": 1024, @@ -2767,13 +2772,13 @@ { "title": "Properties", "children": [ - 8691, - 8692, - 8693, - 8694, - 8695, - 8696, - 8697 + 9136, + 9137, + 9138, + 9139, + 9140, + 9141, + 9142 ] } ] @@ -2781,14 +2786,14 @@ } }, { - "id": 8686, + "id": 9131, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 8687, + "id": 9132, "name": "name", "variant": "declaration", "kind": 1024, @@ -2811,7 +2816,7 @@ } }, { - "id": 8688, + "id": 9133, "name": "args", "variant": "declaration", "kind": 1024, @@ -2851,21 +2856,21 @@ { "title": "Properties", "children": [ - 8687, - 8688 + 9132, + 9133 ] } ] }, { - "id": 8620, + "id": 9065, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 8621, + "id": 9066, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2876,7 +2881,7 @@ } }, { - "id": 8622, + "id": 9067, "name": "alias", "variant": "declaration", "kind": 1024, @@ -2896,7 +2901,7 @@ "types": [ { "type": "reference", - "target": 8686, + "target": 9131, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -2904,7 +2909,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 8686, + "target": 9131, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -2913,7 +2918,7 @@ } }, { - "id": 8623, + "id": 9068, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -2949,14 +2954,14 @@ { "type": "reflection", "declaration": { - "id": 8624, + "id": 9069, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8625, + "id": 9070, "name": "path", "variant": "declaration", "kind": 1024, @@ -2967,7 +2972,7 @@ } }, { - "id": 8626, + "id": 9071, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -2985,8 +2990,8 @@ { "title": "Properties", "children": [ - 8625, - 8626 + 9070, + 9071 ] } ] @@ -3000,7 +3005,7 @@ } }, { - "id": 8627, + "id": 9072, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -3014,7 +3019,7 @@ } }, { - "id": 8628, + "id": 9073, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -3025,14 +3030,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 8689, + "target": 9134, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 8629, + "id": 9074, "name": "extends", "variant": "declaration", "kind": 1024, @@ -3044,14 +3049,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 8630, + "id": 9075, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8631, + "id": 9076, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3062,14 +3067,14 @@ } }, { - "id": 8632, + "id": 9077, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 8689, + "target": 9134, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -3079,8 +3084,8 @@ { "title": "Properties", "children": [ - 8631, - 8632 + 9076, + 9077 ] } ] @@ -3089,7 +3094,7 @@ } }, { - "id": 8633, + "id": 9078, "name": "args", "variant": "declaration", "kind": 1024, @@ -3129,19 +3134,19 @@ { "title": "Properties", "children": [ - 8621, - 8622, - 8623, - 8627, - 8628, - 8629, - 8633 + 9066, + 9067, + 9068, + 9072, + 9073, + 9074, + 9078 ] } ] }, { - "id": 8637, + "id": 9082, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -3160,14 +3165,14 @@ { "type": "reflection", "declaration": { - "id": 8638, + "id": 9083, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8639, + "id": 9084, "name": "type", "variant": "declaration", "kind": 1024, @@ -3263,7 +3268,7 @@ } }, { - "id": 8640, + "id": 9085, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -3276,7 +3281,7 @@ } }, { - "id": 8641, + "id": 9086, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -3289,7 +3294,7 @@ } }, { - "id": 8642, + "id": 9087, "name": "options", "variant": "declaration", "kind": 1024, @@ -3329,10 +3334,10 @@ { "title": "Properties", "children": [ - 8639, - 8640, - 8641, - 8642 + 9084, + 9085, + 9086, + 9087 ] } ] @@ -3344,7 +3349,7 @@ } }, { - "id": 8514, + "id": 8959, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -3361,7 +3366,7 @@ "typeArguments": [ { "type": "reference", - "target": 8620, + "target": 9065, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -3393,14 +3398,14 @@ { "type": "reflection", "declaration": { - "id": 8515, + "id": 8960, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8516, + "id": 8961, "name": "schema", "variant": "declaration", "kind": 1024, @@ -3421,7 +3426,7 @@ } }, { - "id": 8517, + "id": 8962, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -3432,14 +3437,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 8634, + "target": 9079, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 8518, + "id": 8963, "name": "extends", "variant": "declaration", "kind": 1024, @@ -3451,14 +3456,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 8519, + "id": 8964, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8520, + "id": 8965, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3469,7 +3474,7 @@ } }, { - "id": 8521, + "id": 8966, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -3497,14 +3502,14 @@ { "type": "reflection", "declaration": { - "id": 8522, + "id": 8967, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8523, + "id": 8968, "name": "path", "variant": "declaration", "kind": 1024, @@ -3515,7 +3520,7 @@ } }, { - "id": 8524, + "id": 8969, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -3531,7 +3536,7 @@ } }, { - "id": 8525, + "id": 8970, "name": "isList", "variant": "declaration", "kind": 1024, @@ -3548,9 +3553,9 @@ { "title": "Properties", "children": [ - 8523, - 8524, - 8525 + 8968, + 8969, + 8970 ] } ] @@ -3564,14 +3569,14 @@ } }, { - "id": 8526, + "id": 8971, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 8634, + "target": 9079, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -3581,9 +3586,9 @@ { "title": "Properties", "children": [ - 8520, - 8521, - 8526 + 8965, + 8966, + 8971 ] } ] @@ -3592,7 +3597,7 @@ } }, { - "id": 8527, + "id": 8972, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3605,7 +3610,7 @@ } }, { - "id": 8528, + "id": 8973, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -3621,7 +3626,7 @@ } }, { - "id": 8529, + "id": 8974, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -3642,7 +3647,7 @@ } }, { - "id": 8530, + "id": 8975, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -3678,7 +3683,7 @@ } }, { - "id": 8531, + "id": 8976, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -3699,7 +3704,7 @@ } }, { - "id": 8532, + "id": 8977, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -3723,7 +3728,7 @@ } }, { - "id": 8533, + "id": 8978, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -3733,14 +3738,14 @@ "type": { "type": "reflection", "declaration": { - "id": 8534, + "id": 8979, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8535, + "id": 8980, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -3761,7 +3766,7 @@ } }, { - "id": 8536, + "id": 8981, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -3782,7 +3787,7 @@ } }, { - "id": 8537, + "id": 8982, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -3791,7 +3796,7 @@ }, "type": { "type": "reference", - "target": 8637, + "target": 9082, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -3801,9 +3806,9 @@ { "title": "Properties", "children": [ - 8535, - 8536, - 8537 + 8980, + 8981, + 8982 ] } ] @@ -3815,16 +3820,16 @@ { "title": "Properties", "children": [ - 8516, - 8517, - 8518, - 8527, - 8528, - 8529, - 8530, - 8531, - 8532, - 8533 + 8961, + 8962, + 8963, + 8972, + 8973, + 8974, + 8975, + 8976, + 8977, + 8978 ] } ] @@ -3834,7 +3839,7 @@ } }, { - "id": 8634, + "id": 9079, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -3844,21 +3849,21 @@ "types": [ { "type": "reference", - "target": 8689, + "target": 9134, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 8635, + "id": 9080, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8636, + "id": 9081, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -3883,7 +3888,7 @@ { "title": "Properties", "children": [ - 8636 + 9081 ] } ] @@ -3893,7 +3898,7 @@ } }, { - "id": 8310, + "id": 8726, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -3901,13 +3906,13 @@ "extendedBy": [ { "type": "reference", - "target": 8115, + "target": 8482, "name": "IPricingModuleService" } ] }, { - "id": 8554, + "id": 8999, "name": "MoneyAmountDTO", "variant": "declaration", "kind": 256, @@ -3922,7 +3927,7 @@ }, "children": [ { - "id": 8555, + "id": 9000, "name": "id", "variant": "declaration", "kind": 1024, @@ -3941,7 +3946,7 @@ } }, { - "id": 8556, + "id": 9001, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -3962,7 +3967,7 @@ } }, { - "id": 8557, + "id": 9002, "name": "amount", "variant": "declaration", "kind": 1024, @@ -3979,13 +3984,13 @@ }, "type": { "type": "reference", - "target": 8553, + "target": 8998, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 8558, + "id": 9003, "name": "min_quantity", "variant": "declaration", "kind": 1024, @@ -4002,13 +4007,13 @@ }, "type": { "type": "reference", - "target": 8553, + "target": 8998, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 8559, + "id": 9004, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -4025,13 +4030,13 @@ }, "type": { "type": "reference", - "target": 8553, + "target": 8998, "name": "BigNumberValue", "package": "@medusajs/types" } }, { - "id": 8560, + "id": 9005, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4055,7 +4060,7 @@ } }, { - "id": 8561, + "id": 9006, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4079,7 +4084,7 @@ } }, { - "id": 8562, + "id": 9007, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -4116,20 +4121,20 @@ { "title": "Properties", "children": [ - 8555, - 8556, - 8557, - 8558, - 8559, - 8560, - 8561, - 8562 + 9000, + 9001, + 9002, + 9003, + 9004, + 9005, + 9006, + 9007 ] } ] }, { - "id": 8668, + "id": 9113, "name": "CreateMoneyAmountDTO", "variant": "declaration", "kind": 256, @@ -4144,7 +4149,7 @@ }, "children": [ { - "id": 8669, + "id": 9114, "name": "id", "variant": "declaration", "kind": 1024, @@ -4165,7 +4170,7 @@ } }, { - "id": 8670, + "id": 9115, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -4184,7 +4189,7 @@ } }, { - "id": 8671, + "id": 9116, "name": "amount", "variant": "declaration", "kind": 1024, @@ -4199,13 +4204,13 @@ }, "type": { "type": "reference", - "target": 8538, + "target": 8983, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 8672, + "id": 9117, "name": "min_quantity", "variant": "declaration", "kind": 1024, @@ -4229,7 +4234,7 @@ }, { "type": "reference", - "target": 8538, + "target": 8983, "name": "BigNumberInput", "package": "@medusajs/types" } @@ -4237,7 +4242,7 @@ } }, { - "id": 8673, + "id": 9118, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -4261,7 +4266,7 @@ }, { "type": "reference", - "target": 8538, + "target": 8983, "name": "BigNumberInput", "package": "@medusajs/types" } @@ -4273,29 +4278,29 @@ { "title": "Properties", "children": [ - 8669, - 8670, - 8671, - 8672, - 8673 + 9114, + 9115, + 9116, + 9117, + 9118 ] } ], "extendedBy": [ { "type": "reference", - "target": 8572, + "target": 9017, "name": "CreatePricesDTO" }, { "type": "reference", - "target": 8604, + "target": 9049, "name": "CreatePriceListPriceDTO" } ] }, { - "id": 8680, + "id": 9125, "name": "UpdateMoneyAmountDTO", "variant": "declaration", "kind": 256, @@ -4318,7 +4323,7 @@ }, "children": [ { - "id": 8681, + "id": 9126, "name": "id", "variant": "declaration", "kind": 1024, @@ -4337,7 +4342,7 @@ } }, { - "id": 8682, + "id": 9127, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -4367,7 +4372,7 @@ } }, { - "id": 8683, + "id": 9128, "name": "amount", "variant": "declaration", "kind": 1024, @@ -4384,13 +4389,13 @@ }, "type": { "type": "reference", - "target": 8538, + "target": 8983, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 8684, + "id": 9129, "name": "min_quantity", "variant": "declaration", "kind": 1024, @@ -4414,7 +4419,7 @@ }, { "type": "reference", - "target": 8538, + "target": 8983, "name": "BigNumberInput", "package": "@medusajs/types" } @@ -4422,7 +4427,7 @@ } }, { - "id": 8685, + "id": 9130, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -4446,7 +4451,7 @@ }, { "type": "reference", - "target": 8538, + "target": 8983, "name": "BigNumberInput", "package": "@medusajs/types" } @@ -4458,24 +4463,24 @@ { "title": "Properties", "children": [ - 8681, - 8682, - 8683, - 8684, - 8685 + 9126, + 9127, + 9128, + 9129, + 9130 ] } ], "extendedBy": [ { "type": "reference", - "target": 8612, + "target": 9057, "name": "UpdatePriceListPriceDTO" } ] }, { - "id": 8567, + "id": 9012, "name": "FilterableMoneyAmountProps", "variant": "declaration", "kind": 256, @@ -4490,7 +4495,7 @@ }, "children": [ { - "id": 8570, + "id": 9015, "name": "$and", "variant": "declaration", "kind": 1024, @@ -4513,17 +4518,17 @@ "types": [ { "type": "reference", - "target": 8567, + "target": 9012, "name": "FilterableMoneyAmountProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8567, + "target": 9012, "name": "FilterableMoneyAmountProps", "package": "@medusajs/types" } @@ -4536,12 +4541,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8564, + "target": 9009, "name": "BaseFilterable.$and" } }, { - "id": 8571, + "id": 9016, "name": "$or", "variant": "declaration", "kind": 1024, @@ -4564,17 +4569,17 @@ "types": [ { "type": "reference", - "target": 8567, + "target": 9012, "name": "FilterableMoneyAmountProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8567, + "target": 9012, "name": "FilterableMoneyAmountProps", "package": "@medusajs/types" } @@ -4587,12 +4592,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8565, + "target": 9010, "name": "BaseFilterable.$or" } }, { - "id": 8568, + "id": 9013, "name": "id", "variant": "declaration", "kind": 1024, @@ -4616,7 +4621,7 @@ } }, { - "id": 8569, + "id": 9014, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -4653,21 +4658,21 @@ { "title": "Properties", "children": [ - 8570, - 8571, - 8568, - 8569 + 9015, + 9016, + 9013, + 9014 ] } ], "extendedTypes": [ { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8567, + "target": 9012, "name": "FilterableMoneyAmountProps", "package": "@medusajs/types" } @@ -4678,7 +4683,7 @@ ] }, { - "id": 8579, + "id": 9024, "name": "PriceListStatus", "variant": "declaration", "kind": 2097152, @@ -4706,7 +4711,7 @@ } }, { - "id": 8580, + "id": 9025, "name": "PriceListType", "variant": "declaration", "kind": 2097152, @@ -4734,7 +4739,7 @@ } }, { - "id": 8453, + "id": 8871, "name": "PriceListDTO", "variant": "declaration", "kind": 256, @@ -4749,7 +4754,7 @@ }, "children": [ { - "id": 8454, + "id": 8872, "name": "id", "variant": "declaration", "kind": 1024, @@ -4768,7 +4773,7 @@ } }, { - "id": 8455, + "id": 8873, "name": "title", "variant": "declaration", "kind": 1024, @@ -4789,7 +4794,7 @@ } }, { - "id": 8456, + "id": 8874, "name": "description", "variant": "declaration", "kind": 1024, @@ -4810,7 +4815,7 @@ } }, { - "id": 8457, + "id": 8875, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -4840,7 +4845,7 @@ } }, { - "id": 8458, + "id": 8876, "name": "status", "variant": "declaration", "kind": 1024, @@ -4857,13 +4862,13 @@ }, "type": { "type": "reference", - "target": 8579, + "target": 9024, "name": "PriceListStatus", "package": "@medusajs/types" } }, { - "id": 8459, + "id": 8877, "name": "type", "variant": "declaration", "kind": 1024, @@ -4880,13 +4885,13 @@ }, "type": { "type": "reference", - "target": 8580, + "target": 9025, "name": "PriceListType", "package": "@medusajs/types" } }, { - "id": 8460, + "id": 8878, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -4916,7 +4921,7 @@ } }, { - "id": 8461, + "id": 8879, "name": "rules_count", "variant": "declaration", "kind": 1024, @@ -4937,7 +4942,7 @@ } }, { - "id": 8462, + "id": 8880, "name": "prices", "variant": "declaration", "kind": 1024, @@ -4959,14 +4964,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 8401, + "target": 8819, "name": "PriceDTO", "package": "@medusajs/types" } } }, { - "id": 8463, + "id": 8881, "name": "money_amounts", "variant": "declaration", "kind": 1024, @@ -4988,14 +4993,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 8554, + "target": 8999, "name": "MoneyAmountDTO", "package": "@medusajs/types" } } }, { - "id": 8464, + "id": 8882, "name": "price_list_rules", "variant": "declaration", "kind": 1024, @@ -5017,7 +5022,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 8491, + "target": 8909, "name": "PriceListRuleDTO", "package": "@medusajs/types" } @@ -5028,23 +5033,23 @@ { "title": "Properties", "children": [ - 8454, - 8455, - 8456, - 8457, - 8458, - 8459, - 8460, - 8461, - 8462, - 8463, - 8464 + 8872, + 8873, + 8874, + 8875, + 8876, + 8877, + 8878, + 8879, + 8880, + 8881, + 8882 ] } ] }, { - "id": 8604, + "id": 9049, "name": "CreatePriceListPriceDTO", "variant": "declaration", "kind": 256, @@ -5059,7 +5064,7 @@ }, "children": [ { - "id": 8607, + "id": 9052, "name": "id", "variant": "declaration", "kind": 1024, @@ -5081,12 +5086,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8669, + "target": 9114, "name": "CreateMoneyAmountDTO.id" } }, { - "id": 8608, + "id": 9053, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -5107,12 +5112,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8670, + "target": 9115, "name": "CreateMoneyAmountDTO.currency_code" } }, { - "id": 8609, + "id": 9054, "name": "amount", "variant": "declaration", "kind": 1024, @@ -5129,18 +5134,18 @@ }, "type": { "type": "reference", - "target": 8538, + "target": 8983, "name": "BigNumberInput", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 8671, + "target": 9116, "name": "CreateMoneyAmountDTO.amount" } }, { - "id": 8610, + "id": 9055, "name": "min_quantity", "variant": "declaration", "kind": 1024, @@ -5165,7 +5170,7 @@ }, { "type": "reference", - "target": 8538, + "target": 8983, "name": "BigNumberInput", "package": "@medusajs/types" } @@ -5173,12 +5178,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8672, + "target": 9117, "name": "CreateMoneyAmountDTO.min_quantity" } }, { - "id": 8611, + "id": 9056, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -5203,7 +5208,7 @@ }, { "type": "reference", - "target": 8538, + "target": 8983, "name": "BigNumberInput", "package": "@medusajs/types" } @@ -5211,12 +5216,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8673, + "target": 9118, "name": "CreateMoneyAmountDTO.max_quantity" } }, { - "id": 8605, + "id": 9050, "name": "price_set_id", "variant": "declaration", "kind": 1024, @@ -5235,7 +5240,7 @@ } }, { - "id": 8606, + "id": 9051, "name": "rules", "variant": "declaration", "kind": 1024, @@ -5252,7 +5257,7 @@ }, "type": { "type": "reference", - "target": 8679, + "target": 9124, "name": "CreatePriceListPriceRules", "package": "@medusajs/types" } @@ -5262,27 +5267,27 @@ { "title": "Properties", "children": [ - 8607, - 8608, - 8609, - 8610, - 8611, - 8605, - 8606 + 9052, + 9053, + 9054, + 9055, + 9056, + 9050, + 9051 ] } ], "extendedTypes": [ { "type": "reference", - "target": 8668, + "target": 9113, "name": "CreateMoneyAmountDTO", "package": "@medusajs/types" } ] }, { - "id": 8612, + "id": 9057, "name": "UpdatePriceListPriceDTO", "variant": "declaration", "kind": 256, @@ -5305,7 +5310,7 @@ }, "children": [ { - "id": 8615, + "id": 9060, "name": "id", "variant": "declaration", "kind": 1024, @@ -5326,12 +5331,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8681, + "target": 9126, "name": "UpdateMoneyAmountDTO.id" } }, { - "id": 8616, + "id": 9061, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -5362,12 +5367,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8682, + "target": 9127, "name": "UpdateMoneyAmountDTO.currency_code" } }, { - "id": 8617, + "id": 9062, "name": "amount", "variant": "declaration", "kind": 1024, @@ -5385,18 +5390,18 @@ }, "type": { "type": "reference", - "target": 8538, + "target": 8983, "name": "BigNumberInput", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 8683, + "target": 9128, "name": "UpdateMoneyAmountDTO.amount" } }, { - "id": 8618, + "id": 9063, "name": "min_quantity", "variant": "declaration", "kind": 1024, @@ -5421,7 +5426,7 @@ }, { "type": "reference", - "target": 8538, + "target": 8983, "name": "BigNumberInput", "package": "@medusajs/types" } @@ -5429,12 +5434,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8684, + "target": 9129, "name": "UpdateMoneyAmountDTO.min_quantity" } }, { - "id": 8619, + "id": 9064, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -5459,7 +5464,7 @@ }, { "type": "reference", - "target": 8538, + "target": 8983, "name": "BigNumberInput", "package": "@medusajs/types" } @@ -5467,12 +5472,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8685, + "target": 9130, "name": "UpdateMoneyAmountDTO.max_quantity" } }, { - "id": 8613, + "id": 9058, "name": "price_set_id", "variant": "declaration", "kind": 1024, @@ -5491,7 +5496,7 @@ } }, { - "id": 8614, + "id": 9059, "name": "rules", "variant": "declaration", "kind": 1024, @@ -5508,7 +5513,7 @@ }, "type": { "type": "reference", - "target": 8679, + "target": 9124, "name": "CreatePriceListPriceRules", "package": "@medusajs/types" } @@ -5518,27 +5523,27 @@ { "title": "Properties", "children": [ - 8615, - 8616, - 8617, - 8618, - 8619, - 8613, - 8614 + 9060, + 9061, + 9062, + 9063, + 9064, + 9058, + 9059 ] } ], "extendedTypes": [ { "type": "reference", - "target": 8680, + "target": 9125, "name": "UpdateMoneyAmountDTO", "package": "@medusajs/types" } ] }, { - "id": 8679, + "id": 9124, "name": "CreatePriceListPriceRules", "variant": "declaration", "kind": 256, @@ -5574,7 +5579,7 @@ ] }, { - "id": 8603, + "id": 9048, "name": "CreatePriceListRules", "variant": "declaration", "kind": 256, @@ -5613,7 +5618,7 @@ ] }, { - "id": 8474, + "id": 8892, "name": "CreatePriceListDTO", "variant": "declaration", "kind": 256, @@ -5628,7 +5633,7 @@ }, "children": [ { - "id": 8475, + "id": 8893, "name": "title", "variant": "declaration", "kind": 1024, @@ -5647,7 +5652,7 @@ } }, { - "id": 8476, + "id": 8894, "name": "description", "variant": "declaration", "kind": 1024, @@ -5666,7 +5671,7 @@ } }, { - "id": 8477, + "id": 8895, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -5696,7 +5701,7 @@ } }, { - "id": 8478, + "id": 8896, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -5726,7 +5731,7 @@ } }, { - "id": 8479, + "id": 8897, "name": "status", "variant": "declaration", "kind": 1024, @@ -5743,13 +5748,13 @@ }, "type": { "type": "reference", - "target": 8579, + "target": 9024, "name": "PriceListStatus", "package": "@medusajs/types" } }, { - "id": 8480, + "id": 8898, "name": "type", "variant": "declaration", "kind": 1024, @@ -5766,13 +5771,13 @@ }, "type": { "type": "reference", - "target": 8580, + "target": 9025, "name": "PriceListType", "package": "@medusajs/types" } }, { - "id": 8481, + "id": 8899, "name": "rules", "variant": "declaration", "kind": 1024, @@ -5789,13 +5794,13 @@ }, "type": { "type": "reference", - "target": 8603, + "target": 9048, "name": "CreatePriceListRules", "package": "@medusajs/types" } }, { - "id": 8482, + "id": 8900, "name": "prices", "variant": "declaration", "kind": 1024, @@ -5814,7 +5819,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 8604, + "target": 9049, "name": "CreatePriceListPriceDTO", "package": "@medusajs/types" } @@ -5825,20 +5830,20 @@ { "title": "Properties", "children": [ - 8475, - 8476, - 8477, - 8478, - 8479, - 8480, - 8481, - 8482 + 8893, + 8894, + 8895, + 8896, + 8897, + 8898, + 8899, + 8900 ] } ] }, { - "id": 8483, + "id": 8901, "name": "UpdatePriceListDTO", "variant": "declaration", "kind": 256, @@ -5853,7 +5858,7 @@ }, "children": [ { - "id": 8484, + "id": 8902, "name": "id", "variant": "declaration", "kind": 1024, @@ -5872,7 +5877,7 @@ } }, { - "id": 8485, + "id": 8903, "name": "title", "variant": "declaration", "kind": 1024, @@ -5893,7 +5898,7 @@ } }, { - "id": 8486, + "id": 8904, "name": "description", "variant": "declaration", "kind": 1024, @@ -5923,7 +5928,7 @@ } }, { - "id": 8487, + "id": 8905, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -5953,7 +5958,7 @@ } }, { - "id": 8488, + "id": 8906, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -5983,7 +5988,7 @@ } }, { - "id": 8489, + "id": 8907, "name": "status", "variant": "declaration", "kind": 1024, @@ -6000,13 +6005,13 @@ }, "type": { "type": "reference", - "target": 8579, + "target": 9024, "name": "PriceListStatus", "package": "@medusajs/types" } }, { - "id": 8490, + "id": 8908, "name": "rules", "variant": "declaration", "kind": 1024, @@ -6023,7 +6028,7 @@ }, "type": { "type": "reference", - "target": 8603, + "target": 9048, "name": "CreatePriceListRules", "package": "@medusajs/types" } @@ -6033,19 +6038,19 @@ { "title": "Properties", "children": [ - 8484, - 8485, - 8486, - 8487, - 8488, - 8489, - 8490 + 8902, + 8903, + 8904, + 8905, + 8906, + 8907, + 8908 ] } ] }, { - "id": 8465, + "id": 8883, "name": "FilterablePriceListProps", "variant": "declaration", "kind": 256, @@ -6060,7 +6065,7 @@ }, "children": [ { - "id": 8472, + "id": 8890, "name": "$and", "variant": "declaration", "kind": 1024, @@ -6083,17 +6088,17 @@ "types": [ { "type": "reference", - "target": 8465, + "target": 8883, "name": "FilterablePriceListProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8465, + "target": 8883, "name": "FilterablePriceListProps", "package": "@medusajs/types" } @@ -6106,12 +6111,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8564, + "target": 9009, "name": "BaseFilterable.$and" } }, { - "id": 8473, + "id": 8891, "name": "$or", "variant": "declaration", "kind": 1024, @@ -6134,17 +6139,17 @@ "types": [ { "type": "reference", - "target": 8465, + "target": 8883, "name": "FilterablePriceListProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8465, + "target": 8883, "name": "FilterablePriceListProps", "package": "@medusajs/types" } @@ -6157,12 +6162,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8565, + "target": 9010, "name": "BaseFilterable.$or" } }, { - "id": 8466, + "id": 8884, "name": "q", "variant": "declaration", "kind": 1024, @@ -6183,7 +6188,7 @@ } }, { - "id": 8467, + "id": 8885, "name": "id", "variant": "declaration", "kind": 1024, @@ -6216,7 +6221,7 @@ } }, { - "id": 8468, + "id": 8886, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -6233,7 +6238,7 @@ }, "type": { "type": "reference", - "target": 8581, + "target": 9026, "typeArguments": [ { "type": "intrinsic", @@ -6245,7 +6250,7 @@ } }, { - "id": 8469, + "id": 8887, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -6262,7 +6267,7 @@ }, "type": { "type": "reference", - "target": 8581, + "target": 9026, "typeArguments": [ { "type": "intrinsic", @@ -6274,7 +6279,7 @@ } }, { - "id": 8470, + "id": 8888, "name": "status", "variant": "declaration", "kind": 1024, @@ -6293,14 +6298,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 8579, + "target": 9024, "name": "PriceListStatus", "package": "@medusajs/types" } } }, { - "id": 8471, + "id": 8889, "name": "rules_count", "variant": "declaration", "kind": 1024, @@ -6328,25 +6333,25 @@ { "title": "Properties", "children": [ - 8472, - 8473, - 8466, - 8467, - 8468, - 8469, - 8470, - 8471 + 8890, + 8891, + 8884, + 8885, + 8886, + 8887, + 8888, + 8889 ] } ], "extendedTypes": [ { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8465, + "target": 8883, "name": "FilterablePriceListProps", "package": "@medusajs/types" } @@ -6357,7 +6362,7 @@ ] }, { - "id": 8496, + "id": 8914, "name": "FilterablePriceListRuleProps", "variant": "declaration", "kind": 256, @@ -6372,7 +6377,7 @@ }, "children": [ { - "id": 8500, + "id": 8918, "name": "$and", "variant": "declaration", "kind": 1024, @@ -6395,17 +6400,17 @@ "types": [ { "type": "reference", - "target": 8496, + "target": 8914, "name": "FilterablePriceListRuleProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8496, + "target": 8914, "name": "FilterablePriceListRuleProps", "package": "@medusajs/types" } @@ -6418,12 +6423,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8564, + "target": 9009, "name": "BaseFilterable.$and" } }, { - "id": 8501, + "id": 8919, "name": "$or", "variant": "declaration", "kind": 1024, @@ -6446,17 +6451,17 @@ "types": [ { "type": "reference", - "target": 8496, + "target": 8914, "name": "FilterablePriceListRuleProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8496, + "target": 8914, "name": "FilterablePriceListRuleProps", "package": "@medusajs/types" } @@ -6469,12 +6474,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8565, + "target": 9010, "name": "BaseFilterable.$or" } }, { - "id": 8497, + "id": 8915, "name": "id", "variant": "declaration", "kind": 1024, @@ -6498,7 +6503,7 @@ } }, { - "id": 8498, + "id": 8916, "name": "value", "variant": "declaration", "kind": 1024, @@ -6522,7 +6527,7 @@ } }, { - "id": 8499, + "id": 8917, "name": "price_list_id", "variant": "declaration", "kind": 1024, @@ -6550,22 +6555,22 @@ { "title": "Properties", "children": [ - 8500, - 8501, - 8497, - 8498, - 8499 + 8918, + 8919, + 8915, + 8916, + 8917 ] } ], "extendedTypes": [ { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8496, + "target": 8914, "name": "FilterablePriceListRuleProps", "package": "@medusajs/types" } @@ -6576,7 +6581,7 @@ ] }, { - "id": 8491, + "id": 8909, "name": "PriceListRuleDTO", "variant": "declaration", "kind": 256, @@ -6591,7 +6596,7 @@ }, "children": [ { - "id": 8492, + "id": 8910, "name": "id", "variant": "declaration", "kind": 1024, @@ -6610,7 +6615,7 @@ } }, { - "id": 8493, + "id": 8911, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -6629,7 +6634,7 @@ } }, { - "id": 8494, + "id": 8912, "name": "value", "variant": "declaration", "kind": 1024, @@ -6660,7 +6665,7 @@ } }, { - "id": 8495, + "id": 8913, "name": "price_list", "variant": "declaration", "kind": 1024, @@ -6678,7 +6683,7 @@ }, "type": { "type": "reference", - "target": 8453, + "target": 8871, "name": "PriceListDTO", "package": "@medusajs/types" } @@ -6688,16 +6693,16 @@ { "title": "Properties", "children": [ - 8492, - 8493, - 8494, - 8495 + 8910, + 8911, + 8912, + 8913 ] } ] }, { - "id": 8502, + "id": 8920, "name": "AddPriceListPricesDTO", "variant": "declaration", "kind": 256, @@ -6712,7 +6717,7 @@ }, "children": [ { - "id": 8503, + "id": 8921, "name": "price_list_id", "variant": "declaration", "kind": 1024, @@ -6731,7 +6736,7 @@ } }, { - "id": 8504, + "id": 8922, "name": "prices", "variant": "declaration", "kind": 1024, @@ -6748,7 +6753,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 8604, + "target": 9049, "name": "CreatePriceListPriceDTO", "package": "@medusajs/types" } @@ -6759,14 +6764,14 @@ { "title": "Properties", "children": [ - 8503, - 8504 + 8921, + 8922 ] } ] }, { - "id": 8505, + "id": 8923, "name": "UpdatePriceListPricesDTO", "variant": "declaration", "kind": 256, @@ -6781,7 +6786,7 @@ }, "children": [ { - "id": 8506, + "id": 8924, "name": "price_list_id", "variant": "declaration", "kind": 1024, @@ -6800,7 +6805,7 @@ } }, { - "id": 8507, + "id": 8925, "name": "prices", "variant": "declaration", "kind": 1024, @@ -6817,7 +6822,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 8612, + "target": 9057, "name": "UpdatePriceListPriceDTO", "package": "@medusajs/types" } @@ -6828,14 +6833,14 @@ { "title": "Properties", "children": [ - 8506, - 8507 + 8924, + 8925 ] } ] }, { - "id": 8508, + "id": 8926, "name": "SetPriceListRulesDTO", "variant": "declaration", "kind": 256, @@ -6850,7 +6855,7 @@ }, "children": [ { - "id": 8509, + "id": 8927, "name": "price_list_id", "variant": "declaration", "kind": 1024, @@ -6869,7 +6874,7 @@ } }, { - "id": 8510, + "id": 8928, "name": "rules", "variant": "declaration", "kind": 1024, @@ -6919,14 +6924,14 @@ { "title": "Properties", "children": [ - 8509, - 8510 + 8927, + 8928 ] } ] }, { - "id": 8511, + "id": 8929, "name": "RemovePriceListRulesDTO", "variant": "declaration", "kind": 256, @@ -6941,7 +6946,7 @@ }, "children": [ { - "id": 8512, + "id": 8930, "name": "price_list_id", "variant": "declaration", "kind": 1024, @@ -6960,7 +6965,7 @@ } }, { - "id": 8513, + "id": 8931, "name": "rules", "variant": "declaration", "kind": 1024, @@ -6986,15 +6991,15 @@ { "title": "Properties", "children": [ - 8512, - 8513 + 8930, + 8931 ] } ] }, { - "id": 8421, - "name": "PriceRuleDTO", + "id": 8932, + "name": "PricePreferenceDTO", "variant": "declaration", "kind": 256, "flags": {}, @@ -7002,13 +7007,13 @@ "summary": [ { "kind": "text", - "text": "A price rule's data." + "text": "A price preference's data." } ] }, "children": [ { - "id": 8422, + "id": 8933, "name": "id", "variant": "declaration", "kind": 1024, @@ -7017,7 +7022,7 @@ "summary": [ { "kind": "text", - "text": "The ID of the price rule." + "text": "The ID of a price preference." } ] }, @@ -7027,8 +7032,8 @@ } }, { - "id": 8423, - "name": "price_set_id", + "id": 8934, + "name": "attribute", "variant": "declaration", "kind": 1024, "flags": {}, @@ -7036,60 +7041,26 @@ "summary": [ { "kind": "text", - "text": "The ID of the associated price set." + "text": "The rule attribute for the preference" } ] }, "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 8424, - "name": "price_set", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ + "type": "union", + "types": [ { - "kind": "text", - "text": "The associated price set." - } - ], - "modifierTags": [ - "@expandable" - ] - }, - "type": { - "type": "reference", - "target": 8374, - "name": "PriceSetDTO", - "package": "@medusajs/types" - } - }, - { - "id": 8425, - "name": "attribute", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ + "type": "literal", + "value": null + }, { - "kind": "text", - "text": "The attribute of the price rule" + "type": "intrinsic", + "name": "string" } ] - }, - "type": { - "type": "intrinsic", - "name": "string" } }, { - "id": 8426, + "id": 8935, "name": "value", "variant": "declaration", "kind": 1024, @@ -7098,56 +7069,27 @@ "summary": [ { "kind": "text", - "text": "The value of the price rule." + "text": "The rule value for the preference" } ] }, "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 8427, - "name": "priority", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ + "type": "union", + "types": [ { - "kind": "text", - "text": "The priority of the price rule in comparison to other applicable price rules." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 8428, - "name": "price_id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ + "type": "literal", + "value": null + }, { - "kind": "text", - "text": "The ID of the associated price." + "type": "intrinsic", + "name": "string" } ] - }, - "type": { - "type": "intrinsic", - "name": "string" } }, { - "id": 8429, - "name": "price_list_id", + "id": 8936, + "name": "is_tax_inclusive", "variant": "declaration", "kind": 1024, "flags": {}, @@ -7155,17 +7097,17 @@ "summary": [ { "kind": "text", - "text": "The ID of the associated price list." + "text": "Flag specifying whether prices for the specified rule are tax inclusive." } ] }, "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 8430, + "id": 8937, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -7174,7 +7116,7 @@ "summary": [ { "kind": "text", - "text": "When the price_rule was created." + "text": "When the price preference was created." } ] }, @@ -7189,7 +7131,7 @@ } }, { - "id": 8431, + "id": 8938, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -7198,7 +7140,7 @@ "summary": [ { "kind": "text", - "text": "When the price_rule was updated." + "text": "When the price preference was updated." } ] }, @@ -7213,7 +7155,7 @@ } }, { - "id": 8432, + "id": 8939, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -7222,7 +7164,7 @@ "summary": [ { "kind": "text", - "text": "When the price_rule was deleted." + "text": "When the price preference was deleted." } ] }, @@ -7250,39 +7192,27 @@ { "title": "Properties", "children": [ - 8422, - 8423, - 8424, - 8425, - 8426, - 8427, - 8428, - 8429, - 8430, - 8431, - 8432 + 8933, + 8934, + 8935, + 8936, + 8937, + 8938, + 8939 ] } ] }, { - "id": 8439, - "name": "CreatePriceRuleDTO", + "id": 8950, + "name": "UpsertPricePreferenceDTO", "variant": "declaration", "kind": 256, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A price rule to create." - } - ] - }, "children": [ { - "id": 8440, - "name": "price_set_id", + "id": 8951, + "name": "id", "variant": "declaration", "kind": 1024, "flags": { @@ -7292,7 +7222,7 @@ "summary": [ { "kind": "text", - "text": "The ID of the associated price set." + "text": "The ID of a price preference." } ] }, @@ -7302,83 +7232,102 @@ } }, { - "id": 8441, + "id": 8952, "name": "attribute", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The attribute of the price rule" + "text": "The rule attribute for the preference" } ] }, "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 8442, - "name": "value", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ + "type": "union", + "types": [ { - "kind": "text", - "text": "The value of the price rule." + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" } ] }, - "type": { - "type": "intrinsic", - "name": "string" + "inheritedFrom": { + "type": "reference", + "target": 8956, + "name": "UpdatePricePreferenceDTO.attribute" } }, { - "id": 8443, - "name": "priority", + "id": 8953, + "name": "value", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "comment": { "summary": [ { "kind": "text", - "text": "The priority of the price rule in comparison to other applicable price rules." + "text": "The rule value for the preference" } ] }, "type": { - "type": "intrinsic", - "name": "number" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 8957, + "name": "UpdatePricePreferenceDTO.value" } }, { - "id": 8444, - "name": "price_id", + "id": 8954, + "name": "is_tax_inclusive", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true + "isOptional": true, + "isInherited": true }, "comment": { "summary": [ { "kind": "text", - "text": "The ID of the associated price." + "text": "Flag specifying whether prices for the specified rule are tax inclusive." } ] }, "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "target": 8958, + "name": "UpdatePricePreferenceDTO.is_tax_inclusive" } } ], @@ -7386,65 +7335,62 @@ { "title": "Properties", "children": [ - 8440, - 8441, - 8442, - 8443, - 8444 + 8951, + 8952, + 8953, + 8954 ] } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 8955, + "name": "UpdatePricePreferenceDTO", + "package": "@medusajs/types" + } ] }, { - "id": 8445, - "name": "UpdatePriceRuleDTO", + "id": 8955, + "name": "UpdatePricePreferenceDTO", "variant": "declaration", "kind": 256, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The data to update in a price rule. The " - }, - { - "kind": "code", - "text": "`id`" - }, - { - "kind": "text", - "text": " is used to identify which price rule to update." - } - ] - }, "children": [ { - "id": 8446, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 8447, - "name": "price_set_id", + "id": 8956, + "name": "attribute", "variant": "declaration", "kind": 1024, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The rule attribute for the preference" + } + ] + }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] } }, { - "id": 8448, - "name": "attribute", + "id": 8957, + "name": "value", "variant": "declaration", "kind": 1024, "flags": { @@ -7454,18 +7400,27 @@ "summary": [ { "kind": "text", - "text": "The attribute of the price rule" + "text": "The rule value for the preference" } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] } }, { - "id": 8449, - "name": "value", + "id": 8958, + "name": "is_tax_inclusive", "variant": "declaration", "kind": 1024, "flags": { @@ -7475,18 +7430,44 @@ "summary": [ { "kind": "text", - "text": "The value of the price rule." + "text": "Flag specifying whether prices for the specified rule are tax inclusive." } ] }, "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } - }, + } + ], + "groups": [ { - "id": 8450, - "name": "priority", + "title": "Properties", + "children": [ + 8956, + 8957, + 8958 + ] + } + ], + "extendedBy": [ + { + "type": "reference", + "target": 8950, + "name": "UpsertPricePreferenceDTO" + } + ] + }, + { + "id": 8946, + "name": "CreatePricePreferenceDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "children": [ + { + "id": 8947, + "name": "attribute", "variant": "declaration", "kind": 1024, "flags": { @@ -7496,18 +7477,18 @@ "summary": [ { "kind": "text", - "text": "The priority of the price rule in comparison to other applicable price rules." + "text": "The rule attribute for the preference" } ] }, "type": { "type": "intrinsic", - "name": "number" + "name": "string" } }, { - "id": 8451, - "name": "price_id", + "id": 8948, + "name": "value", "variant": "declaration", "kind": 1024, "flags": { @@ -7517,7 +7498,7 @@ "summary": [ { "kind": "text", - "text": "The ID of the associated price." + "text": "The rule value for the preference" } ] }, @@ -7527,8 +7508,8 @@ } }, { - "id": 8452, - "name": "price_list_id", + "id": 8949, + "name": "is_tax_inclusive", "variant": "declaration", "kind": 1024, "flags": { @@ -7538,13 +7519,13 @@ "summary": [ { "kind": "text", - "text": "The ID of the associated price list." + "text": "Flag specifying whether prices for the specified rule are tax inclusive." } ] }, "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } } ], @@ -7552,20 +7533,16 @@ { "title": "Properties", "children": [ - 8446, - 8447, - 8448, - 8449, - 8450, - 8451, - 8452 + 8947, + 8948, + 8949 ] } ] }, { - "id": 8433, - "name": "FilterablePriceRuleProps", + "id": 8940, + "name": "FilterablePricePreferenceProps", "variant": "declaration", "kind": 256, "flags": {}, @@ -7573,13 +7550,13 @@ "summary": [ { "kind": "text", - "text": "Filters to apply on price rules." + "text": "Filters to apply on prices." } ] }, "children": [ { - "id": 8437, + "id": 8944, "name": "$and", "variant": "declaration", "kind": 1024, @@ -7602,18 +7579,18 @@ "types": [ { "type": "reference", - "target": 8433, - "name": "FilterablePriceRuleProps", + "target": 8940, + "name": "FilterablePricePreferenceProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8433, - "name": "FilterablePriceRuleProps", + "target": 8940, + "name": "FilterablePricePreferenceProps", "package": "@medusajs/types" } ], @@ -7625,12 +7602,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8564, + "target": 9009, "name": "BaseFilterable.$and" } }, { - "id": 8438, + "id": 8945, "name": "$or", "variant": "declaration", "kind": 1024, @@ -7653,18 +7630,18 @@ "types": [ { "type": "reference", - "target": 8433, - "name": "FilterablePriceRuleProps", + "target": 8940, + "name": "FilterablePricePreferenceProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8433, - "name": "FilterablePriceRuleProps", + "target": 8940, + "name": "FilterablePricePreferenceProps", "package": "@medusajs/types" } ], @@ -7676,12 +7653,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 8565, + "target": 9010, "name": "BaseFilterable.$or" } }, { - "id": 8434, + "id": 8941, "name": "id", "variant": "declaration", "kind": 1024, @@ -7692,7 +7669,7 @@ "summary": [ { "kind": "text", - "text": "The IDs to filter price rules by." + "text": "The IDs to filter the price preferences by." } ] }, @@ -7705,8 +7682,8 @@ } }, { - "id": 8435, - "name": "name", + "id": 8942, + "name": "attribute", "variant": "declaration", "kind": 1024, "flags": { @@ -7716,21 +7693,30 @@ "summary": [ { "kind": "text", - "text": "The names to filter price rules by." + "text": "Attributes to filter price preferences by." } ] }, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] } }, { - "id": 8436, - "name": "price_set_id", + "id": 8943, + "name": "value", "variant": "declaration", "kind": 1024, "flags": { @@ -7740,16 +7726,25 @@ "summary": [ { "kind": "text", - "text": "The IDs to filter the price rule's associated price set." + "text": "Values to filter price preferences by." } ] }, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] } } ], @@ -7757,23 +7752,23 @@ { "title": "Properties", "children": [ - 8437, - 8438, - 8434, - 8435, - 8436 + 8944, + 8945, + 8941, + 8942, + 8943 ] } ], "extendedTypes": [ { "type": "reference", - "target": 8563, + "target": 9008, "typeArguments": [ { "type": "reference", - "target": 8433, - "name": "FilterablePriceRuleProps", + "target": 8940, + "name": "FilterablePricePreferenceProps", "package": "@medusajs/types" } ], @@ -7783,8 +7778,8 @@ ] }, { - "id": 8326, - "name": "PricingContext", + "id": 8839, + "name": "PriceRuleDTO", "variant": "declaration", "kind": 256, "flags": {}, @@ -7792,116 +7787,52 @@ "summary": [ { "kind": "text", - "text": "The context to calculate prices. For example, you can specify the currency code to calculate prices in." + "text": "A price rule's data." } ] }, "children": [ { - "id": 8327, - "name": "context", + "id": 8840, + "name": "id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "an object whose keys are the name of the context attribute. Its value can be a string or a BigNumberInput. For example, you can pass the " - }, - { - "kind": "code", - "text": "`currency_code`" - }, - { - "kind": "text", - "text": " property with its value being the currency code to calculate the price in.\nAnother example is passing the " - }, - { - "kind": "code", - "text": "`quantity`" - }, - { - "kind": "text", - "text": " property to calculate the price for that specified quantity, which finds a price set whose " - }, - { - "kind": "code", - "text": "`min_quantity`" - }, - { - "kind": "text", - "text": " and " - }, - { - "kind": "code", - "text": "`max_quantity`" - }, - { - "kind": "text", - "text": " conditions match the specified quantity." + "text": "The ID of the price rule." } ] }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "target": 8538, - "name": "BigNumberInput", - "package": "@medusajs/types" - } - ], - "name": "Record", - "package": "typescript" + "type": "intrinsic", + "name": "string" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 8327 - ] - } - ], - "extendedBy": [ + }, { - "type": "reference", - "target": 8378, - "name": "FilterablePriceSetProps" - } - ] - }, - { - "id": 8324, - "name": "PricingFilters", - "variant": "declaration", - "kind": 256, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filters to apply when calculating prices." + "id": 8841, + "name": "price_set_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated price set." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" } - ] - }, - "children": [ + }, { - "id": 8325, - "name": "id", + "id": 8842, + "name": "price_set", "variant": "declaration", "kind": 1024, "flags": {}, @@ -7909,46 +7840,23 @@ "summary": [ { "kind": "text", - "text": "IDs of the price sets to use in the\ncalculation." + "text": "The associated price set." } + ], + "modifierTags": [ + "@expandable" ] }, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 8325 - ] - } - ] - }, - { - "id": 8374, - "name": "PriceSetDTO", - "variant": "declaration", - "kind": 256, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A price set's data." - } - ] - }, - "children": [ + }, { - "id": 8375, - "name": "id", + "id": 8843, + "name": "attribute", "variant": "declaration", "kind": 1024, "flags": {}, @@ -7956,7 +7864,7 @@ "summary": [ { "kind": "text", - "text": "The ID of the price set." + "text": "The attribute of the price rule" } ] }, @@ -7966,84 +7874,46 @@ } }, { - "id": 8376, - "name": "prices", + "id": 8844, + "name": "value", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The prices that belong to this price set." + "text": "The value of the price rule." } ] }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 8554, - "name": "MoneyAmountDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "string" } }, { - "id": 8377, - "name": "calculated_price", + "id": 8845, + "name": "priority", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The calculated price based on the context." + "text": "The priority of the price rule in comparison to other applicable price rules." } ] }, "type": { - "type": "reference", - "target": 8340, - "name": "CalculatedPriceSet", - "package": "@medusajs/types" - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 8375, - 8376, - 8377 - ] - } - ] - }, - { - "id": 8340, - "name": "CalculatedPriceSet", - "variant": "declaration", - "kind": 256, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The calculated price for a specific price set and context." + "type": "intrinsic", + "name": "number" } - ] - }, - "children": [ + }, { - "id": 8341, - "name": "id", + "id": 8846, + "name": "price_id", "variant": "declaration", "kind": 1024, "flags": {}, @@ -8051,7 +7921,7 @@ "summary": [ { "kind": "text", - "text": "The ID of the price set." + "text": "The ID of the associated price." } ] }, @@ -8061,37 +7931,27 @@ } }, { - "id": 8342, - "name": "is_calculated_price_price_list", + "id": 8847, + "name": "price_list_id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "Whether the calculated price is associated with a price list. During the calculation process, if no valid price list is found,\nthe calculated price is set to the original price, which doesn't belong to a price list. In that case, the value of this property is " - }, - { - "kind": "code", - "text": "`false`" - }, - { - "kind": "text", - "text": "." + "text": "The ID of the associated price list." } ] }, "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 8343, - "name": "calculated_amount", + "id": 8848, + "name": "created_at", "variant": "declaration", "kind": 1024, "flags": {}, @@ -8099,15 +7959,55 @@ "summary": [ { "kind": "text", - "text": "The amount of the calculated price, or " - }, + "text": "When the price_rule was created." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + }, + { + "id": 8849, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ { - "kind": "code", - "text": "`null`" - }, + "kind": "text", + "text": "When the price_rule was updated." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + }, + { + "id": 8850, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ { "kind": "text", - "text": " if there isn't a calculated price." + "text": "When the price_rule was deleted." } ] }, @@ -8120,16 +8020,54 @@ }, { "type": "reference", - "target": 8553, - "name": "BigNumberValue", - "package": "@medusajs/types" + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" } ] } - }, + } + ], + "groups": [ { - "id": 8344, - "name": "is_original_price_price_list", + "title": "Properties", + "children": [ + 8840, + 8841, + 8842, + 8843, + 8844, + 8845, + 8846, + 8847, + 8848, + 8849, + 8850 + ] + } + ] + }, + { + "id": 8857, + "name": "CreatePriceRuleDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A price rule to create." + } + ] + }, + "children": [ + { + "id": 8858, + "name": "price_set_id", "variant": "declaration", "kind": 1024, "flags": { @@ -8139,26 +8077,18 @@ "summary": [ { "kind": "text", - "text": "Whether the original price is associated with a price list. During the calculation process, if the price list of the calculated price is of type override,\nthe original price will be the same as the calculated price. In that case, the value of this property is " - }, - { - "kind": "code", - "text": "`true`" - }, - { - "kind": "text", - "text": "." + "text": "The ID of the associated price set." } ] }, "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 8345, - "name": "original_amount", + "id": 8859, + "name": "attribute", "variant": "declaration", "kind": 1024, "flags": {}, @@ -8166,37 +8096,18 @@ "summary": [ { "kind": "text", - "text": "The amount of the original price, or " - }, - { - "kind": "code", - "text": "`null`" - }, - { - "kind": "text", - "text": " if there isn't a calculated price." + "text": "The attribute of the price rule" } ] }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reference", - "target": 8553, - "name": "BigNumberValue", - "package": "@medusajs/types" - } - ] + "type": "intrinsic", + "name": "string" } }, { - "id": 8346, - "name": "currency_code", + "id": 8860, + "name": "value", "variant": "declaration", "kind": 1024, "flags": {}, @@ -8204,27 +8115,18 @@ "summary": [ { "kind": "text", - "text": "The currency code of the calculated price, or null if there isn't a calculated price." + "text": "The value of the price rule." } ] }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "intrinsic", + "name": "string" } }, { - "id": 8347, - "name": "calculated_price", + "id": 8861, + "name": "priority", "variant": "declaration", "kind": 1024, "flags": { @@ -8234,198 +8136,18 @@ "summary": [ { "kind": "text", - "text": "The details of the calculated price." + "text": "The priority of the price rule in comparison to other applicable price rules." } ] }, "type": { - "type": "reflection", - "declaration": { - "id": 8348, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 8349, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the price selected as the calculated price." - } - ] - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] - } - }, - { - "id": 8350, - "name": "price_list_id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the associated price list, if any." - } - ] - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] - } - }, - { - "id": 8351, - "name": "price_list_type", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The type of the associated price list, if any." - } - ] - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] - } - }, - { - "id": 8352, - "name": "min_quantity", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The " - }, - { - "kind": "code", - "text": "`min_quantity`" - }, - { - "kind": "text", - "text": " field defined on a price." - } - ] - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reference", - "target": 8553, - "name": "BigNumberValue", - "package": "@medusajs/types" - } - ] - } - }, - { - "id": 8353, - "name": "max_quantity", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The " - }, - { - "kind": "code", - "text": "`max_quantity`" - }, - { - "kind": "text", - "text": " field defined on a price." - } - ] - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reference", - "target": 8553, - "name": "BigNumberValue", - "package": "@medusajs/types" - } - ] - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 8349, - 8350, - 8351, - 8352, - 8353 - ] - } - ] - } + "type": "intrinsic", + "name": "number" } }, { - "id": 8354, - "name": "original_price", + "id": 8862, + "name": "price_id", "variant": "declaration", "kind": 1024, "flags": { @@ -8435,193 +8157,13 @@ "summary": [ { "kind": "text", - "text": "The details of the original price." + "text": "The ID of the associated price." } ] }, "type": { - "type": "reflection", - "declaration": { - "id": 8355, - "name": "__type", - "variant": "declaration", - "kind": 65536, - "flags": {}, - "children": [ - { - "id": 8356, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the price selected as the original price." - } - ] - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] - } - }, - { - "id": 8357, - "name": "price_list_id", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the associated price list, if any." - } - ] - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] - } - }, - { - "id": 8358, - "name": "price_list_type", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The type of the associated price list, if any." - } - ] - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] - } - }, - { - "id": 8359, - "name": "min_quantity", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The " - }, - { - "kind": "code", - "text": "`min_quantity`" - }, - { - "kind": "text", - "text": " field defined on a price." - } - ] - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reference", - "target": 8553, - "name": "BigNumberValue", - "package": "@medusajs/types" - } - ] - } - }, - { - "id": 8360, - "name": "max_quantity", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The " - }, - { - "kind": "code", - "text": "`max_quantity`" - }, - { - "kind": "text", - "text": " field defined on a price." - } - ] - }, - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reference", - "target": 8553, - "name": "BigNumberValue", - "package": "@medusajs/types" - } - ] - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 8356, - 8357, - 8358, - 8359, - 8360 - ] - } - ] - } + "type": "intrinsic", + "name": "string" } } ], @@ -8629,21 +8171,18 @@ { "title": "Properties", "children": [ - 8341, - 8342, - 8343, - 8344, - 8345, - 8346, - 8347, - 8354 + 8858, + 8859, + 8860, + 8861, + 8862 ] } ] }, { - "id": 8674, - "name": "CreatePriceSetPriceRules", + "id": 8863, + "name": "UpdatePriceRuleDTO", "variant": "declaration", "kind": 256, "flags": {}, @@ -8651,207 +8190,130 @@ "summary": [ { "kind": "text", - "text": "The price rules to be set for each price in the price set.\n\nEach key of the object is a the attribute, and its value\nis the values of the rule." - } - ] - }, - "extendedTypes": [ - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" + "text": "The data to update in a price rule. The " + }, + { + "kind": "code", + "text": "`id`" }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "Record", - "package": "typescript" - } - ] - }, - { - "id": 8572, - "name": "CreatePricesDTO", - "variant": "declaration", - "kind": 256, - "flags": {}, - "comment": { - "summary": [ { "kind": "text", - "text": "The prices to create part of a price set." + "text": " is used to identify which price rule to update." } ] }, "children": [ { - "id": 8574, + "id": 8864, "name": "id", "variant": "declaration", "kind": 1024, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 8865, + "name": "price_set_id", + "variant": "declaration", + "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The ID of the money amount." - } - ] + "isOptional": true }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 8669, - "name": "CreateMoneyAmountDTO.id" } }, { - "id": 8575, - "name": "currency_code", + "id": 8866, + "name": "attribute", "variant": "declaration", "kind": 1024, "flags": { - "isInherited": true + "isOptional": true }, "comment": { "summary": [ { "kind": "text", - "text": "The currency code of this money amount." + "text": "The attribute of the price rule" } ] }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "target": 8670, - "name": "CreateMoneyAmountDTO.currency_code" } }, { - "id": 8576, - "name": "amount", + "id": 8867, + "name": "value", "variant": "declaration", "kind": 1024, "flags": { - "isInherited": true + "isOptional": true }, "comment": { "summary": [ { "kind": "text", - "text": "The amount of this money amount." + "text": "The value of the price rule." } ] }, "type": { - "type": "reference", - "target": 8538, - "name": "BigNumberInput", - "package": "@medusajs/types" - }, - "inheritedFrom": { - "type": "reference", - "target": 8671, - "name": "CreateMoneyAmountDTO.amount" + "type": "intrinsic", + "name": "string" } }, { - "id": 8577, - "name": "min_quantity", + "id": 8868, + "name": "priority", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "comment": { "summary": [ { "kind": "text", - "text": "The minimum quantity required to be purchased for this money amount to be applied." + "text": "The priority of the price rule in comparison to other applicable price rules." } ] }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reference", - "target": 8538, - "name": "BigNumberInput", - "package": "@medusajs/types" - } - ] - }, - "inheritedFrom": { - "type": "reference", - "target": 8672, - "name": "CreateMoneyAmountDTO.min_quantity" + "type": "intrinsic", + "name": "number" } }, { - "id": 8578, - "name": "max_quantity", + "id": 8869, + "name": "price_id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "comment": { "summary": [ { "kind": "text", - "text": "The maximum quantity required to be purchased for this money amount to be applied." + "text": "The ID of the associated price." } ] }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reference", - "target": 8538, - "name": "BigNumberInput", - "package": "@medusajs/types" - } - ] - }, - "inheritedFrom": { - "type": "reference", - "target": 8673, - "name": "CreateMoneyAmountDTO.max_quantity" + "type": "intrinsic", + "name": "string" } }, { - "id": 8573, - "name": "rules", + "id": 8870, + "name": "price_list_id", "variant": "declaration", "kind": 1024, "flags": { @@ -8861,15 +8323,13 @@ "summary": [ { "kind": "text", - "text": "The rules to add to the price. The object's keys are the attribute, and values are the value of that rule associated with this price." + "text": "The ID of the associated price list." } ] }, "type": { - "type": "reference", - "target": 8674, - "name": "CreatePriceSetPriceRules", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } } ], @@ -8877,27 +8337,20 @@ { "title": "Properties", "children": [ - 8574, - 8575, - 8576, - 8577, - 8578, - 8573 + 8864, + 8865, + 8866, + 8867, + 8868, + 8869, + 8870 ] } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 8668, - "name": "CreateMoneyAmountDTO", - "package": "@medusajs/types" - } ] }, { - "id": 8391, - "name": "AddPricesDTO", + "id": 8851, + "name": "FilterablePriceRuleProps", "variant": "declaration", "kind": 256, "flags": {}, @@ -8905,83 +8358,116 @@ "summary": [ { "kind": "text", - "text": "The prices to add to a price set." + "text": "Filters to apply on price rules." } ] }, "children": [ { - "id": 8392, - "name": "priceSetId", + "id": 8855, + "name": "$and", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The ID of the price set to add prices to." + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 8851, + "name": "FilterablePriceRuleProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 9008, + "typeArguments": [ + { + "type": "reference", + "target": 8851, + "name": "FilterablePriceRuleProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 9009, + "name": "BaseFilterable.$and" } }, { - "id": 8393, - "name": "prices", + "id": 8856, + "name": "$or", "variant": "declaration", "kind": 1024, - "flags": {}, + "flags": { + "isOptional": true, + "isInherited": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The prices to add to the price set." + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." } ] }, "type": { "type": "array", "elementType": { - "type": "reference", - "target": 8572, - "name": "CreatePricesDTO", - "package": "@medusajs/types" + "type": "union", + "types": [ + { + "type": "reference", + "target": 8851, + "name": "FilterablePriceRuleProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 9008, + "typeArguments": [ + { + "type": "reference", + "target": 8851, + "name": "FilterablePriceRuleProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] } + }, + "inheritedFrom": { + "type": "reference", + "target": 9010, + "name": "BaseFilterable.$or" } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 8392, - 8393 - ] - } - ] - }, - { - "id": 8384, - "name": "CreatePriceSetDTO", - "variant": "declaration", - "kind": 256, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A price set to create." - } - ] - }, - "children": [ + }, { - "id": 8385, - "name": "prices", + "id": 8852, + "name": "id", "variant": "declaration", "kind": 1024, "flags": { @@ -8991,48 +8477,21 @@ "summary": [ { "kind": "text", - "text": "The prices to create and add to this price set." + "text": "The IDs to filter price rules by." } ] }, "type": { "type": "array", "elementType": { - "type": "reference", - "target": 8572, - "name": "CreatePricesDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 8385 - ] - } - ] - }, - { - "id": 8386, - "name": "UpsertPriceSetDTO", - "variant": "declaration", - "kind": 256, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The data to upsert in a price set." - } - ] - }, - "children": [ + }, { - "id": 8387, - "name": "id", + "id": 8853, + "name": "name", "variant": "declaration", "kind": 1024, "flags": { @@ -9042,45 +8501,40 @@ "summary": [ { "kind": "text", - "text": "A string indicating the ID of the price set to update.\nIf not provided, a price set is created." + "text": "The names to filter price rules by." } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 8388, - "name": "prices", + "id": 8854, + "name": "price_set_id", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "comment": { "summary": [ { "kind": "text", - "text": "The prices to create and add to this price set." + "text": "The IDs to filter the price rule's associated price set." } ] }, "type": { "type": "array", "elementType": { - "type": "reference", - "target": 8572, - "name": "CreatePricesDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } - }, - "inheritedFrom": { - "type": "reference", - "target": 8390, - "name": "UpdatePriceSetDTO.prices" } } ], @@ -9088,23 +8542,34 @@ { "title": "Properties", "children": [ - 8387, - 8388 + 8855, + 8856, + 8852, + 8853, + 8854 ] } ], "extendedTypes": [ { "type": "reference", - "target": 8389, - "name": "UpdatePriceSetDTO", + "target": 9008, + "typeArguments": [ + { + "type": "reference", + "target": 8851, + "name": "FilterablePriceRuleProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", "package": "@medusajs/types" } ] }, { - "id": 8389, - "name": "UpdatePriceSetDTO", + "id": 8742, + "name": "PricingContext", "variant": "declaration", "kind": 256, "flags": {}, @@ -9112,14 +8577,14 @@ "summary": [ { "kind": "text", - "text": "The data to update in a price set." + "text": "The context to calculate prices. For example, you can specify the currency code to calculate prices in." } ] }, "children": [ { - "id": 8390, - "name": "prices", + "id": 8743, + "name": "context", "variant": "declaration", "kind": 1024, "flags": { @@ -9129,18 +8594,62 @@ "summary": [ { "kind": "text", - "text": "The prices to create and add to this price set." + "text": "an object whose keys are the name of the context attribute. Its value can be a string or a BigNumberInput. For example, you can pass the " + }, + { + "kind": "code", + "text": "`currency_code`" + }, + { + "kind": "text", + "text": " property with its value being the currency code to calculate the price in.\nAnother example is passing the " + }, + { + "kind": "code", + "text": "`quantity`" + }, + { + "kind": "text", + "text": " property to calculate the price for that specified quantity, which finds a price set whose " + }, + { + "kind": "code", + "text": "`min_quantity`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`max_quantity`" + }, + { + "kind": "text", + "text": " conditions match the specified quantity." } ] }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 8572, - "name": "CreatePricesDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": 8983, + "name": "BigNumberInput", + "package": "@medusajs/types" + } + ], + "name": "Record", + "package": "typescript" } } ], @@ -9148,21 +8657,21 @@ { "title": "Properties", "children": [ - 8390 + 8743 ] } ], "extendedBy": [ { "type": "reference", - "target": 8386, - "name": "UpsertPriceSetDTO" + "target": 8796, + "name": "FilterablePriceSetProps" } ] }, { - "id": 8378, - "name": "FilterablePriceSetProps", + "id": 8740, + "name": "PricingFilters", "variant": "declaration", "kind": 256, "flags": {}, @@ -9170,192 +8679,80 @@ "summary": [ { "kind": "text", - "text": "Filters to apply on price sets." + "text": "Filters to apply when calculating prices." } ] }, "children": [ { - "id": 8381, - "name": "$and", + "id": 8741, + "name": "id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." + "text": "IDs of the price sets to use in the\ncalculation." } ] }, "type": { "type": "array", "elementType": { - "type": "union", - "types": [ - { - "type": "reference", - "target": 8378, - "name": "FilterablePriceSetProps", - "package": "@medusajs/types" - }, - { - "type": "reference", - "target": 8563, - "typeArguments": [ - { - "type": "reference", - "target": 8378, - "name": "FilterablePriceSetProps", - "package": "@medusajs/types" - } - ], - "name": "BaseFilterable", - "package": "@medusajs/types" - } - ] + "type": "intrinsic", + "name": "string" } - }, - "inheritedFrom": { - "type": "reference", - "target": 8564, - "name": "BaseFilterable.$and" } - }, + } + ], + "groups": [ { - "id": 8382, - "name": "$or", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." - } - ] - }, - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "reference", - "target": 8378, - "name": "FilterablePriceSetProps", - "package": "@medusajs/types" - }, - { - "type": "reference", - "target": 8563, - "typeArguments": [ - { - "type": "reference", - "target": 8378, - "name": "FilterablePriceSetProps", - "package": "@medusajs/types" - } - ], - "name": "BaseFilterable", - "package": "@medusajs/types" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 8565, - "name": "BaseFilterable.$or" + "title": "Properties", + "children": [ + 8741 + ] + } + ] + }, + { + "id": 8792, + "name": "PriceSetDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A price set's data." } - }, + ] + }, + "children": [ { - "id": 8383, - "name": "context", + "id": 8793, + "name": "id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "an object whose keys are the name of the context attribute. Its value can be a string or a BigNumberInput. For example, you can pass the " - }, - { - "kind": "code", - "text": "`currency_code`" - }, - { - "kind": "text", - "text": " property with its value being the currency code to calculate the price in.\nAnother example is passing the " - }, - { - "kind": "code", - "text": "`quantity`" - }, - { - "kind": "text", - "text": " property to calculate the price for that specified quantity, which finds a price set whose " - }, - { - "kind": "code", - "text": "`min_quantity`" - }, - { - "kind": "text", - "text": " and " - }, - { - "kind": "code", - "text": "`max_quantity`" - }, - { - "kind": "text", - "text": " conditions match the specified quantity." + "text": "The ID of the price set." } ] }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "target": 8538, - "name": "BigNumberInput", - "package": "@medusajs/types" - } - ], - "name": "Record", - "package": "typescript" - }, - "inheritedFrom": { - "type": "reference", - "target": 8327, - "name": "PricingContext.context" + "type": "intrinsic", + "name": "string" } }, { - "id": 8379, - "name": "id", + "id": 8794, + "name": "prices", "variant": "declaration", "kind": 1024, "flags": { @@ -9365,21 +8762,23 @@ "summary": [ { "kind": "text", - "text": "IDs to filter price sets by." + "text": "The prices that belong to this price set." } ] }, "type": { "type": "array", "elementType": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 8999, + "name": "MoneyAmountDTO", + "package": "@medusajs/types" } } }, { - "id": 8380, - "name": "money_amounts", + "id": 8795, + "name": "calculated_price", "variant": "declaration", "kind": 1024, "flags": { @@ -9389,14 +8788,14 @@ "summary": [ { "kind": "text", - "text": "Filters to apply on a price set's associated money amounts." + "text": "The calculated price based on the context." } ] }, "type": { "type": "reference", - "target": 8567, - "name": "FilterableMoneyAmountProps", + "target": 8756, + "name": "CalculatedPriceSet", "package": "@medusajs/types" } } @@ -9405,40 +8804,16 @@ { "title": "Properties", "children": [ - 8381, - 8382, - 8383, - 8379, - 8380 + 8793, + 8794, + 8795 ] } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 8563, - "typeArguments": [ - { - "type": "reference", - "target": 8378, - "name": "FilterablePriceSetProps", - "package": "@medusajs/types" - } - ], - "name": "BaseFilterable", - "package": "@medusajs/types" - }, - { - "type": "reference", - "target": 8326, - "name": "PricingContext", - "package": "@medusajs/types" - } ] }, { - "id": 8401, - "name": "PriceDTO", + "id": 8756, + "name": "CalculatedPriceSet", "variant": "declaration", "kind": 256, "flags": {}, @@ -9446,13 +8821,13 @@ "summary": [ { "kind": "text", - "text": "A price's data." + "text": "The calculated price for a specific price set and context." } ] }, "children": [ { - "id": 8402, + "id": 8757, "name": "id", "variant": "declaration", "kind": 1024, @@ -9461,7 +8836,7 @@ "summary": [ { "kind": "text", - "text": "The ID of a price." + "text": "The ID of the price set." } ] }, @@ -9471,8 +8846,8 @@ } }, { - "id": 8403, - "name": "title", + "id": 8758, + "name": "is_calculated_price_price_list", "variant": "declaration", "kind": 1024, "flags": { @@ -9482,18 +8857,26 @@ "summary": [ { "kind": "text", - "text": "The title of the price." + "text": "Whether the calculated price is associated with a price list. During the calculation process, if no valid price list is found,\nthe calculated price is set to the original price, which doesn't belong to a price list. In that case, the value of this property is " + }, + { + "kind": "code", + "text": "`false`" + }, + { + "kind": "text", + "text": "." } ] }, "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 8404, - "name": "currency_code", + "id": 8759, + "name": "is_calculated_price_tax_inclusive", "variant": "declaration", "kind": 1024, "flags": { @@ -9503,41 +8886,56 @@ "summary": [ { "kind": "text", - "text": "The currency code of this price." + "text": "Whether the calculated price is tax inclusive or not." } ] }, "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 8405, - "name": "amount", + "id": 8760, + "name": "calculated_amount", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The price of this price." + "text": "The amount of the calculated price, or " + }, + { + "kind": "code", + "text": "`null`" + }, + { + "kind": "text", + "text": " if there isn't a calculated price." } ] }, "type": { - "type": "reference", - "target": 8553, - "name": "BigNumberValue", - "package": "@medusajs/types" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 8998, + "name": "BigNumberValue", + "package": "@medusajs/types" + } + ] } }, { - "id": 8406, - "name": "min_quantity", + "id": 8761, + "name": "is_original_price_price_list", "variant": "declaration", "kind": 1024, "flags": { @@ -9547,20 +8945,26 @@ "summary": [ { "kind": "text", - "text": "The minimum quantity required to be purchased for this price to be applied." + "text": "Whether the original price is associated with a price list. During the calculation process, if the price list of the calculated price is of type override,\nthe original price will be the same as the calculated price. In that case, the value of this property is " + }, + { + "kind": "code", + "text": "`true`" + }, + { + "kind": "text", + "text": "." } ] }, "type": { - "type": "reference", - "target": 8553, - "name": "BigNumberValue", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 8407, - "name": "max_quantity", + "id": 8762, + "name": "is_original_price_tax_inclusive", "variant": "declaration", "kind": 1024, "flags": { @@ -9570,170 +8974,56 @@ "summary": [ { "kind": "text", - "text": "The maximum quantity required to be purchased for this price to be applied." + "text": "Whether the original price is tax inclusive or not." } ] }, "type": { - "type": "reference", - "target": 8553, - "name": "BigNumberValue", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 8408, - "name": "price_set", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The price set associated with the price." - } - ], - "modifierTags": [ - "@expandable" - ] - }, - "type": { - "type": "reference", - "target": 8374, - "name": "PriceSetDTO", - "package": "@medusajs/types" - } - }, - { - "id": 8409, - "name": "price_list", + "id": 8763, + "name": "original_amount", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The price list associated with the price." - } - ], - "modifierTags": [ - "@expandable" - ] - }, - "type": { - "type": "reference", - "target": 8453, - "name": "PriceListDTO", - "package": "@medusajs/types" - } - }, - { - "id": 8410, - "name": "price_set_id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ + "text": "The amount of the original price, or " + }, { - "kind": "text", - "text": "The ID of the associated price set." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 8411, - "name": "price_rules", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ + "kind": "code", + "text": "`null`" + }, { "kind": "text", - "text": "The price rules associated with the price." + "text": " if there isn't a calculated price." } - ], - "modifierTags": [ - "@expandable" ] }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 8421, - "name": "PriceRuleDTO", - "package": "@medusajs/types" - } - } - }, - { - "id": 8412, - "name": "created_at", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ + "type": "union", + "types": [ { - "kind": "text", - "text": "When the price was created." - } - ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" - }, - "name": "Date", - "package": "typescript" - } - }, - { - "id": 8413, - "name": "updated_at", - "variant": "declaration", - "kind": 1024, - "flags": {}, - "comment": { - "summary": [ + "type": "literal", + "value": null + }, { - "kind": "text", - "text": "When the price was updated." + "type": "reference", + "target": 8998, + "name": "BigNumberValue", + "package": "@medusajs/types" } ] - }, - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" - }, - "name": "Date", - "package": "typescript" } }, { - "id": 8414, - "name": "deleted_at", + "id": 8764, + "name": "currency_code", "variant": "declaration", "kind": 1024, "flags": {}, @@ -9741,7 +9031,7 @@ "summary": [ { "kind": "text", - "text": "When the price was deleted." + "text": "The currency code of the calculated price, or null if there isn't a calculated price." } ] }, @@ -9753,183 +9043,216 @@ "value": null }, { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Date" - }, - "name": "Date", - "package": "typescript" + "type": "intrinsic", + "name": "string" } ] } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 8402, - 8403, - 8404, - 8405, - 8406, - 8407, - 8408, - 8409, - 8410, - 8411, - 8412, - 8413, - 8414 - ] - } - ] - }, - { - "id": 8394, - "name": "FilterablePriceProps", - "variant": "declaration", - "kind": 256, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "Filters to apply on prices." - } - ] - }, - "children": [ + }, { - "id": 8399, - "name": "$and", + "id": 8765, + "name": "calculated_price", "variant": "declaration", "kind": 1024, "flags": { - "isOptional": true, - "isInherited": true + "isOptional": true }, "comment": { "summary": [ { "kind": "text", - "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." + "text": "The details of the calculated price." } ] }, "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ + "type": "reflection", + "declaration": { + "id": 8766, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ { - "type": "reference", - "target": 8394, - "name": "FilterablePriceProps", - "package": "@medusajs/types" + "id": 8767, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the price selected as the calculated price." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } }, { - "type": "reference", - "target": 8563, - "typeArguments": [ - { - "type": "reference", - "target": 8394, - "name": "FilterablePriceProps", - "package": "@medusajs/types" - } - ], - "name": "BaseFilterable", - "package": "@medusajs/types" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "target": 8564, - "name": "BaseFilterable.$and" - } - }, - { - "id": 8400, - "name": "$or", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true, - "isInherited": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." - } - ] - }, - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ + "id": 8768, + "name": "price_list_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated price list, if any." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, { - "type": "reference", - "target": 8394, - "name": "FilterablePriceProps", - "package": "@medusajs/types" + "id": 8769, + "name": "price_list_type", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The type of the associated price list, if any." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } }, { - "type": "reference", - "target": 8563, - "typeArguments": [ - { - "type": "reference", - "target": 8394, - "name": "FilterablePriceProps", - "package": "@medusajs/types" - } - ], - "name": "BaseFilterable", - "package": "@medusajs/types" + "id": 8770, + "name": "min_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`min_quantity`" + }, + { + "kind": "text", + "text": " field defined on a price." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 8998, + "name": "BigNumberValue", + "package": "@medusajs/types" + } + ] + } + }, + { + "id": 8771, + "name": "max_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`max_quantity`" + }, + { + "kind": "text", + "text": " field defined on a price." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 8998, + "name": "BigNumberValue", + "package": "@medusajs/types" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 8767, + 8768, + 8769, + 8770, + 8771 + ] } ] } - }, - "inheritedFrom": { - "type": "reference", - "target": 8565, - "name": "BaseFilterable.$or" - } - }, - { - "id": 8395, - "name": "id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The IDs to filter the prices by." - } - ] - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } } }, { - "id": 8396, - "name": "currency_code", + "id": 8772, + "name": "original_price", "variant": "declaration", "kind": 1024, "flags": { @@ -9939,131 +9262,2819 @@ "summary": [ { "kind": "text", - "text": "Currency codes to filter price by." + "text": "The details of the original price." } ] }, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 8773, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 8774, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the price selected as the original price." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 8775, + "name": "price_list_id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated price list, if any." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 8776, + "name": "price_list_type", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The type of the associated price list, if any." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 8777, + "name": "min_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`min_quantity`" + }, + { + "kind": "text", + "text": " field defined on a price." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 8998, + "name": "BigNumberValue", + "package": "@medusajs/types" + } + ] + } + }, + { + "id": 8778, + "name": "max_quantity", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The " + }, + { + "kind": "code", + "text": "`max_quantity`" + }, + { + "kind": "text", + "text": " field defined on a price." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 8998, + "name": "BigNumberValue", + "package": "@medusajs/types" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 8774, + 8775, + 8776, + 8777, + 8778 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 8757, + 8758, + 8759, + 8760, + 8761, + 8762, + 8763, + 8764, + 8765, + 8772 + ] + } + ] + }, + { + "id": 9119, + "name": "CreatePriceSetPriceRules", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The price rules to be set for each price in the price set.\n\nEach key of the object is a the attribute, and its value\nis the values of the rule." + } + ] + }, + "extendedTypes": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "Record", + "package": "typescript" + } + ] + }, + { + "id": 9017, + "name": "CreatePricesDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The prices to create part of a price set." + } + ] + }, + "children": [ + { + "id": 9019, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the money amount." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 9114, + "name": "CreateMoneyAmountDTO.id" + } + }, + { + "id": 9020, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The currency code of this money amount." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "target": 9115, + "name": "CreateMoneyAmountDTO.currency_code" + } + }, + { + "id": 9021, + "name": "amount", + "variant": "declaration", + "kind": 1024, + "flags": { + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The amount of this money amount." + } + ] + }, + "type": { + "type": "reference", + "target": 8983, + "name": "BigNumberInput", + "package": "@medusajs/types" + }, + "inheritedFrom": { + "type": "reference", + "target": 9116, + "name": "CreateMoneyAmountDTO.amount" + } + }, + { + "id": 9022, + "name": "min_quantity", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The minimum quantity required to be purchased for this money amount to be applied." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 8983, + "name": "BigNumberInput", + "package": "@medusajs/types" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 9117, + "name": "CreateMoneyAmountDTO.min_quantity" + } + }, + { + "id": 9023, + "name": "max_quantity", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum quantity required to be purchased for this money amount to be applied." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 8983, + "name": "BigNumberInput", + "package": "@medusajs/types" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "target": 9118, + "name": "CreateMoneyAmountDTO.max_quantity" + } + }, + { + "id": 9018, + "name": "rules", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The rules to add to the price. The object's keys are the attribute, and values are the value of that rule associated with this price." + } + ] + }, + "type": { + "type": "reference", + "target": 9119, + "name": "CreatePriceSetPriceRules", + "package": "@medusajs/types" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 9019, + 9020, + 9021, + 9022, + 9023, + 9018 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 9113, + "name": "CreateMoneyAmountDTO", + "package": "@medusajs/types" + } + ] + }, + { + "id": 8809, + "name": "AddPricesDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The prices to add to a price set." + } + ] + }, + "children": [ + { + "id": 8810, + "name": "priceSetId", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the price set to add prices to." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 8811, + "name": "prices", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The prices to add to the price set." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 9017, + "name": "CreatePricesDTO", + "package": "@medusajs/types" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 8810, + 8811 + ] + } + ] + }, + { + "id": 8802, + "name": "CreatePriceSetDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A price set to create." + } + ] + }, + "children": [ + { + "id": 8803, + "name": "prices", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The prices to create and add to this price set." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 9017, + "name": "CreatePricesDTO", + "package": "@medusajs/types" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 8803 + ] + } + ] + }, + { + "id": 8804, + "name": "UpsertPriceSetDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The data to upsert in a price set." + } + ] + }, + "children": [ + { + "id": 8805, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A string indicating the ID of the price set to update.\nIf not provided, a price set is created." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 8806, + "name": "prices", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The prices to create and add to this price set." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 9017, + "name": "CreatePricesDTO", + "package": "@medusajs/types" + } + }, + "inheritedFrom": { + "type": "reference", + "target": 8808, + "name": "UpdatePriceSetDTO.prices" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 8805, + 8806 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 8807, + "name": "UpdatePriceSetDTO", + "package": "@medusajs/types" + } + ] + }, + { + "id": 8807, + "name": "UpdatePriceSetDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The data to update in a price set." + } + ] + }, + "children": [ + { + "id": 8808, + "name": "prices", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The prices to create and add to this price set." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 9017, + "name": "CreatePricesDTO", + "package": "@medusajs/types" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 8808 + ] + } + ], + "extendedBy": [ + { + "type": "reference", + "target": 8804, + "name": "UpsertPriceSetDTO" + } + ] + }, + { + "id": 8796, + "name": "FilterablePriceSetProps", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filters to apply on price sets." + } + ] + }, + "children": [ + { + "id": 8799, + "name": "$and", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 8796, + "name": "FilterablePriceSetProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 9008, + "typeArguments": [ + { + "type": "reference", + "target": 8796, + "name": "FilterablePriceSetProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 9009, + "name": "BaseFilterable.$and" + } + }, + { + "id": 8800, + "name": "$or", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 8796, + "name": "FilterablePriceSetProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 9008, + "typeArguments": [ + { + "type": "reference", + "target": 8796, + "name": "FilterablePriceSetProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 9010, + "name": "BaseFilterable.$or" + } + }, + { + "id": 8801, + "name": "context", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "an object whose keys are the name of the context attribute. Its value can be a string or a BigNumberInput. For example, you can pass the " + }, + { + "kind": "code", + "text": "`currency_code`" + }, + { + "kind": "text", + "text": " property with its value being the currency code to calculate the price in.\nAnother example is passing the " + }, + { + "kind": "code", + "text": "`quantity`" + }, + { + "kind": "text", + "text": " property to calculate the price for that specified quantity, which finds a price set whose " + }, + { + "kind": "code", + "text": "`min_quantity`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`max_quantity`" + }, + { + "kind": "text", + "text": " conditions match the specified quantity." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": 8983, + "name": "BigNumberInput", + "package": "@medusajs/types" + } + ], + "name": "Record", + "package": "typescript" + }, + "inheritedFrom": { + "type": "reference", + "target": 8743, + "name": "PricingContext.context" + } + }, + { + "id": 8797, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "IDs to filter price sets by." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 8798, + "name": "prices", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filters to apply on a price set's associated money amounts." + } + ] + }, + "type": { + "type": "reference", + "target": 9012, + "name": "FilterableMoneyAmountProps", + "package": "@medusajs/types" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 8799, + 8800, + 8801, + 8797, + 8798 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 9008, + "typeArguments": [ + { + "type": "reference", + "target": 8796, + "name": "FilterablePriceSetProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 8742, + "name": "PricingContext", + "package": "@medusajs/types" + } + ] + }, + { + "id": 8819, + "name": "PriceDTO", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A price's data." + } + ] + }, + "children": [ + { + "id": 8820, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of a price." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 8821, + "name": "title", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The title of the price." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 8822, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The currency code of this price." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 8823, + "name": "amount", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The price of this price." + } + ] + }, + "type": { + "type": "reference", + "target": 8998, + "name": "BigNumberValue", + "package": "@medusajs/types" + } + }, + { + "id": 8824, + "name": "min_quantity", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The minimum quantity required to be purchased for this price to be applied." + } + ] + }, + "type": { + "type": "reference", + "target": 8998, + "name": "BigNumberValue", + "package": "@medusajs/types" + } + }, + { + "id": 8825, + "name": "max_quantity", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The maximum quantity required to be purchased for this price to be applied." + } + ] + }, + "type": { + "type": "reference", + "target": 8998, + "name": "BigNumberValue", + "package": "@medusajs/types" + } + }, + { + "id": 8826, + "name": "price_set", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The price set associated with the price." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" + } + }, + { + "id": 8827, + "name": "price_list", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The price list associated with the price." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "reference", + "target": 8871, + "name": "PriceListDTO", + "package": "@medusajs/types" + } + }, + { + "id": 8828, + "name": "price_set_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the associated price set." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 8829, + "name": "price_rules", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The price rules associated with the price." + } + ], + "modifierTags": [ + "@expandable" + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 8839, + "name": "PriceRuleDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 8830, + "name": "created_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the price was created." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + }, + { + "id": 8831, + "name": "updated_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the price was updated." + } + ] + }, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + }, + { + "id": 8832, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the price was deleted." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 8820, + 8821, + 8822, + 8823, + 8824, + 8825, + 8826, + 8827, + 8828, + 8829, + 8830, + 8831, + 8832 + ] + } + ] + }, + { + "id": 8812, + "name": "FilterablePriceProps", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Filters to apply on prices." + } + ] + }, + "children": [ + { + "id": 8817, + "name": "$and", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"and\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 8812, + "name": "FilterablePriceProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 9008, + "typeArguments": [ + { + "type": "reference", + "target": 8812, + "name": "FilterablePriceProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 9009, + "name": "BaseFilterable.$and" + } + }, + { + "id": 8818, + "name": "$or", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true, + "isInherited": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An array of filters to apply on the entity, where each item in the array is joined with an \"or\" condition." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "reference", + "target": 8812, + "name": "FilterablePriceProps", + "package": "@medusajs/types" + }, + { + "type": "reference", + "target": 9008, + "typeArguments": [ + { + "type": "reference", + "target": 8812, + "name": "FilterablePriceProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "target": 9010, + "name": "BaseFilterable.$or" + } + }, + { + "id": 8813, + "name": "id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The IDs to filter the prices by." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 8814, + "name": "currency_code", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Currency codes to filter price by." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + }, + { + "id": 8815, + "name": "price_set_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The IDs to filter the price's associated price set." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 8816, + "name": "price_list_id", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The IDs to filter the price's associated price list." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 8817, + 8818, + 8813, + 8814, + 8815, + 8816 + ] + } + ], + "extendedTypes": [ + { + "type": "reference", + "target": 9008, + "typeArguments": [ + { + "type": "reference", + "target": 8812, + "name": "FilterablePriceProps", + "package": "@medusajs/types" + } + ], + "name": "BaseFilterable", + "package": "@medusajs/types" + } + ] + }, + { + "id": 8482, + "name": "IPricingModuleService", + "variant": "declaration", + "kind": 256, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The main service interface for the Pricing Module." + } + ] + }, + "children": [ + { + "id": 8483, + "name": "calculatePrices", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 8484, + "name": "calculatePrices", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to calculate prices based on the provided filters and context." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The calculated prices matching the context and filters provided." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "text", + "text": "When you calculate prices, you must at least specify the currency code:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst price = await pricingModuleService.calculatePrices(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n context: {\n currency_code: \"usd\",\n },\n }\n)\n```" + }, + { + "kind": "text", + "text": "\n\nTo calculate prices for specific minimum and/or maximum quantity:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst price = await pricingModuleService.calculatePrices(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n context: {\n currency_code: \"usd\",\n min_quantity: 4,\n },\n }\n)\n```" + }, + { + "kind": "text", + "text": "\n\nTo calculate prices for custom rule types:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst price = await pricingModuleService.calculatePrices(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n context: {\n currency_code: \"usd\",\n region_id: \"US\",\n },\n }\n)\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 8485, + "name": "filters", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filters to apply on prices." + } + ] + }, + "type": { + "type": "reference", + "target": 8740, + "name": "PricingFilters", + "package": "@medusajs/types" + } + }, + { + "id": 8486, + "name": "context", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The context used to select the prices. For example, you can specify the region ID in this context, and only prices having the same value\nwill be retrieved." + } + ] + }, + "type": { + "type": "reference", + "target": 8742, + "name": "PricingContext", + "package": "@medusajs/types" + } + }, + { + "id": 8487, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 8744, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 8756, + "name": "CalculatedPriceSet", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 8488, + "name": "retrievePriceSet", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 8489, + "name": "retrievePriceSet", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to retrieve a price set by its ID." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The retrieved price set." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "text", + "text": "A simple example that retrieves a price set by its ID:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst priceSet =\n await pricingModuleService.retrievePriceSet(\"pset_123\")\n```" + }, + { + "kind": "text", + "text": "\n\nTo specify relations that should be retrieved:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst priceSet = await pricingModuleService.retrievePriceSet(\n \"pset_123\",\n {\n relations: [\"prices\"],\n }\n)\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 8490, + "name": "id", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the price set to retrieve." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 8491, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The configurations determining how the price set is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a price set." + } + ] + }, + "type": { + "type": "reference", + "target": 8779, + "typeArguments": [ + { + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 8492, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 8744, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 8493, + "name": "listPriceSets", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 8494, + "name": "listPriceSets", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to retrieve a paginated list of price sets based on optional filters and configuration." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The list of price sets." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "text", + "text": "To retrieve a list of price sets using their IDs:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst priceSets = await pricingModuleService.listPriceSets({\n id: [\"pset_123\", \"pset_321\"],\n})\n```" + }, + { + "kind": "text", + "text": "\n\nTo specify relations that should be retrieved within the price sets:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst priceSets = await pricingModuleService.listPriceSets(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n relations: [\"prices\"],\n }\n)\n```" + }, + { + "kind": "text", + "text": "\n\nBy default, only the first " + }, + { + "kind": "code", + "text": "`15`" + }, + { + "kind": "text", + "text": " records are retrieved. You can control pagination by specifying the " + }, + { + "kind": "code", + "text": "`skip`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`take`" + }, + { + "kind": "text", + "text": " properties of the " + }, + { + "kind": "code", + "text": "`config`" + }, + { + "kind": "text", + "text": " parameter:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst priceSets = await pricingModuleService.listPriceSets(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n relations: [\"prices\"],\n take: 20,\n skip: 2,\n }\n)\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 8495, + "name": "filters", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filters to apply on the retrieved price lists." + } + ] + }, + "type": { + "type": "reference", + "target": 8796, + "name": "FilterablePriceSetProps", + "package": "@medusajs/types" + } + }, + { + "id": 8496, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The configurations determining how the price sets are retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a price set." + } + ] + }, + "type": { + "type": "reference", + "target": 8779, + "typeArguments": [ + { + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 8497, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 8744, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 8498, + "name": "listAndCountPriceSets", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 8499, + "name": "listAndCountPriceSets", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to retrieve a paginated list of price sets along with the total count of available price sets satisfying the provided filters." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The list of price sets along with their total count." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "text", + "text": "To retrieve a list of prices sets using their IDs:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst [priceSets, count] =\n await pricingModuleService.listAndCountPriceSets({\n id: [\"pset_123\", \"pset_321\"],\n })\n```" + }, + { + "kind": "text", + "text": "\n\nTo specify relations that should be retrieved within the price sets:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst [priceSets, count] =\n await pricingModuleService.listAndCountPriceSets(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n relations: [\"prices\"],\n }\n )\n```" + }, + { + "kind": "text", + "text": "\n\nBy default, only the first " + }, + { + "kind": "code", + "text": "`15`" + }, + { + "kind": "text", + "text": " records are retrieved. You can control pagination by specifying the " + }, + { + "kind": "code", + "text": "`skip`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`take`" + }, + { + "kind": "text", + "text": " properties of the " + }, + { + "kind": "code", + "text": "`config`" + }, + { + "kind": "text", + "text": " parameter:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst [priceSets, count] =\n await pricingModuleService.listAndCountPriceSets(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n relations: [\"prices\"],\n take: 20,\n skip: 2,\n }\n )\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 8500, + "name": "filters", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filters to apply on the retrieved price lists." + } + ] + }, + "type": { + "type": "reference", + "target": 8796, + "name": "FilterablePriceSetProps", + "package": "@medusajs/types" + } + }, + { + "id": 8501, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The configurations determining how the price sets are retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a price set." + } + ] + }, + "type": { + "type": "reference", + "target": 8779, + "typeArguments": [ + { + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" + } + }, + { + "id": 8502, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 8744, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "tuple", + "elements": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" + } + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 8503, + "name": "createPriceSets", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 8504, + "name": "createPriceSets", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to create a new price set." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The created price set." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "text", + "text": "To create a default price set, don't pass any rules. For example:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst priceSet = await pricingModuleService.createPriceSets({\n rules: [],\n prices: [\n {\n amount: 500,\n currency_code: \"USD\",\n min_quantity: 0,\n max_quantity: 4,\n rules: {},\n },\n {\n amount: 400,\n currency_code: \"USD\",\n min_quantity: 5,\n max_quantity: 10,\n rules: {},\n },\n ],\n})\n```" + }, + { + "kind": "text", + "text": "\n\nTo create a price set and associate it with rule types:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst priceSet = await pricingModuleService.createPriceSets({\n prices: [\n {\n amount: 300,\n currency_code: \"EUR\",\n rules: {\n region_id: \"PL\",\n city: \"krakow\",\n },\n },\n {\n amount: 400,\n currency_code: \"EUR\",\n rules: {\n region_id: \"PL\",\n },\n },\n {\n amount: 450,\n currency_code: \"EUR\",\n rules: {\n city: \"krakow\",\n },\n },\n ],\n})\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 8505, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The attributes of the price set to create." + } + ] + }, + "type": { + "type": "reference", + "target": 8802, + "name": "CreatePriceSetDTO", + "package": "@medusajs/types" + } + }, + { + "id": 8506, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 8744, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 8507, + "name": "createPriceSets", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to create multiple price sets." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The list of created price sets." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nconst priceSets = await pricingModuleService.createPriceSets([\n // default price set\n {\n rules: [],\n prices: [\n {\n amount: 500,\n currency_code: \"USD\",\n min_quantity: 0,\n max_quantity: 4,\n rules: {},\n },\n {\n amount: 400,\n currency_code: \"USD\",\n min_quantity: 5,\n max_quantity: 10,\n rules: {},\n },\n ],\n },\n // price set with rules\n {\n prices: [\n {\n amount: 300,\n currency_code: \"EUR\",\n rules: {\n region_id: \"PL\",\n city: \"krakow\",\n },\n },\n {\n amount: 400,\n currency_code: \"EUR\",\n rules: {\n region_id: \"PL\",\n },\n },\n {\n amount: 450,\n currency_code: \"EUR\",\n rules: {\n city: \"krakow\",\n },\n },\n ],\n },\n])\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 8508, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The price sets to create." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 8802, + "name": "CreatePriceSetDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 8509, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 8744, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 8510, + "name": "upsertPriceSets", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 8511, + "name": "upsertPriceSets", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method updates existing price sets, or creates new ones if they don't exist." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated and created price sets." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nconst priceSets = await pricingModuleService.upsertPriceSets([\n {\n prices: [\n {\n amount: 100,\n currency_code: \"USD\",\n },\n ],\n },\n])\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 8512, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The attributes to update or create for each price set." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 8804, + "name": "UpsertPriceSetDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 8513, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 8744, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 8514, + "name": "upsertPriceSets", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method updates the price set if it exists, or creates a new ones if it doesn't." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated or created price set." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nconst priceSet = await pricingModuleService.upsertPriceSets({\n id: \"pset_123\",\n prices: [{ amount: 100, currency_code: \"USD\" }],\n})\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 8515, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The attributes to update or create for the new price set." + } + ] + }, + "type": { + "type": "reference", + "target": 8804, + "name": "UpsertPriceSetDTO", + "package": "@medusajs/types" + } + }, + { + "id": 8516, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 8744, + "name": "Context", + "package": "@medusajs/types" + } } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" } - ] - } - }, - { - "id": 8397, - "name": "price_set_id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The IDs to filter the price's associated price set." - } - ] - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - }, - { - "id": 8398, - "name": "price_list_id", - "variant": "declaration", - "kind": 1024, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The IDs to filter the price's associated price list." - } - ] - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" } - } - } - ], - "groups": [ - { - "title": "Properties", - "children": [ - 8399, - 8400, - 8395, - 8396, - 8397, - 8398 ] - } - ], - "extendedTypes": [ - { - "type": "reference", - "target": 8563, - "typeArguments": [ - { - "type": "reference", - "target": 8394, - "name": "FilterablePriceProps", - "package": "@medusajs/types" - } - ], - "name": "BaseFilterable", - "package": "@medusajs/types" - } - ] - }, - { - "id": 8115, - "name": "IPricingModuleService", - "variant": "declaration", - "kind": 256, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The main service interface for the Pricing Module." - } - ] - }, - "children": [ + }, { - "id": 8116, - "name": "calculatePrices", + "id": 8517, + "name": "updatePriceSets", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8117, - "name": "calculatePrices", + "id": 8518, + "name": "updatePriceSets", "variant": "signature", "kind": 4096, "flags": {}, @@ -10071,7 +12082,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to calculate prices based on the provided filters and context." + "text": "This method is used to update a price set." } ], "blockTags": [ @@ -10080,36 +12091,133 @@ "content": [ { "kind": "text", - "text": "The calculated prices matching the context and filters provided." + "text": "The updated price set." } ] }, { "tag": "@example", "content": [ - { - "kind": "text", - "text": "When you calculate prices, you must at least specify the currency code:\n\n" - }, { "kind": "code", - "text": "```ts\nconst price = await pricingModuleService.calculatePrices(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n context: {\n currency_code: \"usd\",\n },\n }\n)\n```" - }, + "text": "```ts\nconst priceSet = await pricingModuleService.updatePriceSets(\n \"pset_123\",\n {\n prices: [{ amount: 100, currency_code: \"USD\" }],\n }\n)\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 8519, + "name": "id", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ { "kind": "text", - "text": "\n\nTo calculate prices for specific minimum and/or maximum quantity:\n\n" - }, + "text": "The ID of the price set to be updated." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 8520, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ { - "kind": "code", - "text": "```ts\nconst price = await pricingModuleService.calculatePrices(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n context: {\n currency_code: \"usd\",\n min_quantity: 4,\n },\n }\n)\n```" - }, + "kind": "text", + "text": "The attributes of the price set to be updated" + } + ] + }, + "type": { + "type": "reference", + "target": 8807, + "name": "UpdatePriceSetDTO", + "package": "@medusajs/types" + } + }, + { + "id": 8521, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ { "kind": "text", - "text": "\n\nTo calculate prices for custom rule types:\n\n" - }, + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 8744, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 8522, + "name": "updatePriceSets", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to update a list of price sets determined by the selector filters." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated price sets." + } + ] + }, + { + "tag": "@example", + "content": [ { "kind": "code", - "text": "```ts\nconst price = await pricingModuleService.calculatePrices(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n context: {\n currency_code: \"usd\",\n region_id: \"US\",\n },\n }\n)\n```" + "text": "```ts\nconst priceSets = await pricingModuleService.updatePriceSets(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n prices: [{ amount: 100, currency_code: \"USD\" }],\n }\n)\n```" } ] } @@ -10117,8 +12225,8 @@ }, "parameters": [ { - "id": 8118, - "name": "filters", + "id": 8523, + "name": "selector", "variant": "param", "kind": 32768, "flags": {}, @@ -10126,42 +12234,40 @@ "summary": [ { "kind": "text", - "text": "The filters to apply on prices." + "text": "The filters that will determine which price sets will be updated." } ] }, "type": { "type": "reference", - "target": 8324, - "name": "PricingFilters", + "target": 8796, + "name": "FilterablePriceSetProps", "package": "@medusajs/types" } }, { - "id": 8119, - "name": "context", + "id": 8524, + "name": "data", "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, + "kind": 32768, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The context used to select the prices. For example, you can specify the region ID in this context, and only prices having the same value\nwill be retrieved." + "text": "The attributes to be updated on the selected price sets" } ] }, "type": { "type": "reference", - "target": 8326, - "name": "PricingContext", + "target": 8807, + "name": "UpdatePriceSetDTO", "package": "@medusajs/types" } }, { - "id": 8120, + "id": 8525, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10178,7 +12284,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -10195,8 +12301,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 8340, - "name": "CalculatedPriceSet", + "target": 8792, + "name": "PriceSetDTO", "package": "@medusajs/types" } } @@ -10208,15 +12314,15 @@ ] }, { - "id": 8121, - "name": "retrievePriceSet", + "id": 8526, + "name": "deletePriceSets", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8122, - "name": "retrievePriceSet", + "id": 8527, + "name": "deletePriceSets", "variant": "signature", "kind": 4096, "flags": {}, @@ -10224,7 +12330,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a price set by its ID." + "text": "This method deletes price sets by their IDs." } ], "blockTags": [ @@ -10233,28 +12339,16 @@ "content": [ { "kind": "text", - "text": "The retrieved price set." + "text": "Resolves when the price sets are successfully deleted." } ] }, { "tag": "@example", "content": [ - { - "kind": "text", - "text": "A simple example that retrieves a price set by its ID:\n\n" - }, - { - "kind": "code", - "text": "```ts\nconst priceSet =\n await pricingModuleService.retrievePriceSet(\"pset_123\")\n```" - }, - { - "kind": "text", - "text": "\n\nTo specify relations that should be retrieved:\n\n" - }, { "kind": "code", - "text": "```ts\nconst priceSet = await pricingModuleService.retrievePriceSet(\n \"pset_123\",\n {\n relations: [\"prices\"],\n }\n)\n```" + "text": "```ts\nawait pricingModuleService.deletePriceSets([\"pset_123\", \"pset_321\"])\n```" } ] } @@ -10262,8 +12356,8 @@ }, "parameters": [ { - "id": 8123, - "name": "id", + "id": 8528, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, @@ -10271,64 +12365,20 @@ "summary": [ { "kind": "text", - "text": "The ID of the price set to retrieve." - } - ] - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 8124, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The configurations determining how the price set is retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, - { - "kind": "text", - "text": " or " - }, - { - "kind": "code", - "text": "`relations`" - }, - { - "kind": "text", - "text": ", accept the\nattributes or relations associated with a price set." + "text": "The IDs of the price sets to delete." } ] }, "type": { - "type": "reference", - "target": 8361, - "typeArguments": [ - { - "type": "reference", - "target": 8374, - "name": "PriceSetDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 8125, + "id": 8529, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10345,7 +12395,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -10359,10 +12409,8 @@ }, "typeArguments": [ { - "type": "reference", - "target": 8374, - "name": "PriceSetDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -10372,15 +12420,15 @@ ] }, { - "id": 8126, - "name": "listPriceSets", + "id": 8530, + "name": "addPrices", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8127, - "name": "listPriceSets", + "id": 8531, + "name": "addPrices", "variant": "signature", "kind": 4096, "flags": {}, @@ -10388,7 +12436,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a paginated list of price sets based on optional filters and configuration." + "text": "This method adds prices to a price set." } ], "blockTags": [ @@ -10397,7 +12445,7 @@ "content": [ { "kind": "text", - "text": "The list of price sets." + "text": "The price set that the prices were added to." } ] }, @@ -10406,59 +12454,27 @@ "content": [ { "kind": "text", - "text": "To retrieve a list of price sets using their IDs:\n\n" - }, - { - "kind": "code", - "text": "```ts\nconst priceSets = await pricingModuleService.listPriceSets({\n id: [\"pset_123\", \"pset_321\"],\n})\n```" - }, - { - "kind": "text", - "text": "\n\nTo specify relations that should be retrieved within the price sets:\n\n" - }, - { - "kind": "code", - "text": "```ts\nconst priceSets = await pricingModuleService.listPriceSets(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n relations: [\"prices\"],\n }\n)\n```" - }, - { - "kind": "text", - "text": "\n\nBy default, only the first " - }, - { - "kind": "code", - "text": "`15`" - }, - { - "kind": "text", - "text": " records are retrieved. You can control pagination by specifying the " - }, - { - "kind": "code", - "text": "`skip`" - }, - { - "kind": "text", - "text": " and " + "text": "To add a default price to a price set, don't pass it any rules and make sure to pass it the " }, { "kind": "code", - "text": "`take`" + "text": "`currency_code`" }, { "kind": "text", - "text": " properties of the " + "text": ":\n\n" }, { "kind": "code", - "text": "`config`" + "text": "```ts\nconst priceSet = await pricingModuleService.addPrices({\n priceSetId: \"pset_123\",\n prices: [\n {\n amount: 500,\n currency_code: \"USD\",\n rules: {},\n },\n ],\n})\n```" }, { "kind": "text", - "text": " parameter:\n\n" + "text": "\n\nTo add prices with rules:\n\n" }, { "kind": "code", - "text": "```ts\nconst priceSets = await pricingModuleService.listPriceSets(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n relations: [\"prices\"],\n take: 20,\n skip: 2,\n }\n)\n```" + "text": "```ts\nconst priceSet = await pricingModuleService.addPrices({\n priceSetId: \"pset_123\",\n prices: [\n {\n amount: 300,\n currency_code: \"EUR\",\n rules: {\n region_id: \"PL\",\n city: \"krakow\",\n },\n },\n {\n amount: 400,\n currency_code: \"EUR\",\n min_quantity: 0,\n max_quantity: 4,\n rules: {\n region_id: \"PL\",\n },\n },\n {\n amount: 450,\n currency_code: \"EUR\",\n rules: {\n city: \"krakow\",\n },\n },\n ],\n})\n```" } ] } @@ -10466,31 +12482,29 @@ }, "parameters": [ { - "id": 8128, - "name": "filters", + "id": 8532, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The filters to apply on the retrieved price lists." + "text": "The data defining the price set to add the prices to, along with the prices to add." } ] }, "type": { "type": "reference", - "target": 8378, - "name": "FilterablePriceSetProps", + "target": 8809, + "name": "AddPricesDTO", "package": "@medusajs/types" } }, { - "id": 8129, - "name": "config", + "id": 8533, + "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { @@ -10500,43 +12514,97 @@ "summary": [ { "kind": "text", - "text": "The configurations determining how the price sets are retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 8744, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "reference", + "target": 8792, + "name": "PriceSetDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 8534, + "name": "addPrices", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method adds prices to multiple price sets." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ { "kind": "text", - "text": " or " - }, + "text": "The list of the price sets that prices were added to." + } + ] + }, + { + "tag": "@example", + "content": [ { "kind": "code", - "text": "`relations`" - }, + "text": "```ts\nconst priceSets = await pricingModuleService.addPrices([\n {\n priceSetId: \"pset_123\",\n prices: [\n // default price because it doesn't\n // have rules\n {\n amount: 500,\n currency_code: \"USD\",\n rules: {},\n },\n ],\n },\n {\n priceSetId: \"pset_321\",\n prices: [\n // prices with rules\n {\n amount: 300,\n currency_code: \"EUR\",\n rules: {\n region_id: \"PL\",\n city: \"krakow\",\n },\n },\n ],\n },\n])\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 8535, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ { "kind": "text", - "text": ", accept the\nattributes or relations associated with a price set." + "text": "The data defining the prices to add per price set." } ] }, "type": { - "type": "reference", - "target": 8361, - "typeArguments": [ - { - "type": "reference", - "target": 8374, - "name": "PriceSetDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 8809, + "name": "AddPricesDTO", + "package": "@medusajs/types" + } } }, { - "id": 8130, + "id": 8536, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10553,7 +12621,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -10570,7 +12638,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 8374, + "target": 8792, "name": "PriceSetDTO", "package": "@medusajs/types" } @@ -10583,15 +12651,15 @@ ] }, { - "id": 8131, - "name": "listAndCountPriceSets", + "id": 8537, + "name": "listPrices", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8132, - "name": "listAndCountPriceSets", + "id": 8538, + "name": "listPrices", "variant": "signature", "kind": 4096, "flags": {}, @@ -10599,7 +12667,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a paginated list of price sets along with the total count of available price sets satisfying the provided filters." + "text": "This method is used to retrieve a paginated list of prices based on optional filters and configuration." } ], "blockTags": [ @@ -10608,7 +12676,7 @@ "content": [ { "kind": "text", - "text": "The list of price sets along with their total count." + "text": "The list of prices." } ] }, @@ -10617,19 +12685,19 @@ "content": [ { "kind": "text", - "text": "To retrieve a list of prices sets using their IDs:\n\n" + "text": "To retrieve a list of prices using their IDs:\n\n" }, { "kind": "code", - "text": "```ts\nconst [priceSets, count] =\n await pricingModuleService.listAndCountPriceSets({\n id: [\"pset_123\", \"pset_321\"],\n })\n```" + "text": "```ts\nconst prices = await pricingModuleService.listPrices({\n id: [\"price_123\", \"price_321\"],\n})\n```" }, { "kind": "text", - "text": "\n\nTo specify relations that should be retrieved within the price sets:\n\n" + "text": "\n\nTo specify relations that should be retrieved within the prices:\n\n" }, { "kind": "code", - "text": "```ts\nconst [priceSets, count] =\n await pricingModuleService.listAndCountPriceSets(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n relations: [\"prices\"],\n }\n )\n```" + "text": "```ts\nconst prices = await pricingModuleService.listPrices(\n {\n id: [\"price_123\", \"price_321\"],\n },\n {\n relations: [\"price_rules\"],\n }\n)\n```" }, { "kind": "text", @@ -10669,7 +12737,7 @@ }, { "kind": "code", - "text": "```ts\nconst [priceSets, count] =\n await pricingModuleService.listAndCountPriceSets(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n relations: [\"prices\"],\n take: 20,\n skip: 2,\n }\n )\n```" + "text": "```ts\nconst prices = await pricingModuleService.listPrices(\n {\n id: [\"price_123\", \"price_321\"],\n },\n {\n relations: [\"price_rules\"],\n take: 20,\n skip: 2,\n }\n)\n```" } ] } @@ -10677,7 +12745,7 @@ }, "parameters": [ { - "id": 8133, + "id": 8539, "name": "filters", "variant": "param", "kind": 32768, @@ -10688,19 +12756,19 @@ "summary": [ { "kind": "text", - "text": "The filters to apply on the retrieved price lists." + "text": "The filters to apply on the retrieved prices." } ] }, "type": { "type": "reference", - "target": 8378, - "name": "FilterablePriceSetProps", + "target": 8812, + "name": "FilterablePriceProps", "package": "@medusajs/types" } }, { - "id": 8134, + "id": 8540, "name": "config", "variant": "param", "kind": 32768, @@ -10711,7 +12779,7 @@ "summary": [ { "kind": "text", - "text": "The configurations determining how the price sets are retrieved. Its properties, such as " + "text": "The configurations determining how the prices are retrieved. Its properties, such as " }, { "kind": "code", @@ -10727,18 +12795,18 @@ }, { "kind": "text", - "text": ", accept the\nattributes or relations associated with a price set." + "text": ", accept the\nattributes or relations associated with a price." } ] }, "type": { "type": "reference", - "target": 8361, + "target": 8779, "typeArguments": [ { "type": "reference", - "target": 8374, - "name": "PriceSetDTO", + "target": 8819, + "name": "PriceDTO", "package": "@medusajs/types" } ], @@ -10747,7 +12815,7 @@ } }, { - "id": 8135, + "id": 8541, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10764,7 +12832,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -10778,22 +12846,13 @@ }, "typeArguments": [ { - "type": "tuple", - "elements": [ - { - "type": "array", - "elementType": { - "type": "reference", - "target": 8374, - "name": "PriceSetDTO", - "package": "@medusajs/types" - } - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "array", + "elementType": { + "type": "reference", + "target": 8819, + "name": "PriceDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -10803,15 +12862,15 @@ ] }, { - "id": 8136, - "name": "createPriceSets", + "id": 8542, + "name": "softDeletePrices", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8137, - "name": "createPriceSets", + "id": 8543, + "name": "softDeletePrices", "variant": "signature", "kind": 4096, "flags": {}, @@ -10819,7 +12878,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to create a new price set." + "text": "This method soft deletes prices by their IDs." } ], "blockTags": [ @@ -10828,117 +12887,23 @@ "content": [ { "kind": "text", - "text": "The created price set." - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "text", - "text": "To create a default price set, don't pass any rules. For example:\n\n" + "text": "An object that includes the IDs of related records that were also soft deleted, such as the ID of the associated price rules.\nThe object's keys are the ID attribute names of the price entity's relations, such as " }, { "kind": "code", - "text": "```ts\nconst priceSet = await pricingModuleService.createPriceSets({\n rules: [],\n prices: [\n {\n amount: 500,\n currency_code: \"USD\",\n min_quantity: 0,\n max_quantity: 4,\n rules: {},\n },\n {\n amount: 400,\n currency_code: \"USD\",\n min_quantity: 5,\n max_quantity: 10,\n rules: {},\n },\n ],\n})\n```" + "text": "`price_rule_id`" }, { "kind": "text", - "text": "\n\nTo create a price set and associate it with rule types:\n\n" + "text": ", and its value is an array of strings, each being the ID of a record associated\nwith the price through this relation, such as the IDs of associated price rule.\n\nIf there are no related records, the promise resolves to " }, { "kind": "code", - "text": "```ts\nconst priceSet = await pricingModuleService.createPriceSets({\n prices: [\n {\n amount: 300,\n currency_code: \"EUR\",\n rules: {\n region_id: \"PL\",\n city: \"krakow\",\n },\n },\n {\n amount: 400,\n currency_code: \"EUR\",\n rules: {\n region_id: \"PL\",\n },\n },\n {\n amount: 450,\n currency_code: \"EUR\",\n rules: {\n city: \"krakow\",\n },\n },\n ],\n})\n```" - } - ] - } - ] - }, - "parameters": [ - { - "id": 8138, - "name": "data", - "variant": "param", - "kind": 32768, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The attributes of the price set to create." - } - ] - }, - "type": { - "type": "reference", - "target": 8384, - "name": "CreatePriceSetDTO", - "package": "@medusajs/types" - } - }, - { - "id": 8139, - "name": "sharedContext", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." - } - ] - }, - "type": { - "type": "reference", - "target": 8328, - "name": "Context", - "package": "@medusajs/types" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { - "type": "reference", - "target": 8374, - "name": "PriceSetDTO", - "package": "@medusajs/types" - } - ], - "name": "Promise", - "package": "typescript" - } - }, - { - "id": 8140, - "name": "createPriceSets", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method is used to create multiple price sets." - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ + "text": "`void`" + }, { "kind": "text", - "text": "The list of created price sets." + "text": "." } ] }, @@ -10947,152 +12912,86 @@ "content": [ { "kind": "code", - "text": "```ts\nconst priceSets = await pricingModuleService.createPriceSets([\n // default price set\n {\n rules: [],\n prices: [\n {\n amount: 500,\n currency_code: \"USD\",\n min_quantity: 0,\n max_quantity: 4,\n rules: {},\n },\n {\n amount: 400,\n currency_code: \"USD\",\n min_quantity: 5,\n max_quantity: 10,\n rules: {},\n },\n ],\n },\n // price set with rules\n {\n prices: [\n {\n amount: 300,\n currency_code: \"EUR\",\n rules: {\n region_id: \"PL\",\n city: \"krakow\",\n },\n },\n {\n amount: 400,\n currency_code: \"EUR\",\n rules: {\n region_id: \"PL\",\n },\n },\n {\n amount: 450,\n currency_code: \"EUR\",\n rules: {\n city: \"krakow\",\n },\n },\n ],\n },\n])\n```" + "text": "```ts\nawait pricingModuleService.softDeletePrices([\n \"price_123\",\n \"price_321\",\n])\n```" } ] } ] }, - "parameters": [ + "typeParameters": [ { - "id": 8141, - "name": "data", - "variant": "param", - "kind": 32768, + "id": 8544, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The price sets to create." - } - ] - }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 8384, - "name": "CreatePriceSetDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" } - }, + } + ], + "parameters": [ { - "id": 8142, - "name": "sharedContext", + "id": 8545, + "name": "priceIds", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "text": "The IDs of the prices." } ] }, "type": { - "type": "reference", - "target": 8328, - "name": "Context", - "package": "@medusajs/types" - } - } - ], - "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Promise" - }, - "typeArguments": [ - { "type": "array", "elementType": { - "type": "reference", - "target": 8374, - "name": "PriceSetDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } } - ], - "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 8143, - "name": "upsertPriceSets", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ - { - "id": 8144, - "name": "upsertPriceSets", - "variant": "signature", - "kind": 4096, - "flags": {}, - "comment": { - "summary": [ - { - "kind": "text", - "text": "This method updates existing price sets, or creates new ones if they don't exist." - } - ], - "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "The updated and created price sets." - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```ts\nconst priceSets = await pricingModuleService.upsertPriceSets([\n {\n prices: [\n {\n amount: 100,\n currency_code: \"USD\",\n },\n ],\n },\n])\n```" - } - ] - } - ] - }, - "parameters": [ + }, { - "id": 8145, - "name": "data", + "id": 8546, + "name": "config", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The attributes to update or create for each price set." + "text": "An object that is used to specify an entity's related entities that should be soft-deleted when the main entity is soft-deleted." } ] }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 8386, - "name": "UpsertPriceSetDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 8833, + "typeArguments": [ + { + "type": "reference", + "target": 8544, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "SoftDeleteReturn", + "package": "@medusajs/types" } }, { - "id": 8146, + "id": 8547, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11109,7 +13008,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -11123,22 +13022,53 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 8374, - "name": "PriceSetDTO", - "package": "@medusajs/types" - } + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 8548, + "name": "restorePrices", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 8147, - "name": "upsertPriceSets", + "id": 8549, + "name": "restorePrices", "variant": "signature", "kind": 4096, "flags": {}, @@ -11146,34 +13076,42 @@ "summary": [ { "kind": "text", - "text": "This method updates the price set if it exists, or creates a new ones if it doesn't." + "text": "This method restores soft deleted prices by their IDs." } ], "blockTags": [ - { - "tag": "@returns", - "content": [ - { - "kind": "text", - "text": "The updated or created price set." - } - ] - }, { "tag": "@example", "content": [ { "kind": "code", - "text": "```ts\nconst priceSet = await pricingModuleService.upsertPriceSets({\n id: \"pset_123\",\n prices: [{ amount: 100, currency_code: \"USD\" }],\n})\n```" + "text": "```ts\nawait pricingModuleService.restorePrices([\n \"price_123\",\n \"price_321\",\n])\n```" } ] } ] }, + "typeParameters": [ + { + "id": 8550, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" + } + } + ], "parameters": [ { - "id": 8148, - "name": "data", + "id": 8551, + "name": "priceIds", "variant": "param", "kind": 32768, "flags": {}, @@ -11181,20 +13119,21 @@ "summary": [ { "kind": "text", - "text": "The attributes to update or create for the new price set." + "text": "The IDs of the prices." } ] }, "type": { - "type": "reference", - "target": 8386, - "name": "UpsertPriceSetDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 8149, - "name": "sharedContext", + "id": 8552, + "name": "config", "variant": "param", "kind": 32768, "flags": { @@ -11204,13 +13143,61 @@ "summary": [ { "kind": "text", - "text": "A context used to share resources, such as transaction manager, between the application and the module." + "text": "Configurations determining which relations to restore along with each of the prices. You can pass to its " + }, + { + "kind": "code", + "text": "`returnLinkableKeys`" + }, + { + "kind": "text", + "text": "\nproperty any of the price's relation attribute names, such as price_rules" + }, + { + "kind": "code", + "text": "`.\n@param {Context} sharedContext - A context used to share resources, such as transaction manager, between the application and the module.\n@returns {Promise>} An object that includes the IDs of related records that were restored, such as the ID of associated price rules.\nThe object's keys are the ID attribute names of the prices entity's relations, such as `" + }, + { + "kind": "text", + "text": "price_rule_id" + }, + { + "kind": "code", + "text": "`,\nand its value is an array of strings, each being the ID of the record associated with the prices through this relation,\nsuch as the IDs of associated price rules.\n\nIf there are no related records restored, the promise resolves to `" + }, + { + "kind": "text", + "text": "void`." } ] }, "type": { "type": "reference", - "target": 8328, + "target": 8836, + "typeArguments": [ + { + "type": "reference", + "target": 8550, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "RestoreReturn", + "package": "@medusajs/types" + } + }, + { + "id": 8553, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -11224,10 +13211,35 @@ }, "typeArguments": [ { - "type": "reference", - "target": 8374, - "name": "PriceSetDTO", - "package": "@medusajs/types" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", @@ -11237,15 +13249,15 @@ ] }, { - "id": 8150, - "name": "updatePriceSets", + "id": 8554, + "name": "listAndCountPrices", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8151, - "name": "updatePriceSets", + "id": 8555, + "name": "listAndCountPrices", "variant": "signature", "kind": 4096, "flags": {}, @@ -11253,7 +13265,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to update a price set." + "text": "This method is used to retrieve a paginated list of prices along with the total count of\navailable prices satisfying the provided filters." } ], "blockTags": [ @@ -11262,16 +13274,68 @@ "content": [ { "kind": "text", - "text": "The updated price set." - } - ] - }, - { - "tag": "@example", - "content": [ + "text": "The list of prices and their total count." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "text", + "text": "To retrieve a list of prices using their IDs:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst [prices, count] = await pricingModuleService.listPrices(\n {\n id: [\"price_123\", \"price_321\"],\n }\n)\n```" + }, + { + "kind": "text", + "text": "\n\nTo specify relations that should be retrieved within the prices:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst [prices, count] = await pricingModuleService.listPrices(\n {\n id: [\"price_123\", \"price_321\"],\n },\n {\n relations: [\"price_rules\"],\n }\n)\n```" + }, + { + "kind": "text", + "text": "\n\nBy default, only the first " + }, + { + "kind": "code", + "text": "`15`" + }, + { + "kind": "text", + "text": " records are retrieved. You can control pagination by specifying the " + }, + { + "kind": "code", + "text": "`skip`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`take`" + }, + { + "kind": "text", + "text": " properties of the " + }, { "kind": "code", - "text": "```ts\nconst priceSet = await pricingModuleService.updatePriceSets(\n \"pset_123\",\n {\n prices: [{ amount: 100, currency_code: \"USD\" }],\n }\n)\n```" + "text": "`config`" + }, + { + "kind": "text", + "text": " parameter:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst [prices, count] = await pricingModuleService.listPrices(\n {\n id: [\"price_123\", \"price_321\"],\n },\n {\n relations: [\"price_rules\"],\n take: 20,\n skip: 2,\n }\n)\n```" } ] } @@ -11279,47 +13343,77 @@ }, "parameters": [ { - "id": 8152, - "name": "id", + "id": 8556, + "name": "filters", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The ID of the price set to be updated." + "text": "The filters to apply on the retrieved prices." } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 8812, + "name": "FilterablePriceProps", + "package": "@medusajs/types" } }, { - "id": 8153, - "name": "data", + "id": 8557, + "name": "config", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The attributes of the price set to be updated" + "text": "The configurations determining how the prices are retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a price." } ] }, "type": { "type": "reference", - "target": 8389, - "name": "UpdatePriceSetDTO", + "target": 8779, + "typeArguments": [ + { + "type": "reference", + "target": 8819, + "name": "PriceDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", "package": "@medusajs/types" } }, { - "id": 8154, + "id": 8558, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11336,7 +13430,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -11350,19 +13444,40 @@ }, "typeArguments": [ { - "type": "reference", - "target": 8374, - "name": "PriceSetDTO", - "package": "@medusajs/types" + "type": "tuple", + "elements": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 8819, + "name": "PriceDTO", + "package": "@medusajs/types" + } + }, + { + "type": "intrinsic", + "name": "number" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 8559, + "name": "retrievePriceRule", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 8155, - "name": "updatePriceSets", + "id": 8560, + "name": "retrievePriceRule", "variant": "signature", "kind": 4096, "flags": {}, @@ -11370,7 +13485,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to update a list of price sets determined by the selector filters." + "text": "This method is used to retrieve a price rule by its ID." } ], "blockTags": [ @@ -11379,16 +13494,28 @@ "content": [ { "kind": "text", - "text": "The updated price sets." + "text": "The retrieved price rule." } ] }, { "tag": "@example", "content": [ + { + "kind": "text", + "text": "A simple example that retrieves a price rule by its ID:\n\n" + }, { "kind": "code", - "text": "```ts\nconst priceSets = await pricingModuleService.updatePriceSets(\n {\n id: [\"pset_123\", \"pset_321\"],\n },\n {\n prices: [{ amount: 100, currency_code: \"USD\" }],\n }\n)\n```" + "text": "```ts\nconst priceRule =\n await pricingModuleService.retrievePriceRule(\"prule_123\")\n```" + }, + { + "kind": "text", + "text": "\n\nTo specify relations that should be retrieved:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst priceRule =\n await pricingModuleService.retrievePriceRule(\"prule_123\", {\n relations: [\"price_set\"],\n })\n```" } ] } @@ -11396,8 +13523,8 @@ }, "parameters": [ { - "id": 8156, - "name": "selector", + "id": 8561, + "name": "id", "variant": "param", "kind": 32768, "flags": {}, @@ -11405,40 +13532,64 @@ "summary": [ { "kind": "text", - "text": "The filters that will determine which price sets will be updated." + "text": "The ID of the price rule to retrieve." } ] }, "type": { - "type": "reference", - "target": 8378, - "name": "FilterablePriceSetProps", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } }, { - "id": 8157, - "name": "data", + "id": 8562, + "name": "config", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The attributes to be updated on the selected price sets" + "text": "The configurations determining how the price rule is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a price rule." } ] }, "type": { "type": "reference", - "target": 8389, - "name": "UpdatePriceSetDTO", + "target": 8779, + "typeArguments": [ + { + "type": "reference", + "target": 8839, + "name": "PriceRuleDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", "package": "@medusajs/types" } }, { - "id": 8158, + "id": 8563, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11455,7 +13606,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -11469,13 +13620,10 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 8374, - "name": "PriceSetDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 8839, + "name": "PriceRuleDTO", + "package": "@medusajs/types" } ], "name": "Promise", @@ -11485,15 +13633,15 @@ ] }, { - "id": 8159, - "name": "deletePriceSets", + "id": 8564, + "name": "listPriceRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8160, - "name": "deletePriceSets", + "id": 8565, + "name": "listPriceRules", "variant": "signature", "kind": 4096, "flags": {}, @@ -11501,7 +13649,7 @@ "summary": [ { "kind": "text", - "text": "This method deletes price sets by their IDs." + "text": "This method is used to retrieve a paginated list of price rules based on optional filters and configuration." } ], "blockTags": [ @@ -11510,16 +13658,68 @@ "content": [ { "kind": "text", - "text": "Resolves when the price sets are successfully deleted." + "text": "The list of price rules." } ] }, { "tag": "@example", "content": [ + { + "kind": "text", + "text": "To retrieve a list of price rules using their IDs:\n\n" + }, { "kind": "code", - "text": "```ts\nawait pricingModuleService.deletePriceSets([\"pset_123\", \"pset_321\"])\n```" + "text": "```ts\nconst priceRules = await pricingModuleService.listPriceRules({\n id: [\"prule_123\", \"prule_321\"],\n})\n```" + }, + { + "kind": "text", + "text": "\n\nTo specify relations that should be retrieved within the price rules:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst priceRules = await pricingModuleService.listPriceRules(\n {\n id: [\"prule_123\", \"prule_321\"],\n },\n {\n relations: [\"price_set\"],\n }\n)\n```" + }, + { + "kind": "text", + "text": "\n\nBy default, only the first " + }, + { + "kind": "code", + "text": "`15`" + }, + { + "kind": "text", + "text": " records are retrieved. You can control pagination by specifying the " + }, + { + "kind": "code", + "text": "`skip`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`take`" + }, + { + "kind": "text", + "text": " properties of the " + }, + { + "kind": "code", + "text": "`config`" + }, + { + "kind": "text", + "text": " parameter:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst priceRules = await pricingModuleService.listPriceRules(\n {\n id: [\"prule_123\", \"prule_321\"],\n },\n {\n relations: [\"price_set\"],\n take: 20,\n skip: 2,\n }\n)\n```" } ] } @@ -11527,29 +13727,77 @@ }, "parameters": [ { - "id": 8161, - "name": "ids", + "id": 8566, + "name": "filters", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The filters to apply on the retrieved price rules." + } + ] + }, + "type": { + "type": "reference", + "target": 8851, + "name": "FilterablePriceRuleProps", + "package": "@medusajs/types" + } + }, + { + "id": 8567, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The IDs of the price sets to delete." + "text": "The configurations determining how the price rule is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a price rule." } ] }, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 8779, + "typeArguments": [ + { + "type": "reference", + "target": 8839, + "name": "PriceRuleDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", + "package": "@medusajs/types" } }, { - "id": 8162, + "id": 8568, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11566,7 +13814,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -11580,8 +13828,13 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "array", + "elementType": { + "type": "reference", + "target": 8839, + "name": "PriceRuleDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -11591,15 +13844,15 @@ ] }, { - "id": 8163, - "name": "addPrices", + "id": 8569, + "name": "listAndCountPriceRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8164, - "name": "addPrices", + "id": 8570, + "name": "listAndCountPriceRules", "variant": "signature", "kind": 4096, "flags": {}, @@ -11607,7 +13860,7 @@ "summary": [ { "kind": "text", - "text": "This method adds prices to a price set." + "text": "This method is used to retrieve a paginated list of price rules along with the total count of available price rules satisfying the provided filters." } ], "blockTags": [ @@ -11616,7 +13869,7 @@ "content": [ { "kind": "text", - "text": "The price set that the prices were added to." + "text": "The list of price rules along with their total count." } ] }, @@ -11625,27 +13878,59 @@ "content": [ { "kind": "text", - "text": "To add a default price to a price set, don't pass it any rules and make sure to pass it the " + "text": "To retrieve a list of price rules using their IDs:\n\n" }, { "kind": "code", - "text": "`currency_code`" + "text": "```ts\nconst [priceRules, count] =\n await pricingModuleService.listAndCountPriceListRules({\n id: [\"prule_123\", \"prule_321\"],\n })\n```" }, { "kind": "text", - "text": ":\n\n" + "text": "\n\nTo specify relations that should be retrieved within the price rules:\n\n" }, { "kind": "code", - "text": "```ts\nconst priceSet = await pricingModuleService.addPrices({\n priceSetId: \"pset_123\",\n prices: [\n {\n amount: 500,\n currency_code: \"USD\",\n rules: {},\n },\n ],\n})\n```" + "text": "```ts\nconst [priceRules, count] =\n await pricingModuleService.listAndCountPriceListRules(\n {\n id: [\"prule_123\", \"prule_321\"],\n },\n {\n relations: [\"price_set\"],\n }\n )\n```" }, { "kind": "text", - "text": "\n\nTo add prices with rules:\n\n" + "text": "\n\nBy default, only the first " }, { "kind": "code", - "text": "```ts\nconst priceSet = await pricingModuleService.addPrices({\n priceSetId: \"pset_123\",\n prices: [\n {\n amount: 300,\n currency_code: \"EUR\",\n rules: {\n region_id: \"PL\",\n city: \"krakow\",\n },\n },\n {\n amount: 400,\n currency_code: \"EUR\",\n min_quantity: 0,\n max_quantity: 4,\n rules: {\n region_id: \"PL\",\n },\n },\n {\n amount: 450,\n currency_code: \"EUR\",\n rules: {\n city: \"krakow\",\n },\n },\n ],\n})\n```" + "text": "`15`" + }, + { + "kind": "text", + "text": " records are retrieved. You can control pagination by specifying the " + }, + { + "kind": "code", + "text": "`skip`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`take`" + }, + { + "kind": "text", + "text": " properties of the " + }, + { + "kind": "code", + "text": "`config`" + }, + { + "kind": "text", + "text": " parameter:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst [priceRules, count] =\n await pricingModuleService.listAndCountPriceListRules(\n {\n id: [\"prule_123\", \"prule_321\"],\n },\n {\n relations: [\"price_set\"],\n take: 20,\n skip: 2,\n }\n )\n```" } ] } @@ -11653,28 +13938,77 @@ }, "parameters": [ { - "id": 8165, - "name": "data", + "id": 8571, + "name": "filters", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The data defining the price set to add the prices to, along with the prices to add." + "text": "The filters to apply on the retrieved price rules." } ] }, "type": { "type": "reference", - "target": 8391, - "name": "AddPricesDTO", + "target": 8851, + "name": "FilterablePriceRuleProps", + "package": "@medusajs/types" + } + }, + { + "id": 8572, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The configurations determining how the price rule is retrieved. Its properties, such as " + }, + { + "kind": "code", + "text": "`select`" + }, + { + "kind": "text", + "text": " or " + }, + { + "kind": "code", + "text": "`relations`" + }, + { + "kind": "text", + "text": ", accept the\nattributes or relations associated with a price rule." + } + ] + }, + "type": { + "type": "reference", + "target": 8779, + "typeArguments": [ + { + "type": "reference", + "target": 8839, + "name": "PriceRuleDTO", + "package": "@medusajs/types" + } + ], + "name": "FindConfig", "package": "@medusajs/types" } }, { - "id": 8166, + "id": 8573, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11691,7 +14025,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -11705,19 +14039,40 @@ }, "typeArguments": [ { - "type": "reference", - "target": 8374, - "name": "PriceSetDTO", - "package": "@medusajs/types" + "type": "tuple", + "elements": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 8839, + "name": "PriceRuleDTO", + "package": "@medusajs/types" + } + }, + { + "type": "intrinsic", + "name": "number" + } + ] } ], "name": "Promise", "package": "typescript" } - }, + } + ] + }, + { + "id": 8574, + "name": "createPriceRules", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ { - "id": 8167, - "name": "addPrices", + "id": 8575, + "name": "createPriceRules", "variant": "signature", "kind": 4096, "flags": {}, @@ -11725,7 +14080,7 @@ "summary": [ { "kind": "text", - "text": "This method adds prices to multiple price sets." + "text": "This method is used to create new price rules based on the provided data." } ], "blockTags": [ @@ -11734,7 +14089,7 @@ "content": [ { "kind": "text", - "text": "The list of the price sets that prices were added to." + "text": "The list of created price rules." } ] }, @@ -11743,7 +14098,7 @@ "content": [ { "kind": "code", - "text": "```ts\nconst priceSets = await pricingModuleService.addPrices([\n {\n priceSetId: \"pset_123\",\n prices: [\n // default price because it doesn't\n // have rules\n {\n amount: 500,\n currency_code: \"USD\",\n rules: {},\n },\n ],\n },\n {\n priceSetId: \"pset_321\",\n prices: [\n // prices with rules\n {\n amount: 300,\n currency_code: \"EUR\",\n rules: {\n region_id: \"PL\",\n city: \"krakow\",\n },\n },\n ],\n },\n])\n```" + "text": "```ts\nconst priceRules =\n await pricingModuleService.createPriceRules([\n {\n value: \"VIP\",\n attribute: \"customer_group\",\n price_set_id: \"pset_123\",\n },\n ])\n```" } ] } @@ -11751,7 +14106,7 @@ }, "parameters": [ { - "id": 8168, + "id": 8576, "name": "data", "variant": "param", "kind": 32768, @@ -11760,7 +14115,7 @@ "summary": [ { "kind": "text", - "text": "The data defining the prices to add per price set." + "text": "The price rules to create." } ] }, @@ -11768,14 +14123,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 8391, - "name": "AddPricesDTO", + "target": 8857, + "name": "CreatePriceRuleDTO", "package": "@medusajs/types" } } }, { - "id": 8169, + "id": 8577, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11792,7 +14147,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -11809,8 +14164,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 8374, - "name": "PriceSetDTO", + "target": 8839, + "name": "PriceRuleDTO", "package": "@medusajs/types" } } @@ -11822,15 +14177,15 @@ ] }, { - "id": 8170, - "name": "listPrices", + "id": 8578, + "name": "updatePriceRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8171, - "name": "listPrices", + "id": 8579, + "name": "updatePriceRules", "variant": "signature", "kind": 4096, "flags": {}, @@ -11838,7 +14193,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a paginated list of prices based on optional filters and configuration." + "text": "This method is used to update price rules, each with their provided data." } ], "blockTags": [ @@ -11847,68 +14202,16 @@ "content": [ { "kind": "text", - "text": "The list of prices." + "text": "The list of updated price rules." } ] }, - { - "tag": "@example", - "content": [ - { - "kind": "text", - "text": "To retrieve a list of prices using their IDs:\n\n" - }, - { - "kind": "code", - "text": "```ts\nconst prices = await pricingModuleService.listPrices({\n id: [\"price_123\", \"price_321\"],\n})\n```" - }, - { - "kind": "text", - "text": "\n\nTo specify relations that should be retrieved within the prices:\n\n" - }, - { - "kind": "code", - "text": "```ts\nconst prices = await pricingModuleService.listPrices(\n {\n id: [\"price_123\", \"price_321\"],\n },\n {\n relations: [\"price_rules\"],\n }\n)\n```" - }, - { - "kind": "text", - "text": "\n\nBy default, only the first " - }, - { - "kind": "code", - "text": "`15`" - }, - { - "kind": "text", - "text": " records are retrieved. You can control pagination by specifying the " - }, - { - "kind": "code", - "text": "`skip`" - }, - { - "kind": "text", - "text": " and " - }, - { - "kind": "code", - "text": "`take`" - }, - { - "kind": "text", - "text": " properties of the " - }, - { - "kind": "code", - "text": "`config`" - }, - { - "kind": "text", - "text": " parameter:\n\n" - }, + { + "tag": "@example", + "content": [ { "kind": "code", - "text": "```ts\nconst prices = await pricingModuleService.listPrices(\n {\n id: [\"price_123\", \"price_321\"],\n },\n {\n relations: [\"price_rules\"],\n take: 20,\n skip: 2,\n }\n)\n```" + "text": "```ts\nconst priceRules =\n await pricingModuleService.updatePriceRules([\n {\n id: \"prule_123\",\n price_id: \"price_123\",\n },\n ])\n```" } ] } @@ -11916,77 +14219,31 @@ }, "parameters": [ { - "id": 8172, - "name": "filters", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The filters to apply on the retrieved prices." - } - ] - }, - "type": { - "type": "reference", - "target": 8394, - "name": "FilterablePriceProps", - "package": "@medusajs/types" - } - }, - { - "id": 8173, - "name": "config", + "id": 8580, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The configurations determining how the prices are retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, - { - "kind": "text", - "text": " or " - }, - { - "kind": "code", - "text": "`relations`" - }, - { - "kind": "text", - "text": ", accept the\nattributes or relations associated with a price." + "text": "The price rules to update, each having attributes that should be updated in a price rule." } ] }, "type": { - "type": "reference", - "target": 8361, - "typeArguments": [ - { - "type": "reference", - "target": 8401, - "name": "PriceDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 8863, + "name": "UpdatePriceRuleDTO", + "package": "@medusajs/types" + } } }, { - "id": 8174, + "id": 8581, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12003,7 +14260,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -12020,8 +14277,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 8401, - "name": "PriceDTO", + "target": 8839, + "name": "PriceRuleDTO", "package": "@medusajs/types" } } @@ -12033,15 +14290,15 @@ ] }, { - "id": 8175, - "name": "softDeletePrices", + "id": 8582, + "name": "deletePriceRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8176, - "name": "softDeletePrices", + "id": 8583, + "name": "deletePriceRules", "variant": "signature", "kind": 4096, "flags": {}, @@ -12049,7 +14306,7 @@ "summary": [ { "kind": "text", - "text": "This method soft deletes prices by their IDs." + "text": "This method is used to delete price rules based on the specified IDs." } ], "blockTags": [ @@ -12058,23 +14315,7 @@ "content": [ { "kind": "text", - "text": "An object that includes the IDs of related records that were also soft deleted, such as the ID of the associated price rules.\nThe object's keys are the ID attribute names of the price entity's relations, such as " - }, - { - "kind": "code", - "text": "`price_rule_id`" - }, - { - "kind": "text", - "text": ", and its value is an array of strings, each being the ID of a record associated\nwith the price through this relation, such as the IDs of associated price rule.\n\nIf there are no related records, the promise resolves to " - }, - { - "kind": "code", - "text": "`void`" - }, - { - "kind": "text", - "text": "." + "text": "Resolves once the price rules are deleted." } ] }, @@ -12083,33 +14324,16 @@ "content": [ { "kind": "code", - "text": "```ts\nawait pricingModuleService.softDeletePrices([\n \"price_123\",\n \"price_321\",\n])\n```" + "text": "```ts\nawait pricingModuleService.deletePriceRules([\n \"prule_123\",\n \"prule_321\",\n])\n```" } ] } ] }, - "typeParameters": [ - { - "id": 8177, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "default": { - "type": "intrinsic", - "name": "string" - } - } - ], "parameters": [ { - "id": 8178, - "name": "priceIds", + "id": 8584, + "name": "priceRuleIds", "variant": "param", "kind": 32768, "flags": {}, @@ -12117,7 +14341,7 @@ "summary": [ { "kind": "text", - "text": "The IDs of the prices." + "text": "The IDs of the price rules to delete." } ] }, @@ -12130,39 +14354,7 @@ } }, { - "id": 8179, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An object that is used to specify an entity's related entities that should be soft-deleted when the main entity is soft-deleted." - } - ] - }, - "type": { - "type": "reference", - "target": 8415, - "typeArguments": [ - { - "type": "reference", - "target": 8177, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - ], - "name": "SoftDeleteReturn", - "package": "@medusajs/types" - } - }, - { - "id": 8180, + "id": 8585, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12179,7 +14371,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -12193,35 +14385,8 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -12231,15 +14396,15 @@ ] }, { - "id": 8181, - "name": "restorePrices", + "id": 8586, + "name": "retrievePriceList", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8182, - "name": "restorePrices", + "id": 8587, + "name": "retrievePriceList", "variant": "signature", "kind": 4096, "flags": {}, @@ -12247,42 +14412,46 @@ "summary": [ { "kind": "text", - "text": "This method restores soft deleted prices by their IDs." + "text": "This method is used to retrieve a price list by its ID." } ], "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The retrieved price list." + } + ] + }, { "tag": "@example", "content": [ + { + "kind": "text", + "text": "A simple example that retrieves a price list by its ID:\n\n" + }, { "kind": "code", - "text": "```ts\nawait pricingModuleService.restorePrices([\n \"price_123\",\n \"price_321\",\n])\n```" + "text": "```ts\nconst priceList =\n await pricingModuleService.retrievePriceList(\"plist_123\")\n```" + }, + { + "kind": "text", + "text": "\n\nTo specify relations that should be retrieved:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst priceList =\n await pricingModuleService.retrievePriceList(\"plist_123\", {\n relations: [\"prices\"],\n })\n```" } ] } ] }, - "typeParameters": [ - { - "id": 8183, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "default": { - "type": "intrinsic", - "name": "string" - } - } - ], "parameters": [ { - "id": 8184, - "name": "priceIds", + "id": 8588, + "name": "id", "variant": "param", "kind": 32768, "flags": {}, @@ -12290,20 +14459,17 @@ "summary": [ { "kind": "text", - "text": "The IDs of the prices." + "text": "The ID of the price list to retrieve." } ] }, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "string" } }, { - "id": 8185, + "id": 8589, "name": "config", "variant": "param", "kind": 32768, @@ -12314,61 +14480,60 @@ "summary": [ { "kind": "text", - "text": "Configurations determining which relations to restore along with each of the prices. You can pass to its " - }, - { - "kind": "code", - "text": "`returnLinkableKeys`" - }, - { - "kind": "text", - "text": "\nproperty any of the price's relation attribute names, such as price_rules" + "text": "The configurations determining how the price list is retrieved. Its properties, such as " }, { "kind": "code", - "text": "`.\n@param {Context} sharedContext - A context used to share resources, such as transaction manager, between the application and the module.\n@returns {Promise>} An object that includes the IDs of related records that were restored, such as the ID of associated price rules.\nThe object's keys are the ID attribute names of the prices entity's relations, such as `" + "text": "`select`" }, { "kind": "text", - "text": "price_rule_id" + "text": " or " }, { "kind": "code", - "text": "`,\nand its value is an array of strings, each being the ID of the record associated with the prices through this relation,\nsuch as the IDs of associated price rules.\n\nIf there are no related records restored, the promise resolves to `" + "text": "`relations`" }, { "kind": "text", - "text": "void`." + "text": ", accept the\nattributes or relations associated with a price list." } ] }, "type": { "type": "reference", - "target": 8418, + "target": 8779, "typeArguments": [ - { - "type": "reference", - "target": 8183, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true + { + "type": "reference", + "target": 8871, + "name": "PriceListDTO", + "package": "@medusajs/types" } ], - "name": "RestoreReturn", + "name": "FindConfig", "package": "@medusajs/types" } }, { - "id": 8186, + "id": 8590, "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { "isOptional": true }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -12382,35 +14547,10 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "reference", + "target": 8871, + "name": "PriceListDTO", + "package": "@medusajs/types" } ], "name": "Promise", @@ -12420,15 +14560,15 @@ ] }, { - "id": 8187, - "name": "listAndCountPrices", + "id": 8591, + "name": "listPriceLists", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8188, - "name": "listAndCountPrices", + "id": 8592, + "name": "listPriceLists", "variant": "signature", "kind": 4096, "flags": {}, @@ -12436,7 +14576,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a paginated list of prices along with the total count of\navailable prices satisfying the provided filters." + "text": "This method is used to retrieve a paginated list of price lists based on optional filters and configuration." } ], "blockTags": [ @@ -12445,7 +14585,7 @@ "content": [ { "kind": "text", - "text": "The list of prices and their total count." + "text": "The list of price lists." } ] }, @@ -12454,19 +14594,19 @@ "content": [ { "kind": "text", - "text": "To retrieve a list of prices using their IDs:\n\n" + "text": "To retrieve a list of price lists using their IDs:\n\n" }, { "kind": "code", - "text": "```ts\nconst [prices, count] = await pricingModuleService.listPrices(\n {\n id: [\"price_123\", \"price_321\"],\n }\n)\n```" + "text": "```ts\nconst priceLists = await pricingModuleService.listPriceLists({\n id: [\"plist_123\", \"plist_321\"],\n})\n```" }, { "kind": "text", - "text": "\n\nTo specify relations that should be retrieved within the prices:\n\n" + "text": "\n\nTo specify relations that should be retrieved within the price lists:\n\n" }, { "kind": "code", - "text": "```ts\nconst [prices, count] = await pricingModuleService.listPrices(\n {\n id: [\"price_123\", \"price_321\"],\n },\n {\n relations: [\"price_rules\"],\n }\n)\n```" + "text": "```ts\nconst priceLists = await pricingModuleService.listPriceLists(\n {\n id: [\"plist_123\", \"plist_321\"],\n },\n {\n relations: [\"prices\"],\n }\n)\n```" }, { "kind": "text", @@ -12506,7 +14646,7 @@ }, { "kind": "code", - "text": "```ts\nconst [prices, count] = await pricingModuleService.listPrices(\n {\n id: [\"price_123\", \"price_321\"],\n },\n {\n relations: [\"price_rules\"],\n take: 20,\n skip: 2,\n }\n)\n```" + "text": "```ts\nconst priceLists = await pricingModuleService.listPriceLists(\n {\n id: [\"plist_123\", \"plist_321\"],\n },\n {\n relations: [\"prices\"],\n take: 20,\n skip: 2,\n }\n)\n```" } ] } @@ -12514,7 +14654,7 @@ }, "parameters": [ { - "id": 8189, + "id": 8593, "name": "filters", "variant": "param", "kind": 32768, @@ -12525,19 +14665,19 @@ "summary": [ { "kind": "text", - "text": "The filters to apply on the retrieved prices." + "text": "The filters to apply on the retrieved price lists." } ] }, "type": { "type": "reference", - "target": 8394, - "name": "FilterablePriceProps", + "target": 8883, + "name": "FilterablePriceListProps", "package": "@medusajs/types" } }, { - "id": 8190, + "id": 8594, "name": "config", "variant": "param", "kind": 32768, @@ -12548,7 +14688,7 @@ "summary": [ { "kind": "text", - "text": "The configurations determining how the prices are retrieved. Its properties, such as " + "text": "The configurations determining how the price lists are retrieved. Its properties, such as " }, { "kind": "code", @@ -12564,18 +14704,18 @@ }, { "kind": "text", - "text": ", accept the\nattributes or relations associated with a price." + "text": ", accept the\nattributes or relations associated with a price list." } ] }, "type": { "type": "reference", - "target": 8361, + "target": 8779, "typeArguments": [ { "type": "reference", - "target": 8401, - "name": "PriceDTO", + "target": 8871, + "name": "PriceListDTO", "package": "@medusajs/types" } ], @@ -12584,7 +14724,7 @@ } }, { - "id": 8191, + "id": 8595, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12601,7 +14741,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -12615,22 +14755,13 @@ }, "typeArguments": [ { - "type": "tuple", - "elements": [ - { - "type": "array", - "elementType": { - "type": "reference", - "target": 8401, - "name": "PriceDTO", - "package": "@medusajs/types" - } - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "array", + "elementType": { + "type": "reference", + "target": 8871, + "name": "PriceListDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -12640,15 +14771,15 @@ ] }, { - "id": 8192, - "name": "retrievePriceRule", + "id": 8596, + "name": "listAndCountPriceLists", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8193, - "name": "retrievePriceRule", + "id": 8597, + "name": "listAndCountPriceLists", "variant": "signature", "kind": 4096, "flags": {}, @@ -12656,7 +14787,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a price rule by its ID." + "text": "This method is used to retrieve a paginated list of price lists along with the total count of available price lists satisfying the provided filters." } ], "blockTags": [ @@ -12665,7 +14796,7 @@ "content": [ { "kind": "text", - "text": "The retrieved price rule." + "text": "The list of price lists along with their total count." } ] }, @@ -12674,19 +14805,59 @@ "content": [ { "kind": "text", - "text": "A simple example that retrieves a price rule by its ID:\n\n" + "text": "To retrieve a list of price lists using their IDs:\n\n" }, { "kind": "code", - "text": "```ts\nconst priceRule =\n await pricingModuleService.retrievePriceRule(\"prule_123\")\n```" + "text": "```ts\nconst [priceLists, count] =\n await pricingModuleService.listAndCountPriceLists({\n id: [\"plist_123\", \"plist_321\"],\n })\n```" }, { "kind": "text", - "text": "\n\nTo specify relations that should be retrieved:\n\n" + "text": "\n\nTo specify relations that should be retrieved within the price lists:\n\n" }, { "kind": "code", - "text": "```ts\nconst priceRule =\n await pricingModuleService.retrievePriceRule(\"prule_123\", {\n relations: [\"price_set\"],\n })\n```" + "text": "```ts\nconst [priceLists, count] =\n await pricingModuleService.listAndCountPriceLists(\n {\n id: [\"plist_123\", \"plist_321\"],\n },\n {\n relations: [\"prices\"],\n }\n )\n```" + }, + { + "kind": "text", + "text": "\n\nBy default, only the first " + }, + { + "kind": "code", + "text": "`15`" + }, + { + "kind": "text", + "text": " records are retrieved. You can control pagination by specifying the " + }, + { + "kind": "code", + "text": "`skip`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`take`" + }, + { + "kind": "text", + "text": " properties of the " + }, + { + "kind": "code", + "text": "`config`" + }, + { + "kind": "text", + "text": " parameter:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst [priceLists, count] =\n await pricingModuleService.listAndCountPriceLists(\n {\n id: [\"plist_123\", \"plist_321\"],\n },\n {\n relations: [\"prices\"],\n take: 20,\n skip: 2,\n }\n )\n```" } ] } @@ -12694,26 +14865,30 @@ }, "parameters": [ { - "id": 8194, - "name": "id", + "id": 8598, + "name": "filters", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The ID of the price rule to retrieve." + "text": "The filters to apply on the retrieved price lists." } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 8883, + "name": "FilterablePriceListProps", + "package": "@medusajs/types" } }, { - "id": 8195, + "id": 8599, "name": "config", "variant": "param", "kind": 32768, @@ -12724,7 +14899,7 @@ "summary": [ { "kind": "text", - "text": "The configurations determining how the price rule is retrieved. Its properties, such as " + "text": "The configurations determining how the price lists are retrieved. Its properties, such as " }, { "kind": "code", @@ -12740,18 +14915,18 @@ }, { "kind": "text", - "text": ", accept the\nattributes or relations associated with a price rule." + "text": ", accept the\nattributes or relations associated with a price list." } ] }, "type": { "type": "reference", - "target": 8361, + "target": 8779, "typeArguments": [ { "type": "reference", - "target": 8421, - "name": "PriceRuleDTO", + "target": 8871, + "name": "PriceListDTO", "package": "@medusajs/types" } ], @@ -12760,7 +14935,7 @@ } }, { - "id": 8196, + "id": 8600, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12777,7 +14952,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -12791,10 +14966,22 @@ }, "typeArguments": [ { - "type": "reference", - "target": 8421, - "name": "PriceRuleDTO", - "package": "@medusajs/types" + "type": "tuple", + "elements": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 8871, + "name": "PriceListDTO", + "package": "@medusajs/types" + } + }, + { + "type": "intrinsic", + "name": "number" + } + ] } ], "name": "Promise", @@ -12804,15 +14991,15 @@ ] }, { - "id": 8197, - "name": "listPriceRules", + "id": 8601, + "name": "createPriceLists", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8198, - "name": "listPriceRules", + "id": 8602, + "name": "createPriceLists", "variant": "signature", "kind": 4096, "flags": {}, @@ -12820,7 +15007,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a paginated list of price rules based on optional filters and configuration." + "text": "This method is used to create price lists." } ], "blockTags": [ @@ -12828,69 +15015,17 @@ "tag": "@returns", "content": [ { - "kind": "text", - "text": "The list of price rules." - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "text", - "text": "To retrieve a list of price rules using their IDs:\n\n" - }, - { - "kind": "code", - "text": "```ts\nconst priceRules = await pricingModuleService.listPriceRules({\n id: [\"prule_123\", \"prule_321\"],\n})\n```" - }, - { - "kind": "text", - "text": "\n\nTo specify relations that should be retrieved within the price rules:\n\n" - }, - { - "kind": "code", - "text": "```ts\nconst priceRules = await pricingModuleService.listPriceRules(\n {\n id: [\"prule_123\", \"prule_321\"],\n },\n {\n relations: [\"price_set\"],\n }\n)\n```" - }, - { - "kind": "text", - "text": "\n\nBy default, only the first " - }, - { - "kind": "code", - "text": "`15`" - }, - { - "kind": "text", - "text": " records are retrieved. You can control pagination by specifying the " - }, - { - "kind": "code", - "text": "`skip`" - }, - { - "kind": "text", - "text": " and " - }, - { - "kind": "code", - "text": "`take`" - }, - { - "kind": "text", - "text": " properties of the " - }, - { - "kind": "code", - "text": "`config`" - }, - { - "kind": "text", - "text": " parameter:\n\n" - }, + "kind": "text", + "text": "The created price lists." + } + ] + }, + { + "tag": "@example", + "content": [ { "kind": "code", - "text": "```ts\nconst priceRules = await pricingModuleService.listPriceRules(\n {\n id: [\"prule_123\", \"prule_321\"],\n },\n {\n relations: [\"price_set\"],\n take: 20,\n skip: 2,\n }\n)\n```" + "text": "```ts\nconst priceLists =\n await pricingModuleService.createPriceLists([\n {\n title: \"Sale 1\",\n description: \"Summer sale\",\n },\n {\n title: \"Sale 2\",\n description: \"Winter sale\",\n starts_at: \"2024-12-21\",\n },\n ])\n```" } ] } @@ -12898,77 +15033,31 @@ }, "parameters": [ { - "id": 8199, - "name": "filters", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The filters to apply on the retrieved price rules." - } - ] - }, - "type": { - "type": "reference", - "target": 8433, - "name": "FilterablePriceRuleProps", - "package": "@medusajs/types" - } - }, - { - "id": 8200, - "name": "config", + "id": 8603, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The configurations determining how the price rule is retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, - { - "kind": "text", - "text": " or " - }, - { - "kind": "code", - "text": "`relations`" - }, - { - "kind": "text", - "text": ", accept the\nattributes or relations associated with a price rule." + "text": "The details of each price list to be created." } ] }, "type": { - "type": "reference", - "target": 8361, - "typeArguments": [ - { - "type": "reference", - "target": 8421, - "name": "PriceRuleDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 8892, + "name": "CreatePriceListDTO", + "package": "@medusajs/types" + } } }, { - "id": 8201, + "id": 8604, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12985,7 +15074,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -13002,8 +15091,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 8421, - "name": "PriceRuleDTO", + "target": 8871, + "name": "PriceListDTO", "package": "@medusajs/types" } } @@ -13015,15 +15104,15 @@ ] }, { - "id": 8202, - "name": "listAndCountPriceRules", + "id": 8605, + "name": "updatePriceLists", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8203, - "name": "listAndCountPriceRules", + "id": 8606, + "name": "updatePriceLists", "variant": "signature", "kind": 4096, "flags": {}, @@ -13031,7 +15120,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a paginated list of price rules along with the total count of available price rules satisfying the provided filters." + "text": "This method is used to update price lists." } ], "blockTags": [ @@ -13040,68 +15129,16 @@ "content": [ { "kind": "text", - "text": "The list of price rules along with their total count." + "text": "The updated price lists." } ] }, { "tag": "@example", "content": [ - { - "kind": "text", - "text": "To retrieve a list of price rules using their IDs:\n\n" - }, - { - "kind": "code", - "text": "```ts\nconst [priceRules, count] =\n await pricingModuleService.listAndCountPriceListRules({\n id: [\"prule_123\", \"prule_321\"],\n })\n```" - }, - { - "kind": "text", - "text": "\n\nTo specify relations that should be retrieved within the price rules:\n\n" - }, - { - "kind": "code", - "text": "```ts\nconst [priceRules, count] =\n await pricingModuleService.listAndCountPriceListRules(\n {\n id: [\"prule_123\", \"prule_321\"],\n },\n {\n relations: [\"price_set\"],\n }\n )\n```" - }, - { - "kind": "text", - "text": "\n\nBy default, only the first " - }, - { - "kind": "code", - "text": "`15`" - }, - { - "kind": "text", - "text": " records are retrieved. You can control pagination by specifying the " - }, - { - "kind": "code", - "text": "`skip`" - }, - { - "kind": "text", - "text": " and " - }, - { - "kind": "code", - "text": "`take`" - }, - { - "kind": "text", - "text": " properties of the " - }, - { - "kind": "code", - "text": "`config`" - }, - { - "kind": "text", - "text": " parameter:\n\n" - }, { "kind": "code", - "text": "```ts\nconst [priceRules, count] =\n await pricingModuleService.listAndCountPriceListRules(\n {\n id: [\"prule_123\", \"prule_321\"],\n },\n {\n relations: [\"price_set\"],\n take: 20,\n skip: 2,\n }\n )\n```" + "text": "```ts\nconst priceLists =\n await pricingModuleService.updatePriceLists([\n {\n id: \"plist_123\",\n title: \"Sale 1\",\n },\n {\n id: \"plist_321\",\n description: \"Winter sale\",\n },\n ])\n```" } ] } @@ -13109,77 +15146,39 @@ }, "parameters": [ { - "id": 8204, - "name": "filters", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The filters to apply on the retrieved price rules." - } - ] - }, - "type": { - "type": "reference", - "target": 8433, - "name": "FilterablePriceRuleProps", - "package": "@medusajs/types" - } - }, - { - "id": 8205, - "name": "config", + "id": 8607, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The configurations determining how the price rule is retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, - { - "kind": "text", - "text": " or " + "text": "The attributes to update in each price list. The price list is identifed by the " }, { "kind": "code", - "text": "`relations`" + "text": "`id`" }, { "kind": "text", - "text": ", accept the\nattributes or relations associated with a price rule." + "text": " field." } ] }, "type": { - "type": "reference", - "target": 8361, - "typeArguments": [ - { - "type": "reference", - "target": 8421, - "name": "PriceRuleDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 8901, + "name": "UpdatePriceListDTO", + "package": "@medusajs/types" + } } }, { - "id": 8206, + "id": 8608, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13196,7 +15195,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -13210,22 +15209,13 @@ }, "typeArguments": [ { - "type": "tuple", - "elements": [ - { - "type": "array", - "elementType": { - "type": "reference", - "target": 8421, - "name": "PriceRuleDTO", - "package": "@medusajs/types" - } - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "array", + "elementType": { + "type": "reference", + "target": 8871, + "name": "PriceListDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -13235,15 +15225,15 @@ ] }, { - "id": 8207, - "name": "createPriceRules", + "id": 8609, + "name": "deletePriceLists", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8208, - "name": "createPriceRules", + "id": 8610, + "name": "deletePriceLists", "variant": "signature", "kind": 4096, "flags": {}, @@ -13251,7 +15241,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to create new price rules based on the provided data." + "text": "This method is used to delete price lists." } ], "blockTags": [ @@ -13260,7 +15250,7 @@ "content": [ { "kind": "text", - "text": "The list of created price rules." + "text": "Resolves when the price lists are deleted successfully." } ] }, @@ -13269,7 +15259,7 @@ "content": [ { "kind": "code", - "text": "```ts\nconst priceRules =\n await pricingModuleService.createPriceRules([\n {\n value: \"VIP\",\n attribute: \"customer_group\",\n price_set_id: \"pset_123\",\n },\n ])\n```" + "text": "```ts\nawait pricingModuleService.deletePriceLists([\n \"plist_123\",\n \"plist_321\",\n])\n```" } ] } @@ -13277,8 +15267,8 @@ }, "parameters": [ { - "id": 8209, - "name": "data", + "id": 8611, + "name": "priceListIds", "variant": "param", "kind": 32768, "flags": {}, @@ -13286,22 +15276,20 @@ "summary": [ { "kind": "text", - "text": "The price rules to create." + "text": "The IDs of the price lists to delete." } ] }, "type": { "type": "array", "elementType": { - "type": "reference", - "target": 8439, - "name": "CreatePriceRuleDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } } }, { - "id": 8210, + "id": 8612, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13318,7 +15306,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -13332,13 +15320,8 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 8421, - "name": "PriceRuleDTO", - "package": "@medusajs/types" - } + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -13348,15 +15331,15 @@ ] }, { - "id": 8211, - "name": "updatePriceRules", + "id": 8613, + "name": "softDeletePriceLists", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8212, - "name": "updatePriceRules", + "id": 8614, + "name": "softDeletePriceLists", "variant": "signature", "kind": 4096, "flags": {}, @@ -13364,7 +15347,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to update price rules, each with their provided data." + "text": "This method soft deletes price lists by their IDs." } ], "blockTags": [ @@ -13373,7 +15356,23 @@ "content": [ { "kind": "text", - "text": "The list of updated price rules." + "text": "An object that includes the IDs of related records that were also soft deleted, such as the ID of the associated price list rules.\nThe object's keys are the ID attribute names of the price list entity's relations, such as " + }, + { + "kind": "code", + "text": "`price_list_rule_id`" + }, + { + "kind": "text", + "text": ", and its value is an array of strings, each being the ID of a record associated\nwith the price list through this relation, such as the IDs of associated price list rule.\n\nIf there are no related records, the promise resolves to " + }, + { + "kind": "code", + "text": "`void`" + }, + { + "kind": "text", + "text": "." } ] }, @@ -13382,16 +15381,33 @@ "content": [ { "kind": "code", - "text": "```ts\nconst priceRules =\n await pricingModuleService.updatePriceRules([\n {\n id: \"prule_123\",\n price_id: \"price_123\",\n },\n ])\n```" + "text": "```ts\nawait pricingModuleService.softDeletePriceLists([\n \"plist_123\",\n \"plist_321\",\n])\n```" } ] } ] }, + "typeParameters": [ + { + "id": 8615, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" + } + } + ], "parameters": [ { - "id": 8213, - "name": "data", + "id": 8616, + "name": "priceListIds", "variant": "param", "kind": 32768, "flags": {}, @@ -13399,22 +15415,52 @@ "summary": [ { "kind": "text", - "text": "The price rules to update, each having attributes that should be updated in a price rule." + "text": "The IDs of the price lists." } ] }, "type": { "type": "array", "elementType": { - "type": "reference", - "target": 8445, - "name": "UpdatePriceRuleDTO", - "package": "@medusajs/types" + "type": "intrinsic", + "name": "string" } } }, { - "id": 8214, + "id": 8617, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "An object that is used to specify an entity's related entities that should be soft-deleted when the main entity is soft-deleted." + } + ] + }, + "type": { + "type": "reference", + "target": 8833, + "typeArguments": [ + { + "type": "reference", + "target": 8615, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "SoftDeleteReturn", + "package": "@medusajs/types" + } + }, + { + "id": 8618, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13431,7 +15477,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -13445,13 +15491,35 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 8421, - "name": "PriceRuleDTO", - "package": "@medusajs/types" - } + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", @@ -13461,15 +15529,15 @@ ] }, { - "id": 8215, - "name": "deletePriceRules", + "id": 8619, + "name": "restorePriceLists", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8216, - "name": "deletePriceRules", + "id": 8620, + "name": "restorePriceLists", "variant": "signature", "kind": 4096, "flags": {}, @@ -13477,7 +15545,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to delete price rules based on the specified IDs." + "text": "This method restores a soft deleted price lists by its IDs." } ], "blockTags": [ @@ -13486,7 +15554,23 @@ "content": [ { "kind": "text", - "text": "Resolves once the price rules are deleted." + "text": "An object that includes the IDs of related records that were restored, such as the ID of associated price list rules.\nThe object's keys are the ID attribute names of the price list entity's relations, such as " + }, + { + "kind": "code", + "text": "`price_list_rule_id`" + }, + { + "kind": "text", + "text": ",\nand its value is an array of strings, each being the ID of the record associated with the price list through this relation,\nsuch as the IDs of associated price list rules.\n\nIf there are no related records restored, the promise resolves to " + }, + { + "kind": "code", + "text": "`void`" + }, + { + "kind": "text", + "text": "." } ] }, @@ -13495,16 +15579,33 @@ "content": [ { "kind": "code", - "text": "```ts\nawait pricingModuleService.deletePriceRules([\n \"prule_123\",\n \"prule_321\",\n])\n```" + "text": "```ts\nawait pricingModuleService.restorePriceLists([\n \"plist_123\",\n \"plist_321\",\n])\n```" } ] } ] }, + "typeParameters": [ + { + "id": 8621, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" + } + } + ], "parameters": [ { - "id": 8217, - "name": "priceRuleIds", + "id": 8622, + "name": "priceListIds", "variant": "param", "kind": 32768, "flags": {}, @@ -13512,7 +15613,7 @@ "summary": [ { "kind": "text", - "text": "The IDs of the price rules to delete." + "text": "The list of {summary}" } ] }, @@ -13525,7 +15626,55 @@ } }, { - "id": 8218, + "id": 8623, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "Configurations determining which relations to restore along with each of the price lists. You can pass to its " + }, + { + "kind": "code", + "text": "`returnLinkableKeys`" + }, + { + "kind": "text", + "text": "\nproperty any of the price list's relation attribute names, such as " + }, + { + "kind": "code", + "text": "`price_list_rules`" + }, + { + "kind": "text", + "text": "." + } + ] + }, + "type": { + "type": "reference", + "target": 8836, + "typeArguments": [ + { + "type": "reference", + "target": 8621, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "RestoreReturn", + "package": "@medusajs/types" + } + }, + { + "id": 8624, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13542,7 +15691,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -13556,8 +15705,35 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", @@ -13567,15 +15743,15 @@ ] }, { - "id": 8219, - "name": "retrievePriceList", + "id": 8625, + "name": "retrievePriceListRule", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8220, - "name": "retrievePriceList", + "id": 8626, + "name": "retrievePriceListRule", "variant": "signature", "kind": 4096, "flags": {}, @@ -13583,7 +15759,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a price list by its ID." + "text": "This method is used to retrieve a price list rule by its ID." } ], "blockTags": [ @@ -13592,7 +15768,7 @@ "content": [ { "kind": "text", - "text": "The retrieved price list." + "text": "The retrieved price list rule." } ] }, @@ -13601,11 +15777,11 @@ "content": [ { "kind": "text", - "text": "A simple example that retrieves a price list by its ID:\n\n" + "text": "A simple example that retrieves a price list rule by its ID:\n\n" }, { "kind": "code", - "text": "```ts\nconst priceList =\n await pricingModuleService.retrievePriceList(\"plist_123\")\n```" + "text": "```ts\nconst priceListRule =\n await pricingModuleService.retrievePriceListRule(\n \"plrule_123\"\n )\n```" }, { "kind": "text", @@ -13613,7 +15789,7 @@ }, { "kind": "code", - "text": "```ts\nconst priceList =\n await pricingModuleService.retrievePriceList(\"plist_123\", {\n relations: [\"prices\"],\n })\n```" + "text": "```ts\nconst priceListRule =\n await pricingModuleService.retrievePriceListRule(\n \"plrule_123\",\n {\n relations: [\"price_list\"],\n }\n )\n```" } ] } @@ -13621,7 +15797,7 @@ }, "parameters": [ { - "id": 8221, + "id": 8627, "name": "id", "variant": "param", "kind": 32768, @@ -13630,7 +15806,7 @@ "summary": [ { "kind": "text", - "text": "The ID of the price list to retrieve." + "text": "The ID of the price list rule to retrieve." } ] }, @@ -13640,7 +15816,7 @@ } }, { - "id": 8222, + "id": 8628, "name": "config", "variant": "param", "kind": 32768, @@ -13651,7 +15827,7 @@ "summary": [ { "kind": "text", - "text": "The configurations determining how the price list is retrieved. Its properties, such as " + "text": "The configurations determining how the price list rule is retrieved. Its properties, such as " }, { "kind": "code", @@ -13667,18 +15843,18 @@ }, { "kind": "text", - "text": ", accept the\nattributes or relations associated with a price list." + "text": ", accept the\nattributes or relations associated with a price list rule." } ] }, "type": { "type": "reference", - "target": 8361, + "target": 8779, "typeArguments": [ { "type": "reference", - "target": 8453, - "name": "PriceListDTO", + "target": 8909, + "name": "PriceListRuleDTO", "package": "@medusajs/types" } ], @@ -13687,7 +15863,7 @@ } }, { - "id": 8223, + "id": 8629, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13704,7 +15880,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -13719,8 +15895,8 @@ "typeArguments": [ { "type": "reference", - "target": 8453, - "name": "PriceListDTO", + "target": 8909, + "name": "PriceListRuleDTO", "package": "@medusajs/types" } ], @@ -13731,15 +15907,15 @@ ] }, { - "id": 8224, - "name": "listPriceLists", + "id": 8630, + "name": "listPriceListRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8225, - "name": "listPriceLists", + "id": 8631, + "name": "listPriceListRules", "variant": "signature", "kind": 4096, "flags": {}, @@ -13747,7 +15923,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a paginated list of price lists based on optional filters and configuration." + "text": "This method is used to retrieve a paginated list of price list rules based on optional filters and configuration." } ], "blockTags": [ @@ -13756,7 +15932,7 @@ "content": [ { "kind": "text", - "text": "The list of price lists." + "text": "The list of price list rules." } ] }, @@ -13765,19 +15941,19 @@ "content": [ { "kind": "text", - "text": "To retrieve a list of price lists using their IDs:\n\n" + "text": "To retrieve a list of price list vs using their IDs:\n\n" }, { "kind": "code", - "text": "```ts\nconst priceLists = await pricingModuleService.listPriceLists({\n id: [\"plist_123\", \"plist_321\"],\n})\n```" + "text": "```ts\nconst priceListRules =\n await pricingModuleService.listPriceListRules({\n id: [\"plrule_123\", \"plrule_321\"],\n })\n```" }, { "kind": "text", - "text": "\n\nTo specify relations that should be retrieved within the price lists:\n\n" + "text": "\n\nTo specify relations that should be retrieved within the price list rules:\n\n" }, { "kind": "code", - "text": "```ts\nconst priceLists = await pricingModuleService.listPriceLists(\n {\n id: [\"plist_123\", \"plist_321\"],\n },\n {\n relations: [\"prices\"],\n }\n)\n```" + "text": "```ts\nconst priceListRules =\n await pricingModuleService.listPriceListRules(\n {\n id: [\"plrule_123\", \"plrule_321\"],\n },\n {\n relations: [\"price_list_rule_values\"],\n }\n )\n```" }, { "kind": "text", @@ -13817,7 +15993,7 @@ }, { "kind": "code", - "text": "```ts\nconst priceLists = await pricingModuleService.listPriceLists(\n {\n id: [\"plist_123\", \"plist_321\"],\n },\n {\n relations: [\"prices\"],\n take: 20,\n skip: 2,\n }\n)\n```" + "text": "```ts\nconst priceListRules =\n await pricingModuleService.listPriceListRules(\n {\n id: [\"plrule_123\", \"plrule_321\"],\n },\n {\n relations: [\"price_list_rule_values\"],\n take: 20,\n skip: 2,\n }\n )\n```" } ] } @@ -13825,7 +16001,7 @@ }, "parameters": [ { - "id": 8226, + "id": 8632, "name": "filters", "variant": "param", "kind": 32768, @@ -13836,19 +16012,19 @@ "summary": [ { "kind": "text", - "text": "The filters to apply on the retrieved price lists." + "text": "The filters to apply on the retrieved price list rules." } ] }, "type": { "type": "reference", - "target": 8465, - "name": "FilterablePriceListProps", + "target": 8914, + "name": "FilterablePriceListRuleProps", "package": "@medusajs/types" } }, { - "id": 8227, + "id": 8633, "name": "config", "variant": "param", "kind": 32768, @@ -13859,7 +16035,7 @@ "summary": [ { "kind": "text", - "text": "The configurations determining how the price lists are retrieved. Its properties, such as " + "text": "The configurations determining how the price list rules are retrieved. Its properties, such as " }, { "kind": "code", @@ -13875,18 +16051,18 @@ }, { "kind": "text", - "text": ", accept the\nattributes or relations associated with a price list." + "text": ", accept the\nattributes or relations associated with a price list rule." } ] }, "type": { "type": "reference", - "target": 8361, + "target": 8779, "typeArguments": [ { "type": "reference", - "target": 8453, - "name": "PriceListDTO", + "target": 8909, + "name": "PriceListRuleDTO", "package": "@medusajs/types" } ], @@ -13895,7 +16071,7 @@ } }, { - "id": 8228, + "id": 8634, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13912,7 +16088,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -13929,8 +16105,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 8453, - "name": "PriceListDTO", + "target": 8909, + "name": "PriceListRuleDTO", "package": "@medusajs/types" } } @@ -13942,15 +16118,15 @@ ] }, { - "id": 8229, - "name": "listAndCountPriceLists", + "id": 8635, + "name": "listAndCountPriceListRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8230, - "name": "listAndCountPriceLists", + "id": 8636, + "name": "listAndCountPriceListRules", "variant": "signature", "kind": 4096, "flags": {}, @@ -13958,7 +16134,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a paginated list of price lists along with the total count of available price lists satisfying the provided filters." + "text": "This method is used to retrieve a paginated list of price list ruless along with the total count of available price list ruless satisfying the provided filters." } ], "blockTags": [ @@ -13967,7 +16143,7 @@ "content": [ { "kind": "text", - "text": "The list of price lists along with their total count." + "text": "The list of price list rules along with their total count." } ] }, @@ -13976,19 +16152,19 @@ "content": [ { "kind": "text", - "text": "To retrieve a list of price lists using their IDs:\n\n" + "text": "To retrieve a list of price list vs using their IDs:\n\n" }, { "kind": "code", - "text": "```ts\nconst [priceLists, count] =\n await pricingModuleService.listAndCountPriceLists({\n id: [\"plist_123\", \"plist_321\"],\n })\n```" + "text": "```ts\nconst [priceListRules, count] =\n await pricingModuleService.listAndCountPriceListRules({\n id: [\"plrule_123\", \"plrule_321\"],\n })\n```" }, { "kind": "text", - "text": "\n\nTo specify relations that should be retrieved within the price lists:\n\n" + "text": "\n\nTo specify relations that should be retrieved within the price list rules:\n\n" }, { "kind": "code", - "text": "```ts\nconst [priceLists, count] =\n await pricingModuleService.listAndCountPriceLists(\n {\n id: [\"plist_123\", \"plist_321\"],\n },\n {\n relations: [\"prices\"],\n }\n )\n```" + "text": "```ts\nconst [priceListRules, count] =\n await pricingModuleService.listAndCountPriceListRules(\n {\n id: [\"plrule_123\", \"plrule_321\"],\n },\n {\n relations: [\"price_list_rule_values\"],\n }\n )\n```" }, { "kind": "text", @@ -14028,7 +16204,7 @@ }, { "kind": "code", - "text": "```ts\nconst [priceLists, count] =\n await pricingModuleService.listAndCountPriceLists(\n {\n id: [\"plist_123\", \"plist_321\"],\n },\n {\n relations: [\"prices\"],\n take: 20,\n skip: 2,\n }\n )\n```" + "text": "```ts\nconst [priceListRules, count] =\n await pricingModuleService.listAndCountPriceListRules(\n {\n id: [\"plrule_123\", \"plrule_321\"],\n },\n {\n relations: [\"price_list_rule_values\"],\n take: 20,\n skip: 2,\n }\n )\n```" } ] } @@ -14036,7 +16212,7 @@ }, "parameters": [ { - "id": 8231, + "id": 8637, "name": "filters", "variant": "param", "kind": 32768, @@ -14047,19 +16223,19 @@ "summary": [ { "kind": "text", - "text": "The filters to apply on the retrieved price lists." + "text": "The filters to apply on the retrieved price list rules." } ] }, "type": { "type": "reference", - "target": 8465, - "name": "FilterablePriceListProps", + "target": 8914, + "name": "FilterablePriceListRuleProps", "package": "@medusajs/types" } }, { - "id": 8232, + "id": 8638, "name": "config", "variant": "param", "kind": 32768, @@ -14070,7 +16246,7 @@ "summary": [ { "kind": "text", - "text": "The configurations determining how the price lists are retrieved. Its properties, such as " + "text": "The configurations determining how the price list rules are retrieved. Its properties, such as " }, { "kind": "code", @@ -14086,18 +16262,18 @@ }, { "kind": "text", - "text": ", accept the\nattributes or relations associated with a price list." + "text": ", accept the\nattributes or relations associated with a price list rule." } ] }, "type": { "type": "reference", - "target": 8361, + "target": 8779, "typeArguments": [ { "type": "reference", - "target": 8453, - "name": "PriceListDTO", + "target": 8909, + "name": "PriceListRuleDTO", "package": "@medusajs/types" } ], @@ -14106,7 +16282,7 @@ } }, { - "id": 8233, + "id": 8639, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -14123,7 +16299,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -14143,8 +16319,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 8453, - "name": "PriceListDTO", + "target": 8909, + "name": "PriceListRuleDTO", "package": "@medusajs/types" } }, @@ -14162,15 +16338,234 @@ ] }, { - "id": 8234, - "name": "createPriceLists", + "id": 8640, + "name": "deletePriceListRules", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 8641, + "name": "deletePriceListRules", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to delete price list rules." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "Resolves successfully when the price list rules are deleted." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nawait pricingModuleService.deletePriceListRules([\n \"plrule_123\",\n \"plrule_321\",\n])\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 8642, + "name": "priceListRuleIds", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The IDs of the price list rules to delete." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 8643, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 8744, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 8644, + "name": "addPriceListPrices", + "variant": "declaration", + "kind": 2048, + "flags": {}, + "signatures": [ + { + "id": 8645, + "name": "addPriceListPrices", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to add prices to price lists." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The updated price lists." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nconst priceLists =\n await pricingModuleService.addPriceListPrices([\n {\n price_list_id: \"plist_123\",\n prices: [\n {\n currency_code: \"usd\",\n amount: 500,\n price_set_id: \"pset_123\",\n },\n ],\n },\n ])\n```" + } + ] + } + ] + }, + "parameters": [ + { + "id": 8646, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The prices to add for each price list." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "reference", + "target": 8920, + "name": "AddPriceListPricesDTO", + "package": "@medusajs/types" + } + } + }, + { + "id": 8647, + "name": "sharedContext", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "A context used to share resources, such as transaction manager, between the application and the module." + } + ] + }, + "type": { + "type": "reference", + "target": 8744, + "name": "Context", + "package": "@medusajs/types" + } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" + }, + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "target": 8819, + "name": "PriceDTO", + "package": "@medusajs/types" + } + } + ], + "name": "Promise", + "package": "typescript" + } + } + ] + }, + { + "id": 8648, + "name": "updatePriceListPrices", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8235, - "name": "createPriceLists", + "id": 8649, + "name": "updatePriceListPrices", "variant": "signature", "kind": 4096, "flags": {}, @@ -14178,7 +16573,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to create price lists." + "text": "This method updates existing price list's prices." } ], "blockTags": [ @@ -14187,7 +16582,7 @@ "content": [ { "kind": "text", - "text": "The created price lists." + "text": "The updated price list's prices." } ] }, @@ -14196,7 +16591,7 @@ "content": [ { "kind": "code", - "text": "```ts\nconst priceLists =\n await pricingModuleService.createPriceLists([\n {\n title: \"Sale 1\",\n description: \"Summer sale\",\n },\n {\n title: \"Sale 2\",\n description: \"Winter sale\",\n starts_at: \"2024-12-21\",\n },\n ])\n```" + "text": "```ts\nconst priceLists =\n await pricingModuleService.updatePriceListPrices([\n {\n price_list_id: \"plist_123\",\n prices: [\n {\n id: \"price_123\",\n currency_code: \"usd\",\n amount: 500,\n price_set_id: \"pset_123\",\n },\n ],\n },\n ])\n```" } ] } @@ -14204,7 +16599,7 @@ }, "parameters": [ { - "id": 8236, + "id": 8650, "name": "data", "variant": "param", "kind": 32768, @@ -14213,7 +16608,15 @@ "summary": [ { "kind": "text", - "text": "The details of each price list to be created." + "text": "The attributes to update in a price list's prices. The price list's ID is specified\nin the " + }, + { + "kind": "code", + "text": "`price_list_id`" + }, + { + "kind": "text", + "text": " field." } ] }, @@ -14221,14 +16624,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 8474, - "name": "CreatePriceListDTO", + "target": 8923, + "name": "UpdatePriceListPricesDTO", "package": "@medusajs/types" } } }, { - "id": 8237, + "id": 8651, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -14245,7 +16648,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -14262,8 +16665,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 8453, - "name": "PriceListDTO", + "target": 8819, + "name": "PriceDTO", "package": "@medusajs/types" } } @@ -14275,15 +16678,15 @@ ] }, { - "id": 8238, - "name": "updatePriceLists", + "id": 8652, + "name": "setPriceListRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8239, - "name": "updatePriceLists", + "id": 8653, + "name": "setPriceListRules", "variant": "signature", "kind": 4096, "flags": {}, @@ -14291,7 +16694,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to update price lists." + "text": "This method is used to set the rules of a price list. Previous rules are removed." } ], "blockTags": [ @@ -14300,7 +16703,7 @@ "content": [ { "kind": "text", - "text": "The updated price lists." + "text": "The updated price list's prices." } ] }, @@ -14309,7 +16712,7 @@ "content": [ { "kind": "code", - "text": "```ts\nconst priceLists =\n await pricingModuleService.updatePriceLists([\n {\n id: \"plist_123\",\n title: \"Sale 1\",\n },\n {\n id: \"plist_321\",\n description: \"Winter sale\",\n },\n ])\n```" + "text": "```ts\nconst priceList =\n await pricingModuleService.setPriceListRules({\n price_list_id: \"plist_123\",\n rules: {\n region_id: \"reg_123\",\n },\n })\n```" } ] } @@ -14317,7 +16720,7 @@ }, "parameters": [ { - "id": 8240, + "id": 8654, "name": "data", "variant": "param", "kind": 32768, @@ -14326,30 +16729,27 @@ "summary": [ { "kind": "text", - "text": "The attributes to update in each price list. The price list is identifed by the " + "text": "The rules to set for a price list. The price list is identified by the\n" }, { "kind": "code", - "text": "`id`" + "text": "`price_list_id`" }, { "kind": "text", - "text": " field." + "text": " property." } ] }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 8483, - "name": "UpdatePriceListDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 8926, + "name": "SetPriceListRulesDTO", + "package": "@medusajs/types" } }, { - "id": 8241, + "id": 8655, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -14366,7 +16766,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -14380,13 +16780,10 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 8453, - "name": "PriceListDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 8871, + "name": "PriceListDTO", + "package": "@medusajs/types" } ], "name": "Promise", @@ -14396,15 +16793,15 @@ ] }, { - "id": 8242, - "name": "deletePriceLists", + "id": 8656, + "name": "removePriceListRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8243, - "name": "deletePriceLists", + "id": 8657, + "name": "removePriceListRules", "variant": "signature", "kind": 4096, "flags": {}, @@ -14412,7 +16809,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to delete price lists." + "text": "This method is used to remove rules from a price list." } ], "blockTags": [ @@ -14421,7 +16818,7 @@ "content": [ { "kind": "text", - "text": "Resolves when the price lists are deleted successfully." + "text": "The updated price lists." } ] }, @@ -14430,7 +16827,7 @@ "content": [ { "kind": "code", - "text": "```ts\nawait pricingModuleService.deletePriceLists([\n \"plist_123\",\n \"plist_321\",\n])\n```" + "text": "```ts\nconst priceList =\n await pricingModuleService.removePriceListRules({\n price_list_id: \"plist_123\",\n rules: [\"region_id\"],\n })\n```" } ] } @@ -14438,8 +16835,8 @@ }, "parameters": [ { - "id": 8244, - "name": "priceListIds", + "id": 8658, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, @@ -14447,20 +16844,27 @@ "summary": [ { "kind": "text", - "text": "The IDs of the price lists to delete." + "text": "The rules to remove from a price list. The price list is identified by the\n" + }, + { + "kind": "code", + "text": "`price_list_id`" + }, + { + "kind": "text", + "text": " property." } ] }, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 8929, + "name": "RemovePriceListRulesDTO", + "package": "@medusajs/types" } }, { - "id": 8245, + "id": 8659, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -14477,7 +16881,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -14491,8 +16895,10 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "reference", + "target": 8871, + "name": "PriceListDTO", + "package": "@medusajs/types" } ], "name": "Promise", @@ -14502,15 +16908,15 @@ ] }, { - "id": 8246, - "name": "softDeletePriceLists", + "id": 8660, + "name": "removePrices", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8247, - "name": "softDeletePriceLists", + "id": 8661, + "name": "removePrices", "variant": "signature", "kind": 4096, "flags": {}, @@ -14518,7 +16924,7 @@ "summary": [ { "kind": "text", - "text": "This method soft deletes price lists by their IDs." + "text": "This method deletes prices by their IDs." } ], "blockTags": [ @@ -14527,23 +16933,7 @@ "content": [ { "kind": "text", - "text": "An object that includes the IDs of related records that were also soft deleted, such as the ID of the associated price list rules.\nThe object's keys are the ID attribute names of the price list entity's relations, such as " - }, - { - "kind": "code", - "text": "`price_list_rule_id`" - }, - { - "kind": "text", - "text": ", and its value is an array of strings, each being the ID of a record associated\nwith the price list through this relation, such as the IDs of associated price list rule.\n\nIf there are no related records, the promise resolves to " - }, - { - "kind": "code", - "text": "`void`" - }, - { - "kind": "text", - "text": "." + "text": "Resolves when the prices are deleted successfully." } ] }, @@ -14552,33 +16942,16 @@ "content": [ { "kind": "code", - "text": "```ts\nawait pricingModuleService.softDeletePriceLists([\n \"plist_123\",\n \"plist_321\",\n])\n```" + "text": "```ts\nawait pricingModuleService.removePrices([\n \"price_123\",\n \"price_321\",\n])\n```" } ] } ] }, - "typeParameters": [ - { - "id": 8248, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "default": { - "type": "intrinsic", - "name": "string" - } - } - ], "parameters": [ { - "id": 8249, - "name": "priceListIds", + "id": 8662, + "name": "ids", "variant": "param", "kind": 32768, "flags": {}, @@ -14586,7 +16959,7 @@ "summary": [ { "kind": "text", - "text": "The IDs of the price lists." + "text": "The IDs of the prices." } ] }, @@ -14599,39 +16972,7 @@ } }, { - "id": 8250, - "name": "config", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "An object that is used to specify an entity's related entities that should be soft-deleted when the main entity is soft-deleted." - } - ] - }, - "type": { - "type": "reference", - "target": 8415, - "typeArguments": [ - { - "type": "reference", - "target": 8248, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true - } - ], - "name": "SoftDeleteReturn", - "package": "@medusajs/types" - } - }, - { - "id": 8251, + "id": 8663, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -14648,7 +16989,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -14662,35 +17003,8 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "intrinsic", + "name": "void" } ], "name": "Promise", @@ -14700,15 +17014,15 @@ ] }, { - "id": 8252, - "name": "restorePriceLists", + "id": 8664, + "name": "retrievePricePreference", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8253, - "name": "restorePriceLists", + "id": 8665, + "name": "retrievePricePreference", "variant": "signature", "kind": 4096, "flags": {}, @@ -14716,7 +17030,7 @@ "summary": [ { "kind": "text", - "text": "This method restores a soft deleted price lists by its IDs." + "text": "This method is used to retrieve a price preference by its ID." } ], "blockTags": [ @@ -14725,58 +17039,29 @@ "content": [ { "kind": "text", - "text": "An object that includes the IDs of related records that were restored, such as the ID of associated price list rules.\nThe object's keys are the ID attribute names of the price list entity's relations, such as " - }, - { - "kind": "code", - "text": "`price_list_rule_id`" - }, - { - "kind": "text", - "text": ",\nand its value is an array of strings, each being the ID of the record associated with the price list through this relation,\nsuch as the IDs of associated price list rules.\n\nIf there are no related records restored, the promise resolves to " - }, - { - "kind": "code", - "text": "`void`" - }, - { - "kind": "text", - "text": "." - } - ] - }, - { - "tag": "@example", - "content": [ - { - "kind": "code", - "text": "```ts\nawait pricingModuleService.restorePriceLists([\n \"plist_123\",\n \"plist_321\",\n])\n```" + "text": "The retrieved price preference." } ] - } - ] - }, - "typeParameters": [ - { - "id": 8254, - "name": "TReturnableLinkableKeys", - "variant": "typeParam", - "kind": 131072, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" }, - "default": { - "type": "intrinsic", - "name": "string" + { + "tag": "@example", + "content": [ + { + "kind": "text", + "text": "A simple example that retrieves a price preference by its ID:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst pricePreference =\n await pricingModuleService.retrievePricePreference(\"prpref_123\")\n```" + } + ] } - } - ], + ] + }, "parameters": [ { - "id": 8255, - "name": "priceListIds", + "id": 8666, + "name": "id", "variant": "param", "kind": 32768, "flags": {}, @@ -14784,20 +17069,17 @@ "summary": [ { "kind": "text", - "text": "The list of {summary}" + "text": "The ID of the price preference to retrieve." } ] }, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "string" } }, { - "id": 8256, + "id": 8667, "name": "config", "variant": "param", "kind": 32768, @@ -14808,44 +17090,43 @@ "summary": [ { "kind": "text", - "text": "Configurations determining which relations to restore along with each of the price lists. You can pass to its " + "text": "The configurations determining how the price preference is retrieved. Its properties, such as " }, { "kind": "code", - "text": "`returnLinkableKeys`" + "text": "`select`" }, { "kind": "text", - "text": "\nproperty any of the price list's relation attribute names, such as " + "text": " or " }, { "kind": "code", - "text": "`price_list_rules`" + "text": "`relations`" }, { "kind": "text", - "text": "." + "text": ", accept the\nattributes or relations associated with a price preference." } ] }, "type": { "type": "reference", - "target": 8418, + "target": 8779, "typeArguments": [ { "type": "reference", - "target": 8254, - "name": "TReturnableLinkableKeys", - "package": "@medusajs/types", - "refersToTypeParameter": true + "target": 8932, + "name": "PricePreferenceDTO", + "package": "@medusajs/types" } ], - "name": "RestoreReturn", + "name": "FindConfig", "package": "@medusajs/types" } }, { - "id": 8257, + "id": 8668, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -14862,7 +17143,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -14876,35 +17157,10 @@ }, "typeArguments": [ { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "void" - }, - { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - ], - "name": "Record", - "package": "typescript" - } - ] + "type": "reference", + "target": 8932, + "name": "PricePreferenceDTO", + "package": "@medusajs/types" } ], "name": "Promise", @@ -14914,15 +17170,15 @@ ] }, { - "id": 8258, - "name": "retrievePriceListRule", + "id": 8669, + "name": "listPricePreferences", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8259, - "name": "retrievePriceListRule", + "id": 8670, + "name": "listPricePreferences", "variant": "signature", "kind": 4096, "flags": {}, @@ -14930,7 +17186,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a price list rule by its ID." + "text": "This method is used to retrieve a paginated list of price preferences based on optional filters and configuration." } ], "blockTags": [ @@ -14939,7 +17195,7 @@ "content": [ { "kind": "text", - "text": "The retrieved price list rule." + "text": "The list of price preferences." } ] }, @@ -14948,19 +17204,51 @@ "content": [ { "kind": "text", - "text": "A simple example that retrieves a price list rule by its ID:\n\n" + "text": "To retrieve a list of price preferences using their IDs:\n\n" }, { "kind": "code", - "text": "```ts\nconst priceListRule =\n await pricingModuleService.retrievePriceListRule(\n \"plrule_123\"\n )\n```" + "text": "```ts\nconst pricePreferences = await pricingModuleService.listPricePreferences({\n id: [\"prpref_123\", \"prpref_321\"],\n})\n```" }, { "kind": "text", - "text": "\n\nTo specify relations that should be retrieved:\n\n" + "text": "\n\nTo specify relations that should be retrieved within the price preferences:\n\nBy default, only the first " }, { "kind": "code", - "text": "```ts\nconst priceListRule =\n await pricingModuleService.retrievePriceListRule(\n \"plrule_123\",\n {\n relations: [\"price_list\"],\n }\n )\n```" + "text": "`15`" + }, + { + "kind": "text", + "text": " records are retrieved. You can control pagination by specifying the " + }, + { + "kind": "code", + "text": "`skip`" + }, + { + "kind": "text", + "text": " and " + }, + { + "kind": "code", + "text": "`take`" + }, + { + "kind": "text", + "text": " properties of the " + }, + { + "kind": "code", + "text": "`config`" + }, + { + "kind": "text", + "text": " parameter:\n\n" + }, + { + "kind": "code", + "text": "```ts\nconst pricePreferences = await pricingModuleService.listPricePreferences(\n {\n id: [\"prpref_123\", \"prpref_321\"],\n },\n {\n take: 20,\n skip: 2,\n }\n)\n```" } ] } @@ -14968,26 +17256,30 @@ }, "parameters": [ { - "id": 8260, - "name": "id", + "id": 8671, + "name": "filters", "variant": "param", "kind": 32768, - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { "summary": [ { "kind": "text", - "text": "The ID of the price list rule to retrieve." + "text": "The filters to apply on the retrieved price lists." } ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "target": 8940, + "name": "FilterablePricePreferenceProps", + "package": "@medusajs/types" } }, { - "id": 8261, + "id": 8672, "name": "config", "variant": "param", "kind": 32768, @@ -14998,7 +17290,7 @@ "summary": [ { "kind": "text", - "text": "The configurations determining how the price list rule is retrieved. Its properties, such as " + "text": "The configurations determining how the price preferences are retrieved. Its properties, such as " }, { "kind": "code", @@ -15014,18 +17306,18 @@ }, { "kind": "text", - "text": ", accept the\nattributes or relations associated with a price list rule." + "text": ", accept the\nattributes or relations associated with a price preference." } ] }, "type": { "type": "reference", - "target": 8361, + "target": 8779, "typeArguments": [ { "type": "reference", - "target": 8491, - "name": "PriceListRuleDTO", + "target": 8932, + "name": "PricePreferenceDTO", "package": "@medusajs/types" } ], @@ -15034,7 +17326,7 @@ } }, { - "id": 8262, + "id": 8673, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -15051,7 +17343,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -15065,10 +17357,13 @@ }, "typeArguments": [ { - "type": "reference", - "target": 8491, - "name": "PriceListRuleDTO", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 8932, + "name": "PricePreferenceDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", @@ -15078,15 +17373,15 @@ ] }, { - "id": 8263, - "name": "listPriceListRules", + "id": 8674, + "name": "createPricePreferences", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8264, - "name": "listPriceListRules", + "id": 8675, + "name": "createPricePreferences", "variant": "signature", "kind": 4096, "flags": {}, @@ -15094,7 +17389,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a paginated list of price list rules based on optional filters and configuration." + "text": "This method is used to create a new price preference." } ], "blockTags": [ @@ -15103,7 +17398,7 @@ "content": [ { "kind": "text", - "text": "The list of price list rules." + "text": "The created price preference." } ] }, @@ -15112,59 +17407,11 @@ "content": [ { "kind": "text", - "text": "To retrieve a list of price list vs using their IDs:\n\n" - }, - { - "kind": "code", - "text": "```ts\nconst priceListRules =\n await pricingModuleService.listPriceListRules({\n id: [\"plrule_123\", \"plrule_321\"],\n })\n```" - }, - { - "kind": "text", - "text": "\n\nTo specify relations that should be retrieved within the price list rules:\n\n" - }, - { - "kind": "code", - "text": "```ts\nconst priceListRules =\n await pricingModuleService.listPriceListRules(\n {\n id: [\"plrule_123\", \"plrule_321\"],\n },\n {\n relations: [\"price_list_rule_values\"],\n }\n )\n```" - }, - { - "kind": "text", - "text": "\n\nBy default, only the first " - }, - { - "kind": "code", - "text": "`15`" - }, - { - "kind": "text", - "text": " records are retrieved. You can control pagination by specifying the " - }, - { - "kind": "code", - "text": "`skip`" - }, - { - "kind": "text", - "text": " and " - }, - { - "kind": "code", - "text": "`take`" - }, - { - "kind": "text", - "text": " properties of the " - }, - { - "kind": "code", - "text": "`config`" - }, - { - "kind": "text", - "text": " parameter:\n\n" + "text": "To create a price preference with rule:\n\n" }, { "kind": "code", - "text": "```ts\nconst priceListRules =\n await pricingModuleService.listPriceListRules(\n {\n id: [\"plrule_123\", \"plrule_321\"],\n },\n {\n relations: [\"price_list_rule_values\"],\n take: 20,\n skip: 2,\n }\n )\n```" + "text": "```ts\nconst pricePreference = await pricingModuleService.createPricePreferences({\n attribute: 'region_id',\n value: 'DE',\n is_tax_inclusive: true\n})\n```" } ] } @@ -15172,8 +17419,29 @@ }, "parameters": [ { - "id": 8265, - "name": "filters", + "id": 8676, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The attributes of the price preference to create." + } + ] + }, + "type": { + "type": "reference", + "target": 8946, + "name": "CreatePricePreferenceDTO", + "package": "@medusajs/types" + } + }, + { + "id": 8677, + "name": "sharedContext", "variant": "param", "kind": 32768, "flags": { @@ -15183,66 +17451,97 @@ "summary": [ { "kind": "text", - "text": "The filters to apply on the retrieved price list rules." + "text": "A context used to share resources, such as transaction manager, between the application and the module." } ] }, "type": { "type": "reference", - "target": 8496, - "name": "FilterablePriceListRuleProps", + "target": 8744, + "name": "Context", "package": "@medusajs/types" } + } + ], + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Promise" }, + "typeArguments": [ + { + "type": "reference", + "target": 8932, + "name": "PricePreferenceDTO", + "package": "@medusajs/types" + } + ], + "name": "Promise", + "package": "typescript" + } + }, + { + "id": 8678, + "name": "createPricePreferences", + "variant": "signature", + "kind": 4096, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "This method is used to create multiple price preferences." + } + ], + "blockTags": [ + { + "tag": "@returns", + "content": [ + { + "kind": "text", + "text": "The list of created price preferences." + } + ] + }, + { + "tag": "@example", + "content": [ + { + "kind": "code", + "text": "```ts\nconst pricePreferences = await pricingModuleService.createPricePreferences([{\n attribute: 'region_id',\n value: 'DE',\n is_tax_inclusive: true\n}])\n```" + } + ] + } + ] + }, + "parameters": [ { - "id": 8266, - "name": "config", + "id": 8679, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The configurations determining how the price list rules are retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, - { - "kind": "text", - "text": " or " - }, - { - "kind": "code", - "text": "`relations`" - }, - { - "kind": "text", - "text": ", accept the\nattributes or relations associated with a price list rule." + "text": "The price preferences to create." } ] }, "type": { - "type": "reference", - "target": 8361, - "typeArguments": [ - { - "type": "reference", - "target": 8491, - "name": "PriceListRuleDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 8946, + "name": "CreatePricePreferenceDTO", + "package": "@medusajs/types" + } } }, { - "id": 8267, + "id": 8680, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -15259,7 +17558,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -15276,8 +17575,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 8491, - "name": "PriceListRuleDTO", + "target": 8932, + "name": "PricePreferenceDTO", "package": "@medusajs/types" } } @@ -15289,15 +17588,15 @@ ] }, { - "id": 8268, - "name": "listAndCountPriceListRules", + "id": 8681, + "name": "upsertPricePreferences", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8269, - "name": "listAndCountPriceListRules", + "id": 8682, + "name": "upsertPricePreferences", "variant": "signature", "kind": 4096, "flags": {}, @@ -15305,7 +17604,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to retrieve a paginated list of price list ruless along with the total count of available price list ruless satisfying the provided filters." + "text": "This method updates existing price preferences, or creates new ones if they don't exist." } ], "blockTags": [ @@ -15314,68 +17613,16 @@ "content": [ { "kind": "text", - "text": "The list of price list rules along with their total count." + "text": "The updated and created price preferences." } ] }, { "tag": "@example", "content": [ - { - "kind": "text", - "text": "To retrieve a list of price list vs using their IDs:\n\n" - }, - { - "kind": "code", - "text": "```ts\nconst [priceListRules, count] =\n await pricingModuleService.listAndCountPriceListRules({\n id: [\"plrule_123\", \"plrule_321\"],\n })\n```" - }, - { - "kind": "text", - "text": "\n\nTo specify relations that should be retrieved within the price list rules:\n\n" - }, - { - "kind": "code", - "text": "```ts\nconst [priceListRules, count] =\n await pricingModuleService.listAndCountPriceListRules(\n {\n id: [\"plrule_123\", \"plrule_321\"],\n },\n {\n relations: [\"price_list_rule_values\"],\n }\n )\n```" - }, - { - "kind": "text", - "text": "\n\nBy default, only the first " - }, - { - "kind": "code", - "text": "`15`" - }, - { - "kind": "text", - "text": " records are retrieved. You can control pagination by specifying the " - }, - { - "kind": "code", - "text": "`skip`" - }, - { - "kind": "text", - "text": " and " - }, - { - "kind": "code", - "text": "`take`" - }, - { - "kind": "text", - "text": " properties of the " - }, - { - "kind": "code", - "text": "`config`" - }, - { - "kind": "text", - "text": " parameter:\n\n" - }, { "kind": "code", - "text": "```ts\nconst [priceListRules, count] =\n await pricingModuleService.listAndCountPriceListRules(\n {\n id: [\"plrule_123\", \"plrule_321\"],\n },\n {\n relations: [\"price_list_rule_values\"],\n take: 20,\n skip: 2,\n }\n )\n```" + "text": "```ts\nconst pricePreferences = await pricingModuleService.upsertPricePreferences([\n {\n id: \"prpref_123\",\n attribute: 'region_id',\n value: 'DE',\n is_tax_inclusive: true\n },\n])\n```" } ] } @@ -15383,77 +17630,31 @@ }, "parameters": [ { - "id": 8270, - "name": "filters", - "variant": "param", - "kind": 32768, - "flags": { - "isOptional": true - }, - "comment": { - "summary": [ - { - "kind": "text", - "text": "The filters to apply on the retrieved price list rules." - } - ] - }, - "type": { - "type": "reference", - "target": 8496, - "name": "FilterablePriceListRuleProps", - "package": "@medusajs/types" - } - }, - { - "id": 8271, - "name": "config", + "id": 8683, + "name": "data", "variant": "param", "kind": 32768, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { "kind": "text", - "text": "The configurations determining how the price list rules are retrieved. Its properties, such as " - }, - { - "kind": "code", - "text": "`select`" - }, - { - "kind": "text", - "text": " or " - }, - { - "kind": "code", - "text": "`relations`" - }, - { - "kind": "text", - "text": ", accept the\nattributes or relations associated with a price list rule." + "text": "The attributes to update or create for each price preference." } ] }, "type": { - "type": "reference", - "target": 8361, - "typeArguments": [ - { - "type": "reference", - "target": 8491, - "name": "PriceListRuleDTO", - "package": "@medusajs/types" - } - ], - "name": "FindConfig", - "package": "@medusajs/types" + "type": "array", + "elementType": { + "type": "reference", + "target": 8950, + "name": "UpsertPricePreferenceDTO", + "package": "@medusajs/types" + } } }, { - "id": 8272, + "id": 8684, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -15470,7 +17671,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -15484,40 +17685,22 @@ }, "typeArguments": [ { - "type": "tuple", - "elements": [ - { - "type": "array", - "elementType": { - "type": "reference", - "target": 8491, - "name": "PriceListRuleDTO", - "package": "@medusajs/types" - } - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "array", + "elementType": { + "type": "reference", + "target": 8932, + "name": "PricePreferenceDTO", + "package": "@medusajs/types" + } } ], "name": "Promise", "package": "typescript" } - } - ] - }, - { - "id": 8273, - "name": "deletePriceListRules", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + }, { - "id": 8274, - "name": "deletePriceListRules", + "id": 8685, + "name": "upsertPricePreferences", "variant": "signature", "kind": 4096, "flags": {}, @@ -15525,7 +17708,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to delete price list rules." + "text": "This method updates the price preference if it exists, or creates a new ones if it doesn't." } ], "blockTags": [ @@ -15534,7 +17717,7 @@ "content": [ { "kind": "text", - "text": "Resolves successfully when the price list rules are deleted." + "text": "The updated or created price preference." } ] }, @@ -15543,7 +17726,7 @@ "content": [ { "kind": "code", - "text": "```ts\nawait pricingModuleService.deletePriceListRules([\n \"plrule_123\",\n \"plrule_321\",\n])\n```" + "text": "```ts\nconst pricePreference = await pricingModuleService.upsertPricePreferences(\n {\n id: \"prpref_123\",\n attribute: 'region_id',\n value: 'DE',\n is_tax_inclusive: true\n }\n)\n```" } ] } @@ -15551,8 +17734,8 @@ }, "parameters": [ { - "id": 8275, - "name": "priceListRuleIds", + "id": 8686, + "name": "data", "variant": "param", "kind": 32768, "flags": {}, @@ -15560,20 +17743,19 @@ "summary": [ { "kind": "text", - "text": "The IDs of the price list rules to delete." + "text": "The attributes to update or create for the new price preference." } ] }, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "target": 8950, + "name": "UpsertPricePreferenceDTO", + "package": "@medusajs/types" } }, { - "id": 8276, + "id": 8687, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -15590,7 +17772,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -15604,8 +17786,10 @@ }, "typeArguments": [ { - "type": "intrinsic", - "name": "void" + "type": "reference", + "target": 8932, + "name": "PricePreferenceDTO", + "package": "@medusajs/types" } ], "name": "Promise", @@ -15615,15 +17799,15 @@ ] }, { - "id": 8277, - "name": "addPriceListPrices", + "id": 8688, + "name": "updatePricePreferences", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8278, - "name": "addPriceListPrices", + "id": 8689, + "name": "updatePricePreferences", "variant": "signature", "kind": 4096, "flags": {}, @@ -15631,7 +17815,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to add prices to price lists." + "text": "This method is used to update a price preference." } ], "blockTags": [ @@ -15640,7 +17824,7 @@ "content": [ { "kind": "text", - "text": "The updated price lists." + "text": "The updated price preference." } ] }, @@ -15649,7 +17833,7 @@ "content": [ { "kind": "code", - "text": "```ts\nconst priceLists =\n await pricingModuleService.addPriceListPrices([\n {\n price_list_id: \"plist_123\",\n prices: [\n {\n currency_code: \"usd\",\n amount: 500,\n price_set_id: \"pset_123\",\n },\n ],\n },\n ])\n```" + "text": "```ts\nconst pricePreference = await pricingModuleService.updatePricePreferences(\n \"prpref_123\",\n {\n is_tax_inclusive: false\n }\n)\n```" } ] } @@ -15657,7 +17841,26 @@ }, "parameters": [ { - "id": 8279, + "id": 8690, + "name": "id", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ + { + "kind": "text", + "text": "The ID of the price preference to be updated." + } + ] + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 8691, "name": "data", "variant": "param", "kind": 32768, @@ -15666,22 +17869,19 @@ "summary": [ { "kind": "text", - "text": "The prices to add for each price list." + "text": "The attributes of the price preference to be updated" } ] }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 8502, - "name": "AddPriceListPricesDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 8955, + "name": "UpdatePricePreferenceDTO", + "package": "@medusajs/types" } }, { - "id": 8280, + "id": 8692, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -15698,7 +17898,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -15712,31 +17912,19 @@ }, "typeArguments": [ { - "type": "array", - "elementType": { - "type": "reference", - "target": 8401, - "name": "PriceDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 8932, + "name": "PricePreferenceDTO", + "package": "@medusajs/types" } ], "name": "Promise", - "package": "typescript" - } - } - ] - }, - { - "id": 8281, - "name": "updatePriceListPrices", - "variant": "declaration", - "kind": 2048, - "flags": {}, - "signatures": [ + "package": "typescript" + } + }, { - "id": 8282, - "name": "updatePriceListPrices", + "id": 8693, + "name": "updatePricePreferences", "variant": "signature", "kind": 4096, "flags": {}, @@ -15744,7 +17932,7 @@ "summary": [ { "kind": "text", - "text": "This method updates existing price list's prices." + "text": "This method is used to update a list of price preferences determined by the selector filters." } ], "blockTags": [ @@ -15753,7 +17941,7 @@ "content": [ { "kind": "text", - "text": "The updated price list's prices." + "text": "The updated price preferences." } ] }, @@ -15762,7 +17950,7 @@ "content": [ { "kind": "code", - "text": "```ts\nconst priceLists =\n await pricingModuleService.updatePriceListPrices([\n {\n price_list_id: \"plist_123\",\n prices: [\n {\n id: \"price_123\",\n currency_code: \"usd\",\n amount: 500,\n price_set_id: \"pset_123\",\n },\n ],\n },\n ])\n```" + "text": "```ts\nconst pricePreferences = await pricingModuleService.updatePricePreferences(\n {\n id: [\"prpref_123\", \"prpref_321\"],\n },\n {\n is_tax_inclusive: false\n }\n)\n```" } ] } @@ -15770,8 +17958,8 @@ }, "parameters": [ { - "id": 8283, - "name": "data", + "id": 8694, + "name": "selector", "variant": "param", "kind": 32768, "flags": {}, @@ -15779,30 +17967,40 @@ "summary": [ { "kind": "text", - "text": "The attributes to update in a price list's prices. The price list's ID is specified\nin the " - }, - { - "kind": "code", - "text": "`price_list_id`" - }, + "text": "The filters that will determine which price preferences will be updated." + } + ] + }, + "type": { + "type": "reference", + "target": 8940, + "name": "FilterablePricePreferenceProps", + "package": "@medusajs/types" + } + }, + { + "id": 8695, + "name": "data", + "variant": "param", + "kind": 32768, + "flags": {}, + "comment": { + "summary": [ { "kind": "text", - "text": " field." + "text": "The attributes to be updated on the selected price preferences" } ] }, "type": { - "type": "array", - "elementType": { - "type": "reference", - "target": 8505, - "name": "UpdatePriceListPricesDTO", - "package": "@medusajs/types" - } + "type": "reference", + "target": 8955, + "name": "UpdatePricePreferenceDTO", + "package": "@medusajs/types" } }, { - "id": 8284, + "id": 8696, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -15819,7 +18017,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -15836,8 +18034,8 @@ "type": "array", "elementType": { "type": "reference", - "target": 8401, - "name": "PriceDTO", + "target": 8932, + "name": "PricePreferenceDTO", "package": "@medusajs/types" } } @@ -15849,15 +18047,15 @@ ] }, { - "id": 8285, - "name": "setPriceListRules", + "id": 8697, + "name": "softDeletePricePreferences", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8286, - "name": "setPriceListRules", + "id": 8698, + "name": "softDeletePricePreferences", "variant": "signature", "kind": 4096, "flags": {}, @@ -15865,7 +18063,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to set the rules of a price list. Previous rules are removed." + "text": "This method soft deletes price preferences by their IDs." } ], "blockTags": [ @@ -15874,7 +18072,15 @@ "content": [ { "kind": "text", - "text": "The updated price list's prices." + "text": "An object that includes the IDs of related records that were also soft deleted.\nThe object's keys are the ID attribute names of the price preference entity's relations, and its value is an array of strings, each being the ID of a record associated.\n\nIf there are no related records, the promise resolves to " + }, + { + "kind": "code", + "text": "`void`" + }, + { + "kind": "text", + "text": "." } ] }, @@ -15883,16 +18089,33 @@ "content": [ { "kind": "code", - "text": "```ts\nconst priceList =\n await pricingModuleService.setPriceListRules({\n price_list_id: \"plist_123\",\n rules: {\n region_id: \"reg_123\",\n },\n })\n```" + "text": "```ts\nawait pricingModuleService.softDeletePricePreferences([\n \"prpref_123\",\n \"prpref_321\",\n])\n```" } ] } ] }, + "typeParameters": [ + { + "id": 8699, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" + } + } + ], "parameters": [ { - "id": 8287, - "name": "data", + "id": 8700, + "name": "pricePreferenceIds", "variant": "param", "kind": 32768, "flags": {}, @@ -15900,27 +18123,52 @@ "summary": [ { "kind": "text", - "text": "The rules to set for a price list. The price list is identified by the\n" - }, - { - "kind": "code", - "text": "`price_list_id`" - }, + "text": "The IDs of the price preferences." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 8701, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ { "kind": "text", - "text": " property." + "text": "An object that is used to specify an entity's related entities that should be soft-deleted when the main entity is soft-deleted." } ] }, "type": { "type": "reference", - "target": 8508, - "name": "SetPriceListRulesDTO", + "target": 8833, + "typeArguments": [ + { + "type": "reference", + "target": 8699, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "SoftDeleteReturn", "package": "@medusajs/types" } }, { - "id": 8288, + "id": 8702, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -15937,7 +18185,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -15951,10 +18199,35 @@ }, "typeArguments": [ { - "type": "reference", - "target": 8453, - "name": "PriceListDTO", - "package": "@medusajs/types" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", @@ -15964,15 +18237,15 @@ ] }, { - "id": 8289, - "name": "removePriceListRules", + "id": 8703, + "name": "restorePricePreferences", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8290, - "name": "removePriceListRules", + "id": 8704, + "name": "restorePricePreferences", "variant": "signature", "kind": 4096, "flags": {}, @@ -15980,7 +18253,7 @@ "summary": [ { "kind": "text", - "text": "This method is used to remove rules from a price list." + "text": "This method restores soft deleted price preferences by their IDs." } ], "blockTags": [ @@ -15989,7 +18262,15 @@ "content": [ { "kind": "text", - "text": "The updated price lists." + "text": "An object that includes the IDs of related records that were restored.\nThe object's keys are the ID attribute names of the price preferences entity's relations,\nand its value is an array of strings, each being the ID of the record associated with the price preferences through this relation.\n\nIf there are no related records restored, the promise resolves to " + }, + { + "kind": "code", + "text": "`void`" + }, + { + "kind": "text", + "text": "." } ] }, @@ -15998,16 +18279,33 @@ "content": [ { "kind": "code", - "text": "```ts\nconst priceList =\n await pricingModuleService.removePriceListRules({\n price_list_id: \"plist_123\",\n rules: [\"region_id\"],\n })\n```" + "text": "```ts\nawait pricingModuleService.restorePricePreferences([\n \"prpref_123\",\n \"prpref_321\",\n])\n```" } ] } ] }, + "typeParameters": [ + { + "id": 8705, + "name": "TReturnableLinkableKeys", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "default": { + "type": "intrinsic", + "name": "string" + } + } + ], "parameters": [ { - "id": 8291, - "name": "data", + "id": 8706, + "name": "pricePreferenceIds", "variant": "param", "kind": 32768, "flags": {}, @@ -16015,27 +18313,52 @@ "summary": [ { "kind": "text", - "text": "The rules to remove from a price list. The price list is identified by the\n" - }, - { - "kind": "code", - "text": "`price_list_id`" - }, + "text": "The IDs of the price preferences." + } + ] + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 8707, + "name": "config", + "variant": "param", + "kind": 32768, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ { "kind": "text", - "text": " property." + "text": "Configurations determining which relations to restore along with each of the price preferences." } ] }, "type": { "type": "reference", - "target": 8511, - "name": "RemovePriceListRulesDTO", + "target": 8836, + "typeArguments": [ + { + "type": "reference", + "target": 8705, + "name": "TReturnableLinkableKeys", + "package": "@medusajs/types", + "refersToTypeParameter": true + } + ], + "name": "RestoreReturn", "package": "@medusajs/types" } }, { - "id": 8292, + "id": 8708, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -16052,7 +18375,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -16066,10 +18389,35 @@ }, "typeArguments": [ { - "type": "reference", - "target": 8453, - "name": "PriceListDTO", - "package": "@medusajs/types" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "void" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + ], + "name": "Record", + "package": "typescript" + } + ] } ], "name": "Promise", @@ -16079,15 +18427,15 @@ ] }, { - "id": 8293, - "name": "removePrices", + "id": 8709, + "name": "deletePricePreferences", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8294, - "name": "removePrices", + "id": 8710, + "name": "deletePricePreferences", "variant": "signature", "kind": 4096, "flags": {}, @@ -16095,7 +18443,7 @@ "summary": [ { "kind": "text", - "text": "This method deletes prices by their IDs." + "text": "This method deletes price preferences by their IDs." } ], "blockTags": [ @@ -16104,7 +18452,7 @@ "content": [ { "kind": "text", - "text": "Resolves when the prices are deleted successfully." + "text": "Resolves when the price preferences are successfully deleted." } ] }, @@ -16113,7 +18461,7 @@ "content": [ { "kind": "code", - "text": "```ts\nawait pricingModuleService.removePrices([\n \"price_123\",\n \"price_321\",\n])\n```" + "text": "```ts\nawait pricingModuleService.deletePricePreferences([\"prpref_123\", \"prpref_321\"])\n```" } ] } @@ -16121,7 +18469,7 @@ }, "parameters": [ { - "id": 8295, + "id": 8711, "name": "ids", "variant": "param", "kind": 32768, @@ -16130,7 +18478,7 @@ "summary": [ { "kind": "text", - "text": "The IDs of the prices." + "text": "The IDs of the price preferences to delete." } ] }, @@ -16143,7 +18491,7 @@ } }, { - "id": 8296, + "id": 8712, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -16160,7 +18508,7 @@ }, "type": { "type": "reference", - "target": 8328, + "target": 8744, "name": "Context", "package": "@medusajs/types" } @@ -16189,63 +18537,71 @@ { "title": "Methods", "children": [ - 8116, - 8121, - 8126, - 8131, - 8136, - 8143, - 8150, - 8159, - 8163, - 8170, - 8175, - 8181, - 8187, - 8192, - 8197, - 8202, - 8207, - 8211, - 8215, - 8219, - 8224, - 8229, - 8234, - 8238, - 8242, - 8246, - 8252, - 8258, - 8263, - 8268, - 8273, - 8277, - 8281, - 8285, - 8289, - 8293 + 8483, + 8488, + 8493, + 8498, + 8503, + 8510, + 8517, + 8526, + 8530, + 8537, + 8542, + 8548, + 8554, + 8559, + 8564, + 8569, + 8574, + 8578, + 8582, + 8586, + 8591, + 8596, + 8601, + 8605, + 8609, + 8613, + 8619, + 8625, + 8630, + 8635, + 8640, + 8644, + 8648, + 8652, + 8656, + 8660, + 8664, + 8669, + 8674, + 8681, + 8688, + 8697, + 8703, + 8709 ] } ], "extendedTypes": [ { "type": "reference", - "target": 8310, + "target": 8726, "name": "IModuleService", "package": "@medusajs/types" } ] }, { - "id": 8652, + "id": 9097, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 8653, + "id": 9098, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -16261,7 +18617,7 @@ } }, { - "id": 8654, + "id": 9099, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -16271,21 +18627,21 @@ "type": { "type": "reflection", "declaration": { - "id": 8655, + "id": 9100, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 8656, + "id": 9101, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 8657, + "id": 9102, "name": "key", "variant": "param", "kind": 32768, @@ -16326,35 +18682,35 @@ { "title": "Properties", "children": [ - 8653, - 8654 + 9098, + 9099 ] } ] }, { - "id": 8539, + "id": 8984, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 8540, + "id": 8985, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8541, + "id": 8986, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 8542, + "id": 8987, "name": "msg", "variant": "param", "kind": 32768, @@ -16364,7 +18720,7 @@ "types": [ { "type": "reference", - "target": 8648, + "target": 9093, "name": "Message", "package": "@medusajs/types" }, @@ -16372,7 +18728,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 8648, + "target": 9093, "name": "Message", "package": "@medusajs/types" } @@ -16389,21 +18745,21 @@ ] }, { - "id": 8543, + "id": 8988, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8544, + "id": 8989, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 8545, + "id": 8990, "name": "format", "variant": "param", "kind": 32768, @@ -16412,7 +18768,7 @@ }, "type": { "type": "reference", - "target": 8652, + "target": 9097, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -16433,7 +18789,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 8648, + "target": 9093, "name": "Message", "package": "@medusajs/types" } @@ -16446,14 +18802,14 @@ ] }, { - "id": 8546, + "id": 8991, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8547, + "id": 8992, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -16466,21 +18822,21 @@ ] }, { - "id": 8548, + "id": 8993, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8549, + "id": 8994, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 8550, + "id": 8995, "name": "T", "variant": "typeParam", "kind": 131072, @@ -16489,7 +18845,7 @@ ], "parameters": [ { - "id": 8551, + "id": 8996, "name": "messageData", "variant": "param", "kind": 32768, @@ -16499,11 +18855,11 @@ "types": [ { "type": "reference", - "target": 8658, + "target": 9103, "typeArguments": [ { "type": "reference", - "target": 8550, + "target": 8995, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -16516,11 +18872,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 8658, + "target": 9103, "typeArguments": [ { "type": "reference", - "target": 8550, + "target": 8995, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -16534,7 +18890,7 @@ } }, { - "id": 8552, + "id": 8997, "name": "options", "variant": "param", "kind": 32768, @@ -16574,16 +18930,16 @@ { "title": "Methods", "children": [ - 8540, - 8543, - 8546, - 8548 + 8985, + 8988, + 8991, + 8993 ] } ] }, { - "id": 8328, + "id": 8744, "name": "Context", "variant": "declaration", "kind": 256, @@ -16598,7 +18954,7 @@ }, "children": [ { - "id": 8329, + "id": 8745, "name": "__type", "variant": "declaration", "kind": 1024, @@ -16611,7 +18967,7 @@ } }, { - "id": 8330, + "id": 8746, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -16644,14 +19000,14 @@ }, "type": { "type": "reference", - "target": 8339, + "target": 8755, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 8331, + "id": 8747, "name": "manager", "variant": "declaration", "kind": 1024, @@ -16684,14 +19040,14 @@ }, "type": { "type": "reference", - "target": 8339, + "target": 8755, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 8332, + "id": 8748, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -16744,7 +19100,7 @@ } }, { - "id": 8333, + "id": 8749, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -16765,7 +19121,7 @@ } }, { - "id": 8334, + "id": 8750, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -16786,7 +19142,7 @@ } }, { - "id": 8335, + "id": 8751, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -16807,7 +19163,7 @@ } }, { - "id": 8336, + "id": 8752, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -16824,13 +19180,13 @@ }, "type": { "type": "reference", - "target": 8539, + "target": 8984, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 8337, + "id": 8753, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -16851,7 +19207,7 @@ } }, { - "id": 8338, + "id": 8754, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -16876,22 +19232,22 @@ { "title": "Properties", "children": [ - 8329, - 8330, - 8331, - 8332, - 8333, - 8334, - 8335, - 8336, - 8337, - 8338 + 8745, + 8746, + 8747, + 8748, + 8749, + 8750, + 8751, + 8752, + 8753, + 8754 ] } ], "typeParameters": [ { - "id": 8339, + "id": 8755, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -16904,7 +19260,7 @@ ] }, { - "id": 8643, + "id": 9088, "name": "BigNumberRawValue", "variant": "declaration", "kind": 2097152, @@ -16912,14 +19268,14 @@ "type": { "type": "reflection", "declaration": { - "id": 8644, + "id": 9089, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 8645, + "id": 9090, "name": "value", "variant": "declaration", "kind": 1024, @@ -16943,20 +19299,20 @@ { "title": "Properties", "children": [ - 8645 + 9090 ] } ], "indexSignatures": [ { - "id": 8646, + "id": 9091, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 8647, + "id": 9092, "name": "key", "variant": "param", "kind": 32768, @@ -16977,7 +19333,7 @@ } }, { - "id": 8538, + "id": 8983, "name": "BigNumberInput", "variant": "declaration", "kind": 2097152, @@ -16987,7 +19343,7 @@ "types": [ { "type": "reference", - "target": 8643, + "target": 9088, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -17013,7 +19369,7 @@ } }, { - "id": 8553, + "id": 8998, "name": "BigNumberValue", "variant": "declaration", "kind": 2097152, @@ -17047,2442 +19403,2759 @@ { "title": "Interfaces", "children": [ - 8361, - 8563, - 8415, - 8418, - 8686, - 8620, - 8310, - 8554, - 8668, - 8680, - 8567, - 8453, - 8604, - 8612, - 8679, - 8603, - 8474, - 8483, - 8465, - 8496, - 8491, - 8502, - 8505, - 8508, - 8511, - 8421, - 8439, - 8445, - 8433, - 8326, - 8324, - 8374, - 8340, - 8674, - 8572, - 8391, - 8384, - 8386, - 8389, - 8378, - 8401, - 8394, - 8115, - 8652, - 8539, - 8328 + 8779, + 9008, + 8833, + 8836, + 9131, + 9065, + 8726, + 8999, + 9113, + 9125, + 9012, + 8871, + 9049, + 9057, + 9124, + 9048, + 8892, + 8901, + 8883, + 8914, + 8909, + 8920, + 8923, + 8926, + 8929, + 8932, + 8950, + 8955, + 8946, + 8940, + 8839, + 8857, + 8863, + 8851, + 8742, + 8740, + 8792, + 8756, + 9119, + 9017, + 8809, + 8802, + 8804, + 8807, + 8796, + 8819, + 8812, + 8482, + 9097, + 8984, + 8744 ] }, { "title": "Type Aliases", "children": [ - 8675, - 8677, - 8704, - 8732, - 8722, - 8581, - 8720, - 8714, - 8719, - 8708, - 8716, - 8698, - 8648, - 8658, - 8689, - 8637, - 8514, - 8634, - 8579, - 8580, - 8643, - 8538, - 8553 + 9120, + 9122, + 9149, + 9177, + 9167, + 9026, + 9165, + 9159, + 9164, + 9153, + 9161, + 9143, + 9093, + 9103, + 9134, + 9082, + 8959, + 9079, + 9024, + 9025, + 9088, + 8983, + 8998 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "8114": { + "8481": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "" }, - "8115": { + "8482": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService" }, - "8116": { + "8483": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.calculatePrices" }, - "8117": { + "8484": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.calculatePrices" }, - "8118": { + "8485": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "filters" }, - "8119": { + "8486": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "context" }, - "8120": { + "8487": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8121": { + "8488": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.retrievePriceSet" }, - "8122": { + "8489": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.retrievePriceSet" }, - "8123": { + "8490": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "id" }, - "8124": { + "8491": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "config" }, - "8125": { + "8492": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8126": { + "8493": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.listPriceSets" }, - "8127": { + "8494": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.listPriceSets" }, - "8128": { + "8495": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "filters" }, - "8129": { + "8496": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "config" }, - "8130": { + "8497": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8131": { + "8498": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.listAndCountPriceSets" }, - "8132": { + "8499": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.listAndCountPriceSets" }, - "8133": { + "8500": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "filters" }, - "8134": { + "8501": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "config" }, - "8135": { + "8502": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8136": { + "8503": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.createPriceSets" }, - "8137": { + "8504": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.createPriceSets" }, - "8138": { + "8505": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "data" }, - "8139": { + "8506": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8140": { + "8507": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.createPriceSets" }, - "8141": { + "8508": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "data" }, - "8142": { + "8509": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8143": { + "8510": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.upsertPriceSets" }, - "8144": { + "8511": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.upsertPriceSets" }, - "8145": { + "8512": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "data" }, - "8146": { + "8513": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8147": { + "8514": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.upsertPriceSets" }, - "8148": { + "8515": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "data" }, - "8149": { + "8516": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8150": { + "8517": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.updatePriceSets" }, - "8151": { + "8518": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.updatePriceSets" }, - "8152": { + "8519": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "id" }, - "8153": { + "8520": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "data" }, - "8154": { + "8521": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8155": { + "8522": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.updatePriceSets" }, - "8156": { + "8523": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "selector" }, - "8157": { + "8524": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "data" }, - "8158": { + "8525": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8159": { + "8526": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.deletePriceSets" }, - "8160": { + "8527": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.deletePriceSets" }, - "8161": { + "8528": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "ids" }, - "8162": { + "8529": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8163": { + "8530": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.addPrices" }, - "8164": { + "8531": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.addPrices" }, - "8165": { + "8532": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "data" }, - "8166": { + "8533": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8167": { + "8534": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.addPrices" }, - "8168": { + "8535": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "data" }, - "8169": { + "8536": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8170": { + "8537": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.listPrices" }, - "8171": { + "8538": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.listPrices" }, - "8172": { + "8539": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "filters" }, - "8173": { + "8540": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "config" }, - "8174": { + "8541": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8175": { + "8542": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.softDeletePrices" }, - "8176": { + "8543": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.softDeletePrices" }, - "8177": { + "8544": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "8178": { + "8545": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "priceIds" }, - "8179": { + "8546": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "config" }, - "8180": { + "8547": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8181": { + "8548": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.restorePrices" }, - "8182": { + "8549": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.restorePrices" }, - "8183": { + "8550": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "8184": { + "8551": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "priceIds" }, - "8185": { + "8552": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "config" }, - "8186": { + "8553": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8187": { + "8554": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.listAndCountPrices" }, - "8188": { + "8555": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.listAndCountPrices" }, - "8189": { + "8556": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "filters" }, - "8190": { + "8557": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "config" }, - "8191": { + "8558": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8192": { + "8559": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.retrievePriceRule" }, - "8193": { + "8560": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.retrievePriceRule" }, - "8194": { + "8561": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "id" }, - "8195": { + "8562": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "config" }, - "8196": { + "8563": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8197": { + "8564": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.listPriceRules" }, - "8198": { + "8565": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "IPricingModuleService.listPriceRules" }, - "8199": { + "8566": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "filters" + }, + "8567": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "config" + }, + "8568": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "sharedContext" + }, + "8569": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.listAndCountPriceRules" + }, + "8570": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.listAndCountPriceRules" + }, + "8571": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "filters" + }, + "8572": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "config" + }, + "8573": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "sharedContext" + }, + "8574": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.createPriceRules" + }, + "8575": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.createPriceRules" + }, + "8576": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "data" + }, + "8577": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "sharedContext" + }, + "8578": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.updatePriceRules" + }, + "8579": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.updatePriceRules" + }, + "8580": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "data" + }, + "8581": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "sharedContext" + }, + "8582": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.deletePriceRules" + }, + "8583": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.deletePriceRules" + }, + "8584": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "priceRuleIds" + }, + "8585": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "sharedContext" + }, + "8586": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.retrievePriceList" + }, + "8587": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.retrievePriceList" + }, + "8588": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "id" + }, + "8589": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "config" + }, + "8590": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "sharedContext" + }, + "8591": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.listPriceLists" + }, + "8592": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.listPriceLists" + }, + "8593": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "filters" + }, + "8594": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "config" + }, + "8595": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "sharedContext" + }, + "8596": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.listAndCountPriceLists" + }, + "8597": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.listAndCountPriceLists" + }, + "8598": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "filters" + }, + "8599": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "config" + }, + "8600": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "sharedContext" + }, + "8601": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.createPriceLists" + }, + "8602": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.createPriceLists" + }, + "8603": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "data" + }, + "8604": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "sharedContext" + }, + "8605": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "filters" + "qualifiedName": "IPricingModuleService.updatePriceLists" }, - "8200": { + "8606": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "config" + "qualifiedName": "IPricingModuleService.updatePriceLists" }, - "8201": { + "8607": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "data" }, - "8202": { + "8608": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.listAndCountPriceRules" + "qualifiedName": "sharedContext" }, - "8203": { + "8609": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.listAndCountPriceRules" + "qualifiedName": "IPricingModuleService.deletePriceLists" }, - "8204": { + "8610": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "filters" + "qualifiedName": "IPricingModuleService.deletePriceLists" }, - "8205": { + "8611": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "config" + "qualifiedName": "priceListIds" }, - "8206": { + "8612": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8207": { + "8613": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.createPriceRules" + "qualifiedName": "IPricingModuleService.softDeletePriceLists" }, - "8208": { + "8614": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.createPriceRules" + "qualifiedName": "IPricingModuleService.softDeletePriceLists" }, - "8209": { + "8615": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "data" + "qualifiedName": "TReturnableLinkableKeys" }, - "8210": { + "8616": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "priceListIds" }, - "8211": { + "8617": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.updatePriceRules" + "qualifiedName": "config" }, - "8212": { + "8618": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.updatePriceRules" + "qualifiedName": "sharedContext" }, - "8213": { + "8619": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "data" + "qualifiedName": "IPricingModuleService.restorePriceLists" }, - "8214": { + "8620": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IPricingModuleService.restorePriceLists" }, - "8215": { + "8621": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.deletePriceRules" + "qualifiedName": "TReturnableLinkableKeys" }, - "8216": { + "8622": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.deletePriceRules" + "qualifiedName": "priceListIds" }, - "8217": { + "8623": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "priceRuleIds" + "qualifiedName": "config" }, - "8218": { + "8624": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8219": { + "8625": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.retrievePriceList" + "qualifiedName": "IPricingModuleService.retrievePriceListRule" }, - "8220": { + "8626": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.retrievePriceList" + "qualifiedName": "IPricingModuleService.retrievePriceListRule" }, - "8221": { + "8627": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "id" }, - "8222": { + "8628": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "config" }, - "8223": { + "8629": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8224": { + "8630": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.listPriceLists" + "qualifiedName": "IPricingModuleService.listPriceListRules" }, - "8225": { + "8631": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.listPriceLists" + "qualifiedName": "IPricingModuleService.listPriceListRules" }, - "8226": { + "8632": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "filters" }, - "8227": { + "8633": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "config" }, - "8228": { + "8634": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8229": { + "8635": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.listAndCountPriceLists" + "qualifiedName": "IPricingModuleService.listAndCountPriceListRules" }, - "8230": { + "8636": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.listAndCountPriceLists" + "qualifiedName": "IPricingModuleService.listAndCountPriceListRules" }, - "8231": { + "8637": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "filters" }, - "8232": { + "8638": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "config" }, - "8233": { + "8639": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8234": { + "8640": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.createPriceLists" + "qualifiedName": "IPricingModuleService.deletePriceListRules" }, - "8235": { + "8641": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.createPriceLists" + "qualifiedName": "IPricingModuleService.deletePriceListRules" }, - "8236": { + "8642": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "data" + "qualifiedName": "priceListRuleIds" }, - "8237": { + "8643": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8238": { + "8644": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.updatePriceLists" + "qualifiedName": "IPricingModuleService.addPriceListPrices" }, - "8239": { + "8645": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.updatePriceLists" + "qualifiedName": "IPricingModuleService.addPriceListPrices" }, - "8240": { + "8646": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "data" }, - "8241": { + "8647": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8242": { + "8648": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.deletePriceLists" + "qualifiedName": "IPricingModuleService.updatePriceListPrices" }, - "8243": { + "8649": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.deletePriceLists" + "qualifiedName": "IPricingModuleService.updatePriceListPrices" }, - "8244": { + "8650": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "priceListIds" + "qualifiedName": "data" }, - "8245": { + "8651": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8246": { + "8652": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.softDeletePriceLists" + "qualifiedName": "IPricingModuleService.setPriceListRules" }, - "8247": { + "8653": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.softDeletePriceLists" + "qualifiedName": "IPricingModuleService.setPriceListRules" }, - "8248": { + "8654": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "data" }, - "8249": { + "8655": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "priceListIds" + "qualifiedName": "sharedContext" }, - "8250": { + "8656": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "config" + "qualifiedName": "IPricingModuleService.removePriceListRules" }, - "8251": { + "8657": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "sharedContext" + "qualifiedName": "IPricingModuleService.removePriceListRules" }, - "8252": { + "8658": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.restorePriceLists" + "qualifiedName": "data" }, - "8253": { + "8659": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.restorePriceLists" + "qualifiedName": "sharedContext" }, - "8254": { + "8660": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "TReturnableLinkableKeys" + "qualifiedName": "IPricingModuleService.removePrices" }, - "8255": { + "8661": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "priceListIds" + "qualifiedName": "IPricingModuleService.removePrices" }, - "8256": { + "8662": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "config" + "qualifiedName": "ids" }, - "8257": { + "8663": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8258": { + "8664": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.retrievePriceListRule" + "qualifiedName": "IPricingModuleService.retrievePricePreference" }, - "8259": { + "8665": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.retrievePriceListRule" + "qualifiedName": "IPricingModuleService.retrievePricePreference" }, - "8260": { + "8666": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "id" }, - "8261": { + "8667": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "config" }, - "8262": { + "8668": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8263": { + "8669": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.listPriceListRules" + "qualifiedName": "IPricingModuleService.listPricePreferences" }, - "8264": { + "8670": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.listPriceListRules" + "qualifiedName": "IPricingModuleService.listPricePreferences" }, - "8265": { + "8671": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "filters" }, - "8266": { + "8672": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "config" }, - "8267": { + "8673": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8268": { + "8674": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.listAndCountPriceListRules" + "qualifiedName": "IPricingModuleService.createPricePreferences" + }, + "8675": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.createPricePreferences" }, - "8269": { + "8676": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.listAndCountPriceListRules" + "qualifiedName": "data" }, - "8270": { + "8677": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "filters" + "qualifiedName": "sharedContext" }, - "8271": { + "8678": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "config" + "qualifiedName": "IPricingModuleService.createPricePreferences" + }, + "8679": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "data" }, - "8272": { + "8680": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8273": { + "8681": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.deletePriceListRules" + "qualifiedName": "IPricingModuleService.upsertPricePreferences" }, - "8274": { + "8682": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.deletePriceListRules" + "qualifiedName": "IPricingModuleService.upsertPricePreferences" }, - "8275": { + "8683": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "priceListRuleIds" + "qualifiedName": "data" }, - "8276": { + "8684": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8277": { + "8685": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.upsertPricePreferences" + }, + "8686": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.addPriceListPrices" + "qualifiedName": "data" }, - "8278": { + "8687": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.addPriceListPrices" + "qualifiedName": "sharedContext" }, - "8279": { + "8688": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.updatePricePreferences" + }, + "8689": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "IPricingModuleService.updatePricePreferences" + }, + "8690": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "id" + }, + "8691": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "data" }, - "8280": { + "8692": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8281": { + "8693": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.updatePriceListPrices" + "qualifiedName": "IPricingModuleService.updatePricePreferences" }, - "8282": { + "8694": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.updatePriceListPrices" + "qualifiedName": "selector" }, - "8283": { + "8695": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "data" }, - "8284": { + "8696": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8285": { + "8697": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.setPriceListRules" + "qualifiedName": "IPricingModuleService.softDeletePricePreferences" }, - "8286": { + "8698": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.setPriceListRules" + "qualifiedName": "IPricingModuleService.softDeletePricePreferences" + }, + "8699": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "TReturnableLinkableKeys" + }, + "8700": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "pricePreferenceIds" }, - "8287": { + "8701": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "data" + "qualifiedName": "config" }, - "8288": { + "8702": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8289": { + "8703": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.removePriceListRules" + "qualifiedName": "IPricingModuleService.restorePricePreferences" }, - "8290": { + "8704": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.removePriceListRules" + "qualifiedName": "IPricingModuleService.restorePricePreferences" }, - "8291": { + "8705": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "data" + "qualifiedName": "TReturnableLinkableKeys" + }, + "8706": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "pricePreferenceIds" + }, + "8707": { + "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", + "qualifiedName": "config" }, - "8292": { + "8708": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8293": { + "8709": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.removePrices" + "qualifiedName": "IPricingModuleService.deletePricePreferences" }, - "8294": { + "8710": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", - "qualifiedName": "IPricingModuleService.removePrices" + "qualifiedName": "IPricingModuleService.deletePricePreferences" }, - "8295": { + "8711": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "ids" }, - "8296": { + "8712": { "sourceFileName": "../../../../packages/core/types/src/pricing/service.ts", "qualifiedName": "sharedContext" }, - "8310": { + "8726": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "8324": { + "8740": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "PricingFilters" }, - "8325": { + "8741": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "PricingFilters.id" }, - "8326": { + "8742": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "PricingContext" }, - "8327": { + "8743": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "PricingContext.context" }, - "8328": { + "8744": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "8329": { + "8745": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "8330": { + "8746": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "8331": { + "8747": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "8332": { + "8748": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "8333": { + "8749": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "8334": { + "8750": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "8335": { + "8751": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "8336": { + "8752": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "8337": { + "8753": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "8338": { + "8754": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "8339": { + "8755": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "8340": { + "8756": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CalculatedPriceSet" }, - "8341": { + "8757": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CalculatedPriceSet.id" }, - "8342": { + "8758": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CalculatedPriceSet.is_calculated_price_price_list" }, - "8343": { + "8759": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", + "qualifiedName": "CalculatedPriceSet.is_calculated_price_tax_inclusive" + }, + "8760": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CalculatedPriceSet.calculated_amount" }, - "8344": { + "8761": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CalculatedPriceSet.is_original_price_price_list" }, - "8345": { + "8762": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", + "qualifiedName": "CalculatedPriceSet.is_original_price_tax_inclusive" + }, + "8763": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CalculatedPriceSet.original_amount" }, - "8346": { + "8764": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CalculatedPriceSet.currency_code" }, - "8347": { + "8765": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CalculatedPriceSet.calculated_price" }, - "8348": { + "8766": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "__type" }, - "8349": { + "8767": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "__type.id" }, - "8350": { + "8768": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "__type.price_list_id" }, - "8351": { + "8769": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "__type.price_list_type" }, - "8352": { + "8770": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "__type.min_quantity" }, - "8353": { + "8771": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "__type.max_quantity" }, - "8354": { + "8772": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CalculatedPriceSet.original_price" }, - "8355": { + "8773": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "__type" }, - "8356": { + "8774": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "__type.id" }, - "8357": { + "8775": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "__type.price_list_id" }, - "8358": { + "8776": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "__type.price_list_type" }, - "8359": { + "8777": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "__type.min_quantity" }, - "8360": { + "8778": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "__type.max_quantity" }, - "8361": { + "8779": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "8362": { + "8780": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "8363": { + "8781": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "8364": { + "8782": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "8365": { + "8783": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "8366": { + "8784": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "8367": { + "8785": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "8368": { + "8786": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "8370": { + "8788": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "8371": { + "8789": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "8372": { + "8790": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "8373": { + "8791": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "8374": { + "8792": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "PriceSetDTO" }, - "8375": { + "8793": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "PriceSetDTO.id" }, - "8376": { + "8794": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "PriceSetDTO.prices" }, - "8377": { + "8795": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "PriceSetDTO.calculated_price" }, - "8378": { + "8796": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "FilterablePriceSetProps" }, - "8379": { + "8797": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "FilterablePriceSetProps.id" }, - "8380": { + "8798": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", - "qualifiedName": "FilterablePriceSetProps.money_amounts" + "qualifiedName": "FilterablePriceSetProps.prices" }, - "8381": { + "8799": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "8382": { + "8800": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "8383": { + "8801": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "PricingContext.context" }, - "8384": { + "8802": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CreatePriceSetDTO" }, - "8385": { + "8803": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CreatePriceSetDTO.prices" }, - "8386": { + "8804": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "UpsertPriceSetDTO" }, - "8387": { + "8805": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "UpsertPriceSetDTO.id" }, - "8388": { + "8806": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "UpdatePriceSetDTO.prices" }, - "8389": { + "8807": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "UpdatePriceSetDTO" }, - "8390": { + "8808": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "UpdatePriceSetDTO.prices" }, - "8391": { + "8809": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "AddPricesDTO" }, - "8392": { + "8810": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "AddPricesDTO.priceSetId" }, - "8393": { + "8811": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "AddPricesDTO.prices" }, - "8394": { + "8812": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "FilterablePriceProps" }, - "8395": { + "8813": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "FilterablePriceProps.id" }, - "8396": { + "8814": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "FilterablePriceProps.currency_code" }, - "8397": { + "8815": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "FilterablePriceProps.price_set_id" }, - "8398": { + "8816": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "FilterablePriceProps.price_list_id" }, - "8399": { + "8817": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "8400": { + "8818": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "8401": { + "8819": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO" }, - "8402": { + "8820": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO.id" }, - "8403": { + "8821": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO.title" }, - "8404": { + "8822": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO.currency_code" }, - "8405": { + "8823": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO.amount" }, - "8406": { + "8824": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO.min_quantity" }, - "8407": { + "8825": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO.max_quantity" }, - "8408": { + "8826": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO.price_set" }, - "8409": { + "8827": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO.price_list" }, - "8410": { + "8828": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO.price_set_id" }, - "8411": { + "8829": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO.price_rules" }, - "8412": { + "8830": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO.created_at" }, - "8413": { + "8831": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO.updated_at" }, - "8414": { + "8832": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price.ts", "qualifiedName": "PriceDTO.deleted_at" }, - "8415": { + "8833": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "SoftDeleteReturn" }, - "8416": { + "8834": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "8417": { + "8835": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "8418": { + "8836": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RestoreReturn" }, - "8419": { + "8837": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "8420": { + "8838": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "8421": { + "8839": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "PriceRuleDTO" }, - "8422": { + "8840": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "PriceRuleDTO.id" }, - "8423": { + "8841": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "PriceRuleDTO.price_set_id" }, - "8424": { + "8842": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "PriceRuleDTO.price_set" }, - "8425": { + "8843": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "PriceRuleDTO.attribute" }, - "8426": { + "8844": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "PriceRuleDTO.value" }, - "8427": { + "8845": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "PriceRuleDTO.priority" }, - "8428": { + "8846": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "PriceRuleDTO.price_id" }, - "8429": { + "8847": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "PriceRuleDTO.price_list_id" }, - "8430": { + "8848": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "PriceRuleDTO.created_at" }, - "8431": { + "8849": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "PriceRuleDTO.updated_at" }, - "8432": { + "8850": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "PriceRuleDTO.deleted_at" }, - "8433": { + "8851": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "FilterablePriceRuleProps" }, - "8434": { + "8852": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "FilterablePriceRuleProps.id" }, - "8435": { + "8853": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "FilterablePriceRuleProps.name" }, - "8436": { + "8854": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "FilterablePriceRuleProps.price_set_id" }, - "8437": { + "8855": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "8438": { + "8856": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "8439": { + "8857": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "CreatePriceRuleDTO" }, - "8440": { + "8858": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "CreatePriceRuleDTO.price_set_id" }, - "8441": { + "8859": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "CreatePriceRuleDTO.attribute" }, - "8442": { + "8860": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "CreatePriceRuleDTO.value" }, - "8443": { + "8861": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "CreatePriceRuleDTO.priority" }, - "8444": { + "8862": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "CreatePriceRuleDTO.price_id" }, - "8445": { + "8863": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "UpdatePriceRuleDTO" }, - "8446": { + "8864": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "UpdatePriceRuleDTO.id" }, - "8447": { + "8865": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "UpdatePriceRuleDTO.price_set_id" }, - "8448": { + "8866": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "UpdatePriceRuleDTO.attribute" }, - "8449": { + "8867": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "UpdatePriceRuleDTO.value" }, - "8450": { + "8868": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "UpdatePriceRuleDTO.priority" }, - "8451": { + "8869": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "UpdatePriceRuleDTO.price_id" }, - "8452": { + "8870": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-rule.ts", "qualifiedName": "UpdatePriceRuleDTO.price_list_id" }, - "8453": { + "8871": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListDTO" }, - "8454": { + "8872": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListDTO.id" }, - "8455": { + "8873": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListDTO.title" }, - "8456": { + "8874": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListDTO.description" }, - "8457": { + "8875": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListDTO.starts_at" }, - "8458": { + "8876": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListDTO.status" }, - "8459": { + "8877": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListDTO.type" }, - "8460": { + "8878": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListDTO.ends_at" }, - "8461": { + "8879": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListDTO.rules_count" }, - "8462": { + "8880": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListDTO.prices" }, - "8463": { + "8881": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListDTO.money_amounts" }, - "8464": { + "8882": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListDTO.price_list_rules" }, - "8465": { + "8883": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "FilterablePriceListProps" }, - "8466": { + "8884": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "FilterablePriceListProps.q" }, - "8467": { + "8885": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "FilterablePriceListProps.id" }, - "8468": { + "8886": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "FilterablePriceListProps.starts_at" }, - "8469": { + "8887": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "FilterablePriceListProps.ends_at" }, - "8470": { + "8888": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "FilterablePriceListProps.status" }, - "8471": { + "8889": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "FilterablePriceListProps.rules_count" }, - "8472": { + "8890": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "8473": { + "8891": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "8474": { + "8892": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListDTO" }, - "8475": { + "8893": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListDTO.title" }, - "8476": { + "8894": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListDTO.description" }, - "8477": { + "8895": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListDTO.starts_at" }, - "8478": { + "8896": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListDTO.ends_at" }, - "8479": { + "8897": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListDTO.status" }, - "8480": { + "8898": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListDTO.type" }, - "8481": { + "8899": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListDTO.rules" }, - "8482": { + "8900": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListDTO.prices" }, - "8483": { + "8901": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListDTO" }, - "8484": { + "8902": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListDTO.id" }, - "8485": { + "8903": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListDTO.title" }, - "8486": { + "8904": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListDTO.description" }, - "8487": { + "8905": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListDTO.starts_at" }, - "8488": { + "8906": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListDTO.ends_at" }, - "8489": { + "8907": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListDTO.status" }, - "8490": { + "8908": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListDTO.rules" }, - "8491": { + "8909": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListRuleDTO" }, - "8492": { + "8910": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListRuleDTO.id" }, - "8493": { + "8911": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListRuleDTO.attribute" }, - "8494": { + "8912": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListRuleDTO.value" }, - "8495": { + "8913": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListRuleDTO.price_list" }, - "8496": { + "8914": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "FilterablePriceListRuleProps" }, - "8497": { + "8915": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "FilterablePriceListRuleProps.id" }, - "8498": { + "8916": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "FilterablePriceListRuleProps.value" }, - "8499": { + "8917": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "FilterablePriceListRuleProps.price_list_id" }, - "8500": { + "8918": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "8501": { + "8919": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "8502": { + "8920": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "AddPriceListPricesDTO" }, - "8503": { + "8921": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "AddPriceListPricesDTO.price_list_id" }, - "8504": { + "8922": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "AddPriceListPricesDTO.prices" }, - "8505": { + "8923": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListPricesDTO" }, - "8506": { + "8924": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListPricesDTO.price_list_id" }, - "8507": { + "8925": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListPricesDTO.prices" }, - "8508": { + "8926": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "SetPriceListRulesDTO" }, - "8509": { + "8927": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "SetPriceListRulesDTO.price_list_id" }, - "8510": { + "8928": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "SetPriceListRulesDTO.rules" }, - "8511": { + "8929": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "RemovePriceListRulesDTO" }, - "8512": { + "8930": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "RemovePriceListRulesDTO.price_list_id" }, - "8513": { + "8931": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "RemovePriceListRulesDTO.rules" }, - "8514": { + "8932": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "PricePreferenceDTO" + }, + "8933": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "PricePreferenceDTO.id" + }, + "8934": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "PricePreferenceDTO.attribute" + }, + "8935": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "PricePreferenceDTO.value" + }, + "8936": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "PricePreferenceDTO.is_tax_inclusive" + }, + "8937": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "PricePreferenceDTO.created_at" + }, + "8938": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "PricePreferenceDTO.updated_at" + }, + "8939": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "PricePreferenceDTO.deleted_at" + }, + "8940": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "FilterablePricePreferenceProps" + }, + "8941": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "FilterablePricePreferenceProps.id" + }, + "8942": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "FilterablePricePreferenceProps.attribute" + }, + "8943": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "FilterablePricePreferenceProps.value" + }, + "8944": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$and" + }, + "8945": { + "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", + "qualifiedName": "BaseFilterable.$or" + }, + "8946": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "CreatePricePreferenceDTO" + }, + "8947": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "CreatePricePreferenceDTO.attribute" + }, + "8948": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "CreatePricePreferenceDTO.value" + }, + "8949": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "CreatePricePreferenceDTO.is_tax_inclusive" + }, + "8950": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "UpsertPricePreferenceDTO" + }, + "8951": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "UpsertPricePreferenceDTO.id" + }, + "8952": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "UpdatePricePreferenceDTO.attribute" + }, + "8953": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "UpdatePricePreferenceDTO.value" + }, + "8954": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "UpdatePricePreferenceDTO.is_tax_inclusive" + }, + "8955": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "UpdatePricePreferenceDTO" + }, + "8956": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "UpdatePricePreferenceDTO.attribute" + }, + "8957": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "UpdatePricePreferenceDTO.value" + }, + "8958": { + "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-preference.ts", + "qualifiedName": "UpdatePricePreferenceDTO.is_tax_inclusive" + }, + "8959": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "8515": { + "8960": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "8516": { + "8961": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "8517": { + "8962": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "8518": { + "8963": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "8519": { + "8964": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "8520": { + "8965": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "8521": { + "8966": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "8522": { + "8967": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "8523": { + "8968": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "8524": { + "8969": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "8525": { + "8970": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "8526": { + "8971": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "8527": { + "8972": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "8528": { + "8973": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "8529": { + "8974": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "8530": { + "8975": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "8531": { + "8976": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "8532": { + "8977": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "8533": { + "8978": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "8534": { + "8979": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "8535": { + "8980": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "8536": { + "8981": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "8537": { + "8982": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "8538": { + "8983": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberInput" }, - "8539": { + "8984": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "8540": { + "8985": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "8541": { + "8986": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "8542": { + "8987": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "8543": { + "8988": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "8544": { + "8989": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "8545": { + "8990": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "8546": { + "8991": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "8547": { + "8992": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "8548": { + "8993": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "8549": { + "8994": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "8550": { + "8995": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "8551": { + "8996": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "8552": { + "8997": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "8553": { + "8998": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberValue" }, - "8554": { + "8999": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "MoneyAmountDTO" }, - "8555": { + "9000": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "MoneyAmountDTO.id" }, - "8556": { + "9001": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "MoneyAmountDTO.currency_code" }, - "8557": { + "9002": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "MoneyAmountDTO.amount" }, - "8558": { + "9003": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "MoneyAmountDTO.min_quantity" }, - "8559": { + "9004": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "MoneyAmountDTO.max_quantity" }, - "8560": { + "9005": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "MoneyAmountDTO.created_at" }, - "8561": { + "9006": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "MoneyAmountDTO.updated_at" }, - "8562": { + "9007": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "MoneyAmountDTO.deleted_at" }, - "8563": { + "9008": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "8564": { + "9009": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "8565": { + "9010": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "8566": { + "9011": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "8567": { + "9012": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "FilterableMoneyAmountProps" }, - "8568": { + "9013": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "FilterableMoneyAmountProps.id" }, - "8569": { + "9014": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "FilterableMoneyAmountProps.currency_code" }, - "8570": { + "9015": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "8571": { + "9016": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "8572": { + "9017": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CreatePricesDTO" }, - "8573": { + "9018": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CreatePricesDTO.rules" }, - "8574": { + "9019": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.id" }, - "8575": { + "9020": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.currency_code" }, - "8576": { + "9021": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.amount" }, - "8577": { + "9022": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.min_quantity" }, - "8578": { + "9023": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.max_quantity" }, - "8579": { + "9024": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListStatus" }, - "8580": { + "9025": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "PriceListType" }, - "8581": { + "9026": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "OperatorMap" }, - "8582": { + "9027": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "8583": { + "9028": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$and" }, - "8584": { + "9029": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$or" }, - "8585": { + "9030": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$eq" }, - "8586": { + "9031": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ne" }, - "8587": { + "9032": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$in" }, - "8588": { + "9033": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$nin" }, - "8589": { + "9034": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$not" }, - "8590": { + "9035": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gt" }, - "8591": { + "9036": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gte" }, - "8592": { + "9037": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lt" }, - "8593": { + "9038": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lte" }, - "8594": { + "9039": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$like" }, - "8595": { + "9040": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$re" }, - "8596": { + "9041": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ilike" }, - "8597": { + "9042": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$fulltext" }, - "8598": { + "9043": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$overlap" }, - "8599": { + "9044": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contains" }, - "8600": { + "9045": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contained" }, - "8601": { + "9046": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$exists" }, - "8602": { + "9047": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "8603": { + "9048": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListRules" }, - "8604": { + "9049": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListPriceDTO" }, - "8605": { + "9050": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListPriceDTO.price_set_id" }, - "8606": { + "9051": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListPriceDTO.rules" }, - "8607": { + "9052": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.id" }, - "8608": { + "9053": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.currency_code" }, - "8609": { + "9054": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.amount" }, - "8610": { + "9055": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.min_quantity" }, - "8611": { + "9056": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.max_quantity" }, - "8612": { + "9057": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListPriceDTO" }, - "8613": { + "9058": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListPriceDTO.price_set_id" }, - "8614": { + "9059": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "UpdatePriceListPriceDTO.rules" }, - "8615": { + "9060": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "UpdateMoneyAmountDTO.id" }, - "8616": { + "9061": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "UpdateMoneyAmountDTO.currency_code" }, - "8617": { + "9062": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "UpdateMoneyAmountDTO.amount" }, - "8618": { + "9063": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "UpdateMoneyAmountDTO.min_quantity" }, - "8619": { + "9064": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "UpdateMoneyAmountDTO.max_quantity" }, - "8620": { + "9065": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "8621": { + "9066": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "8622": { + "9067": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "8623": { + "9068": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "8624": { + "9069": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "8625": { + "9070": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "8626": { + "9071": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "8627": { + "9072": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "8628": { + "9073": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "8629": { + "9074": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "8630": { + "9075": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "8631": { + "9076": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "8632": { + "9077": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "8633": { + "9078": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "8634": { + "9079": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "8635": { + "9080": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "8636": { + "9081": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "8637": { + "9082": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "8638": { + "9083": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "8639": { + "9084": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "8640": { + "9085": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "8641": { + "9086": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "8642": { + "9087": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "8643": { + "9088": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberRawValue" }, - "8644": { + "9089": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type" }, - "8645": { + "9090": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type.value" }, - "8646": { + "9091": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type.__index" }, - "8648": { + "9093": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "8649": { + "9094": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "8650": { + "9095": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "8651": { + "9096": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "8652": { + "9097": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "8653": { + "9098": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "8654": { + "9099": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "8655": { + "9100": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "8656": { + "9101": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "8658": { + "9103": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "8659": { + "9104": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "8660": { + "9105": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "8661": { + "9106": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "8662": { + "9107": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "8663": { + "9108": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "8664": { + "9109": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "8665": { + "9110": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "8666": { + "9111": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "8667": { + "9112": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "8668": { + "9113": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO" }, - "8669": { + "9114": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.id" }, - "8670": { + "9115": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.currency_code" }, - "8671": { + "9116": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.amount" }, - "8672": { + "9117": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.min_quantity" }, - "8673": { + "9118": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "CreateMoneyAmountDTO.max_quantity" }, - "8674": { + "9119": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-set.ts", "qualifiedName": "CreatePriceSetPriceRules" }, - "8675": { + "9120": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Query" }, - "8676": { + "9121": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "8677": { + "9122": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ExpandScalar" }, - "8678": { + "9123": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "8679": { + "9124": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/price-list.ts", "qualifiedName": "CreatePriceListPriceRules" }, - "8680": { + "9125": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "UpdateMoneyAmountDTO" }, - "8681": { + "9126": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "UpdateMoneyAmountDTO.id" }, - "8682": { + "9127": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "UpdateMoneyAmountDTO.currency_code" }, - "8683": { + "9128": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "UpdateMoneyAmountDTO.amount" }, - "8684": { + "9129": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "UpdateMoneyAmountDTO.min_quantity" }, - "8685": { + "9130": { "sourceFileName": "../../../../packages/core/types/src/pricing/common/money-amount.ts", "qualifiedName": "UpdateMoneyAmountDTO.max_quantity" }, - "8686": { + "9131": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "8687": { + "9132": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "8688": { + "9133": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "8689": { + "9134": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "8690": { + "9135": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "8691": { + "9136": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "8692": { + "9137": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "8693": { + "9138": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "8694": { + "9139": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "8695": { + "9140": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "8696": { + "9141": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "8697": { + "9142": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "8698": { + "9143": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "8699": { + "9144": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "8700": { + "9145": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "8701": { + "9146": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "8702": { + "9147": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "8703": { + "9148": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "8704": { + "9149": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Scalar" }, - "8705": { + "9150": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "8706": { + "9151": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "8707": { + "9152": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "8708": { + "9153": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterQuery" }, - "8709": { + "9154": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "8710": { + "9155": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "8712": { + "9157": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "8713": { + "9158": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Prev" }, - "8714": { + "9159": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue" }, - "8715": { + "9160": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "8716": { + "9161": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "8717": { + "9162": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "8718": { + "9163": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" }, - "8719": { + "9164": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "PrevLimit" }, - "8720": { + "9165": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue2" }, - "8721": { + "9166": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "8722": { + "9167": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Primary" }, - "8723": { + "9168": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "8724": { + "9169": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.[PrimaryKeyType]" }, - "8725": { + "9170": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "8726": { + "9171": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type._id" }, - "8727": { + "9172": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "8728": { + "9173": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.uuid" }, - "8729": { + "9174": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "8730": { + "9175": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.id" }, - "8731": { + "9176": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "8732": { + "9177": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ReadonlyPrimary" }, - "8733": { + "9178": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" } @@ -19492,7 +22165,7 @@ "1": "../../../../packages/core/types/src/pricing/service.ts" }, "reflections": { - "1": 8114 + "1": 8481 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/product.json b/www/utils/generated/typedoc-json-output/product.json index 9604d67ca821a..b6f5ed5bb0e38 100644 --- a/www/utils/generated/typedoc-json-output/product.json +++ b/www/utils/generated/typedoc-json-output/product.json @@ -1,12 +1,12 @@ { - "id": 8825, + "id": 9284, "name": "product", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 9232, + "id": 9691, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 9233, + "id": 9692, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 9244, + "target": 9703, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 9234, + "id": 9693, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 9235, + "id": 9694, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 9236, + "id": 9695, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 9237, + "id": 9696, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 9238, + "id": 9697, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 9239, + "id": 9698, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 9240, + "id": 9699, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 9241, + "id": 9700, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 9242, + "id": 9701, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 9243, + "id": 9702, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 9233, - 9234, - 9235, - 9236, - 9237, - 9241, - 9242, - 9243 + 9692, + 9693, + 9694, + 9695, + 9696, + 9700, + 9701, + 9702 ] } ], "typeParameters": [ { - "id": 9244, + "id": 9703, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 9682, + "id": 10142, "name": "MetadataType", "variant": "declaration", "kind": 2097152, @@ -394,7 +394,7 @@ } }, { - "id": 9697, + "id": 10157, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -409,7 +409,7 @@ }, "children": [ { - "id": 9698, + "id": 10158, "name": "$and", "variant": "declaration", "kind": 1024, @@ -431,11 +431,11 @@ "types": [ { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9700, + "target": 10160, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -447,7 +447,7 @@ }, { "type": "reference", - "target": 9700, + "target": 10160, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -458,7 +458,7 @@ } }, { - "id": 9699, + "id": 10159, "name": "$or", "variant": "declaration", "kind": 1024, @@ -480,11 +480,11 @@ "types": [ { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9700, + "target": 10160, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -496,7 +496,7 @@ }, { "type": "reference", - "target": 9700, + "target": 10160, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -511,14 +511,14 @@ { "title": "Properties", "children": [ - 9698, - 9699 + 10158, + 10159 ] } ], "typeParameters": [ { - "id": 9700, + "id": 10160, "name": "T", "variant": "typeParam", "kind": 131072, @@ -528,43 +528,43 @@ "extendedBy": [ { "type": "reference", - "target": 9289, + "target": 9748, "name": "FilterableProductProps" }, { "type": "reference", - "target": 9406, + "target": 9865, "name": "FilterableProductTagProps" }, { "type": "reference", - "target": 9426, + "target": 9885, "name": "FilterableProductTypeProps" }, { "type": "reference", - "target": 9452, + "target": 9911, "name": "FilterableProductOptionProps" }, { "type": "reference", - "target": 9497, + "target": 9956, "name": "FilterableProductVariantProps" }, { "type": "reference", - "target": 9570, + "target": 10029, "name": "FilterableProductCollectionProps" }, { "type": "reference", - "target": 9610, + "target": 10070, "name": "FilterableProductCategoryProps" } ] }, { - "id": 9395, + "id": 9854, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -579,7 +579,7 @@ }, "children": [ { - "id": 9396, + "id": 9855, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -598,7 +598,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9397, + "target": 9856, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -610,13 +610,13 @@ { "title": "Properties", "children": [ - 9396 + 9855 ] } ], "typeParameters": [ { - "id": 9397, + "id": 9856, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -629,7 +629,7 @@ ] }, { - "id": 9398, + "id": 9857, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -644,7 +644,7 @@ }, "children": [ { - "id": 9399, + "id": 9858, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -663,7 +663,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9400, + "target": 9859, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -675,13 +675,13 @@ { "title": "Properties", "children": [ - 9399 + 9858 ] } ], "typeParameters": [ { - "id": 9400, + "id": 9859, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -694,14 +694,14 @@ ] }, { - "id": 9779, + "id": 10239, "name": "Query", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 9780, + "id": 10240, "name": "T", "variant": "typeParam", "kind": 131072, @@ -712,7 +712,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 9780, + "target": 10240, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -725,14 +725,14 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 9780, + "target": 10240, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 9804, + "target": 10264, "name": "Scalar", "package": "@medusajs/types" }, @@ -742,11 +742,11 @@ }, "falseType": { "type": "reference", - "target": 9808, + "target": 10268, "typeArguments": [ { "type": "reference", - "target": 9780, + "target": 10240, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -758,11 +758,11 @@ }, "falseType": { "type": "reference", - "target": 9814, + "target": 10274, "typeArguments": [ { "type": "reference", - "target": 9780, + "target": 10240, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -774,14 +774,14 @@ } }, { - "id": 9781, + "id": 10241, "name": "ExpandScalar", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 9782, + "id": 10242, "name": "T", "variant": "typeParam", "kind": 131072, @@ -799,7 +799,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 9782, + "target": 10242, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -830,7 +830,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 9782, + "target": 10242, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -864,7 +864,7 @@ }, "falseType": { "type": "reference", - "target": 9782, + "target": 10242, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -875,7 +875,7 @@ } }, { - "id": 9804, + "id": 10264, "name": "Scalar", "variant": "declaration", "kind": 2097152, @@ -934,21 +934,21 @@ { "type": "reflection", "declaration": { - "id": 9805, + "id": 10265, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9806, + "id": 10266, "name": "toHexString", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9807, + "id": 10267, "name": "toHexString", "variant": "signature", "kind": 4096, @@ -965,7 +965,7 @@ { "title": "Methods", "children": [ - 9806 + 10266 ] } ] @@ -975,14 +975,14 @@ } }, { - "id": 9832, + "id": 10292, "name": "ReadonlyPrimary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 9833, + "id": 10293, "name": "T", "variant": "typeParam", "kind": 131072, @@ -993,7 +993,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 9833, + "target": 10293, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1014,7 +1014,7 @@ "typeArguments": [ { "type": "reference", - "target": 9833, + "target": 10293, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1025,7 +1025,7 @@ }, "falseType": { "type": "reference", - "target": 9833, + "target": 10293, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1033,14 +1033,14 @@ } }, { - "id": 9822, + "id": 10282, "name": "Primary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 9831, + "id": 10291, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1051,7 +1051,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 9831, + "target": 10291, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1059,14 +1059,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 9823, + "id": 10283, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9824, + "id": 10284, "name": "[PrimaryKeyType]", "variant": "declaration", "kind": 1024, @@ -1083,7 +1083,7 @@ { "title": "Properties", "children": [ - 9824 + 10284 ] } ] @@ -1091,7 +1091,7 @@ }, "trueType": { "type": "reference", - "target": 9832, + "target": 10292, "typeArguments": [ { "type": "reference", @@ -1111,7 +1111,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 9831, + "target": 10291, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1119,14 +1119,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 9825, + "id": 10285, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9826, + "id": 10286, "name": "_id", "variant": "declaration", "kind": 1024, @@ -1143,7 +1143,7 @@ { "title": "Properties", "children": [ - 9826 + 10286 ] } ] @@ -1154,7 +1154,7 @@ "types": [ { "type": "reference", - "target": 9832, + "target": 10292, "typeArguments": [ { "type": "reference", @@ -1180,7 +1180,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 9831, + "target": 10291, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1188,14 +1188,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 9827, + "id": 10287, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9828, + "id": 10288, "name": "uuid", "variant": "declaration", "kind": 1024, @@ -1212,7 +1212,7 @@ { "title": "Properties", "children": [ - 9828 + 10288 ] } ] @@ -1220,7 +1220,7 @@ }, "trueType": { "type": "reference", - "target": 9832, + "target": 10292, "typeArguments": [ { "type": "reference", @@ -1240,7 +1240,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 9831, + "target": 10291, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1248,14 +1248,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 9829, + "id": 10289, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9830, + "id": 10290, "name": "id", "variant": "declaration", "kind": 1024, @@ -1272,7 +1272,7 @@ { "title": "Properties", "children": [ - 9830 + 10290 ] } ] @@ -1280,7 +1280,7 @@ }, "trueType": { "type": "reference", - "target": 9832, + "target": 10292, "typeArguments": [ { "type": "reference", @@ -1306,14 +1306,14 @@ } }, { - "id": 9701, + "id": 10161, "name": "OperatorMap", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 9722, + "id": 10182, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1323,14 +1323,14 @@ "type": { "type": "reflection", "declaration": { - "id": 9702, + "id": 10162, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9703, + "id": 10163, "name": "$and", "variant": "declaration", "kind": 1024, @@ -1341,11 +1341,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 9779, + "target": 10239, "typeArguments": [ { "type": "reference", - "target": 9722, + "target": 10182, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1357,7 +1357,7 @@ } }, { - "id": 9704, + "id": 10164, "name": "$or", "variant": "declaration", "kind": 1024, @@ -1368,11 +1368,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 9779, + "target": 10239, "typeArguments": [ { "type": "reference", - "target": 9722, + "target": 10182, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1384,7 +1384,7 @@ } }, { - "id": 9705, + "id": 10165, "name": "$eq", "variant": "declaration", "kind": 1024, @@ -1396,11 +1396,11 @@ "types": [ { "type": "reference", - "target": 9781, + "target": 10241, "typeArguments": [ { "type": "reference", - "target": 9722, + "target": 10182, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1413,11 +1413,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 9781, + "target": 10241, "typeArguments": [ { "type": "reference", - "target": 9722, + "target": 10182, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1431,7 +1431,7 @@ } }, { - "id": 9706, + "id": 10166, "name": "$ne", "variant": "declaration", "kind": 1024, @@ -1440,11 +1440,11 @@ }, "type": { "type": "reference", - "target": 9781, + "target": 10241, "typeArguments": [ { "type": "reference", - "target": 9722, + "target": 10182, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1455,7 +1455,7 @@ } }, { - "id": 9707, + "id": 10167, "name": "$in", "variant": "declaration", "kind": 1024, @@ -1466,11 +1466,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 9781, + "target": 10241, "typeArguments": [ { "type": "reference", - "target": 9722, + "target": 10182, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1482,7 +1482,7 @@ } }, { - "id": 9708, + "id": 10168, "name": "$nin", "variant": "declaration", "kind": 1024, @@ -1493,11 +1493,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 9781, + "target": 10241, "typeArguments": [ { "type": "reference", - "target": 9722, + "target": 10182, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1509,7 +1509,7 @@ } }, { - "id": 9709, + "id": 10169, "name": "$not", "variant": "declaration", "kind": 1024, @@ -1518,11 +1518,11 @@ }, "type": { "type": "reference", - "target": 9779, + "target": 10239, "typeArguments": [ { "type": "reference", - "target": 9722, + "target": 10182, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1533,7 +1533,7 @@ } }, { - "id": 9710, + "id": 10170, "name": "$gt", "variant": "declaration", "kind": 1024, @@ -1542,11 +1542,11 @@ }, "type": { "type": "reference", - "target": 9781, + "target": 10241, "typeArguments": [ { "type": "reference", - "target": 9722, + "target": 10182, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1557,7 +1557,7 @@ } }, { - "id": 9711, + "id": 10171, "name": "$gte", "variant": "declaration", "kind": 1024, @@ -1566,11 +1566,11 @@ }, "type": { "type": "reference", - "target": 9781, + "target": 10241, "typeArguments": [ { "type": "reference", - "target": 9722, + "target": 10182, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1581,7 +1581,7 @@ } }, { - "id": 9712, + "id": 10172, "name": "$lt", "variant": "declaration", "kind": 1024, @@ -1590,11 +1590,11 @@ }, "type": { "type": "reference", - "target": 9781, + "target": 10241, "typeArguments": [ { "type": "reference", - "target": 9722, + "target": 10182, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1605,7 +1605,7 @@ } }, { - "id": 9713, + "id": 10173, "name": "$lte", "variant": "declaration", "kind": 1024, @@ -1614,11 +1614,11 @@ }, "type": { "type": "reference", - "target": 9781, + "target": 10241, "typeArguments": [ { "type": "reference", - "target": 9722, + "target": 10182, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1629,7 +1629,7 @@ } }, { - "id": 9714, + "id": 10174, "name": "$like", "variant": "declaration", "kind": 1024, @@ -1642,7 +1642,7 @@ } }, { - "id": 9715, + "id": 10175, "name": "$re", "variant": "declaration", "kind": 1024, @@ -1655,7 +1655,7 @@ } }, { - "id": 9716, + "id": 10176, "name": "$ilike", "variant": "declaration", "kind": 1024, @@ -1668,7 +1668,7 @@ } }, { - "id": 9717, + "id": 10177, "name": "$fulltext", "variant": "declaration", "kind": 1024, @@ -1681,7 +1681,7 @@ } }, { - "id": 9718, + "id": 10178, "name": "$overlap", "variant": "declaration", "kind": 1024, @@ -1697,7 +1697,7 @@ } }, { - "id": 9719, + "id": 10179, "name": "$contains", "variant": "declaration", "kind": 1024, @@ -1713,7 +1713,7 @@ } }, { - "id": 9720, + "id": 10180, "name": "$contained", "variant": "declaration", "kind": 1024, @@ -1729,7 +1729,7 @@ } }, { - "id": 9721, + "id": 10181, "name": "$exists", "variant": "declaration", "kind": 1024, @@ -1746,25 +1746,25 @@ { "title": "Properties", "children": [ - 9703, - 9704, - 9705, - 9706, - 9707, - 9708, - 9709, - 9710, - 9711, - 9712, - 9713, - 9714, - 9715, - 9716, - 9717, - 9718, - 9719, - 9720, - 9721 + 10163, + 10164, + 10165, + 10166, + 10167, + 10168, + 10169, + 10170, + 10171, + 10172, + 10173, + 10174, + 10175, + 10176, + 10177, + 10178, + 10179, + 10180, + 10181 ] } ] @@ -1772,14 +1772,14 @@ } }, { - "id": 9820, + "id": 10280, "name": "FilterValue2", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 9821, + "id": 10281, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1791,18 +1791,18 @@ "types": [ { "type": "reference", - "target": 9821, + "target": 10281, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, { "type": "reference", - "target": 9781, + "target": 10241, "typeArguments": [ { "type": "reference", - "target": 9821, + "target": 10281, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1813,11 +1813,11 @@ }, { "type": "reference", - "target": 9822, + "target": 10282, "typeArguments": [ { "type": "reference", - "target": 9821, + "target": 10281, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1830,14 +1830,14 @@ } }, { - "id": 9814, + "id": 10274, "name": "FilterValue", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 9815, + "id": 10275, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1849,15 +1849,15 @@ "types": [ { "type": "reference", - "target": 9701, + "target": 10161, "typeArguments": [ { "type": "reference", - "target": 9820, + "target": 10280, "typeArguments": [ { "type": "reference", - "target": 9815, + "target": 10275, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1872,11 +1872,11 @@ }, { "type": "reference", - "target": 9820, + "target": 10280, "typeArguments": [ { "type": "reference", - "target": 9815, + "target": 10275, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1889,11 +1889,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 9820, + "target": 10280, "typeArguments": [ { "type": "reference", - "target": 9815, + "target": 10275, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1911,7 +1911,7 @@ } }, { - "id": 9819, + "id": 10279, "name": "PrevLimit", "variant": "declaration", "kind": 2097152, @@ -1939,14 +1939,14 @@ } }, { - "id": 9808, + "id": 10268, "name": "FilterQuery", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 9812, + "id": 10272, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1957,7 +1957,7 @@ } }, { - "id": 9813, + "id": 10273, "name": "Prev", "variant": "typeParam", "kind": 131072, @@ -1976,7 +1976,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 9813, + "target": 10273, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1997,7 +1997,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 9812, + "target": 10272, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2019,7 +2019,7 @@ }, "objectType": { "type": "reference", - "target": 9812, + "target": 10272, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2076,7 +2076,7 @@ }, "objectType": { "type": "reference", - "target": 9812, + "target": 10272, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2084,7 +2084,7 @@ }, { "type": "reference", - "target": 9701, + "target": 10161, "typeArguments": [ { "type": "indexedAccess", @@ -2100,7 +2100,7 @@ }, "objectType": { "type": "reference", - "target": 9812, + "target": 10272, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2128,7 +2128,7 @@ }, "objectType": { "type": "reference", - "target": 9812, + "target": 10272, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2153,21 +2153,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 9809, + "id": 10269, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 9810, + "id": 10270, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 9811, + "id": 10271, "name": "x", "variant": "param", "kind": 32768, @@ -2204,7 +2204,7 @@ }, "trueType": { "type": "reference", - "target": 9808, + "target": 10268, "typeArguments": [ { "type": "reference", @@ -2231,14 +2231,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 9813, + "target": 10273, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 9819, + "target": 10279, "name": "PrevLimit", "package": "@medusajs/types" } @@ -2268,7 +2268,7 @@ } }, { - "id": 9816, + "id": 10276, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -2298,14 +2298,14 @@ { "type": "reflection", "declaration": { - "id": 9817, + "id": 10277, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9818, + "id": 10278, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -2322,7 +2322,7 @@ { "title": "Properties", "children": [ - 9818 + 10278 ] } ] @@ -2332,14 +2332,14 @@ } }, { - "id": 9798, + "id": 10258, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 9803, + "id": 10263, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2353,14 +2353,14 @@ "type": { "type": "reflection", "declaration": { - "id": 9799, + "id": 10259, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9800, + "id": 10260, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2371,7 +2371,7 @@ } }, { - "id": 9801, + "id": 10261, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2380,20 +2380,20 @@ }, "type": { "type": "reference", - "target": 9816, + "target": 10276, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 9802, + "id": 10262, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 9803, + "target": 10263, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2404,9 +2404,9 @@ { "title": "Properties", "children": [ - 9800, - 9801, - 9802 + 10260, + 10261, + 10262 ] } ] @@ -2414,14 +2414,14 @@ } }, { - "id": 9759, + "id": 10219, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 9762, + "id": 10222, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2437,11 +2437,11 @@ "types": [ { "type": "reference", - "target": 9798, + "target": 10258, "typeArguments": [ { "type": "reference", - "target": 9762, + "target": 10222, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2453,14 +2453,14 @@ { "type": "reflection", "declaration": { - "id": 9760, + "id": 10220, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9761, + "id": 10221, "name": "options", "variant": "declaration", "kind": 1024, @@ -2492,7 +2492,7 @@ { "title": "Properties", "children": [ - 9761 + 10221 ] } ] @@ -2502,14 +2502,14 @@ } }, { - "id": 9769, + "id": 10229, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 9778, + "id": 10238, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2523,14 +2523,14 @@ "type": { "type": "reflection", "declaration": { - "id": 9770, + "id": 10230, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9771, + "id": 10231, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2541,21 +2541,21 @@ } }, { - "id": 9772, + "id": 10232, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 9778, + "target": 10238, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 9773, + "id": 10233, "name": "source", "variant": "declaration", "kind": 1024, @@ -2566,7 +2566,7 @@ } }, { - "id": 9774, + "id": 10234, "name": "object", "variant": "declaration", "kind": 1024, @@ -2577,7 +2577,7 @@ } }, { - "id": 9775, + "id": 10235, "name": "action", "variant": "declaration", "kind": 1024, @@ -2590,7 +2590,7 @@ } }, { - "id": 9776, + "id": 10236, "name": "context", "variant": "declaration", "kind": 1024, @@ -2606,7 +2606,7 @@ "typeArguments": [ { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" }, @@ -2620,7 +2620,7 @@ } }, { - "id": 9777, + "id": 10237, "name": "options", "variant": "declaration", "kind": 1024, @@ -2652,13 +2652,13 @@ { "title": "Properties", "children": [ - 9771, - 9772, - 9773, - 9774, - 9775, - 9776, - 9777 + 10231, + 10232, + 10233, + 10234, + 10235, + 10236, + 10237 ] } ] @@ -2666,7 +2666,7 @@ } }, { - "id": 9789, + "id": 10249, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -2674,14 +2674,14 @@ "type": { "type": "reflection", "declaration": { - "id": 9790, + "id": 10250, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9791, + "id": 10251, "name": "alias", "variant": "declaration", "kind": 1024, @@ -2692,7 +2692,7 @@ } }, { - "id": 9792, + "id": 10252, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -2703,7 +2703,7 @@ } }, { - "id": 9793, + "id": 10253, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -2714,7 +2714,7 @@ } }, { - "id": 9794, + "id": 10254, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2725,7 +2725,7 @@ } }, { - "id": 9795, + "id": 10255, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -2746,7 +2746,7 @@ } }, { - "id": 9796, + "id": 10256, "name": "isList", "variant": "declaration", "kind": 1024, @@ -2767,7 +2767,7 @@ } }, { - "id": 9797, + "id": 10257, "name": "args", "variant": "declaration", "kind": 1024, @@ -2807,13 +2807,13 @@ { "title": "Properties", "children": [ - 9791, - 9792, - 9793, - 9794, - 9795, - 9796, - 9797 + 10251, + 10252, + 10253, + 10254, + 10255, + 10256, + 10257 ] } ] @@ -2821,14 +2821,14 @@ } }, { - "id": 9786, + "id": 10246, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 9787, + "id": 10247, "name": "name", "variant": "declaration", "kind": 1024, @@ -2851,7 +2851,7 @@ } }, { - "id": 9788, + "id": 10248, "name": "args", "variant": "declaration", "kind": 1024, @@ -2891,21 +2891,21 @@ { "title": "Properties", "children": [ - 9787, - 9788 + 10247, + 10248 ] } ] }, { - "id": 9736, + "id": 10196, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 9737, + "id": 10197, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2916,7 +2916,7 @@ } }, { - "id": 9738, + "id": 10198, "name": "alias", "variant": "declaration", "kind": 1024, @@ -2936,7 +2936,7 @@ "types": [ { "type": "reference", - "target": 9786, + "target": 10246, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -2944,7 +2944,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9786, + "target": 10246, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -2953,7 +2953,7 @@ } }, { - "id": 9739, + "id": 10199, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -2989,14 +2989,14 @@ { "type": "reflection", "declaration": { - "id": 9740, + "id": 10200, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9741, + "id": 10201, "name": "path", "variant": "declaration", "kind": 1024, @@ -3007,7 +3007,7 @@ } }, { - "id": 9742, + "id": 10202, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -3025,8 +3025,8 @@ { "title": "Properties", "children": [ - 9741, - 9742 + 10201, + 10202 ] } ] @@ -3040,7 +3040,7 @@ } }, { - "id": 9743, + "id": 10203, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -3054,7 +3054,7 @@ } }, { - "id": 9744, + "id": 10204, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -3065,14 +3065,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9789, + "target": 10249, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 9745, + "id": 10205, "name": "extends", "variant": "declaration", "kind": 1024, @@ -3084,14 +3084,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 9746, + "id": 10206, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9747, + "id": 10207, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3102,14 +3102,14 @@ } }, { - "id": 9748, + "id": 10208, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 9789, + "target": 10249, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -3119,8 +3119,8 @@ { "title": "Properties", "children": [ - 9747, - 9748 + 10207, + 10208 ] } ] @@ -3129,7 +3129,7 @@ } }, { - "id": 9749, + "id": 10209, "name": "args", "variant": "declaration", "kind": 1024, @@ -3169,19 +3169,19 @@ { "title": "Properties", "children": [ - 9737, - 9738, - 9739, - 9743, - 9744, - 9745, - 9749 + 10197, + 10198, + 10199, + 10203, + 10204, + 10205, + 10209 ] } ] }, { - "id": 9753, + "id": 10213, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -3200,14 +3200,14 @@ { "type": "reflection", "declaration": { - "id": 9754, + "id": 10214, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9755, + "id": 10215, "name": "type", "variant": "declaration", "kind": 1024, @@ -3303,7 +3303,7 @@ } }, { - "id": 9756, + "id": 10216, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -3316,7 +3316,7 @@ } }, { - "id": 9757, + "id": 10217, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -3329,7 +3329,7 @@ } }, { - "id": 9758, + "id": 10218, "name": "options", "variant": "declaration", "kind": 1024, @@ -3369,10 +3369,10 @@ { "title": "Properties", "children": [ - 9755, - 9756, - 9757, - 9758 + 10215, + 10216, + 10217, + 10218 ] } ] @@ -3384,7 +3384,7 @@ } }, { - "id": 9650, + "id": 10110, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -3401,7 +3401,7 @@ "typeArguments": [ { "type": "reference", - "target": 9736, + "target": 10196, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -3433,14 +3433,14 @@ { "type": "reflection", "declaration": { - "id": 9651, + "id": 10111, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9652, + "id": 10112, "name": "schema", "variant": "declaration", "kind": 1024, @@ -3461,7 +3461,7 @@ } }, { - "id": 9653, + "id": 10113, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -3472,14 +3472,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9750, + "target": 10210, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 9654, + "id": 10114, "name": "extends", "variant": "declaration", "kind": 1024, @@ -3491,14 +3491,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 9655, + "id": 10115, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9656, + "id": 10116, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3509,7 +3509,7 @@ } }, { - "id": 9657, + "id": 10117, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -3537,14 +3537,14 @@ { "type": "reflection", "declaration": { - "id": 9658, + "id": 10118, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9659, + "id": 10119, "name": "path", "variant": "declaration", "kind": 1024, @@ -3555,7 +3555,7 @@ } }, { - "id": 9660, + "id": 10120, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -3571,7 +3571,7 @@ } }, { - "id": 9661, + "id": 10121, "name": "isList", "variant": "declaration", "kind": 1024, @@ -3588,9 +3588,9 @@ { "title": "Properties", "children": [ - 9659, - 9660, - 9661 + 10119, + 10120, + 10121 ] } ] @@ -3604,14 +3604,14 @@ } }, { - "id": 9662, + "id": 10122, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 9750, + "target": 10210, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -3621,9 +3621,9 @@ { "title": "Properties", "children": [ - 9656, - 9657, - 9662 + 10116, + 10117, + 10122 ] } ] @@ -3632,7 +3632,7 @@ } }, { - "id": 9663, + "id": 10123, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3645,7 +3645,7 @@ } }, { - "id": 9664, + "id": 10124, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -3661,7 +3661,7 @@ } }, { - "id": 9665, + "id": 10125, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -3682,7 +3682,7 @@ } }, { - "id": 9666, + "id": 10126, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -3718,7 +3718,7 @@ } }, { - "id": 9667, + "id": 10127, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -3739,7 +3739,7 @@ } }, { - "id": 9668, + "id": 10128, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -3763,7 +3763,7 @@ } }, { - "id": 9669, + "id": 10129, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -3773,14 +3773,14 @@ "type": { "type": "reflection", "declaration": { - "id": 9670, + "id": 10130, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9671, + "id": 10131, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -3801,7 +3801,7 @@ } }, { - "id": 9672, + "id": 10132, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -3822,7 +3822,7 @@ } }, { - "id": 9673, + "id": 10133, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -3831,7 +3831,7 @@ }, "type": { "type": "reference", - "target": 9753, + "target": 10213, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -3841,9 +3841,9 @@ { "title": "Properties", "children": [ - 9671, - 9672, - 9673 + 10131, + 10132, + 10133 ] } ] @@ -3855,16 +3855,16 @@ { "title": "Properties", "children": [ - 9652, - 9653, - 9654, - 9663, - 9664, - 9665, - 9666, - 9667, - 9668, - 9669 + 10112, + 10113, + 10114, + 10123, + 10124, + 10125, + 10126, + 10127, + 10128, + 10129 ] } ] @@ -3874,7 +3874,7 @@ } }, { - "id": 9750, + "id": 10210, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -3884,21 +3884,21 @@ "types": [ { "type": "reference", - "target": 9789, + "target": 10249, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 9751, + "id": 10211, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9752, + "id": 10212, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -3923,7 +3923,7 @@ { "title": "Properties", "children": [ - 9752 + 10212 ] } ] @@ -3933,7 +3933,7 @@ } }, { - "id": 9218, + "id": 9677, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -3941,13 +3941,13 @@ "extendedBy": [ { "type": "reference", - "target": 8826, + "target": 9285, "name": "IProductModuleService" } ] }, { - "id": 9674, + "id": 10134, "name": "ProductStatus", "variant": "declaration", "kind": 2097152, @@ -3975,7 +3975,7 @@ } }, { - "id": 9245, + "id": 9704, "name": "ProductDTO", "variant": "declaration", "kind": 256, @@ -3990,7 +3990,7 @@ }, "children": [ { - "id": 9246, + "id": 9705, "name": "id", "variant": "declaration", "kind": 1024, @@ -4009,7 +4009,7 @@ } }, { - "id": 9247, + "id": 9706, "name": "title", "variant": "declaration", "kind": 1024, @@ -4028,7 +4028,7 @@ } }, { - "id": 9248, + "id": 9707, "name": "handle", "variant": "declaration", "kind": 1024, @@ -4047,7 +4047,7 @@ } }, { - "id": 9249, + "id": 9708, "name": "subtitle", "variant": "declaration", "kind": 1024, @@ -4075,7 +4075,7 @@ } }, { - "id": 9250, + "id": 9709, "name": "description", "variant": "declaration", "kind": 1024, @@ -4103,7 +4103,7 @@ } }, { - "id": 9251, + "id": 9710, "name": "is_giftcard", "variant": "declaration", "kind": 1024, @@ -4122,7 +4122,7 @@ } }, { - "id": 9252, + "id": 9711, "name": "status", "variant": "declaration", "kind": 1024, @@ -4137,13 +4137,13 @@ }, "type": { "type": "reference", - "target": 9674, + "target": 10134, "name": "ProductStatus", "package": "@medusajs/types" } }, { - "id": 9253, + "id": 9712, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -4171,7 +4171,7 @@ } }, { - "id": 9254, + "id": 9713, "name": "width", "variant": "declaration", "kind": 1024, @@ -4199,7 +4199,7 @@ } }, { - "id": 9255, + "id": 9714, "name": "weight", "variant": "declaration", "kind": 1024, @@ -4227,7 +4227,7 @@ } }, { - "id": 9256, + "id": 9715, "name": "length", "variant": "declaration", "kind": 1024, @@ -4255,7 +4255,7 @@ } }, { - "id": 9257, + "id": 9716, "name": "height", "variant": "declaration", "kind": 1024, @@ -4283,7 +4283,7 @@ } }, { - "id": 9258, + "id": 9717, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -4311,7 +4311,7 @@ } }, { - "id": 9259, + "id": 9718, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -4339,7 +4339,7 @@ } }, { - "id": 9260, + "id": 9719, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -4367,7 +4367,7 @@ } }, { - "id": 9261, + "id": 9720, "name": "material", "variant": "declaration", "kind": 1024, @@ -4395,7 +4395,7 @@ } }, { - "id": 9262, + "id": 9721, "name": "collection", "variant": "declaration", "kind": 1024, @@ -4420,7 +4420,7 @@ }, { "type": "reference", - "target": 9561, + "target": 10020, "name": "ProductCollectionDTO", "package": "@medusajs/types" } @@ -4428,7 +4428,7 @@ } }, { - "id": 9263, + "id": 9722, "name": "collection_id", "variant": "declaration", "kind": 1024, @@ -4456,7 +4456,7 @@ } }, { - "id": 9264, + "id": 9723, "name": "categories", "variant": "declaration", "kind": 1024, @@ -4485,7 +4485,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -4494,7 +4494,7 @@ } }, { - "id": 9265, + "id": 9724, "name": "type", "variant": "declaration", "kind": 1024, @@ -4519,7 +4519,7 @@ }, { "type": "reference", - "target": 9419, + "target": 9878, "name": "ProductTypeDTO", "package": "@medusajs/types" } @@ -4527,7 +4527,7 @@ } }, { - "id": 9266, + "id": 9725, "name": "type_id", "variant": "declaration", "kind": 1024, @@ -4555,7 +4555,7 @@ } }, { - "id": 9267, + "id": 9726, "name": "tags", "variant": "declaration", "kind": 1024, @@ -4575,14 +4575,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9401, + "target": 9860, "name": "ProductTagDTO", "package": "@medusajs/types" } } }, { - "id": 9268, + "id": 9727, "name": "variants", "variant": "declaration", "kind": 1024, @@ -4602,14 +4602,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9472, + "target": 9931, "name": "ProductVariantDTO", "package": "@medusajs/types" } } }, { - "id": 9269, + "id": 9728, "name": "options", "variant": "declaration", "kind": 1024, @@ -4629,14 +4629,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } } }, { - "id": 9270, + "id": 9729, "name": "images", "variant": "declaration", "kind": 1024, @@ -4656,14 +4656,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9675, + "target": 10135, "name": "ProductImageDTO", "package": "@medusajs/types" } } }, { - "id": 9271, + "id": 9730, "name": "discountable", "variant": "declaration", "kind": 1024, @@ -4684,7 +4684,7 @@ } }, { - "id": 9272, + "id": 9731, "name": "external_id", "variant": "declaration", "kind": 1024, @@ -4712,7 +4712,7 @@ } }, { - "id": 9273, + "id": 9732, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4745,7 +4745,7 @@ } }, { - "id": 9274, + "id": 9733, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4778,7 +4778,7 @@ } }, { - "id": 9275, + "id": 9734, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -4811,7 +4811,7 @@ } }, { - "id": 9276, + "id": 9735, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4828,7 +4828,7 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } @@ -4838,43 +4838,43 @@ { "title": "Properties", "children": [ - 9246, - 9247, - 9248, - 9249, - 9250, - 9251, - 9252, - 9253, - 9254, - 9255, - 9256, - 9257, - 9258, - 9259, - 9260, - 9261, - 9262, - 9263, - 9264, - 9265, - 9266, - 9267, - 9268, - 9269, - 9270, - 9271, - 9272, - 9273, - 9274, - 9275, - 9276 + 9705, + 9706, + 9707, + 9708, + 9709, + 9710, + 9711, + 9712, + 9713, + 9714, + 9715, + 9716, + 9717, + 9718, + 9719, + 9720, + 9721, + 9722, + 9723, + 9724, + 9725, + 9726, + 9727, + 9728, + 9729, + 9730, + 9731, + 9732, + 9733, + 9734, + 9735 ] } ] }, { - "id": 9472, + "id": 9931, "name": "ProductVariantDTO", "variant": "declaration", "kind": 256, @@ -4889,7 +4889,7 @@ }, "children": [ { - "id": 9473, + "id": 9932, "name": "id", "variant": "declaration", "kind": 1024, @@ -4908,7 +4908,7 @@ } }, { - "id": 9474, + "id": 9933, "name": "title", "variant": "declaration", "kind": 1024, @@ -4927,7 +4927,7 @@ } }, { - "id": 9475, + "id": 9934, "name": "sku", "variant": "declaration", "kind": 1024, @@ -4955,7 +4955,7 @@ } }, { - "id": 9476, + "id": 9935, "name": "barcode", "variant": "declaration", "kind": 1024, @@ -4983,7 +4983,7 @@ } }, { - "id": 9477, + "id": 9936, "name": "ean", "variant": "declaration", "kind": 1024, @@ -5011,7 +5011,7 @@ } }, { - "id": 9478, + "id": 9937, "name": "upc", "variant": "declaration", "kind": 1024, @@ -5039,7 +5039,7 @@ } }, { - "id": 9479, + "id": 9938, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -5058,7 +5058,7 @@ } }, { - "id": 9480, + "id": 9939, "name": "manage_inventory", "variant": "declaration", "kind": 1024, @@ -5077,7 +5077,7 @@ } }, { - "id": 9481, + "id": 9940, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -5105,7 +5105,7 @@ } }, { - "id": 9482, + "id": 9941, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -5133,7 +5133,7 @@ } }, { - "id": 9483, + "id": 9942, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -5161,7 +5161,7 @@ } }, { - "id": 9484, + "id": 9943, "name": "material", "variant": "declaration", "kind": 1024, @@ -5189,7 +5189,7 @@ } }, { - "id": 9485, + "id": 9944, "name": "weight", "variant": "declaration", "kind": 1024, @@ -5217,7 +5217,7 @@ } }, { - "id": 9486, + "id": 9945, "name": "length", "variant": "declaration", "kind": 1024, @@ -5245,7 +5245,7 @@ } }, { - "id": 9487, + "id": 9946, "name": "height", "variant": "declaration", "kind": 1024, @@ -5273,7 +5273,7 @@ } }, { - "id": 9488, + "id": 9947, "name": "width", "variant": "declaration", "kind": 1024, @@ -5301,7 +5301,7 @@ } }, { - "id": 9489, + "id": 9948, "name": "options", "variant": "declaration", "kind": 1024, @@ -5321,14 +5321,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9727, + "target": 10187, "name": "ProductOptionValueDTO", "package": "@medusajs/types" } } }, { - "id": 9490, + "id": 9949, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5371,7 +5371,7 @@ } }, { - "id": 9491, + "id": 9950, "name": "product", "variant": "declaration", "kind": 1024, @@ -5398,7 +5398,7 @@ }, { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -5406,7 +5406,7 @@ } }, { - "id": 9492, + "id": 9951, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -5434,7 +5434,7 @@ } }, { - "id": 9493, + "id": 9952, "name": "variant_rank", "variant": "declaration", "kind": 1024, @@ -5464,7 +5464,7 @@ } }, { - "id": 9494, + "id": 9953, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5497,7 +5497,7 @@ } }, { - "id": 9495, + "id": 9954, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5530,7 +5530,7 @@ } }, { - "id": 9496, + "id": 9955, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -5567,36 +5567,36 @@ { "title": "Properties", "children": [ - 9473, - 9474, - 9475, - 9476, - 9477, - 9478, - 9479, - 9480, - 9481, - 9482, - 9483, - 9484, - 9485, - 9486, - 9487, - 9488, - 9489, - 9490, - 9491, - 9492, - 9493, - 9494, - 9495, - 9496 + 9932, + 9933, + 9934, + 9935, + 9936, + 9937, + 9938, + 9939, + 9940, + 9941, + 9942, + 9943, + 9944, + 9945, + 9946, + 9947, + 9948, + 9949, + 9950, + 9951, + 9952, + 9953, + 9954, + 9955 ] } ] }, { - "id": 9595, + "id": 10054, "name": "ProductCategoryDTO", "variant": "declaration", "kind": 256, @@ -5611,7 +5611,7 @@ }, "children": [ { - "id": 9596, + "id": 10055, "name": "id", "variant": "declaration", "kind": 1024, @@ -5630,7 +5630,7 @@ } }, { - "id": 9597, + "id": 10056, "name": "name", "variant": "declaration", "kind": 1024, @@ -5649,7 +5649,7 @@ } }, { - "id": 9598, + "id": 10057, "name": "description", "variant": "declaration", "kind": 1024, @@ -5668,7 +5668,7 @@ } }, { - "id": 9599, + "id": 10058, "name": "handle", "variant": "declaration", "kind": 1024, @@ -5687,7 +5687,7 @@ } }, { - "id": 9600, + "id": 10059, "name": "is_active", "variant": "declaration", "kind": 1024, @@ -5706,7 +5706,7 @@ } }, { - "id": 9601, + "id": 10060, "name": "is_internal", "variant": "declaration", "kind": 1024, @@ -5725,7 +5725,7 @@ } }, { - "id": 9602, + "id": 10061, "name": "rank", "variant": "declaration", "kind": 1024, @@ -5744,7 +5744,7 @@ } }, { - "id": 9603, + "id": 10062, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5761,19 +5761,17 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 9604, + "id": 10063, "name": "parent_category", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { @@ -5794,7 +5792,7 @@ }, { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -5802,13 +5800,11 @@ } }, { - "id": 9605, + "id": 10064, "name": "parent_category_id", "variant": "declaration", "kind": 1024, - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { "summary": [ { @@ -5832,7 +5828,7 @@ } }, { - "id": 9606, + "id": 10065, "name": "category_children", "variant": "declaration", "kind": 1024, @@ -5852,14 +5848,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } } }, { - "id": 9607, + "id": 10066, "name": "products", "variant": "declaration", "kind": 1024, @@ -5879,14 +5875,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } } }, { - "id": 9608, + "id": 10067, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5919,7 +5915,7 @@ } }, { - "id": 9609, + "id": 10068, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5950,32 +5946,68 @@ } ] } + }, + { + "id": 10069, + "name": "deleted_at", + "variant": "declaration", + "kind": 1024, + "flags": { + "isOptional": true + }, + "comment": { + "summary": [ + { + "kind": "text", + "text": "When the product category was deleted." + } + ] + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Date" + }, + "name": "Date", + "package": "typescript" + } + ] + } } ], "groups": [ { "title": "Properties", "children": [ - 9596, - 9597, - 9598, - 9599, - 9600, - 9601, - 9602, - 9603, - 9604, - 9605, - 9606, - 9607, - 9608, - 9609 + 10055, + 10056, + 10057, + 10058, + 10059, + 10060, + 10061, + 10062, + 10063, + 10064, + 10065, + 10066, + 10067, + 10068, + 10069 ] } ] }, { - "id": 9622, + "id": 10082, "name": "CreateProductCategoryDTO", "variant": "declaration", "kind": 256, @@ -5990,7 +6022,7 @@ }, "children": [ { - "id": 9623, + "id": 10083, "name": "name", "variant": "declaration", "kind": 1024, @@ -6009,7 +6041,7 @@ } }, { - "id": 9624, + "id": 10084, "name": "description", "variant": "declaration", "kind": 1024, @@ -6030,7 +6062,7 @@ } }, { - "id": 9625, + "id": 10085, "name": "handle", "variant": "declaration", "kind": 1024, @@ -6051,7 +6083,7 @@ } }, { - "id": 9626, + "id": 10086, "name": "is_active", "variant": "declaration", "kind": 1024, @@ -6072,7 +6104,7 @@ } }, { - "id": 9627, + "id": 10087, "name": "is_internal", "variant": "declaration", "kind": 1024, @@ -6093,7 +6125,7 @@ } }, { - "id": 9628, + "id": 10088, "name": "rank", "variant": "declaration", "kind": 1024, @@ -6114,7 +6146,7 @@ } }, { - "id": 9629, + "id": 10089, "name": "parent_category_id", "variant": "declaration", "kind": 1024, @@ -6144,7 +6176,7 @@ } }, { - "id": 9630, + "id": 10090, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6161,7 +6193,7 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } @@ -6171,20 +6203,20 @@ { "title": "Properties", "children": [ - 9623, - 9624, - 9625, - 9626, - 9627, - 9628, - 9629, - 9630 + 10083, + 10084, + 10085, + 10086, + 10087, + 10088, + 10089, + 10090 ] } ] }, { - "id": 9631, + "id": 10091, "name": "UpsertProductCategoryDTO", "variant": "declaration", "kind": 256, @@ -6199,7 +6231,7 @@ }, "children": [ { - "id": 9632, + "id": 10092, "name": "id", "variant": "declaration", "kind": 1024, @@ -6228,7 +6260,7 @@ } }, { - "id": 9633, + "id": 10093, "name": "name", "variant": "declaration", "kind": 1024, @@ -6250,12 +6282,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9642, + "target": 10102, "name": "UpdateProductCategoryDTO.name" } }, { - "id": 9634, + "id": 10094, "name": "description", "variant": "declaration", "kind": 1024, @@ -6277,12 +6309,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9643, + "target": 10103, "name": "UpdateProductCategoryDTO.description" } }, { - "id": 9635, + "id": 10095, "name": "handle", "variant": "declaration", "kind": 1024, @@ -6304,12 +6336,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9644, + "target": 10104, "name": "UpdateProductCategoryDTO.handle" } }, { - "id": 9636, + "id": 10096, "name": "is_active", "variant": "declaration", "kind": 1024, @@ -6331,12 +6363,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9645, + "target": 10105, "name": "UpdateProductCategoryDTO.is_active" } }, { - "id": 9637, + "id": 10097, "name": "is_internal", "variant": "declaration", "kind": 1024, @@ -6358,12 +6390,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9646, + "target": 10106, "name": "UpdateProductCategoryDTO.is_internal" } }, { - "id": 9638, + "id": 10098, "name": "rank", "variant": "declaration", "kind": 1024, @@ -6385,12 +6417,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9647, + "target": 10107, "name": "UpdateProductCategoryDTO.rank" } }, { - "id": 9639, + "id": 10099, "name": "parent_category_id", "variant": "declaration", "kind": 1024, @@ -6421,12 +6453,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9648, + "target": 10108, "name": "UpdateProductCategoryDTO.parent_category_id" } }, { - "id": 9640, + "id": 10100, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6444,13 +6476,13 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 9649, + "target": 10109, "name": "UpdateProductCategoryDTO.metadata" } } @@ -6459,29 +6491,29 @@ { "title": "Properties", "children": [ - 9632, - 9633, - 9634, - 9635, - 9636, - 9637, - 9638, - 9639, - 9640 + 10092, + 10093, + 10094, + 10095, + 10096, + 10097, + 10098, + 10099, + 10100 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9641, + "target": 10101, "name": "UpdateProductCategoryDTO", "package": "@medusajs/types" } ] }, { - "id": 9641, + "id": 10101, "name": "UpdateProductCategoryDTO", "variant": "declaration", "kind": 256, @@ -6496,7 +6528,7 @@ }, "children": [ { - "id": 9642, + "id": 10102, "name": "name", "variant": "declaration", "kind": 1024, @@ -6517,7 +6549,7 @@ } }, { - "id": 9643, + "id": 10103, "name": "description", "variant": "declaration", "kind": 1024, @@ -6538,7 +6570,7 @@ } }, { - "id": 9644, + "id": 10104, "name": "handle", "variant": "declaration", "kind": 1024, @@ -6559,7 +6591,7 @@ } }, { - "id": 9645, + "id": 10105, "name": "is_active", "variant": "declaration", "kind": 1024, @@ -6580,7 +6612,7 @@ } }, { - "id": 9646, + "id": 10106, "name": "is_internal", "variant": "declaration", "kind": 1024, @@ -6601,7 +6633,7 @@ } }, { - "id": 9647, + "id": 10107, "name": "rank", "variant": "declaration", "kind": 1024, @@ -6622,7 +6654,7 @@ } }, { - "id": 9648, + "id": 10108, "name": "parent_category_id", "variant": "declaration", "kind": 1024, @@ -6652,7 +6684,7 @@ } }, { - "id": 9649, + "id": 10109, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6669,7 +6701,7 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } @@ -6679,27 +6711,27 @@ { "title": "Properties", "children": [ - 9642, - 9643, - 9644, - 9645, - 9646, - 9647, - 9648, - 9649 + 10102, + 10103, + 10104, + 10105, + 10106, + 10107, + 10108, + 10109 ] } ], "extendedBy": [ { "type": "reference", - "target": 9631, + "target": 10091, "name": "UpsertProductCategoryDTO" } ] }, { - "id": 9401, + "id": 9860, "name": "ProductTagDTO", "variant": "declaration", "kind": 256, @@ -6714,7 +6746,7 @@ }, "children": [ { - "id": 9402, + "id": 9861, "name": "id", "variant": "declaration", "kind": 1024, @@ -6733,7 +6765,7 @@ } }, { - "id": 9403, + "id": 9862, "name": "value", "variant": "declaration", "kind": 1024, @@ -6752,7 +6784,7 @@ } }, { - "id": 9404, + "id": 9863, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6769,13 +6801,13 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 9405, + "id": 9864, "name": "products", "variant": "declaration", "kind": 1024, @@ -6797,7 +6829,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -6808,16 +6840,16 @@ { "title": "Properties", "children": [ - 9402, - 9403, - 9404, - 9405 + 9861, + 9862, + 9863, + 9864 ] } ] }, { - "id": 9561, + "id": 10020, "name": "ProductCollectionDTO", "variant": "declaration", "kind": 256, @@ -6832,7 +6864,7 @@ }, "children": [ { - "id": 9562, + "id": 10021, "name": "id", "variant": "declaration", "kind": 1024, @@ -6851,7 +6883,7 @@ } }, { - "id": 9563, + "id": 10022, "name": "title", "variant": "declaration", "kind": 1024, @@ -6870,7 +6902,7 @@ } }, { - "id": 9564, + "id": 10023, "name": "handle", "variant": "declaration", "kind": 1024, @@ -6889,7 +6921,7 @@ } }, { - "id": 9565, + "id": 10024, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6906,13 +6938,13 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 9566, + "id": 10025, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6945,7 +6977,7 @@ } }, { - "id": 9567, + "id": 10026, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6978,7 +7010,7 @@ } }, { - "id": 9568, + "id": 10027, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -7013,7 +7045,7 @@ } }, { - "id": 9569, + "id": 10028, "name": "products", "variant": "declaration", "kind": 1024, @@ -7035,7 +7067,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -7046,20 +7078,20 @@ { "title": "Properties", "children": [ - 9562, - 9563, - 9564, - 9565, - 9566, - 9567, - 9568, - 9569 + 10021, + 10022, + 10023, + 10024, + 10025, + 10026, + 10027, + 10028 ] } ] }, { - "id": 9419, + "id": 9878, "name": "ProductTypeDTO", "variant": "declaration", "kind": 256, @@ -7074,7 +7106,7 @@ }, "children": [ { - "id": 9420, + "id": 9879, "name": "id", "variant": "declaration", "kind": 1024, @@ -7093,7 +7125,7 @@ } }, { - "id": 9421, + "id": 9880, "name": "value", "variant": "declaration", "kind": 1024, @@ -7112,7 +7144,7 @@ } }, { - "id": 9422, + "id": 9881, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -7129,13 +7161,13 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 9423, + "id": 9882, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -7168,7 +7200,7 @@ } }, { - "id": 9424, + "id": 9883, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -7201,7 +7233,7 @@ } }, { - "id": 9425, + "id": 9884, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -7240,18 +7272,18 @@ { "title": "Properties", "children": [ - 9420, - 9421, - 9422, - 9423, - 9424, - 9425 + 9879, + 9880, + 9881, + 9882, + 9883, + 9884 ] } ] }, { - "id": 9442, + "id": 9901, "name": "ProductOptionDTO", "variant": "declaration", "kind": 256, @@ -7266,7 +7298,7 @@ }, "children": [ { - "id": 9443, + "id": 9902, "name": "id", "variant": "declaration", "kind": 1024, @@ -7285,7 +7317,7 @@ } }, { - "id": 9444, + "id": 9903, "name": "title", "variant": "declaration", "kind": 1024, @@ -7304,7 +7336,7 @@ } }, { - "id": 9445, + "id": 9904, "name": "product", "variant": "declaration", "kind": 1024, @@ -7331,7 +7363,7 @@ }, { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -7339,7 +7371,7 @@ } }, { - "id": 9446, + "id": 9905, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -7369,7 +7401,7 @@ } }, { - "id": 9447, + "id": 9906, "name": "values", "variant": "declaration", "kind": 1024, @@ -7389,14 +7421,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9727, + "target": 10187, "name": "ProductOptionValueDTO", "package": "@medusajs/types" } } }, { - "id": 9448, + "id": 9907, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -7413,13 +7445,13 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 9449, + "id": 9908, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -7452,7 +7484,7 @@ } }, { - "id": 9450, + "id": 9909, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -7485,7 +7517,7 @@ } }, { - "id": 9451, + "id": 9910, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -7524,21 +7556,21 @@ { "title": "Properties", "children": [ - 9443, - 9444, - 9445, - 9446, - 9447, - 9448, - 9449, - 9450, - 9451 + 9902, + 9903, + 9904, + 9905, + 9906, + 9907, + 9908, + 9909, + 9910 ] } ] }, { - "id": 9675, + "id": 10135, "name": "ProductImageDTO", "variant": "declaration", "kind": 256, @@ -7553,7 +7585,7 @@ }, "children": [ { - "id": 9676, + "id": 10136, "name": "id", "variant": "declaration", "kind": 1024, @@ -7572,7 +7604,7 @@ } }, { - "id": 9677, + "id": 10137, "name": "url", "variant": "declaration", "kind": 1024, @@ -7591,7 +7623,7 @@ } }, { - "id": 9678, + "id": 10138, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -7608,13 +7640,13 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 9679, + "id": 10139, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -7647,7 +7679,7 @@ } }, { - "id": 9680, + "id": 10140, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -7680,7 +7712,7 @@ } }, { - "id": 9681, + "id": 10141, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -7719,18 +7751,18 @@ { "title": "Properties", "children": [ - 9676, - 9677, - 9678, - 9679, - 9680, - 9681 + 10136, + 10137, + 10138, + 10139, + 10140, + 10141 ] } ] }, { - "id": 9727, + "id": 10187, "name": "ProductOptionValueDTO", "variant": "declaration", "kind": 256, @@ -7745,7 +7777,7 @@ }, "children": [ { - "id": 9728, + "id": 10188, "name": "id", "variant": "declaration", "kind": 1024, @@ -7764,7 +7796,7 @@ } }, { - "id": 9729, + "id": 10189, "name": "value", "variant": "declaration", "kind": 1024, @@ -7783,7 +7815,7 @@ } }, { - "id": 9730, + "id": 10190, "name": "option", "variant": "declaration", "kind": 1024, @@ -7815,7 +7847,7 @@ }, { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } @@ -7823,7 +7855,7 @@ } }, { - "id": 9731, + "id": 10191, "name": "option_id", "variant": "declaration", "kind": 1024, @@ -7853,7 +7885,7 @@ } }, { - "id": 9732, + "id": 10192, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -7870,13 +7902,13 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 9733, + "id": 10193, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -7909,7 +7941,7 @@ } }, { - "id": 9734, + "id": 10194, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -7942,7 +7974,7 @@ } }, { - "id": 9735, + "id": 10195, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -7981,20 +8013,20 @@ { "title": "Properties", "children": [ - 9728, - 9729, - 9730, - 9731, - 9732, - 9733, - 9734, - 9735 + 10188, + 10189, + 10190, + 10191, + 10192, + 10193, + 10194, + 10195 ] } ] }, { - "id": 9289, + "id": 9748, "name": "FilterableProductProps", "variant": "declaration", "kind": 256, @@ -8009,7 +8041,7 @@ }, "children": [ { - "id": 9316, + "id": 9775, "name": "$and", "variant": "declaration", "kind": 1024, @@ -8032,17 +8064,17 @@ "types": [ { "type": "reference", - "target": 9289, + "target": 9748, "name": "FilterableProductProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9289, + "target": 9748, "name": "FilterableProductProps", "package": "@medusajs/types" } @@ -8055,12 +8087,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9698, + "target": 10158, "name": "BaseFilterable.$and" } }, { - "id": 9317, + "id": 9776, "name": "$or", "variant": "declaration", "kind": 1024, @@ -8083,17 +8115,17 @@ "types": [ { "type": "reference", - "target": 9289, + "target": 9748, "name": "FilterableProductProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9289, + "target": 9748, "name": "FilterableProductProps", "package": "@medusajs/types" } @@ -8106,12 +8138,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9699, + "target": 10159, "name": "BaseFilterable.$or" } }, { - "id": 9290, + "id": 9749, "name": "q", "variant": "declaration", "kind": 1024, @@ -8132,7 +8164,7 @@ } }, { - "id": 9291, + "id": 9750, "name": "status", "variant": "declaration", "kind": 1024, @@ -8152,7 +8184,7 @@ "types": [ { "type": "reference", - "target": 9674, + "target": 10134, "name": "ProductStatus", "package": "@medusajs/types" }, @@ -8160,7 +8192,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9674, + "target": 10134, "name": "ProductStatus", "package": "@medusajs/types" } @@ -8169,7 +8201,7 @@ } }, { - "id": 9292, + "id": 9751, "name": "title", "variant": "declaration", "kind": 1024, @@ -8202,7 +8234,7 @@ } }, { - "id": 9293, + "id": 9752, "name": "handle", "variant": "declaration", "kind": 1024, @@ -8235,7 +8267,7 @@ } }, { - "id": 9294, + "id": 9753, "name": "id", "variant": "declaration", "kind": 1024, @@ -8268,7 +8300,7 @@ } }, { - "id": 9295, + "id": 9754, "name": "is_giftcard", "variant": "declaration", "kind": 1024, @@ -8289,7 +8321,7 @@ } }, { - "id": 9296, + "id": 9755, "name": "tags", "variant": "declaration", "kind": 1024, @@ -8307,14 +8339,14 @@ "type": { "type": "reflection", "declaration": { - "id": 9297, + "id": 9756, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9298, + "id": 9757, "name": "value", "variant": "declaration", "kind": 1024, @@ -8342,7 +8374,7 @@ { "title": "Properties", "children": [ - 9298 + 9757 ] } ] @@ -8350,7 +8382,7 @@ } }, { - "id": 9299, + "id": 9758, "name": "variants", "variant": "declaration", "kind": 1024, @@ -8368,14 +8400,14 @@ "type": { "type": "reflection", "declaration": { - "id": 9300, + "id": 9759, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9301, + "id": 9760, "name": "options", "variant": "declaration", "kind": 1024, @@ -8383,14 +8415,14 @@ "type": { "type": "reflection", "declaration": { - "id": 9302, + "id": 9761, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9303, + "id": 9762, "name": "value", "variant": "declaration", "kind": 1024, @@ -8401,7 +8433,7 @@ } }, { - "id": 9304, + "id": 9763, "name": "option_id", "variant": "declaration", "kind": 1024, @@ -8416,8 +8448,8 @@ { "title": "Properties", "children": [ - 9303, - 9304 + 9762, + 9763 ] } ] @@ -8429,7 +8461,7 @@ { "title": "Properties", "children": [ - 9301 + 9760 ] } ] @@ -8437,7 +8469,7 @@ } }, { - "id": 9305, + "id": 9764, "name": "type_id", "variant": "declaration", "kind": 1024, @@ -8470,7 +8502,7 @@ } }, { - "id": 9306, + "id": 9765, "name": "category_id", "variant": "declaration", "kind": 1024, @@ -8501,7 +8533,7 @@ }, { "type": "reference", - "target": 9701, + "target": 10161, "typeArguments": [ { "type": "intrinsic", @@ -8515,7 +8547,7 @@ } }, { - "id": 9307, + "id": 9766, "name": "categories", "variant": "declaration", "kind": 1024, @@ -8536,21 +8568,21 @@ { "type": "reflection", "declaration": { - "id": 9308, + "id": 9767, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9309, + "id": 9768, "name": "id", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 9701, + "target": 10161, "typeArguments": [ { "type": "intrinsic", @@ -8566,7 +8598,7 @@ { "title": "Properties", "children": [ - 9309 + 9768 ] } ] @@ -8575,21 +8607,21 @@ { "type": "reflection", "declaration": { - "id": 9310, + "id": 9769, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 9311, + "id": 9770, "name": "id", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 9701, + "target": 10161, "typeArguments": [ { "type": "array", @@ -8608,7 +8640,7 @@ { "title": "Properties", "children": [ - 9311 + 9770 ] } ] @@ -8618,7 +8650,7 @@ } }, { - "id": 9312, + "id": 9771, "name": "collection_id", "variant": "declaration", "kind": 1024, @@ -8649,7 +8681,7 @@ }, { "type": "reference", - "target": 9701, + "target": 10161, "typeArguments": [ { "type": "intrinsic", @@ -8663,7 +8695,7 @@ } }, { - "id": 9313, + "id": 9772, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -8680,7 +8712,7 @@ }, "type": { "type": "reference", - "target": 9701, + "target": 10161, "typeArguments": [ { "type": "intrinsic", @@ -8692,7 +8724,7 @@ } }, { - "id": 9314, + "id": 9773, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -8709,7 +8741,7 @@ }, "type": { "type": "reference", - "target": 9701, + "target": 10161, "typeArguments": [ { "type": "intrinsic", @@ -8721,7 +8753,7 @@ } }, { - "id": 9315, + "id": 9774, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -8738,7 +8770,7 @@ }, "type": { "type": "reference", - "target": 9701, + "target": 10161, "typeArguments": [ { "type": "intrinsic", @@ -8754,34 +8786,34 @@ { "title": "Properties", "children": [ - 9316, - 9317, - 9290, - 9291, - 9292, - 9293, - 9294, - 9295, - 9296, - 9299, - 9305, - 9306, - 9307, - 9312, - 9313, - 9314, - 9315 + 9775, + 9776, + 9749, + 9750, + 9751, + 9752, + 9753, + 9754, + 9755, + 9758, + 9764, + 9765, + 9766, + 9771, + 9772, + 9773, + 9774 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9289, + "target": 9748, "name": "FilterableProductProps", "package": "@medusajs/types" } @@ -8792,7 +8824,7 @@ ] }, { - "id": 9406, + "id": 9865, "name": "FilterableProductTagProps", "variant": "declaration", "kind": 256, @@ -8807,7 +8839,7 @@ }, "children": [ { - "id": 9410, + "id": 9869, "name": "$and", "variant": "declaration", "kind": 1024, @@ -8830,17 +8862,17 @@ "types": [ { "type": "reference", - "target": 9406, + "target": 9865, "name": "FilterableProductTagProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9406, + "target": 9865, "name": "FilterableProductTagProps", "package": "@medusajs/types" } @@ -8853,12 +8885,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9698, + "target": 10158, "name": "BaseFilterable.$and" } }, { - "id": 9411, + "id": 9870, "name": "$or", "variant": "declaration", "kind": 1024, @@ -8881,17 +8913,17 @@ "types": [ { "type": "reference", - "target": 9406, + "target": 9865, "name": "FilterableProductTagProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9406, + "target": 9865, "name": "FilterableProductTagProps", "package": "@medusajs/types" } @@ -8904,12 +8936,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9699, + "target": 10159, "name": "BaseFilterable.$or" } }, { - "id": 9407, + "id": 9866, "name": "q", "variant": "declaration", "kind": 1024, @@ -8930,7 +8962,7 @@ } }, { - "id": 9408, + "id": 9867, "name": "id", "variant": "declaration", "kind": 1024, @@ -8963,7 +8995,7 @@ } }, { - "id": 9409, + "id": 9868, "name": "value", "variant": "declaration", "kind": 1024, @@ -9000,22 +9032,22 @@ { "title": "Properties", "children": [ - 9410, - 9411, - 9407, - 9408, - 9409 + 9869, + 9870, + 9866, + 9867, + 9868 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9406, + "target": 9865, "name": "FilterableProductTagProps", "package": "@medusajs/types" } @@ -9026,7 +9058,7 @@ ] }, { - "id": 9426, + "id": 9885, "name": "FilterableProductTypeProps", "variant": "declaration", "kind": 256, @@ -9041,7 +9073,7 @@ }, "children": [ { - "id": 9430, + "id": 9889, "name": "$and", "variant": "declaration", "kind": 1024, @@ -9064,17 +9096,17 @@ "types": [ { "type": "reference", - "target": 9426, + "target": 9885, "name": "FilterableProductTypeProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9426, + "target": 9885, "name": "FilterableProductTypeProps", "package": "@medusajs/types" } @@ -9087,12 +9119,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9698, + "target": 10158, "name": "BaseFilterable.$and" } }, { - "id": 9431, + "id": 9890, "name": "$or", "variant": "declaration", "kind": 1024, @@ -9115,17 +9147,17 @@ "types": [ { "type": "reference", - "target": 9426, + "target": 9885, "name": "FilterableProductTypeProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9426, + "target": 9885, "name": "FilterableProductTypeProps", "package": "@medusajs/types" } @@ -9138,12 +9170,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9699, + "target": 10159, "name": "BaseFilterable.$or" } }, { - "id": 9427, + "id": 9886, "name": "q", "variant": "declaration", "kind": 1024, @@ -9164,7 +9196,7 @@ } }, { - "id": 9428, + "id": 9887, "name": "id", "variant": "declaration", "kind": 1024, @@ -9197,7 +9229,7 @@ } }, { - "id": 9429, + "id": 9888, "name": "value", "variant": "declaration", "kind": 1024, @@ -9222,22 +9254,22 @@ { "title": "Properties", "children": [ - 9430, - 9431, - 9427, - 9428, - 9429 + 9889, + 9890, + 9886, + 9887, + 9888 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9426, + "target": 9885, "name": "FilterableProductTypeProps", "package": "@medusajs/types" } @@ -9248,7 +9280,7 @@ ] }, { - "id": 9452, + "id": 9911, "name": "FilterableProductOptionProps", "variant": "declaration", "kind": 256, @@ -9263,7 +9295,7 @@ }, "children": [ { - "id": 9457, + "id": 9916, "name": "$and", "variant": "declaration", "kind": 1024, @@ -9286,17 +9318,17 @@ "types": [ { "type": "reference", - "target": 9452, + "target": 9911, "name": "FilterableProductOptionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9452, + "target": 9911, "name": "FilterableProductOptionProps", "package": "@medusajs/types" } @@ -9309,12 +9341,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9698, + "target": 10158, "name": "BaseFilterable.$and" } }, { - "id": 9458, + "id": 9917, "name": "$or", "variant": "declaration", "kind": 1024, @@ -9337,17 +9369,17 @@ "types": [ { "type": "reference", - "target": 9452, + "target": 9911, "name": "FilterableProductOptionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9452, + "target": 9911, "name": "FilterableProductOptionProps", "package": "@medusajs/types" } @@ -9360,12 +9392,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9699, + "target": 10159, "name": "BaseFilterable.$or" } }, { - "id": 9453, + "id": 9912, "name": "q", "variant": "declaration", "kind": 1024, @@ -9386,7 +9418,7 @@ } }, { - "id": 9454, + "id": 9913, "name": "id", "variant": "declaration", "kind": 1024, @@ -9419,7 +9451,7 @@ } }, { - "id": 9455, + "id": 9914, "name": "title", "variant": "declaration", "kind": 1024, @@ -9452,7 +9484,7 @@ } }, { - "id": 9456, + "id": 9915, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -9489,23 +9521,23 @@ { "title": "Properties", "children": [ - 9457, - 9458, - 9453, - 9454, - 9455, - 9456 + 9916, + 9917, + 9912, + 9913, + 9914, + 9915 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9452, + "target": 9911, "name": "FilterableProductOptionProps", "package": "@medusajs/types" } @@ -9516,7 +9548,7 @@ ] }, { - "id": 9570, + "id": 10029, "name": "FilterableProductCollectionProps", "variant": "declaration", "kind": 256, @@ -9531,7 +9563,7 @@ }, "children": [ { - "id": 9575, + "id": 10034, "name": "$and", "variant": "declaration", "kind": 1024, @@ -9554,17 +9586,17 @@ "types": [ { "type": "reference", - "target": 9570, + "target": 10029, "name": "FilterableProductCollectionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9570, + "target": 10029, "name": "FilterableProductCollectionProps", "package": "@medusajs/types" } @@ -9577,12 +9609,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9698, + "target": 10158, "name": "BaseFilterable.$and" } }, { - "id": 9576, + "id": 10035, "name": "$or", "variant": "declaration", "kind": 1024, @@ -9605,17 +9637,17 @@ "types": [ { "type": "reference", - "target": 9570, + "target": 10029, "name": "FilterableProductCollectionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9570, + "target": 10029, "name": "FilterableProductCollectionProps", "package": "@medusajs/types" } @@ -9628,12 +9660,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9699, + "target": 10159, "name": "BaseFilterable.$or" } }, { - "id": 9571, + "id": 10030, "name": "q", "variant": "declaration", "kind": 1024, @@ -9654,7 +9686,7 @@ } }, { - "id": 9572, + "id": 10031, "name": "id", "variant": "declaration", "kind": 1024, @@ -9687,7 +9719,7 @@ } }, { - "id": 9573, + "id": 10032, "name": "handle", "variant": "declaration", "kind": 1024, @@ -9720,7 +9752,7 @@ } }, { - "id": 9574, + "id": 10033, "name": "title", "variant": "declaration", "kind": 1024, @@ -9757,23 +9789,23 @@ { "title": "Properties", "children": [ - 9575, - 9576, - 9571, - 9572, - 9573, - 9574 + 10034, + 10035, + 10030, + 10031, + 10032, + 10033 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9570, + "target": 10029, "name": "FilterableProductCollectionProps", "package": "@medusajs/types" } @@ -9784,7 +9816,7 @@ ] }, { - "id": 9497, + "id": 9956, "name": "FilterableProductVariantProps", "variant": "declaration", "kind": 256, @@ -9799,7 +9831,7 @@ }, "children": [ { - "id": 9503, + "id": 9962, "name": "$and", "variant": "declaration", "kind": 1024, @@ -9822,17 +9854,17 @@ "types": [ { "type": "reference", - "target": 9497, + "target": 9956, "name": "FilterableProductVariantProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9497, + "target": 9956, "name": "FilterableProductVariantProps", "package": "@medusajs/types" } @@ -9845,12 +9877,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9698, + "target": 10158, "name": "BaseFilterable.$and" } }, { - "id": 9504, + "id": 9963, "name": "$or", "variant": "declaration", "kind": 1024, @@ -9873,17 +9905,17 @@ "types": [ { "type": "reference", - "target": 9497, + "target": 9956, "name": "FilterableProductVariantProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9497, + "target": 9956, "name": "FilterableProductVariantProps", "package": "@medusajs/types" } @@ -9896,12 +9928,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9699, + "target": 10159, "name": "BaseFilterable.$or" } }, { - "id": 9498, + "id": 9957, "name": "q", "variant": "declaration", "kind": 1024, @@ -9922,7 +9954,7 @@ } }, { - "id": 9499, + "id": 9958, "name": "id", "variant": "declaration", "kind": 1024, @@ -9955,7 +9987,7 @@ } }, { - "id": 9500, + "id": 9959, "name": "sku", "variant": "declaration", "kind": 1024, @@ -9988,7 +10020,7 @@ } }, { - "id": 9501, + "id": 9960, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -10021,7 +10053,7 @@ } }, { - "id": 9502, + "id": 9961, "name": "options", "variant": "declaration", "kind": 1024, @@ -10061,24 +10093,24 @@ { "title": "Properties", "children": [ - 9503, - 9504, - 9498, - 9499, - 9500, - 9501, - 9502 + 9962, + 9963, + 9957, + 9958, + 9959, + 9960, + 9961 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9497, + "target": 9956, "name": "FilterableProductVariantProps", "package": "@medusajs/types" } @@ -10089,7 +10121,7 @@ ] }, { - "id": 9610, + "id": 10070, "name": "FilterableProductCategoryProps", "variant": "declaration", "kind": 256, @@ -10104,7 +10136,7 @@ }, "children": [ { - "id": 9620, + "id": 10080, "name": "$and", "variant": "declaration", "kind": 1024, @@ -10127,17 +10159,17 @@ "types": [ { "type": "reference", - "target": 9610, + "target": 10070, "name": "FilterableProductCategoryProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9610, + "target": 10070, "name": "FilterableProductCategoryProps", "package": "@medusajs/types" } @@ -10150,12 +10182,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9698, + "target": 10158, "name": "BaseFilterable.$and" } }, { - "id": 9621, + "id": 10081, "name": "$or", "variant": "declaration", "kind": 1024, @@ -10178,17 +10210,17 @@ "types": [ { "type": "reference", - "target": 9610, + "target": 10070, "name": "FilterableProductCategoryProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9610, + "target": 10070, "name": "FilterableProductCategoryProps", "package": "@medusajs/types" } @@ -10201,12 +10233,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9699, + "target": 10159, "name": "BaseFilterable.$or" } }, { - "id": 9611, + "id": 10071, "name": "q", "variant": "declaration", "kind": 1024, @@ -10227,7 +10259,7 @@ } }, { - "id": 9612, + "id": 10072, "name": "id", "variant": "declaration", "kind": 1024, @@ -10260,7 +10292,7 @@ } }, { - "id": 9613, + "id": 10073, "name": "name", "variant": "declaration", "kind": 1024, @@ -10293,7 +10325,7 @@ } }, { - "id": 9614, + "id": 10074, "name": "parent_category_id", "variant": "declaration", "kind": 1024, @@ -10330,7 +10362,7 @@ } }, { - "id": 9615, + "id": 10075, "name": "handle", "variant": "declaration", "kind": 1024, @@ -10363,7 +10395,7 @@ } }, { - "id": 9616, + "id": 10076, "name": "is_active", "variant": "declaration", "kind": 1024, @@ -10384,7 +10416,7 @@ } }, { - "id": 9617, + "id": 10077, "name": "is_internal", "variant": "declaration", "kind": 1024, @@ -10405,7 +10437,7 @@ } }, { - "id": 9618, + "id": 10078, "name": "include_descendants_tree", "variant": "declaration", "kind": 1024, @@ -10426,7 +10458,7 @@ } }, { - "id": 9619, + "id": 10079, "name": "include_ancestors_tree", "variant": "declaration", "kind": 1024, @@ -10451,28 +10483,28 @@ { "title": "Properties", "children": [ - 9620, - 9621, - 9611, - 9612, - 9613, - 9614, - 9615, - 9616, - 9617, - 9618, - 9619 + 10080, + 10081, + 10071, + 10072, + 10073, + 10074, + 10075, + 10076, + 10077, + 10078, + 10079 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9697, + "target": 10157, "typeArguments": [ { "type": "reference", - "target": 9610, + "target": 10070, "name": "FilterableProductCategoryProps", "package": "@medusajs/types" } @@ -10483,7 +10515,7 @@ ] }, { - "id": 9577, + "id": 10036, "name": "CreateProductCollectionDTO", "variant": "declaration", "kind": 256, @@ -10498,7 +10530,7 @@ }, "children": [ { - "id": 9578, + "id": 10037, "name": "title", "variant": "declaration", "kind": 1024, @@ -10517,7 +10549,7 @@ } }, { - "id": 9579, + "id": 10038, "name": "handle", "variant": "declaration", "kind": 1024, @@ -10538,7 +10570,7 @@ } }, { - "id": 9580, + "id": 10039, "name": "product_ids", "variant": "declaration", "kind": 1024, @@ -10562,7 +10594,7 @@ } }, { - "id": 9581, + "id": 10040, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -10579,7 +10611,7 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } @@ -10589,16 +10621,16 @@ { "title": "Properties", "children": [ - 9578, - 9579, - 9580, - 9581 + 10037, + 10038, + 10039, + 10040 ] } ] }, { - "id": 9582, + "id": 10041, "name": "UpsertProductCollectionDTO", "variant": "declaration", "kind": 256, @@ -10613,7 +10645,7 @@ }, "children": [ { - "id": 9583, + "id": 10042, "name": "id", "variant": "declaration", "kind": 1024, @@ -10642,7 +10674,7 @@ } }, { - "id": 9584, + "id": 10043, "name": "value", "variant": "declaration", "kind": 1024, @@ -10664,12 +10696,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9590, + "target": 10049, "name": "UpdateProductCollectionDTO.value" } }, { - "id": 9585, + "id": 10044, "name": "title", "variant": "declaration", "kind": 1024, @@ -10691,12 +10723,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9591, + "target": 10050, "name": "UpdateProductCollectionDTO.title" } }, { - "id": 9586, + "id": 10045, "name": "handle", "variant": "declaration", "kind": 1024, @@ -10718,12 +10750,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9592, + "target": 10051, "name": "UpdateProductCollectionDTO.handle" } }, { - "id": 9587, + "id": 10046, "name": "product_ids", "variant": "declaration", "kind": 1024, @@ -10748,12 +10780,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9593, + "target": 10052, "name": "UpdateProductCollectionDTO.product_ids" } }, { - "id": 9588, + "id": 10047, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -10771,13 +10803,13 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 9594, + "target": 10053, "name": "UpdateProductCollectionDTO.metadata" } } @@ -10786,26 +10818,26 @@ { "title": "Properties", "children": [ - 9583, - 9584, - 9585, - 9586, - 9587, - 9588 + 10042, + 10043, + 10044, + 10045, + 10046, + 10047 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9589, + "target": 10048, "name": "UpdateProductCollectionDTO", "package": "@medusajs/types" } ] }, { - "id": 9589, + "id": 10048, "name": "UpdateProductCollectionDTO", "variant": "declaration", "kind": 256, @@ -10828,7 +10860,7 @@ }, "children": [ { - "id": 9590, + "id": 10049, "name": "value", "variant": "declaration", "kind": 1024, @@ -10849,7 +10881,7 @@ } }, { - "id": 9591, + "id": 10050, "name": "title", "variant": "declaration", "kind": 1024, @@ -10870,7 +10902,7 @@ } }, { - "id": 9592, + "id": 10051, "name": "handle", "variant": "declaration", "kind": 1024, @@ -10891,7 +10923,7 @@ } }, { - "id": 9593, + "id": 10052, "name": "product_ids", "variant": "declaration", "kind": 1024, @@ -10915,7 +10947,7 @@ } }, { - "id": 9594, + "id": 10053, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -10932,7 +10964,7 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } @@ -10942,24 +10974,24 @@ { "title": "Properties", "children": [ - 9590, - 9591, - 9592, - 9593, - 9594 + 10049, + 10050, + 10051, + 10052, + 10053 ] } ], "extendedBy": [ { "type": "reference", - "target": 9582, + "target": 10041, "name": "UpsertProductCollectionDTO" } ] }, { - "id": 9432, + "id": 9891, "name": "CreateProductTypeDTO", "variant": "declaration", "kind": 256, @@ -10974,7 +11006,7 @@ }, "children": [ { - "id": 9433, + "id": 9892, "name": "value", "variant": "declaration", "kind": 1024, @@ -10993,7 +11025,7 @@ } }, { - "id": 9434, + "id": 9893, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -11010,7 +11042,7 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } @@ -11020,14 +11052,14 @@ { "title": "Properties", "children": [ - 9433, - 9434 + 9892, + 9893 ] } ] }, { - "id": 9435, + "id": 9894, "name": "UpsertProductTypeDTO", "variant": "declaration", "kind": 256, @@ -11042,7 +11074,7 @@ }, "children": [ { - "id": 9436, + "id": 9895, "name": "id", "variant": "declaration", "kind": 1024, @@ -11071,7 +11103,7 @@ } }, { - "id": 9437, + "id": 9896, "name": "value", "variant": "declaration", "kind": 1024, @@ -11093,12 +11125,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9440, + "target": 9899, "name": "UpdateProductTypeDTO.value" } }, { - "id": 9438, + "id": 9897, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -11116,13 +11148,13 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 9441, + "target": 9900, "name": "UpdateProductTypeDTO.metadata" } } @@ -11131,23 +11163,23 @@ { "title": "Properties", "children": [ - 9436, - 9437, - 9438 + 9895, + 9896, + 9897 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9439, + "target": 9898, "name": "UpdateProductTypeDTO", "package": "@medusajs/types" } ] }, { - "id": 9439, + "id": 9898, "name": "UpdateProductTypeDTO", "variant": "declaration", "kind": 256, @@ -11170,7 +11202,7 @@ }, "children": [ { - "id": 9440, + "id": 9899, "name": "value", "variant": "declaration", "kind": 1024, @@ -11191,7 +11223,7 @@ } }, { - "id": 9441, + "id": 9900, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -11208,7 +11240,7 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } @@ -11218,21 +11250,21 @@ { "title": "Properties", "children": [ - 9440, - 9441 + 9899, + 9900 ] } ], "extendedBy": [ { "type": "reference", - "target": 9435, + "target": 9894, "name": "UpsertProductTypeDTO" } ] }, { - "id": 9723, + "id": 10183, "name": "UpsertProductImageDTO", "variant": "declaration", "kind": 256, @@ -11247,7 +11279,7 @@ }, "children": [ { - "id": 9724, + "id": 10184, "name": "id", "variant": "declaration", "kind": 1024, @@ -11276,7 +11308,7 @@ } }, { - "id": 9725, + "id": 10185, "name": "url", "variant": "declaration", "kind": 1024, @@ -11298,12 +11330,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9784, + "target": 10244, "name": "UpdateProductImageDTO.url" } }, { - "id": 9726, + "id": 10186, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -11321,13 +11353,13 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 9785, + "target": 10245, "name": "UpdateProductImageDTO.metadata" } } @@ -11336,23 +11368,23 @@ { "title": "Properties", "children": [ - 9724, - 9725, - 9726 + 10184, + 10185, + 10186 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9783, + "target": 10243, "name": "UpdateProductImageDTO", "package": "@medusajs/types" } ] }, { - "id": 9783, + "id": 10243, "name": "UpdateProductImageDTO", "variant": "declaration", "kind": 256, @@ -11375,7 +11407,7 @@ }, "children": [ { - "id": 9784, + "id": 10244, "name": "url", "variant": "declaration", "kind": 1024, @@ -11396,7 +11428,7 @@ } }, { - "id": 9785, + "id": 10245, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -11413,7 +11445,7 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } @@ -11423,21 +11455,21 @@ { "title": "Properties", "children": [ - 9784, - 9785 + 10244, + 10245 ] } ], "extendedBy": [ { "type": "reference", - "target": 9723, + "target": 10183, "name": "UpsertProductImageDTO" } ] }, { - "id": 9412, + "id": 9871, "name": "CreateProductTagDTO", "variant": "declaration", "kind": 256, @@ -11452,7 +11484,7 @@ }, "children": [ { - "id": 9413, + "id": 9872, "name": "value", "variant": "declaration", "kind": 1024, @@ -11475,13 +11507,13 @@ { "title": "Properties", "children": [ - 9413 + 9872 ] } ] }, { - "id": 9414, + "id": 9873, "name": "UpsertProductTagDTO", "variant": "declaration", "kind": 256, @@ -11496,7 +11528,7 @@ }, "children": [ { - "id": 9415, + "id": 9874, "name": "id", "variant": "declaration", "kind": 1024, @@ -11525,7 +11557,7 @@ } }, { - "id": 9416, + "id": 9875, "name": "value", "variant": "declaration", "kind": 1024, @@ -11547,7 +11579,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 9418, + "target": 9877, "name": "UpdateProductTagDTO.value" } } @@ -11556,22 +11588,22 @@ { "title": "Properties", "children": [ - 9415, - 9416 + 9874, + 9875 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9417, + "target": 9876, "name": "UpdateProductTagDTO", "package": "@medusajs/types" } ] }, { - "id": 9417, + "id": 9876, "name": "UpdateProductTagDTO", "variant": "declaration", "kind": 256, @@ -11594,7 +11626,7 @@ }, "children": [ { - "id": 9418, + "id": 9877, "name": "value", "variant": "declaration", "kind": 1024, @@ -11619,20 +11651,20 @@ { "title": "Properties", "children": [ - 9418 + 9877 ] } ], "extendedBy": [ { "type": "reference", - "target": 9414, + "target": 9873, "name": "UpsertProductTagDTO" } ] }, { - "id": 9459, + "id": 9918, "name": "CreateProductOptionDTO", "variant": "declaration", "kind": 256, @@ -11647,7 +11679,7 @@ }, "children": [ { - "id": 9460, + "id": 9919, "name": "title", "variant": "declaration", "kind": 1024, @@ -11666,7 +11698,7 @@ } }, { - "id": 9461, + "id": 9920, "name": "values", "variant": "declaration", "kind": 1024, @@ -11688,7 +11720,7 @@ } }, { - "id": 9462, + "id": 9921, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -11713,15 +11745,15 @@ { "title": "Properties", "children": [ - 9460, - 9461, - 9462 + 9919, + 9920, + 9921 ] } ] }, { - "id": 9463, + "id": 9922, "name": "UpsertProductOptionDTO", "variant": "declaration", "kind": 256, @@ -11736,7 +11768,7 @@ }, "children": [ { - "id": 9464, + "id": 9923, "name": "id", "variant": "declaration", "kind": 1024, @@ -11773,7 +11805,7 @@ } }, { - "id": 9465, + "id": 9924, "name": "title", "variant": "declaration", "kind": 1024, @@ -11795,12 +11827,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9469, + "target": 9928, "name": "UpdateProductOptionDTO.title" } }, { - "id": 9466, + "id": 9925, "name": "values", "variant": "declaration", "kind": 1024, @@ -11825,12 +11857,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9470, + "target": 9929, "name": "UpdateProductOptionDTO.values" } }, { - "id": 9467, + "id": 9926, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -11852,7 +11884,7 @@ }, "inheritedFrom": { "type": "reference", - "target": 9471, + "target": 9930, "name": "UpdateProductOptionDTO.product_id" } } @@ -11861,31 +11893,31 @@ { "title": "Properties", "children": [ - 9464, - 9465, - 9466, - 9467 + 9923, + 9924, + 9925, + 9926 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9468, + "target": 9927, "name": "UpdateProductOptionDTO", "package": "@medusajs/types" } ] }, { - "id": 9468, + "id": 9927, "name": "UpdateProductOptionDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 9469, + "id": 9928, "name": "title", "variant": "declaration", "kind": 1024, @@ -11906,7 +11938,7 @@ } }, { - "id": 9470, + "id": 9929, "name": "values", "variant": "declaration", "kind": 1024, @@ -11930,7 +11962,7 @@ } }, { - "id": 9471, + "id": 9930, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -11955,22 +11987,22 @@ { "title": "Properties", "children": [ - 9469, - 9470, - 9471 + 9928, + 9929, + 9930 ] } ], "extendedBy": [ { "type": "reference", - "target": 9463, + "target": 9922, "name": "UpsertProductOptionDTO" } ] }, { - "id": 9505, + "id": 9964, "name": "CreateProductVariantDTO", "variant": "declaration", "kind": 256, @@ -11985,7 +12017,7 @@ }, "children": [ { - "id": 9506, + "id": 9965, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -12006,7 +12038,7 @@ } }, { - "id": 9507, + "id": 9966, "name": "title", "variant": "declaration", "kind": 1024, @@ -12025,7 +12057,7 @@ } }, { - "id": 9508, + "id": 9967, "name": "sku", "variant": "declaration", "kind": 1024, @@ -12046,7 +12078,7 @@ } }, { - "id": 9509, + "id": 9968, "name": "barcode", "variant": "declaration", "kind": 1024, @@ -12067,7 +12099,7 @@ } }, { - "id": 9510, + "id": 9969, "name": "ean", "variant": "declaration", "kind": 1024, @@ -12088,7 +12120,7 @@ } }, { - "id": 9511, + "id": 9970, "name": "upc", "variant": "declaration", "kind": 1024, @@ -12109,7 +12141,7 @@ } }, { - "id": 9512, + "id": 9971, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -12130,7 +12162,7 @@ } }, { - "id": 9513, + "id": 9972, "name": "manage_inventory", "variant": "declaration", "kind": 1024, @@ -12151,7 +12183,7 @@ } }, { - "id": 9514, + "id": 9973, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -12172,7 +12204,7 @@ } }, { - "id": 9515, + "id": 9974, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -12193,7 +12225,7 @@ } }, { - "id": 9516, + "id": 9975, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -12214,7 +12246,7 @@ } }, { - "id": 9517, + "id": 9976, "name": "material", "variant": "declaration", "kind": 1024, @@ -12235,7 +12267,7 @@ } }, { - "id": 9518, + "id": 9977, "name": "weight", "variant": "declaration", "kind": 1024, @@ -12256,7 +12288,7 @@ } }, { - "id": 9519, + "id": 9978, "name": "length", "variant": "declaration", "kind": 1024, @@ -12277,7 +12309,7 @@ } }, { - "id": 9520, + "id": 9979, "name": "height", "variant": "declaration", "kind": 1024, @@ -12298,7 +12330,7 @@ } }, { - "id": 9521, + "id": 9980, "name": "width", "variant": "declaration", "kind": 1024, @@ -12319,7 +12351,7 @@ } }, { - "id": 9522, + "id": 9981, "name": "options", "variant": "declaration", "kind": 1024, @@ -12366,7 +12398,7 @@ } }, { - "id": 9523, + "id": 9982, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -12383,7 +12415,7 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } @@ -12393,30 +12425,30 @@ { "title": "Properties", "children": [ - 9506, - 9507, - 9508, - 9509, - 9510, - 9511, - 9512, - 9513, - 9514, - 9515, - 9516, - 9517, - 9518, - 9519, - 9520, - 9521, - 9522, - 9523 + 9965, + 9966, + 9967, + 9968, + 9969, + 9970, + 9971, + 9972, + 9973, + 9974, + 9975, + 9976, + 9977, + 9978, + 9979, + 9980, + 9981, + 9982 ] } ] }, { - "id": 9524, + "id": 9983, "name": "UpsertProductVariantDTO", "variant": "declaration", "kind": 256, @@ -12431,7 +12463,7 @@ }, "children": [ { - "id": 9525, + "id": 9984, "name": "id", "variant": "declaration", "kind": 1024, @@ -12452,7 +12484,7 @@ } }, { - "id": 9526, + "id": 9985, "name": "title", "variant": "declaration", "kind": 1024, @@ -12474,12 +12506,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9544, + "target": 10003, "name": "UpdateProductVariantDTO.title" } }, { - "id": 9527, + "id": 9986, "name": "sku", "variant": "declaration", "kind": 1024, @@ -12510,12 +12542,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9545, + "target": 10004, "name": "UpdateProductVariantDTO.sku" } }, { - "id": 9528, + "id": 9987, "name": "barcode", "variant": "declaration", "kind": 1024, @@ -12546,12 +12578,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9546, + "target": 10005, "name": "UpdateProductVariantDTO.barcode" } }, { - "id": 9529, + "id": 9988, "name": "ean", "variant": "declaration", "kind": 1024, @@ -12582,12 +12614,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9547, + "target": 10006, "name": "UpdateProductVariantDTO.ean" } }, { - "id": 9530, + "id": 9989, "name": "upc", "variant": "declaration", "kind": 1024, @@ -12618,12 +12650,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9548, + "target": 10007, "name": "UpdateProductVariantDTO.upc" } }, { - "id": 9531, + "id": 9990, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -12645,12 +12677,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9549, + "target": 10008, "name": "UpdateProductVariantDTO.allow_backorder" } }, { - "id": 9532, + "id": 9991, "name": "manage_inventory", "variant": "declaration", "kind": 1024, @@ -12672,12 +12704,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9550, + "target": 10009, "name": "UpdateProductVariantDTO.manage_inventory" } }, { - "id": 9533, + "id": 9992, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -12708,12 +12740,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9551, + "target": 10010, "name": "UpdateProductVariantDTO.hs_code" } }, { - "id": 9534, + "id": 9993, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -12744,12 +12776,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9552, + "target": 10011, "name": "UpdateProductVariantDTO.origin_country" } }, { - "id": 9535, + "id": 9994, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -12780,12 +12812,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9553, + "target": 10012, "name": "UpdateProductVariantDTO.mid_code" } }, { - "id": 9536, + "id": 9995, "name": "material", "variant": "declaration", "kind": 1024, @@ -12816,12 +12848,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9554, + "target": 10013, "name": "UpdateProductVariantDTO.material" } }, { - "id": 9537, + "id": 9996, "name": "weight", "variant": "declaration", "kind": 1024, @@ -12852,12 +12884,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9555, + "target": 10014, "name": "UpdateProductVariantDTO.weight" } }, { - "id": 9538, + "id": 9997, "name": "length", "variant": "declaration", "kind": 1024, @@ -12888,12 +12920,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9556, + "target": 10015, "name": "UpdateProductVariantDTO.length" } }, { - "id": 9539, + "id": 9998, "name": "height", "variant": "declaration", "kind": 1024, @@ -12924,12 +12956,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9557, + "target": 10016, "name": "UpdateProductVariantDTO.height" } }, { - "id": 9540, + "id": 9999, "name": "width", "variant": "declaration", "kind": 1024, @@ -12960,12 +12992,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9558, + "target": 10017, "name": "UpdateProductVariantDTO.width" } }, { - "id": 9541, + "id": 10000, "name": "options", "variant": "declaration", "kind": 1024, @@ -13002,12 +13034,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9559, + "target": 10018, "name": "UpdateProductVariantDTO.options" } }, { - "id": 9542, + "id": 10001, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -13025,13 +13057,13 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 9560, + "target": 10019, "name": "UpdateProductVariantDTO.metadata" } } @@ -13040,38 +13072,38 @@ { "title": "Properties", "children": [ - 9525, - 9526, - 9527, - 9528, - 9529, - 9530, - 9531, - 9532, - 9533, - 9534, - 9535, - 9536, - 9537, - 9538, - 9539, - 9540, - 9541, - 9542 + 9984, + 9985, + 9986, + 9987, + 9988, + 9989, + 9990, + 9991, + 9992, + 9993, + 9994, + 9995, + 9996, + 9997, + 9998, + 9999, + 10000, + 10001 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9543, + "target": 10002, "name": "UpdateProductVariantDTO", "package": "@medusajs/types" } ] }, { - "id": 9543, + "id": 10002, "name": "UpdateProductVariantDTO", "variant": "declaration", "kind": 256, @@ -13094,7 +13126,7 @@ }, "children": [ { - "id": 9544, + "id": 10003, "name": "title", "variant": "declaration", "kind": 1024, @@ -13115,7 +13147,7 @@ } }, { - "id": 9545, + "id": 10004, "name": "sku", "variant": "declaration", "kind": 1024, @@ -13145,7 +13177,7 @@ } }, { - "id": 9546, + "id": 10005, "name": "barcode", "variant": "declaration", "kind": 1024, @@ -13175,7 +13207,7 @@ } }, { - "id": 9547, + "id": 10006, "name": "ean", "variant": "declaration", "kind": 1024, @@ -13205,7 +13237,7 @@ } }, { - "id": 9548, + "id": 10007, "name": "upc", "variant": "declaration", "kind": 1024, @@ -13235,7 +13267,7 @@ } }, { - "id": 9549, + "id": 10008, "name": "allow_backorder", "variant": "declaration", "kind": 1024, @@ -13256,7 +13288,7 @@ } }, { - "id": 9550, + "id": 10009, "name": "manage_inventory", "variant": "declaration", "kind": 1024, @@ -13277,7 +13309,7 @@ } }, { - "id": 9551, + "id": 10010, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -13307,7 +13339,7 @@ } }, { - "id": 9552, + "id": 10011, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -13337,7 +13369,7 @@ } }, { - "id": 9553, + "id": 10012, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -13367,7 +13399,7 @@ } }, { - "id": 9554, + "id": 10013, "name": "material", "variant": "declaration", "kind": 1024, @@ -13397,7 +13429,7 @@ } }, { - "id": 9555, + "id": 10014, "name": "weight", "variant": "declaration", "kind": 1024, @@ -13427,7 +13459,7 @@ } }, { - "id": 9556, + "id": 10015, "name": "length", "variant": "declaration", "kind": 1024, @@ -13457,7 +13489,7 @@ } }, { - "id": 9557, + "id": 10016, "name": "height", "variant": "declaration", "kind": 1024, @@ -13487,7 +13519,7 @@ } }, { - "id": 9558, + "id": 10017, "name": "width", "variant": "declaration", "kind": 1024, @@ -13517,7 +13549,7 @@ } }, { - "id": 9559, + "id": 10018, "name": "options", "variant": "declaration", "kind": 1024, @@ -13553,7 +13585,7 @@ } }, { - "id": 9560, + "id": 10019, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -13570,7 +13602,7 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } @@ -13580,36 +13612,36 @@ { "title": "Properties", "children": [ - 9544, - 9545, - 9546, - 9547, - 9548, - 9549, - 9550, - 9551, - 9552, - 9553, - 9554, - 9555, - 9556, - 9557, - 9558, - 9559, - 9560 + 10003, + 10004, + 10005, + 10006, + 10007, + 10008, + 10009, + 10010, + 10011, + 10012, + 10013, + 10014, + 10015, + 10016, + 10017, + 10018, + 10019 ] } ], "extendedBy": [ { "type": "reference", - "target": 9524, + "target": 9983, "name": "UpsertProductVariantDTO" } ] }, { - "id": 9318, + "id": 9777, "name": "CreateProductDTO", "variant": "declaration", "kind": 256, @@ -13624,7 +13656,7 @@ }, "children": [ { - "id": 9319, + "id": 9778, "name": "id", "variant": "declaration", "kind": 1024, @@ -13645,7 +13677,7 @@ } }, { - "id": 9320, + "id": 9779, "name": "title", "variant": "declaration", "kind": 1024, @@ -13664,7 +13696,7 @@ } }, { - "id": 9321, + "id": 9780, "name": "subtitle", "variant": "declaration", "kind": 1024, @@ -13685,7 +13717,7 @@ } }, { - "id": 9322, + "id": 9781, "name": "description", "variant": "declaration", "kind": 1024, @@ -13706,7 +13738,7 @@ } }, { - "id": 9323, + "id": 9782, "name": "is_giftcard", "variant": "declaration", "kind": 1024, @@ -13727,7 +13759,7 @@ } }, { - "id": 9324, + "id": 9783, "name": "discountable", "variant": "declaration", "kind": 1024, @@ -13748,7 +13780,7 @@ } }, { - "id": 9325, + "id": 9784, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -13769,7 +13801,7 @@ } }, { - "id": 9326, + "id": 9785, "name": "handle", "variant": "declaration", "kind": 1024, @@ -13806,7 +13838,7 @@ } }, { - "id": 9327, + "id": 9786, "name": "status", "variant": "declaration", "kind": 1024, @@ -13823,13 +13855,13 @@ }, "type": { "type": "reference", - "target": 9674, + "target": 10134, "name": "ProductStatus", "package": "@medusajs/types" } }, { - "id": 9328, + "id": 9787, "name": "images", "variant": "declaration", "kind": 1024, @@ -13848,14 +13880,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9723, + "target": 10183, "name": "UpsertProductImageDTO", "package": "@medusajs/types" } } }, { - "id": 9329, + "id": 9788, "name": "type_id", "variant": "declaration", "kind": 1024, @@ -13876,7 +13908,7 @@ } }, { - "id": 9330, + "id": 9789, "name": "collection_id", "variant": "declaration", "kind": 1024, @@ -13897,7 +13929,7 @@ } }, { - "id": 9331, + "id": 9790, "name": "tags", "variant": "declaration", "kind": 1024, @@ -13916,14 +13948,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9414, + "target": 9873, "name": "UpsertProductTagDTO", "package": "@medusajs/types" } } }, { - "id": 9332, + "id": 9791, "name": "category_ids", "variant": "declaration", "kind": 1024, @@ -13947,7 +13979,7 @@ } }, { - "id": 9333, + "id": 9792, "name": "options", "variant": "declaration", "kind": 1024, @@ -13966,14 +13998,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9459, + "target": 9918, "name": "CreateProductOptionDTO", "package": "@medusajs/types" } } }, { - "id": 9334, + "id": 9793, "name": "variants", "variant": "declaration", "kind": 1024, @@ -13992,14 +14024,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9505, + "target": 9964, "name": "CreateProductVariantDTO", "package": "@medusajs/types" } } }, { - "id": 9335, + "id": 9794, "name": "width", "variant": "declaration", "kind": 1024, @@ -14020,7 +14052,7 @@ } }, { - "id": 9336, + "id": 9795, "name": "height", "variant": "declaration", "kind": 1024, @@ -14041,7 +14073,7 @@ } }, { - "id": 9337, + "id": 9796, "name": "length", "variant": "declaration", "kind": 1024, @@ -14062,7 +14094,7 @@ } }, { - "id": 9338, + "id": 9797, "name": "weight", "variant": "declaration", "kind": 1024, @@ -14083,7 +14115,7 @@ } }, { - "id": 9339, + "id": 9798, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -14104,7 +14136,7 @@ } }, { - "id": 9340, + "id": 9799, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -14125,7 +14157,7 @@ } }, { - "id": 9341, + "id": 9800, "name": "material", "variant": "declaration", "kind": 1024, @@ -14146,7 +14178,7 @@ } }, { - "id": 9342, + "id": 9801, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -14167,7 +14199,7 @@ } }, { - "id": 9343, + "id": 9802, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -14184,7 +14216,7 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } @@ -14194,37 +14226,37 @@ { "title": "Properties", "children": [ - 9319, - 9320, - 9321, - 9322, - 9323, - 9324, - 9325, - 9326, - 9327, - 9328, - 9329, - 9330, - 9331, - 9332, - 9333, - 9334, - 9335, - 9336, - 9337, - 9338, - 9339, - 9340, - 9341, - 9342, - 9343 + 9778, + 9779, + 9780, + 9781, + 9782, + 9783, + 9784, + 9785, + 9786, + 9787, + 9788, + 9789, + 9790, + 9791, + 9792, + 9793, + 9794, + 9795, + 9796, + 9797, + 9798, + 9799, + 9800, + 9801, + 9802 ] } ] }, { - "id": 9344, + "id": 9803, "name": "UpsertProductDTO", "variant": "declaration", "kind": 256, @@ -14239,7 +14271,7 @@ }, "children": [ { - "id": 9345, + "id": 9804, "name": "id", "variant": "declaration", "kind": 1024, @@ -14268,7 +14300,7 @@ } }, { - "id": 9346, + "id": 9805, "name": "title", "variant": "declaration", "kind": 1024, @@ -14290,12 +14322,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9371, + "target": 9830, "name": "UpdateProductDTO.title" } }, { - "id": 9347, + "id": 9806, "name": "subtitle", "variant": "declaration", "kind": 1024, @@ -14326,12 +14358,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9372, + "target": 9831, "name": "UpdateProductDTO.subtitle" } }, { - "id": 9348, + "id": 9807, "name": "description", "variant": "declaration", "kind": 1024, @@ -14362,12 +14394,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9373, + "target": 9832, "name": "UpdateProductDTO.description" } }, { - "id": 9349, + "id": 9808, "name": "is_giftcard", "variant": "declaration", "kind": 1024, @@ -14389,12 +14421,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9374, + "target": 9833, "name": "UpdateProductDTO.is_giftcard" } }, { - "id": 9350, + "id": 9809, "name": "discountable", "variant": "declaration", "kind": 1024, @@ -14416,12 +14448,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9375, + "target": 9834, "name": "UpdateProductDTO.discountable" } }, { - "id": 9351, + "id": 9810, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -14452,12 +14484,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9376, + "target": 9835, "name": "UpdateProductDTO.thumbnail" } }, { - "id": 9352, + "id": 9811, "name": "handle", "variant": "declaration", "kind": 1024, @@ -14495,12 +14527,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9377, + "target": 9836, "name": "UpdateProductDTO.handle" } }, { - "id": 9353, + "id": 9812, "name": "status", "variant": "declaration", "kind": 1024, @@ -14518,18 +14550,18 @@ }, "type": { "type": "reference", - "target": 9674, + "target": 10134, "name": "ProductStatus", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 9378, + "target": 9837, "name": "UpdateProductDTO.status" } }, { - "id": 9354, + "id": 9813, "name": "images", "variant": "declaration", "kind": 1024, @@ -14549,19 +14581,19 @@ "type": "array", "elementType": { "type": "reference", - "target": 9723, + "target": 10183, "name": "UpsertProductImageDTO", "package": "@medusajs/types" } }, "inheritedFrom": { "type": "reference", - "target": 9379, + "target": 9838, "name": "UpdateProductDTO.images" } }, { - "id": 9355, + "id": 9814, "name": "type_id", "variant": "declaration", "kind": 1024, @@ -14592,12 +14624,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9380, + "target": 9839, "name": "UpdateProductDTO.type_id" } }, { - "id": 9356, + "id": 9815, "name": "collection_id", "variant": "declaration", "kind": 1024, @@ -14628,12 +14660,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9381, + "target": 9840, "name": "UpdateProductDTO.collection_id" } }, { - "id": 9357, + "id": 9816, "name": "tags", "variant": "declaration", "kind": 1024, @@ -14653,19 +14685,19 @@ "type": "array", "elementType": { "type": "reference", - "target": 9414, + "target": 9873, "name": "UpsertProductTagDTO", "package": "@medusajs/types" } }, "inheritedFrom": { "type": "reference", - "target": 9382, + "target": 9841, "name": "UpdateProductDTO.tags" } }, { - "id": 9358, + "id": 9817, "name": "category_ids", "variant": "declaration", "kind": 1024, @@ -14690,12 +14722,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9383, + "target": 9842, "name": "UpdateProductDTO.category_ids" } }, { - "id": 9359, + "id": 9818, "name": "options", "variant": "declaration", "kind": 1024, @@ -14715,19 +14747,19 @@ "type": "array", "elementType": { "type": "reference", - "target": 9463, + "target": 9922, "name": "UpsertProductOptionDTO", "package": "@medusajs/types" } }, "inheritedFrom": { "type": "reference", - "target": 9384, + "target": 9843, "name": "UpdateProductDTO.options" } }, { - "id": 9360, + "id": 9819, "name": "variants", "variant": "declaration", "kind": 1024, @@ -14747,19 +14779,19 @@ "type": "array", "elementType": { "type": "reference", - "target": 9524, + "target": 9983, "name": "UpsertProductVariantDTO", "package": "@medusajs/types" } }, "inheritedFrom": { "type": "reference", - "target": 9385, + "target": 9844, "name": "UpdateProductDTO.variants" } }, { - "id": 9361, + "id": 9820, "name": "width", "variant": "declaration", "kind": 1024, @@ -14790,12 +14822,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9386, + "target": 9845, "name": "UpdateProductDTO.width" } }, { - "id": 9362, + "id": 9821, "name": "height", "variant": "declaration", "kind": 1024, @@ -14826,12 +14858,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9387, + "target": 9846, "name": "UpdateProductDTO.height" } }, { - "id": 9363, + "id": 9822, "name": "length", "variant": "declaration", "kind": 1024, @@ -14862,12 +14894,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9388, + "target": 9847, "name": "UpdateProductDTO.length" } }, { - "id": 9364, + "id": 9823, "name": "weight", "variant": "declaration", "kind": 1024, @@ -14898,12 +14930,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9389, + "target": 9848, "name": "UpdateProductDTO.weight" } }, { - "id": 9365, + "id": 9824, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -14934,12 +14966,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9390, + "target": 9849, "name": "UpdateProductDTO.origin_country" } }, { - "id": 9366, + "id": 9825, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -14970,12 +15002,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9391, + "target": 9850, "name": "UpdateProductDTO.hs_code" } }, { - "id": 9367, + "id": 9826, "name": "material", "variant": "declaration", "kind": 1024, @@ -15006,12 +15038,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9392, + "target": 9851, "name": "UpdateProductDTO.material" } }, { - "id": 9368, + "id": 9827, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -15042,12 +15074,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 9393, + "target": 9852, "name": "UpdateProductDTO.mid_code" } }, { - "id": 9369, + "id": 9828, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -15065,13 +15097,13 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" }, "inheritedFrom": { "type": "reference", - "target": 9394, + "target": 9853, "name": "UpdateProductDTO.metadata" } } @@ -15080,45 +15112,45 @@ { "title": "Properties", "children": [ - 9345, - 9346, - 9347, - 9348, - 9349, - 9350, - 9351, - 9352, - 9353, - 9354, - 9355, - 9356, - 9357, - 9358, - 9359, - 9360, - 9361, - 9362, - 9363, - 9364, - 9365, - 9366, - 9367, - 9368, - 9369 + 9804, + 9805, + 9806, + 9807, + 9808, + 9809, + 9810, + 9811, + 9812, + 9813, + 9814, + 9815, + 9816, + 9817, + 9818, + 9819, + 9820, + 9821, + 9822, + 9823, + 9824, + 9825, + 9826, + 9827, + 9828 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9370, + "target": 9829, "name": "UpdateProductDTO", "package": "@medusajs/types" } ] }, { - "id": 9370, + "id": 9829, "name": "UpdateProductDTO", "variant": "declaration", "kind": 256, @@ -15133,7 +15165,7 @@ }, "children": [ { - "id": 9371, + "id": 9830, "name": "title", "variant": "declaration", "kind": 1024, @@ -15154,7 +15186,7 @@ } }, { - "id": 9372, + "id": 9831, "name": "subtitle", "variant": "declaration", "kind": 1024, @@ -15184,7 +15216,7 @@ } }, { - "id": 9373, + "id": 9832, "name": "description", "variant": "declaration", "kind": 1024, @@ -15214,7 +15246,7 @@ } }, { - "id": 9374, + "id": 9833, "name": "is_giftcard", "variant": "declaration", "kind": 1024, @@ -15235,7 +15267,7 @@ } }, { - "id": 9375, + "id": 9834, "name": "discountable", "variant": "declaration", "kind": 1024, @@ -15256,7 +15288,7 @@ } }, { - "id": 9376, + "id": 9835, "name": "thumbnail", "variant": "declaration", "kind": 1024, @@ -15286,7 +15318,7 @@ } }, { - "id": 9377, + "id": 9836, "name": "handle", "variant": "declaration", "kind": 1024, @@ -15323,7 +15355,7 @@ } }, { - "id": 9378, + "id": 9837, "name": "status", "variant": "declaration", "kind": 1024, @@ -15340,13 +15372,13 @@ }, "type": { "type": "reference", - "target": 9674, + "target": 10134, "name": "ProductStatus", "package": "@medusajs/types" } }, { - "id": 9379, + "id": 9838, "name": "images", "variant": "declaration", "kind": 1024, @@ -15365,14 +15397,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9723, + "target": 10183, "name": "UpsertProductImageDTO", "package": "@medusajs/types" } } }, { - "id": 9380, + "id": 9839, "name": "type_id", "variant": "declaration", "kind": 1024, @@ -15402,7 +15434,7 @@ } }, { - "id": 9381, + "id": 9840, "name": "collection_id", "variant": "declaration", "kind": 1024, @@ -15432,7 +15464,7 @@ } }, { - "id": 9382, + "id": 9841, "name": "tags", "variant": "declaration", "kind": 1024, @@ -15451,14 +15483,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9414, + "target": 9873, "name": "UpsertProductTagDTO", "package": "@medusajs/types" } } }, { - "id": 9383, + "id": 9842, "name": "category_ids", "variant": "declaration", "kind": 1024, @@ -15482,7 +15514,7 @@ } }, { - "id": 9384, + "id": 9843, "name": "options", "variant": "declaration", "kind": 1024, @@ -15501,14 +15533,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9463, + "target": 9922, "name": "UpsertProductOptionDTO", "package": "@medusajs/types" } } }, { - "id": 9385, + "id": 9844, "name": "variants", "variant": "declaration", "kind": 1024, @@ -15527,14 +15559,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9524, + "target": 9983, "name": "UpsertProductVariantDTO", "package": "@medusajs/types" } } }, { - "id": 9386, + "id": 9845, "name": "width", "variant": "declaration", "kind": 1024, @@ -15564,7 +15596,7 @@ } }, { - "id": 9387, + "id": 9846, "name": "height", "variant": "declaration", "kind": 1024, @@ -15594,7 +15626,7 @@ } }, { - "id": 9388, + "id": 9847, "name": "length", "variant": "declaration", "kind": 1024, @@ -15624,7 +15656,7 @@ } }, { - "id": 9389, + "id": 9848, "name": "weight", "variant": "declaration", "kind": 1024, @@ -15654,7 +15686,7 @@ } }, { - "id": 9390, + "id": 9849, "name": "origin_country", "variant": "declaration", "kind": 1024, @@ -15684,7 +15716,7 @@ } }, { - "id": 9391, + "id": 9850, "name": "hs_code", "variant": "declaration", "kind": 1024, @@ -15714,7 +15746,7 @@ } }, { - "id": 9392, + "id": 9851, "name": "material", "variant": "declaration", "kind": 1024, @@ -15744,7 +15776,7 @@ } }, { - "id": 9393, + "id": 9852, "name": "mid_code", "variant": "declaration", "kind": 1024, @@ -15774,7 +15806,7 @@ } }, { - "id": 9394, + "id": 9853, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -15791,7 +15823,7 @@ }, "type": { "type": "reference", - "target": 9682, + "target": 10142, "name": "MetadataType", "package": "@medusajs/types" } @@ -15801,43 +15833,43 @@ { "title": "Properties", "children": [ - 9371, - 9372, - 9373, - 9374, - 9375, - 9376, - 9377, - 9378, - 9379, - 9380, - 9381, - 9382, - 9383, - 9384, - 9385, - 9386, - 9387, - 9388, - 9389, - 9390, - 9391, - 9392, - 9393, - 9394 + 9830, + 9831, + 9832, + 9833, + 9834, + 9835, + 9836, + 9837, + 9838, + 9839, + 9840, + 9841, + 9842, + 9843, + 9844, + 9845, + 9846, + 9847, + 9848, + 9849, + 9850, + 9851, + 9852, + 9853 ] } ], "extendedBy": [ { "type": "reference", - "target": 9344, + "target": 9803, "name": "UpsertProductDTO" } ] }, { - "id": 8826, + "id": 9285, "name": "IProductModuleService", "variant": "declaration", "kind": 256, @@ -15852,14 +15884,14 @@ }, "children": [ { - "id": 8827, + "id": 9286, "name": "retrieveProduct", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8828, + "id": 9287, "name": "retrieveProduct", "variant": "signature", "kind": 4096, @@ -15906,7 +15938,7 @@ }, "parameters": [ { - "id": 8829, + "id": 9288, "name": "productId", "variant": "param", "kind": 32768, @@ -15925,7 +15957,7 @@ } }, { - "id": 8830, + "id": 9289, "name": "config", "variant": "param", "kind": 32768, @@ -15958,11 +15990,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -15972,7 +16004,7 @@ } }, { - "id": 8831, + "id": 9290, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -15989,7 +16021,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -16004,7 +16036,7 @@ "typeArguments": [ { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -16016,14 +16048,14 @@ ] }, { - "id": 8832, + "id": 9291, "name": "listProducts", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8833, + "id": 9292, "name": "listProducts", "variant": "signature", "kind": 4096, @@ -16110,7 +16142,7 @@ }, "parameters": [ { - "id": 8834, + "id": 9293, "name": "filters", "variant": "param", "kind": 32768, @@ -16127,13 +16159,13 @@ }, "type": { "type": "reference", - "target": 9289, + "target": 9748, "name": "FilterableProductProps", "package": "@medusajs/types" } }, { - "id": 8835, + "id": 9294, "name": "config", "variant": "param", "kind": 32768, @@ -16166,11 +16198,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -16180,7 +16212,7 @@ } }, { - "id": 8836, + "id": 9295, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -16197,7 +16229,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -16214,7 +16246,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -16227,14 +16259,14 @@ ] }, { - "id": 8837, + "id": 9296, "name": "listAndCountProducts", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8838, + "id": 9297, "name": "listAndCountProducts", "variant": "signature", "kind": 4096, @@ -16321,7 +16353,7 @@ }, "parameters": [ { - "id": 8839, + "id": 9298, "name": "filters", "variant": "param", "kind": 32768, @@ -16338,13 +16370,13 @@ }, "type": { "type": "reference", - "target": 9289, + "target": 9748, "name": "FilterableProductProps", "package": "@medusajs/types" } }, { - "id": 8840, + "id": 9299, "name": "config", "variant": "param", "kind": 32768, @@ -16377,11 +16409,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -16391,7 +16423,7 @@ } }, { - "id": 8841, + "id": 9300, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -16408,7 +16440,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -16428,7 +16460,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -16447,14 +16479,14 @@ ] }, { - "id": 8842, + "id": 9301, "name": "createProducts", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8843, + "id": 9302, "name": "createProducts", "variant": "signature", "kind": 4096, @@ -16489,7 +16521,7 @@ }, "parameters": [ { - "id": 8844, + "id": 9303, "name": "data", "variant": "param", "kind": 32768, @@ -16506,14 +16538,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9318, + "target": 9777, "name": "CreateProductDTO", "package": "@medusajs/types" } } }, { - "id": 8845, + "id": 9304, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -16530,7 +16562,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -16547,7 +16579,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -16558,7 +16590,7 @@ } }, { - "id": 8846, + "id": 9305, "name": "createProducts", "variant": "signature", "kind": 4096, @@ -16593,7 +16625,7 @@ }, "parameters": [ { - "id": 8847, + "id": 9306, "name": "data", "variant": "param", "kind": 32768, @@ -16608,13 +16640,13 @@ }, "type": { "type": "reference", - "target": 9318, + "target": 9777, "name": "CreateProductDTO", "package": "@medusajs/types" } }, { - "id": 8848, + "id": 9307, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -16631,7 +16663,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -16646,7 +16678,7 @@ "typeArguments": [ { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -16658,14 +16690,14 @@ ] }, { - "id": 8849, + "id": 9308, "name": "upsertProducts", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8850, + "id": 9309, "name": "upsertProducts", "variant": "signature", "kind": 4096, @@ -16700,7 +16732,7 @@ }, "parameters": [ { - "id": 8851, + "id": 9310, "name": "data", "variant": "param", "kind": 32768, @@ -16717,14 +16749,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9344, + "target": 9803, "name": "UpsertProductDTO", "package": "@medusajs/types" } } }, { - "id": 8852, + "id": 9311, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -16741,7 +16773,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -16758,7 +16790,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -16769,7 +16801,7 @@ } }, { - "id": 8853, + "id": 9312, "name": "upsertProducts", "variant": "signature", "kind": 4096, @@ -16804,7 +16836,7 @@ }, "parameters": [ { - "id": 8854, + "id": 9313, "name": "data", "variant": "param", "kind": 32768, @@ -16819,13 +16851,13 @@ }, "type": { "type": "reference", - "target": 9344, + "target": 9803, "name": "UpsertProductDTO", "package": "@medusajs/types" } }, { - "id": 8855, + "id": 9314, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -16842,7 +16874,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -16857,7 +16889,7 @@ "typeArguments": [ { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -16869,14 +16901,14 @@ ] }, { - "id": 8856, + "id": 9315, "name": "updateProducts", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8857, + "id": 9316, "name": "updateProducts", "variant": "signature", "kind": 4096, @@ -16911,7 +16943,7 @@ }, "parameters": [ { - "id": 8858, + "id": 9317, "name": "id", "variant": "param", "kind": 32768, @@ -16930,7 +16962,7 @@ } }, { - "id": 8859, + "id": 9318, "name": "data", "variant": "param", "kind": 32768, @@ -16945,13 +16977,13 @@ }, "type": { "type": "reference", - "target": 9370, + "target": 9829, "name": "UpdateProductDTO", "package": "@medusajs/types" } }, { - "id": 8860, + "id": 9319, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -16968,7 +17000,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -16983,7 +17015,7 @@ "typeArguments": [ { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -16993,7 +17025,7 @@ } }, { - "id": 8861, + "id": 9320, "name": "updateProducts", "variant": "signature", "kind": 4096, @@ -17028,7 +17060,7 @@ }, "parameters": [ { - "id": 8862, + "id": 9321, "name": "selector", "variant": "param", "kind": 32768, @@ -17043,13 +17075,13 @@ }, "type": { "type": "reference", - "target": 9289, + "target": 9748, "name": "FilterableProductProps", "package": "@medusajs/types" } }, { - "id": 8863, + "id": 9322, "name": "data", "variant": "param", "kind": 32768, @@ -17064,13 +17096,13 @@ }, "type": { "type": "reference", - "target": 9370, + "target": 9829, "name": "UpdateProductDTO", "package": "@medusajs/types" } }, { - "id": 8864, + "id": 9323, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -17087,7 +17119,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -17104,7 +17136,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9245, + "target": 9704, "name": "ProductDTO", "package": "@medusajs/types" } @@ -17117,14 +17149,14 @@ ] }, { - "id": 8865, + "id": 9324, "name": "deleteProducts", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8866, + "id": 9325, "name": "deleteProducts", "variant": "signature", "kind": 4096, @@ -17168,7 +17200,7 @@ }, "parameters": [ { - "id": 8867, + "id": 9326, "name": "productIds", "variant": "param", "kind": 32768, @@ -17190,7 +17222,7 @@ } }, { - "id": 8868, + "id": 9327, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -17207,7 +17239,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -17232,14 +17264,14 @@ ] }, { - "id": 8869, + "id": 9328, "name": "softDeleteProducts", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8870, + "id": 9329, "name": "softDeleteProducts", "variant": "signature", "kind": 4096, @@ -17333,7 +17365,7 @@ }, "typeParameters": [ { - "id": 8871, + "id": 9330, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -17350,7 +17382,7 @@ ], "parameters": [ { - "id": 8872, + "id": 9331, "name": "productIds", "variant": "param", "kind": 32768, @@ -17372,7 +17404,7 @@ } }, { - "id": 8873, + "id": 9332, "name": "config", "variant": "param", "kind": 32768, @@ -17405,11 +17437,11 @@ }, "type": { "type": "reference", - "target": 9395, + "target": 9854, "typeArguments": [ { "type": "reference", - "target": 8871, + "target": 9330, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -17420,7 +17452,7 @@ } }, { - "id": 8874, + "id": 9333, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -17437,7 +17469,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -17489,14 +17521,14 @@ ] }, { - "id": 8875, + "id": 9334, "name": "restoreProducts", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8876, + "id": 9335, "name": "restoreProducts", "variant": "signature", "kind": 4096, @@ -17556,7 +17588,7 @@ }, "typeParameters": [ { - "id": 8877, + "id": 9336, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -17573,7 +17605,7 @@ ], "parameters": [ { - "id": 8878, + "id": 9337, "name": "productIds", "variant": "param", "kind": 32768, @@ -17595,7 +17627,7 @@ } }, { - "id": 8879, + "id": 9338, "name": "config", "variant": "param", "kind": 32768, @@ -17628,11 +17660,11 @@ }, "type": { "type": "reference", - "target": 9398, + "target": 9857, "typeArguments": [ { "type": "reference", - "target": 8877, + "target": 9336, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -17643,7 +17675,7 @@ } }, { - "id": 8880, + "id": 9339, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -17660,7 +17692,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -17712,14 +17744,14 @@ ] }, { - "id": 8881, + "id": 9340, "name": "retrieveProductTag", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8882, + "id": 9341, "name": "retrieveProductTag", "variant": "signature", "kind": 4096, @@ -17766,7 +17798,7 @@ }, "parameters": [ { - "id": 8883, + "id": 9342, "name": "tagId", "variant": "param", "kind": 32768, @@ -17785,7 +17817,7 @@ } }, { - "id": 8884, + "id": 9343, "name": "config", "variant": "param", "kind": 32768, @@ -17818,11 +17850,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9401, + "target": 9860, "name": "ProductTagDTO", "package": "@medusajs/types" } @@ -17832,7 +17864,7 @@ } }, { - "id": 8885, + "id": 9344, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -17849,7 +17881,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -17864,7 +17896,7 @@ "typeArguments": [ { "type": "reference", - "target": 9401, + "target": 9860, "name": "ProductTagDTO", "package": "@medusajs/types" } @@ -17876,14 +17908,14 @@ ] }, { - "id": 8886, + "id": 9345, "name": "listProductTags", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8887, + "id": 9346, "name": "listProductTags", "variant": "signature", "kind": 4096, @@ -17970,7 +18002,7 @@ }, "parameters": [ { - "id": 8888, + "id": 9347, "name": "filters", "variant": "param", "kind": 32768, @@ -17987,13 +18019,13 @@ }, "type": { "type": "reference", - "target": 9406, + "target": 9865, "name": "FilterableProductTagProps", "package": "@medusajs/types" } }, { - "id": 8889, + "id": 9348, "name": "config", "variant": "param", "kind": 32768, @@ -18026,11 +18058,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9401, + "target": 9860, "name": "ProductTagDTO", "package": "@medusajs/types" } @@ -18040,7 +18072,7 @@ } }, { - "id": 8890, + "id": 9349, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18057,7 +18089,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -18074,7 +18106,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9401, + "target": 9860, "name": "ProductTagDTO", "package": "@medusajs/types" } @@ -18087,14 +18119,14 @@ ] }, { - "id": 8891, + "id": 9350, "name": "listAndCountProductTags", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8892, + "id": 9351, "name": "listAndCountProductTags", "variant": "signature", "kind": 4096, @@ -18181,7 +18213,7 @@ }, "parameters": [ { - "id": 8893, + "id": 9352, "name": "filters", "variant": "param", "kind": 32768, @@ -18198,13 +18230,13 @@ }, "type": { "type": "reference", - "target": 9406, + "target": 9865, "name": "FilterableProductTagProps", "package": "@medusajs/types" } }, { - "id": 8894, + "id": 9353, "name": "config", "variant": "param", "kind": 32768, @@ -18237,11 +18269,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9401, + "target": 9860, "name": "ProductTagDTO", "package": "@medusajs/types" } @@ -18251,7 +18283,7 @@ } }, { - "id": 8895, + "id": 9354, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18268,7 +18300,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -18288,7 +18320,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9401, + "target": 9860, "name": "ProductTagDTO", "package": "@medusajs/types" } @@ -18307,14 +18339,14 @@ ] }, { - "id": 8896, + "id": 9355, "name": "createProductTags", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8897, + "id": 9356, "name": "createProductTags", "variant": "signature", "kind": 4096, @@ -18349,7 +18381,7 @@ }, "parameters": [ { - "id": 8898, + "id": 9357, "name": "data", "variant": "param", "kind": 32768, @@ -18366,14 +18398,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9412, + "target": 9871, "name": "CreateProductTagDTO", "package": "@medusajs/types" } } }, { - "id": 8899, + "id": 9358, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18390,7 +18422,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -18407,7 +18439,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9401, + "target": 9860, "name": "ProductTagDTO", "package": "@medusajs/types" } @@ -18418,7 +18450,7 @@ } }, { - "id": 8900, + "id": 9359, "name": "createProductTags", "variant": "signature", "kind": 4096, @@ -18453,7 +18485,7 @@ }, "parameters": [ { - "id": 8901, + "id": 9360, "name": "data", "variant": "param", "kind": 32768, @@ -18468,13 +18500,13 @@ }, "type": { "type": "reference", - "target": 9412, + "target": 9871, "name": "CreateProductTagDTO", "package": "@medusajs/types" } }, { - "id": 8902, + "id": 9361, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18491,7 +18523,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -18506,7 +18538,7 @@ "typeArguments": [ { "type": "reference", - "target": 9401, + "target": 9860, "name": "ProductTagDTO", "package": "@medusajs/types" } @@ -18518,14 +18550,14 @@ ] }, { - "id": 8903, + "id": 9362, "name": "upsertProductTags", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8904, + "id": 9363, "name": "upsertProductTags", "variant": "signature", "kind": 4096, @@ -18560,7 +18592,7 @@ }, "parameters": [ { - "id": 8905, + "id": 9364, "name": "data", "variant": "param", "kind": 32768, @@ -18577,14 +18609,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9414, + "target": 9873, "name": "UpsertProductTagDTO", "package": "@medusajs/types" } } }, { - "id": 8906, + "id": 9365, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18601,7 +18633,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -18618,7 +18650,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9401, + "target": 9860, "name": "ProductTagDTO", "package": "@medusajs/types" } @@ -18629,7 +18661,7 @@ } }, { - "id": 8907, + "id": 9366, "name": "upsertProductTags", "variant": "signature", "kind": 4096, @@ -18664,7 +18696,7 @@ }, "parameters": [ { - "id": 8908, + "id": 9367, "name": "data", "variant": "param", "kind": 32768, @@ -18679,13 +18711,13 @@ }, "type": { "type": "reference", - "target": 9414, + "target": 9873, "name": "UpsertProductTagDTO", "package": "@medusajs/types" } }, { - "id": 8909, + "id": 9368, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18702,7 +18734,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -18717,7 +18749,7 @@ "typeArguments": [ { "type": "reference", - "target": 9401, + "target": 9860, "name": "ProductTagDTO", "package": "@medusajs/types" } @@ -18729,14 +18761,14 @@ ] }, { - "id": 8910, + "id": 9369, "name": "updateProductTags", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8911, + "id": 9370, "name": "updateProductTags", "variant": "signature", "kind": 4096, @@ -18771,7 +18803,7 @@ }, "parameters": [ { - "id": 8912, + "id": 9371, "name": "id", "variant": "param", "kind": 32768, @@ -18790,7 +18822,7 @@ } }, { - "id": 8913, + "id": 9372, "name": "data", "variant": "param", "kind": 32768, @@ -18805,13 +18837,13 @@ }, "type": { "type": "reference", - "target": 9417, + "target": 9876, "name": "UpdateProductTagDTO", "package": "@medusajs/types" } }, { - "id": 8914, + "id": 9373, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18828,7 +18860,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -18843,7 +18875,7 @@ "typeArguments": [ { "type": "reference", - "target": 9401, + "target": 9860, "name": "ProductTagDTO", "package": "@medusajs/types" } @@ -18853,7 +18885,7 @@ } }, { - "id": 8915, + "id": 9374, "name": "updateProductTags", "variant": "signature", "kind": 4096, @@ -18888,7 +18920,7 @@ }, "parameters": [ { - "id": 8916, + "id": 9375, "name": "selector", "variant": "param", "kind": 32768, @@ -18903,13 +18935,13 @@ }, "type": { "type": "reference", - "target": 9406, + "target": 9865, "name": "FilterableProductTagProps", "package": "@medusajs/types" } }, { - "id": 8917, + "id": 9376, "name": "data", "variant": "param", "kind": 32768, @@ -18924,13 +18956,13 @@ }, "type": { "type": "reference", - "target": 9417, + "target": 9876, "name": "UpdateProductTagDTO", "package": "@medusajs/types" } }, { - "id": 8918, + "id": 9377, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -18947,7 +18979,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -18964,7 +18996,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9401, + "target": 9860, "name": "ProductTagDTO", "package": "@medusajs/types" } @@ -18977,14 +19009,14 @@ ] }, { - "id": 8919, + "id": 9378, "name": "deleteProductTags", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8920, + "id": 9379, "name": "deleteProductTags", "variant": "signature", "kind": 4096, @@ -19019,7 +19051,7 @@ }, "parameters": [ { - "id": 8921, + "id": 9380, "name": "productTagIds", "variant": "param", "kind": 32768, @@ -19041,7 +19073,7 @@ } }, { - "id": 8922, + "id": 9381, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -19058,7 +19090,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -19083,14 +19115,14 @@ ] }, { - "id": 8923, + "id": 9382, "name": "softDeleteProductTags", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8924, + "id": 9383, "name": "softDeleteProductTags", "variant": "signature", "kind": 4096, @@ -19176,7 +19208,7 @@ }, "typeParameters": [ { - "id": 8925, + "id": 9384, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -19193,7 +19225,7 @@ ], "parameters": [ { - "id": 8926, + "id": 9385, "name": "tagIds", "variant": "param", "kind": 32768, @@ -19215,7 +19247,7 @@ } }, { - "id": 8927, + "id": 9386, "name": "config", "variant": "param", "kind": 32768, @@ -19240,11 +19272,11 @@ }, "type": { "type": "reference", - "target": 9395, + "target": 9854, "typeArguments": [ { "type": "reference", - "target": 8925, + "target": 9384, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -19255,7 +19287,7 @@ } }, { - "id": 8928, + "id": 9387, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -19272,7 +19304,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -19324,14 +19356,14 @@ ] }, { - "id": 8929, + "id": 9388, "name": "restoreProductTags", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8930, + "id": 9389, "name": "restoreProductTags", "variant": "signature", "kind": 4096, @@ -19383,7 +19415,7 @@ }, "typeParameters": [ { - "id": 8931, + "id": 9390, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -19400,7 +19432,7 @@ ], "parameters": [ { - "id": 8932, + "id": 9391, "name": "tagIds", "variant": "param", "kind": 32768, @@ -19422,7 +19454,7 @@ } }, { - "id": 8933, + "id": 9392, "name": "config", "variant": "param", "kind": 32768, @@ -19447,11 +19479,11 @@ }, "type": { "type": "reference", - "target": 9398, + "target": 9857, "typeArguments": [ { "type": "reference", - "target": 8931, + "target": 9390, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -19462,7 +19494,7 @@ } }, { - "id": 8934, + "id": 9393, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -19479,7 +19511,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -19531,14 +19563,14 @@ ] }, { - "id": 8935, + "id": 9394, "name": "retrieveProductType", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8936, + "id": 9395, "name": "retrieveProductType", "variant": "signature", "kind": 4096, @@ -19573,7 +19605,7 @@ }, "parameters": [ { - "id": 8937, + "id": 9396, "name": "typeId", "variant": "param", "kind": 32768, @@ -19592,7 +19624,7 @@ } }, { - "id": 8938, + "id": 9397, "name": "config", "variant": "param", "kind": 32768, @@ -19625,11 +19657,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9419, + "target": 9878, "name": "ProductTypeDTO", "package": "@medusajs/types" } @@ -19639,7 +19671,7 @@ } }, { - "id": 8939, + "id": 9398, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -19656,7 +19688,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -19671,7 +19703,7 @@ "typeArguments": [ { "type": "reference", - "target": 9419, + "target": 9878, "name": "ProductTypeDTO", "package": "@medusajs/types" } @@ -19683,14 +19715,14 @@ ] }, { - "id": 8940, + "id": 9399, "name": "listProductTypes", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8941, + "id": 9400, "name": "listProductTypes", "variant": "signature", "kind": 4096, @@ -19769,7 +19801,7 @@ }, "parameters": [ { - "id": 8942, + "id": 9401, "name": "filters", "variant": "param", "kind": 32768, @@ -19786,13 +19818,13 @@ }, "type": { "type": "reference", - "target": 9426, + "target": 9885, "name": "FilterableProductTypeProps", "package": "@medusajs/types" } }, { - "id": 8943, + "id": 9402, "name": "config", "variant": "param", "kind": 32768, @@ -19825,11 +19857,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9419, + "target": 9878, "name": "ProductTypeDTO", "package": "@medusajs/types" } @@ -19839,7 +19871,7 @@ } }, { - "id": 8944, + "id": 9403, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -19856,7 +19888,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -19873,7 +19905,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9419, + "target": 9878, "name": "ProductTypeDTO", "package": "@medusajs/types" } @@ -19886,14 +19918,14 @@ ] }, { - "id": 8945, + "id": 9404, "name": "listAndCountProductTypes", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8946, + "id": 9405, "name": "listAndCountProductTypes", "variant": "signature", "kind": 4096, @@ -19972,7 +20004,7 @@ }, "parameters": [ { - "id": 8947, + "id": 9406, "name": "filters", "variant": "param", "kind": 32768, @@ -19989,13 +20021,13 @@ }, "type": { "type": "reference", - "target": 9426, + "target": 9885, "name": "FilterableProductTypeProps", "package": "@medusajs/types" } }, { - "id": 8948, + "id": 9407, "name": "config", "variant": "param", "kind": 32768, @@ -20028,11 +20060,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9419, + "target": 9878, "name": "ProductTypeDTO", "package": "@medusajs/types" } @@ -20042,7 +20074,7 @@ } }, { - "id": 8949, + "id": 9408, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20059,7 +20091,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -20079,7 +20111,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9419, + "target": 9878, "name": "ProductTypeDTO", "package": "@medusajs/types" } @@ -20098,14 +20130,14 @@ ] }, { - "id": 8950, + "id": 9409, "name": "createProductTypes", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8951, + "id": 9410, "name": "createProductTypes", "variant": "signature", "kind": 4096, @@ -20140,7 +20172,7 @@ }, "parameters": [ { - "id": 8952, + "id": 9411, "name": "data", "variant": "param", "kind": 32768, @@ -20157,14 +20189,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9432, + "target": 9891, "name": "CreateProductTypeDTO", "package": "@medusajs/types" } } }, { - "id": 8953, + "id": 9412, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20181,7 +20213,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -20198,7 +20230,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9419, + "target": 9878, "name": "ProductTypeDTO", "package": "@medusajs/types" } @@ -20209,7 +20241,7 @@ } }, { - "id": 8954, + "id": 9413, "name": "createProductTypes", "variant": "signature", "kind": 4096, @@ -20244,7 +20276,7 @@ }, "parameters": [ { - "id": 8955, + "id": 9414, "name": "data", "variant": "param", "kind": 32768, @@ -20259,13 +20291,13 @@ }, "type": { "type": "reference", - "target": 9432, + "target": 9891, "name": "CreateProductTypeDTO", "package": "@medusajs/types" } }, { - "id": 8956, + "id": 9415, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20282,7 +20314,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -20297,7 +20329,7 @@ "typeArguments": [ { "type": "reference", - "target": 9419, + "target": 9878, "name": "ProductTypeDTO", "package": "@medusajs/types" } @@ -20309,14 +20341,14 @@ ] }, { - "id": 8957, + "id": 9416, "name": "upsertProductTypes", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8958, + "id": 9417, "name": "upsertProductTypes", "variant": "signature", "kind": 4096, @@ -20351,7 +20383,7 @@ }, "parameters": [ { - "id": 8959, + "id": 9418, "name": "data", "variant": "param", "kind": 32768, @@ -20368,14 +20400,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9435, + "target": 9894, "name": "UpsertProductTypeDTO", "package": "@medusajs/types" } } }, { - "id": 8960, + "id": 9419, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20392,7 +20424,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -20409,7 +20441,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9419, + "target": 9878, "name": "ProductTypeDTO", "package": "@medusajs/types" } @@ -20420,7 +20452,7 @@ } }, { - "id": 8961, + "id": 9420, "name": "upsertProductTypes", "variant": "signature", "kind": 4096, @@ -20455,7 +20487,7 @@ }, "parameters": [ { - "id": 8962, + "id": 9421, "name": "data", "variant": "param", "kind": 32768, @@ -20470,13 +20502,13 @@ }, "type": { "type": "reference", - "target": 9435, + "target": 9894, "name": "UpsertProductTypeDTO", "package": "@medusajs/types" } }, { - "id": 8963, + "id": 9422, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20493,7 +20525,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -20508,7 +20540,7 @@ "typeArguments": [ { "type": "reference", - "target": 9419, + "target": 9878, "name": "ProductTypeDTO", "package": "@medusajs/types" } @@ -20520,14 +20552,14 @@ ] }, { - "id": 8964, + "id": 9423, "name": "updateProductTypes", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8965, + "id": 9424, "name": "updateProductTypes", "variant": "signature", "kind": 4096, @@ -20562,7 +20594,7 @@ }, "parameters": [ { - "id": 8966, + "id": 9425, "name": "id", "variant": "param", "kind": 32768, @@ -20581,7 +20613,7 @@ } }, { - "id": 8967, + "id": 9426, "name": "data", "variant": "param", "kind": 32768, @@ -20596,13 +20628,13 @@ }, "type": { "type": "reference", - "target": 9439, + "target": 9898, "name": "UpdateProductTypeDTO", "package": "@medusajs/types" } }, { - "id": 8968, + "id": 9427, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20619,7 +20651,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -20634,7 +20666,7 @@ "typeArguments": [ { "type": "reference", - "target": 9419, + "target": 9878, "name": "ProductTypeDTO", "package": "@medusajs/types" } @@ -20644,7 +20676,7 @@ } }, { - "id": 8969, + "id": 9428, "name": "updateProductTypes", "variant": "signature", "kind": 4096, @@ -20679,7 +20711,7 @@ }, "parameters": [ { - "id": 8970, + "id": 9429, "name": "selector", "variant": "param", "kind": 32768, @@ -20694,13 +20726,13 @@ }, "type": { "type": "reference", - "target": 9426, + "target": 9885, "name": "FilterableProductTypeProps", "package": "@medusajs/types" } }, { - "id": 8971, + "id": 9430, "name": "data", "variant": "param", "kind": 32768, @@ -20715,13 +20747,13 @@ }, "type": { "type": "reference", - "target": 9439, + "target": 9898, "name": "UpdateProductTypeDTO", "package": "@medusajs/types" } }, { - "id": 8972, + "id": 9431, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20738,7 +20770,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -20755,7 +20787,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9419, + "target": 9878, "name": "ProductTypeDTO", "package": "@medusajs/types" } @@ -20768,14 +20800,14 @@ ] }, { - "id": 8973, + "id": 9432, "name": "deleteProductTypes", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8974, + "id": 9433, "name": "deleteProductTypes", "variant": "signature", "kind": 4096, @@ -20810,7 +20842,7 @@ }, "parameters": [ { - "id": 8975, + "id": 9434, "name": "productTypeIds", "variant": "param", "kind": 32768, @@ -20832,7 +20864,7 @@ } }, { - "id": 8976, + "id": 9435, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -20849,7 +20881,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -20874,14 +20906,14 @@ ] }, { - "id": 8977, + "id": 9436, "name": "softDeleteProductTypes", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8978, + "id": 9437, "name": "softDeleteProductTypes", "variant": "signature", "kind": 4096, @@ -20967,7 +20999,7 @@ }, "typeParameters": [ { - "id": 8979, + "id": 9438, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -20984,7 +21016,7 @@ ], "parameters": [ { - "id": 8980, + "id": 9439, "name": "typeIds", "variant": "param", "kind": 32768, @@ -21006,7 +21038,7 @@ } }, { - "id": 8981, + "id": 9440, "name": "config", "variant": "param", "kind": 32768, @@ -21031,11 +21063,11 @@ }, "type": { "type": "reference", - "target": 9395, + "target": 9854, "typeArguments": [ { "type": "reference", - "target": 8979, + "target": 9438, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -21046,7 +21078,7 @@ } }, { - "id": 8982, + "id": 9441, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -21063,7 +21095,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -21115,14 +21147,14 @@ ] }, { - "id": 8983, + "id": 9442, "name": "restoreProductTypes", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8984, + "id": 9443, "name": "restoreProductTypes", "variant": "signature", "kind": 4096, @@ -21174,7 +21206,7 @@ }, "typeParameters": [ { - "id": 8985, + "id": 9444, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -21191,7 +21223,7 @@ ], "parameters": [ { - "id": 8986, + "id": 9445, "name": "typeIds", "variant": "param", "kind": 32768, @@ -21213,7 +21245,7 @@ } }, { - "id": 8987, + "id": 9446, "name": "config", "variant": "param", "kind": 32768, @@ -21238,11 +21270,11 @@ }, "type": { "type": "reference", - "target": 9398, + "target": 9857, "typeArguments": [ { "type": "reference", - "target": 8985, + "target": 9444, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -21253,7 +21285,7 @@ } }, { - "id": 8988, + "id": 9447, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -21270,7 +21302,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -21322,14 +21354,14 @@ ] }, { - "id": 8989, + "id": 9448, "name": "retrieveProductOption", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8990, + "id": 9449, "name": "retrieveProductOption", "variant": "signature", "kind": 4096, @@ -21376,7 +21408,7 @@ }, "parameters": [ { - "id": 8991, + "id": 9450, "name": "optionId", "variant": "param", "kind": 32768, @@ -21395,7 +21427,7 @@ } }, { - "id": 8992, + "id": 9451, "name": "config", "variant": "param", "kind": 32768, @@ -21428,11 +21460,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } @@ -21442,7 +21474,7 @@ } }, { - "id": 8993, + "id": 9452, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -21459,7 +21491,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -21474,7 +21506,7 @@ "typeArguments": [ { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } @@ -21486,14 +21518,14 @@ ] }, { - "id": 8994, + "id": 9453, "name": "listProductOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 8995, + "id": 9454, "name": "listProductOptions", "variant": "signature", "kind": 4096, @@ -21580,7 +21612,7 @@ }, "parameters": [ { - "id": 8996, + "id": 9455, "name": "filters", "variant": "param", "kind": 32768, @@ -21597,13 +21629,13 @@ }, "type": { "type": "reference", - "target": 9452, + "target": 9911, "name": "FilterableProductOptionProps", "package": "@medusajs/types" } }, { - "id": 8997, + "id": 9456, "name": "config", "variant": "param", "kind": 32768, @@ -21636,11 +21668,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } @@ -21650,7 +21682,7 @@ } }, { - "id": 8998, + "id": 9457, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -21667,7 +21699,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -21684,7 +21716,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } @@ -21697,14 +21729,14 @@ ] }, { - "id": 8999, + "id": 9458, "name": "listAndCountProductOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9000, + "id": 9459, "name": "listAndCountProductOptions", "variant": "signature", "kind": 4096, @@ -21791,7 +21823,7 @@ }, "parameters": [ { - "id": 9001, + "id": 9460, "name": "filters", "variant": "param", "kind": 32768, @@ -21808,13 +21840,13 @@ }, "type": { "type": "reference", - "target": 9452, + "target": 9911, "name": "FilterableProductOptionProps", "package": "@medusajs/types" } }, { - "id": 9002, + "id": 9461, "name": "config", "variant": "param", "kind": 32768, @@ -21847,11 +21879,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } @@ -21861,7 +21893,7 @@ } }, { - "id": 9003, + "id": 9462, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -21878,7 +21910,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -21898,7 +21930,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } @@ -21917,14 +21949,14 @@ ] }, { - "id": 9004, + "id": 9463, "name": "createProductOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9005, + "id": 9464, "name": "createProductOptions", "variant": "signature", "kind": 4096, @@ -21959,7 +21991,7 @@ }, "parameters": [ { - "id": 9006, + "id": 9465, "name": "data", "variant": "param", "kind": 32768, @@ -21976,14 +22008,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9459, + "target": 9918, "name": "CreateProductOptionDTO", "package": "@medusajs/types" } } }, { - "id": 9007, + "id": 9466, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -22000,7 +22032,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -22017,7 +22049,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } @@ -22028,7 +22060,7 @@ } }, { - "id": 9008, + "id": 9467, "name": "createProductOptions", "variant": "signature", "kind": 4096, @@ -22063,7 +22095,7 @@ }, "parameters": [ { - "id": 9009, + "id": 9468, "name": "data", "variant": "param", "kind": 32768, @@ -22078,13 +22110,13 @@ }, "type": { "type": "reference", - "target": 9459, + "target": 9918, "name": "CreateProductOptionDTO", "package": "@medusajs/types" } }, { - "id": 9010, + "id": 9469, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -22101,7 +22133,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -22116,7 +22148,7 @@ "typeArguments": [ { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } @@ -22128,14 +22160,14 @@ ] }, { - "id": 9011, + "id": 9470, "name": "upsertProductOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9012, + "id": 9471, "name": "upsertProductOptions", "variant": "signature", "kind": 4096, @@ -22170,7 +22202,7 @@ }, "parameters": [ { - "id": 9013, + "id": 9472, "name": "data", "variant": "param", "kind": 32768, @@ -22187,14 +22219,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9463, + "target": 9922, "name": "UpsertProductOptionDTO", "package": "@medusajs/types" } } }, { - "id": 9014, + "id": 9473, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -22211,7 +22243,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -22228,7 +22260,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } @@ -22239,7 +22271,7 @@ } }, { - "id": 9015, + "id": 9474, "name": "upsertProductOptions", "variant": "signature", "kind": 4096, @@ -22274,7 +22306,7 @@ }, "parameters": [ { - "id": 9016, + "id": 9475, "name": "data", "variant": "param", "kind": 32768, @@ -22289,13 +22321,13 @@ }, "type": { "type": "reference", - "target": 9463, + "target": 9922, "name": "UpsertProductOptionDTO", "package": "@medusajs/types" } }, { - "id": 9017, + "id": 9476, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -22312,7 +22344,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -22327,7 +22359,7 @@ "typeArguments": [ { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } @@ -22339,14 +22371,14 @@ ] }, { - "id": 9018, + "id": 9477, "name": "updateProductOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9019, + "id": 9478, "name": "updateProductOptions", "variant": "signature", "kind": 4096, @@ -22381,7 +22413,7 @@ }, "parameters": [ { - "id": 9020, + "id": 9479, "name": "id", "variant": "param", "kind": 32768, @@ -22400,7 +22432,7 @@ } }, { - "id": 9021, + "id": 9480, "name": "data", "variant": "param", "kind": 32768, @@ -22415,13 +22447,13 @@ }, "type": { "type": "reference", - "target": 9468, + "target": 9927, "name": "UpdateProductOptionDTO", "package": "@medusajs/types" } }, { - "id": 9022, + "id": 9481, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -22438,7 +22470,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -22453,7 +22485,7 @@ "typeArguments": [ { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } @@ -22463,7 +22495,7 @@ } }, { - "id": 9023, + "id": 9482, "name": "updateProductOptions", "variant": "signature", "kind": 4096, @@ -22498,7 +22530,7 @@ }, "parameters": [ { - "id": 9024, + "id": 9483, "name": "selector", "variant": "param", "kind": 32768, @@ -22513,13 +22545,13 @@ }, "type": { "type": "reference", - "target": 9452, + "target": 9911, "name": "FilterableProductOptionProps", "package": "@medusajs/types" } }, { - "id": 9025, + "id": 9484, "name": "data", "variant": "param", "kind": 32768, @@ -22534,13 +22566,13 @@ }, "type": { "type": "reference", - "target": 9468, + "target": 9927, "name": "UpdateProductOptionDTO", "package": "@medusajs/types" } }, { - "id": 9026, + "id": 9485, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -22557,7 +22589,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -22574,7 +22606,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9442, + "target": 9901, "name": "ProductOptionDTO", "package": "@medusajs/types" } @@ -22587,14 +22619,14 @@ ] }, { - "id": 9027, + "id": 9486, "name": "deleteProductOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9028, + "id": 9487, "name": "deleteProductOptions", "variant": "signature", "kind": 4096, @@ -22629,7 +22661,7 @@ }, "parameters": [ { - "id": 9029, + "id": 9488, "name": "productOptionIds", "variant": "param", "kind": 32768, @@ -22651,7 +22683,7 @@ } }, { - "id": 9030, + "id": 9489, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -22668,7 +22700,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -22693,14 +22725,14 @@ ] }, { - "id": 9031, + "id": 9490, "name": "softDeleteProductOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9032, + "id": 9491, "name": "softDeleteProductOptions", "variant": "signature", "kind": 4096, @@ -22786,7 +22818,7 @@ }, "typeParameters": [ { - "id": 9033, + "id": 9492, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -22803,7 +22835,7 @@ ], "parameters": [ { - "id": 9034, + "id": 9493, "name": "optionIds", "variant": "param", "kind": 32768, @@ -22825,7 +22857,7 @@ } }, { - "id": 9035, + "id": 9494, "name": "config", "variant": "param", "kind": 32768, @@ -22858,11 +22890,11 @@ }, "type": { "type": "reference", - "target": 9395, + "target": 9854, "typeArguments": [ { "type": "reference", - "target": 9033, + "target": 9492, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -22873,7 +22905,7 @@ } }, { - "id": 9036, + "id": 9495, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -22890,7 +22922,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -22942,14 +22974,14 @@ ] }, { - "id": 9037, + "id": 9496, "name": "restoreProductOptions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9038, + "id": 9497, "name": "restoreProductOptions", "variant": "signature", "kind": 4096, @@ -23001,7 +23033,7 @@ }, "typeParameters": [ { - "id": 9039, + "id": 9498, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -23018,7 +23050,7 @@ ], "parameters": [ { - "id": 9040, + "id": 9499, "name": "optionIds", "variant": "param", "kind": 32768, @@ -23040,7 +23072,7 @@ } }, { - "id": 9041, + "id": 9500, "name": "config", "variant": "param", "kind": 32768, @@ -23065,11 +23097,11 @@ }, "type": { "type": "reference", - "target": 9398, + "target": 9857, "typeArguments": [ { "type": "reference", - "target": 9039, + "target": 9498, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -23080,7 +23112,7 @@ } }, { - "id": 9042, + "id": 9501, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23097,7 +23129,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -23149,14 +23181,14 @@ ] }, { - "id": 9043, + "id": 9502, "name": "retrieveProductVariant", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9044, + "id": 9503, "name": "retrieveProductVariant", "variant": "signature", "kind": 4096, @@ -23203,7 +23235,7 @@ }, "parameters": [ { - "id": 9045, + "id": 9504, "name": "productVariantId", "variant": "param", "kind": 32768, @@ -23222,7 +23254,7 @@ } }, { - "id": 9046, + "id": 9505, "name": "config", "variant": "param", "kind": 32768, @@ -23255,11 +23287,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9472, + "target": 9931, "name": "ProductVariantDTO", "package": "@medusajs/types" } @@ -23269,7 +23301,7 @@ } }, { - "id": 9047, + "id": 9506, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23286,7 +23318,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -23301,7 +23333,7 @@ "typeArguments": [ { "type": "reference", - "target": 9472, + "target": 9931, "name": "ProductVariantDTO", "package": "@medusajs/types" } @@ -23313,14 +23345,14 @@ ] }, { - "id": 9048, + "id": 9507, "name": "listProductVariants", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9049, + "id": 9508, "name": "listProductVariants", "variant": "signature", "kind": 4096, @@ -23407,7 +23439,7 @@ }, "parameters": [ { - "id": 9050, + "id": 9509, "name": "filters", "variant": "param", "kind": 32768, @@ -23424,13 +23456,13 @@ }, "type": { "type": "reference", - "target": 9497, + "target": 9956, "name": "FilterableProductVariantProps", "package": "@medusajs/types" } }, { - "id": 9051, + "id": 9510, "name": "config", "variant": "param", "kind": 32768, @@ -23463,11 +23495,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9472, + "target": 9931, "name": "ProductVariantDTO", "package": "@medusajs/types" } @@ -23477,7 +23509,7 @@ } }, { - "id": 9052, + "id": 9511, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23494,7 +23526,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -23511,7 +23543,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9472, + "target": 9931, "name": "ProductVariantDTO", "package": "@medusajs/types" } @@ -23524,14 +23556,14 @@ ] }, { - "id": 9053, + "id": 9512, "name": "listAndCountProductVariants", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9054, + "id": 9513, "name": "listAndCountProductVariants", "variant": "signature", "kind": 4096, @@ -23618,7 +23650,7 @@ }, "parameters": [ { - "id": 9055, + "id": 9514, "name": "filters", "variant": "param", "kind": 32768, @@ -23635,13 +23667,13 @@ }, "type": { "type": "reference", - "target": 9497, + "target": 9956, "name": "FilterableProductVariantProps", "package": "@medusajs/types" } }, { - "id": 9056, + "id": 9515, "name": "config", "variant": "param", "kind": 32768, @@ -23674,11 +23706,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9472, + "target": 9931, "name": "ProductVariantDTO", "package": "@medusajs/types" } @@ -23688,7 +23720,7 @@ } }, { - "id": 9057, + "id": 9516, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23705,7 +23737,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -23725,7 +23757,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9472, + "target": 9931, "name": "ProductVariantDTO", "package": "@medusajs/types" } @@ -23744,14 +23776,14 @@ ] }, { - "id": 9058, + "id": 9517, "name": "createProductVariants", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9059, + "id": 9518, "name": "createProductVariants", "variant": "signature", "kind": 4096, @@ -23786,7 +23818,7 @@ }, "parameters": [ { - "id": 9060, + "id": 9519, "name": "data", "variant": "param", "kind": 32768, @@ -23803,14 +23835,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9505, + "target": 9964, "name": "CreateProductVariantDTO", "package": "@medusajs/types" } } }, { - "id": 9061, + "id": 9520, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23827,7 +23859,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -23844,7 +23876,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9472, + "target": 9931, "name": "ProductVariantDTO", "package": "@medusajs/types" } @@ -23855,7 +23887,7 @@ } }, { - "id": 9062, + "id": 9521, "name": "createProductVariants", "variant": "signature", "kind": 4096, @@ -23890,7 +23922,7 @@ }, "parameters": [ { - "id": 9063, + "id": 9522, "name": "data", "variant": "param", "kind": 32768, @@ -23905,13 +23937,13 @@ }, "type": { "type": "reference", - "target": 9505, + "target": 9964, "name": "CreateProductVariantDTO", "package": "@medusajs/types" } }, { - "id": 9064, + "id": 9523, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -23928,7 +23960,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -23943,7 +23975,7 @@ "typeArguments": [ { "type": "reference", - "target": 9472, + "target": 9931, "name": "ProductVariantDTO", "package": "@medusajs/types" } @@ -23955,14 +23987,14 @@ ] }, { - "id": 9065, + "id": 9524, "name": "upsertProductVariants", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9066, + "id": 9525, "name": "upsertProductVariants", "variant": "signature", "kind": 4096, @@ -23997,7 +24029,7 @@ }, "parameters": [ { - "id": 9067, + "id": 9526, "name": "data", "variant": "param", "kind": 32768, @@ -24014,14 +24046,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9524, + "target": 9983, "name": "UpsertProductVariantDTO", "package": "@medusajs/types" } } }, { - "id": 9068, + "id": 9527, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -24038,7 +24070,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -24055,7 +24087,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9472, + "target": 9931, "name": "ProductVariantDTO", "package": "@medusajs/types" } @@ -24066,7 +24098,7 @@ } }, { - "id": 9069, + "id": 9528, "name": "upsertProductVariants", "variant": "signature", "kind": 4096, @@ -24101,7 +24133,7 @@ }, "parameters": [ { - "id": 9070, + "id": 9529, "name": "data", "variant": "param", "kind": 32768, @@ -24116,13 +24148,13 @@ }, "type": { "type": "reference", - "target": 9524, + "target": 9983, "name": "UpsertProductVariantDTO", "package": "@medusajs/types" } }, { - "id": 9071, + "id": 9530, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -24139,7 +24171,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -24154,7 +24186,7 @@ "typeArguments": [ { "type": "reference", - "target": 9472, + "target": 9931, "name": "ProductVariantDTO", "package": "@medusajs/types" } @@ -24166,14 +24198,14 @@ ] }, { - "id": 9072, + "id": 9531, "name": "updateProductVariants", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9073, + "id": 9532, "name": "updateProductVariants", "variant": "signature", "kind": 4096, @@ -24208,7 +24240,7 @@ }, "parameters": [ { - "id": 9074, + "id": 9533, "name": "id", "variant": "param", "kind": 32768, @@ -24227,7 +24259,7 @@ } }, { - "id": 9075, + "id": 9534, "name": "data", "variant": "param", "kind": 32768, @@ -24242,13 +24274,13 @@ }, "type": { "type": "reference", - "target": 9543, + "target": 10002, "name": "UpdateProductVariantDTO", "package": "@medusajs/types" } }, { - "id": 9076, + "id": 9535, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -24265,7 +24297,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -24280,7 +24312,7 @@ "typeArguments": [ { "type": "reference", - "target": 9472, + "target": 9931, "name": "ProductVariantDTO", "package": "@medusajs/types" } @@ -24290,7 +24322,7 @@ } }, { - "id": 9077, + "id": 9536, "name": "updateProductVariants", "variant": "signature", "kind": 4096, @@ -24325,7 +24357,7 @@ }, "parameters": [ { - "id": 9078, + "id": 9537, "name": "selector", "variant": "param", "kind": 32768, @@ -24340,13 +24372,13 @@ }, "type": { "type": "reference", - "target": 9497, + "target": 9956, "name": "FilterableProductVariantProps", "package": "@medusajs/types" } }, { - "id": 9079, + "id": 9538, "name": "data", "variant": "param", "kind": 32768, @@ -24361,13 +24393,13 @@ }, "type": { "type": "reference", - "target": 9543, + "target": 10002, "name": "UpdateProductVariantDTO", "package": "@medusajs/types" } }, { - "id": 9080, + "id": 9539, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -24384,7 +24416,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -24401,7 +24433,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9472, + "target": 9931, "name": "ProductVariantDTO", "package": "@medusajs/types" } @@ -24414,14 +24446,14 @@ ] }, { - "id": 9081, + "id": 9540, "name": "deleteProductVariants", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9082, + "id": 9541, "name": "deleteProductVariants", "variant": "signature", "kind": 4096, @@ -24456,7 +24488,7 @@ }, "parameters": [ { - "id": 9083, + "id": 9542, "name": "productVariantIds", "variant": "param", "kind": 32768, @@ -24478,7 +24510,7 @@ } }, { - "id": 9084, + "id": 9543, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -24495,7 +24527,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -24520,14 +24552,14 @@ ] }, { - "id": 9085, + "id": 9544, "name": "softDeleteProductVariants", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9086, + "id": 9545, "name": "softDeleteProductVariants", "variant": "signature", "kind": 4096, @@ -24613,7 +24645,7 @@ }, "typeParameters": [ { - "id": 9087, + "id": 9546, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -24630,7 +24662,7 @@ ], "parameters": [ { - "id": 9088, + "id": 9547, "name": "variantIds", "variant": "param", "kind": 32768, @@ -24652,7 +24684,7 @@ } }, { - "id": 9089, + "id": 9548, "name": "config", "variant": "param", "kind": 32768, @@ -24685,11 +24717,11 @@ }, "type": { "type": "reference", - "target": 9395, + "target": 9854, "typeArguments": [ { "type": "reference", - "target": 9087, + "target": 9546, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -24700,7 +24732,7 @@ } }, { - "id": 9090, + "id": 9549, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -24717,7 +24749,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -24769,14 +24801,14 @@ ] }, { - "id": 9091, + "id": 9550, "name": "restoreProductVariants", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9092, + "id": 9551, "name": "restoreProductVariants", "variant": "signature", "kind": 4096, @@ -24828,7 +24860,7 @@ }, "typeParameters": [ { - "id": 9093, + "id": 9552, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -24845,7 +24877,7 @@ ], "parameters": [ { - "id": 9094, + "id": 9553, "name": "variantIds", "variant": "param", "kind": 32768, @@ -24867,7 +24899,7 @@ } }, { - "id": 9095, + "id": 9554, "name": "config", "variant": "param", "kind": 32768, @@ -24892,11 +24924,11 @@ }, "type": { "type": "reference", - "target": 9398, + "target": 9857, "typeArguments": [ { "type": "reference", - "target": 9093, + "target": 9552, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -24907,7 +24939,7 @@ } }, { - "id": 9096, + "id": 9555, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -24924,7 +24956,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -24976,14 +25008,14 @@ ] }, { - "id": 9097, + "id": 9556, "name": "retrieveProductCollection", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9098, + "id": 9557, "name": "retrieveProductCollection", "variant": "signature", "kind": 4096, @@ -25030,7 +25062,7 @@ }, "parameters": [ { - "id": 9099, + "id": 9558, "name": "productCollectionId", "variant": "param", "kind": 32768, @@ -25049,7 +25081,7 @@ } }, { - "id": 9100, + "id": 9559, "name": "config", "variant": "param", "kind": 32768, @@ -25082,11 +25114,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9561, + "target": 10020, "name": "ProductCollectionDTO", "package": "@medusajs/types" } @@ -25096,7 +25128,7 @@ } }, { - "id": 9101, + "id": 9560, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25113,7 +25145,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -25128,7 +25160,7 @@ "typeArguments": [ { "type": "reference", - "target": 9561, + "target": 10020, "name": "ProductCollectionDTO", "package": "@medusajs/types" } @@ -25140,14 +25172,14 @@ ] }, { - "id": 9102, + "id": 9561, "name": "listProductCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9103, + "id": 9562, "name": "listProductCollections", "variant": "signature", "kind": 4096, @@ -25234,7 +25266,7 @@ }, "parameters": [ { - "id": 9104, + "id": 9563, "name": "filters", "variant": "param", "kind": 32768, @@ -25251,13 +25283,13 @@ }, "type": { "type": "reference", - "target": 9570, + "target": 10029, "name": "FilterableProductCollectionProps", "package": "@medusajs/types" } }, { - "id": 9105, + "id": 9564, "name": "config", "variant": "param", "kind": 32768, @@ -25290,11 +25322,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9561, + "target": 10020, "name": "ProductCollectionDTO", "package": "@medusajs/types" } @@ -25304,7 +25336,7 @@ } }, { - "id": 9106, + "id": 9565, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25321,7 +25353,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -25338,7 +25370,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9561, + "target": 10020, "name": "ProductCollectionDTO", "package": "@medusajs/types" } @@ -25351,14 +25383,14 @@ ] }, { - "id": 9107, + "id": 9566, "name": "listAndCountProductCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9108, + "id": 9567, "name": "listAndCountProductCollections", "variant": "signature", "kind": 4096, @@ -25445,7 +25477,7 @@ }, "parameters": [ { - "id": 9109, + "id": 9568, "name": "filters", "variant": "param", "kind": 32768, @@ -25462,13 +25494,13 @@ }, "type": { "type": "reference", - "target": 9570, + "target": 10029, "name": "FilterableProductCollectionProps", "package": "@medusajs/types" } }, { - "id": 9110, + "id": 9569, "name": "config", "variant": "param", "kind": 32768, @@ -25501,11 +25533,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9561, + "target": 10020, "name": "ProductCollectionDTO", "package": "@medusajs/types" } @@ -25515,7 +25547,7 @@ } }, { - "id": 9111, + "id": 9570, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25532,7 +25564,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -25552,7 +25584,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9561, + "target": 10020, "name": "ProductCollectionDTO", "package": "@medusajs/types" } @@ -25571,14 +25603,14 @@ ] }, { - "id": 9112, + "id": 9571, "name": "createProductCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9113, + "id": 9572, "name": "createProductCollections", "variant": "signature", "kind": 4096, @@ -25613,7 +25645,7 @@ }, "parameters": [ { - "id": 9114, + "id": 9573, "name": "data", "variant": "param", "kind": 32768, @@ -25630,14 +25662,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9577, + "target": 10036, "name": "CreateProductCollectionDTO", "package": "@medusajs/types" } } }, { - "id": 9115, + "id": 9574, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25654,7 +25686,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -25671,7 +25703,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9561, + "target": 10020, "name": "ProductCollectionDTO", "package": "@medusajs/types" } @@ -25682,7 +25714,7 @@ } }, { - "id": 9116, + "id": 9575, "name": "createProductCollections", "variant": "signature", "kind": 4096, @@ -25717,7 +25749,7 @@ }, "parameters": [ { - "id": 9117, + "id": 9576, "name": "data", "variant": "param", "kind": 32768, @@ -25732,13 +25764,13 @@ }, "type": { "type": "reference", - "target": 9577, + "target": 10036, "name": "CreateProductCollectionDTO", "package": "@medusajs/types" } }, { - "id": 9118, + "id": 9577, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25755,7 +25787,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -25770,7 +25802,7 @@ "typeArguments": [ { "type": "reference", - "target": 9561, + "target": 10020, "name": "ProductCollectionDTO", "package": "@medusajs/types" } @@ -25782,14 +25814,14 @@ ] }, { - "id": 9119, + "id": 9578, "name": "upsertProductCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9120, + "id": 9579, "name": "upsertProductCollections", "variant": "signature", "kind": 4096, @@ -25824,7 +25856,7 @@ }, "parameters": [ { - "id": 9121, + "id": 9580, "name": "data", "variant": "param", "kind": 32768, @@ -25841,14 +25873,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9582, + "target": 10041, "name": "UpsertProductCollectionDTO", "package": "@medusajs/types" } } }, { - "id": 9122, + "id": 9581, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25865,7 +25897,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -25882,7 +25914,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9561, + "target": 10020, "name": "ProductCollectionDTO", "package": "@medusajs/types" } @@ -25893,7 +25925,7 @@ } }, { - "id": 9123, + "id": 9582, "name": "upsertProductCollections", "variant": "signature", "kind": 4096, @@ -25928,7 +25960,7 @@ }, "parameters": [ { - "id": 9124, + "id": 9583, "name": "data", "variant": "param", "kind": 32768, @@ -25943,13 +25975,13 @@ }, "type": { "type": "reference", - "target": 9582, + "target": 10041, "name": "UpsertProductCollectionDTO", "package": "@medusajs/types" } }, { - "id": 9125, + "id": 9584, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -25966,7 +25998,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -25981,7 +26013,7 @@ "typeArguments": [ { "type": "reference", - "target": 9561, + "target": 10020, "name": "ProductCollectionDTO", "package": "@medusajs/types" } @@ -25993,14 +26025,14 @@ ] }, { - "id": 9126, + "id": 9585, "name": "updateProductCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9127, + "id": 9586, "name": "updateProductCollections", "variant": "signature", "kind": 4096, @@ -26035,7 +26067,7 @@ }, "parameters": [ { - "id": 9128, + "id": 9587, "name": "id", "variant": "param", "kind": 32768, @@ -26054,7 +26086,7 @@ } }, { - "id": 9129, + "id": 9588, "name": "data", "variant": "param", "kind": 32768, @@ -26069,13 +26101,13 @@ }, "type": { "type": "reference", - "target": 9589, + "target": 10048, "name": "UpdateProductCollectionDTO", "package": "@medusajs/types" } }, { - "id": 9130, + "id": 9589, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -26092,7 +26124,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -26107,7 +26139,7 @@ "typeArguments": [ { "type": "reference", - "target": 9561, + "target": 10020, "name": "ProductCollectionDTO", "package": "@medusajs/types" } @@ -26117,7 +26149,7 @@ } }, { - "id": 9131, + "id": 9590, "name": "updateProductCollections", "variant": "signature", "kind": 4096, @@ -26152,7 +26184,7 @@ }, "parameters": [ { - "id": 9132, + "id": 9591, "name": "selector", "variant": "param", "kind": 32768, @@ -26167,13 +26199,13 @@ }, "type": { "type": "reference", - "target": 9570, + "target": 10029, "name": "FilterableProductCollectionProps", "package": "@medusajs/types" } }, { - "id": 9133, + "id": 9592, "name": "data", "variant": "param", "kind": 32768, @@ -26188,13 +26220,13 @@ }, "type": { "type": "reference", - "target": 9589, + "target": 10048, "name": "UpdateProductCollectionDTO", "package": "@medusajs/types" } }, { - "id": 9134, + "id": 9593, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -26211,7 +26243,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -26228,7 +26260,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9561, + "target": 10020, "name": "ProductCollectionDTO", "package": "@medusajs/types" } @@ -26241,14 +26273,14 @@ ] }, { - "id": 9135, + "id": 9594, "name": "deleteProductCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9136, + "id": 9595, "name": "deleteProductCollections", "variant": "signature", "kind": 4096, @@ -26283,7 +26315,7 @@ }, "parameters": [ { - "id": 9137, + "id": 9596, "name": "productCollectionIds", "variant": "param", "kind": 32768, @@ -26305,7 +26337,7 @@ } }, { - "id": 9138, + "id": 9597, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -26322,7 +26354,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -26347,14 +26379,14 @@ ] }, { - "id": 9139, + "id": 9598, "name": "softDeleteProductCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9140, + "id": 9599, "name": "softDeleteProductCollections", "variant": "signature", "kind": 4096, @@ -26440,7 +26472,7 @@ }, "typeParameters": [ { - "id": 9141, + "id": 9600, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -26457,7 +26489,7 @@ ], "parameters": [ { - "id": 9142, + "id": 9601, "name": "collectionIds", "variant": "param", "kind": 32768, @@ -26479,7 +26511,7 @@ } }, { - "id": 9143, + "id": 9602, "name": "config", "variant": "param", "kind": 32768, @@ -26504,11 +26536,11 @@ }, "type": { "type": "reference", - "target": 9395, + "target": 9854, "typeArguments": [ { "type": "reference", - "target": 9141, + "target": 9600, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -26519,7 +26551,7 @@ } }, { - "id": 9144, + "id": 9603, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -26536,7 +26568,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -26588,14 +26620,14 @@ ] }, { - "id": 9145, + "id": 9604, "name": "restoreProductCollections", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9146, + "id": 9605, "name": "restoreProductCollections", "variant": "signature", "kind": 4096, @@ -26647,7 +26679,7 @@ }, "typeParameters": [ { - "id": 9147, + "id": 9606, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -26664,7 +26696,7 @@ ], "parameters": [ { - "id": 9148, + "id": 9607, "name": "collectionIds", "variant": "param", "kind": 32768, @@ -26686,7 +26718,7 @@ } }, { - "id": 9149, + "id": 9608, "name": "config", "variant": "param", "kind": 32768, @@ -26711,11 +26743,11 @@ }, "type": { "type": "reference", - "target": 9398, + "target": 9857, "typeArguments": [ { "type": "reference", - "target": 9147, + "target": 9606, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -26726,7 +26758,7 @@ } }, { - "id": 9150, + "id": 9609, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -26743,7 +26775,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -26795,14 +26827,14 @@ ] }, { - "id": 9151, + "id": 9610, "name": "retrieveProductCategory", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9152, + "id": 9611, "name": "retrieveProductCategory", "variant": "signature", "kind": 4096, @@ -26849,7 +26881,7 @@ }, "parameters": [ { - "id": 9153, + "id": 9612, "name": "productCategoryId", "variant": "param", "kind": 32768, @@ -26868,7 +26900,7 @@ } }, { - "id": 9154, + "id": 9613, "name": "config", "variant": "param", "kind": 32768, @@ -26901,11 +26933,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -26915,7 +26947,7 @@ } }, { - "id": 9155, + "id": 9614, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -26932,7 +26964,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -26947,7 +26979,7 @@ "typeArguments": [ { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -26959,14 +26991,14 @@ ] }, { - "id": 9156, + "id": 9615, "name": "listProductCategories", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9157, + "id": 9616, "name": "listProductCategories", "variant": "signature", "kind": 4096, @@ -27053,7 +27085,7 @@ }, "parameters": [ { - "id": 9158, + "id": 9617, "name": "filters", "variant": "param", "kind": 32768, @@ -27070,13 +27102,13 @@ }, "type": { "type": "reference", - "target": 9610, + "target": 10070, "name": "FilterableProductCategoryProps", "package": "@medusajs/types" } }, { - "id": 9159, + "id": 9618, "name": "config", "variant": "param", "kind": 32768, @@ -27109,11 +27141,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -27123,7 +27155,7 @@ } }, { - "id": 9160, + "id": 9619, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27140,7 +27172,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -27157,7 +27189,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -27170,14 +27202,14 @@ ] }, { - "id": 9161, + "id": 9620, "name": "listAndCountProductCategories", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9162, + "id": 9621, "name": "listAndCountProductCategories", "variant": "signature", "kind": 4096, @@ -27264,7 +27296,7 @@ }, "parameters": [ { - "id": 9163, + "id": 9622, "name": "filters", "variant": "param", "kind": 32768, @@ -27281,13 +27313,13 @@ }, "type": { "type": "reference", - "target": 9610, + "target": 10070, "name": "FilterableProductCategoryProps", "package": "@medusajs/types" } }, { - "id": 9164, + "id": 9623, "name": "config", "variant": "param", "kind": 32768, @@ -27320,11 +27352,11 @@ }, "type": { "type": "reference", - "target": 9232, + "target": 9691, "typeArguments": [ { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -27334,7 +27366,7 @@ } }, { - "id": 9165, + "id": 9624, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27351,7 +27383,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -27371,7 +27403,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -27390,14 +27422,14 @@ ] }, { - "id": 9166, + "id": 9625, "name": "createProductCategories", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9167, + "id": 9626, "name": "createProductCategories", "variant": "signature", "kind": 4096, @@ -27432,7 +27464,7 @@ }, "parameters": [ { - "id": 9168, + "id": 9627, "name": "data", "variant": "param", "kind": 32768, @@ -27449,14 +27481,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9622, + "target": 10082, "name": "CreateProductCategoryDTO", "package": "@medusajs/types" } } }, { - "id": 9169, + "id": 9628, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27473,7 +27505,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -27490,7 +27522,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -27501,7 +27533,7 @@ } }, { - "id": 9170, + "id": 9629, "name": "createProductCategories", "variant": "signature", "kind": 4096, @@ -27536,7 +27568,7 @@ }, "parameters": [ { - "id": 9171, + "id": 9630, "name": "data", "variant": "param", "kind": 32768, @@ -27551,13 +27583,13 @@ }, "type": { "type": "reference", - "target": 9622, + "target": 10082, "name": "CreateProductCategoryDTO", "package": "@medusajs/types" } }, { - "id": 9172, + "id": 9631, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27574,7 +27606,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -27589,7 +27621,7 @@ "typeArguments": [ { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -27601,14 +27633,14 @@ ] }, { - "id": 9173, + "id": 9632, "name": "upsertProductCategories", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9174, + "id": 9633, "name": "upsertProductCategories", "variant": "signature", "kind": 4096, @@ -27643,7 +27675,7 @@ }, "parameters": [ { - "id": 9175, + "id": 9634, "name": "data", "variant": "param", "kind": 32768, @@ -27660,14 +27692,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 9631, + "target": 10091, "name": "UpsertProductCategoryDTO", "package": "@medusajs/types" } } }, { - "id": 9176, + "id": 9635, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27684,7 +27716,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -27701,7 +27733,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -27712,7 +27744,7 @@ } }, { - "id": 9177, + "id": 9636, "name": "upsertProductCategories", "variant": "signature", "kind": 4096, @@ -27747,7 +27779,7 @@ }, "parameters": [ { - "id": 9178, + "id": 9637, "name": "data", "variant": "param", "kind": 32768, @@ -27762,13 +27794,13 @@ }, "type": { "type": "reference", - "target": 9631, + "target": 10091, "name": "UpsertProductCategoryDTO", "package": "@medusajs/types" } }, { - "id": 9179, + "id": 9638, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27785,7 +27817,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -27800,7 +27832,7 @@ "typeArguments": [ { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -27812,14 +27844,14 @@ ] }, { - "id": 9180, + "id": 9639, "name": "updateProductCategories", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9181, + "id": 9640, "name": "updateProductCategories", "variant": "signature", "kind": 4096, @@ -27854,7 +27886,7 @@ }, "parameters": [ { - "id": 9182, + "id": 9641, "name": "id", "variant": "param", "kind": 32768, @@ -27873,7 +27905,7 @@ } }, { - "id": 9183, + "id": 9642, "name": "data", "variant": "param", "kind": 32768, @@ -27888,13 +27920,13 @@ }, "type": { "type": "reference", - "target": 9641, + "target": 10101, "name": "UpdateProductCategoryDTO", "package": "@medusajs/types" } }, { - "id": 9184, + "id": 9643, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -27911,7 +27943,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -27926,7 +27958,7 @@ "typeArguments": [ { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -27936,7 +27968,7 @@ } }, { - "id": 9185, + "id": 9644, "name": "updateProductCategories", "variant": "signature", "kind": 4096, @@ -27971,7 +28003,7 @@ }, "parameters": [ { - "id": 9186, + "id": 9645, "name": "selector", "variant": "param", "kind": 32768, @@ -27986,13 +28018,13 @@ }, "type": { "type": "reference", - "target": 9610, + "target": 10070, "name": "FilterableProductCategoryProps", "package": "@medusajs/types" } }, { - "id": 9187, + "id": 9646, "name": "data", "variant": "param", "kind": 32768, @@ -28007,13 +28039,13 @@ }, "type": { "type": "reference", - "target": 9641, + "target": 10101, "name": "UpdateProductCategoryDTO", "package": "@medusajs/types" } }, { - "id": 9188, + "id": 9647, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -28030,7 +28062,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -28047,7 +28079,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9595, + "target": 10054, "name": "ProductCategoryDTO", "package": "@medusajs/types" } @@ -28060,14 +28092,14 @@ ] }, { - "id": 9189, + "id": 9648, "name": "deleteProductCategories", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9190, + "id": 9649, "name": "deleteProductCategories", "variant": "signature", "kind": 4096, @@ -28102,7 +28134,7 @@ }, "parameters": [ { - "id": 9191, + "id": 9650, "name": "productCategoryIds", "variant": "param", "kind": 32768, @@ -28124,7 +28156,7 @@ } }, { - "id": 9192, + "id": 9651, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -28141,7 +28173,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -28166,14 +28198,14 @@ ] }, { - "id": 9193, + "id": 9652, "name": "softDeleteProductCategories", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9194, + "id": 9653, "name": "softDeleteProductCategories", "variant": "signature", "kind": 4096, @@ -28259,7 +28291,7 @@ }, "typeParameters": [ { - "id": 9195, + "id": 9654, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -28276,7 +28308,7 @@ ], "parameters": [ { - "id": 9196, + "id": 9655, "name": "categoryIds", "variant": "param", "kind": 32768, @@ -28298,7 +28330,7 @@ } }, { - "id": 9197, + "id": 9656, "name": "config", "variant": "param", "kind": 32768, @@ -28323,11 +28355,11 @@ }, "type": { "type": "reference", - "target": 9395, + "target": 9854, "typeArguments": [ { "type": "reference", - "target": 9195, + "target": 9654, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -28338,7 +28370,7 @@ } }, { - "id": 9198, + "id": 9657, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -28355,7 +28387,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -28407,14 +28439,14 @@ ] }, { - "id": 9199, + "id": 9658, "name": "restoreProductCategories", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9200, + "id": 9659, "name": "restoreProductCategories", "variant": "signature", "kind": 4096, @@ -28466,7 +28498,7 @@ }, "typeParameters": [ { - "id": 9201, + "id": 9660, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -28483,7 +28515,7 @@ ], "parameters": [ { - "id": 9202, + "id": 9661, "name": "categoryIds", "variant": "param", "kind": 32768, @@ -28505,7 +28537,7 @@ } }, { - "id": 9203, + "id": 9662, "name": "config", "variant": "param", "kind": 32768, @@ -28530,11 +28562,11 @@ }, "type": { "type": "reference", - "target": 9398, + "target": 9857, "typeArguments": [ { "type": "reference", - "target": 9201, + "target": 9660, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -28545,7 +28577,7 @@ } }, { - "id": 9204, + "id": 9663, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -28562,7 +28594,7 @@ }, "type": { "type": "reference", - "target": 9277, + "target": 9736, "name": "Context", "package": "@medusajs/types" } @@ -28618,90 +28650,90 @@ { "title": "Methods", "children": [ - 8827, - 8832, - 8837, - 8842, - 8849, - 8856, - 8865, - 8869, - 8875, - 8881, - 8886, - 8891, - 8896, - 8903, - 8910, - 8919, - 8923, - 8929, - 8935, - 8940, - 8945, - 8950, - 8957, - 8964, - 8973, - 8977, - 8983, - 8989, - 8994, - 8999, - 9004, - 9011, - 9018, - 9027, - 9031, - 9037, - 9043, - 9048, - 9053, - 9058, - 9065, - 9072, - 9081, - 9085, - 9091, - 9097, - 9102, - 9107, - 9112, - 9119, - 9126, - 9135, - 9139, - 9145, - 9151, - 9156, - 9161, - 9166, - 9173, - 9180, - 9189, - 9193, - 9199 + 9286, + 9291, + 9296, + 9301, + 9308, + 9315, + 9324, + 9328, + 9334, + 9340, + 9345, + 9350, + 9355, + 9362, + 9369, + 9378, + 9382, + 9388, + 9394, + 9399, + 9404, + 9409, + 9416, + 9423, + 9432, + 9436, + 9442, + 9448, + 9453, + 9458, + 9463, + 9470, + 9477, + 9486, + 9490, + 9496, + 9502, + 9507, + 9512, + 9517, + 9524, + 9531, + 9540, + 9544, + 9550, + 9556, + 9561, + 9566, + 9571, + 9578, + 9585, + 9594, + 9598, + 9604, + 9610, + 9615, + 9620, + 9625, + 9632, + 9639, + 9648, + 9652, + 9658 ] } ], "extendedTypes": [ { "type": "reference", - "target": 9218, + "target": 9677, "name": "IModuleService", "package": "@medusajs/types" } ] }, { - "id": 9763, + "id": 10223, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 9764, + "id": 10224, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -28717,7 +28749,7 @@ } }, { - "id": 9765, + "id": 10225, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -28727,21 +28759,21 @@ "type": { "type": "reflection", "declaration": { - "id": 9766, + "id": 10226, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 9767, + "id": 10227, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 9768, + "id": 10228, "name": "key", "variant": "param", "kind": 32768, @@ -28782,35 +28814,35 @@ { "title": "Properties", "children": [ - 9764, - 9765 + 10224, + 10225 ] } ] }, { - "id": 9683, + "id": 10143, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 9684, + "id": 10144, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9685, + "id": 10145, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 9686, + "id": 10146, "name": "msg", "variant": "param", "kind": 32768, @@ -28820,7 +28852,7 @@ "types": [ { "type": "reference", - "target": 9759, + "target": 10219, "name": "Message", "package": "@medusajs/types" }, @@ -28828,7 +28860,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9759, + "target": 10219, "name": "Message", "package": "@medusajs/types" } @@ -28845,21 +28877,21 @@ ] }, { - "id": 9687, + "id": 10147, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9688, + "id": 10148, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 9689, + "id": 10149, "name": "format", "variant": "param", "kind": 32768, @@ -28868,7 +28900,7 @@ }, "type": { "type": "reference", - "target": 9763, + "target": 10223, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -28889,7 +28921,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 9759, + "target": 10219, "name": "Message", "package": "@medusajs/types" } @@ -28902,14 +28934,14 @@ ] }, { - "id": 9690, + "id": 10150, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9691, + "id": 10151, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -28922,21 +28954,21 @@ ] }, { - "id": 9692, + "id": 10152, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 9693, + "id": 10153, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 9694, + "id": 10154, "name": "T", "variant": "typeParam", "kind": 131072, @@ -28945,7 +28977,7 @@ ], "parameters": [ { - "id": 9695, + "id": 10155, "name": "messageData", "variant": "param", "kind": 32768, @@ -28955,11 +28987,11 @@ "types": [ { "type": "reference", - "target": 9769, + "target": 10229, "typeArguments": [ { "type": "reference", - "target": 9694, + "target": 10154, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -28972,11 +29004,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 9769, + "target": 10229, "typeArguments": [ { "type": "reference", - "target": 9694, + "target": 10154, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -28990,7 +29022,7 @@ } }, { - "id": 9696, + "id": 10156, "name": "options", "variant": "param", "kind": 32768, @@ -29030,16 +29062,16 @@ { "title": "Methods", "children": [ - 9684, - 9687, - 9690, - 9692 + 10144, + 10147, + 10150, + 10152 ] } ] }, { - "id": 9277, + "id": 9736, "name": "Context", "variant": "declaration", "kind": 256, @@ -29054,7 +29086,7 @@ }, "children": [ { - "id": 9278, + "id": 9737, "name": "__type", "variant": "declaration", "kind": 1024, @@ -29067,7 +29099,7 @@ } }, { - "id": 9279, + "id": 9738, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -29100,14 +29132,14 @@ }, "type": { "type": "reference", - "target": 9288, + "target": 9747, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 9280, + "id": 9739, "name": "manager", "variant": "declaration", "kind": 1024, @@ -29140,14 +29172,14 @@ }, "type": { "type": "reference", - "target": 9288, + "target": 9747, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 9281, + "id": 9740, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -29200,7 +29232,7 @@ } }, { - "id": 9282, + "id": 9741, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -29221,7 +29253,7 @@ } }, { - "id": 9283, + "id": 9742, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -29242,7 +29274,7 @@ } }, { - "id": 9284, + "id": 9743, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -29263,7 +29295,7 @@ } }, { - "id": 9285, + "id": 9744, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -29280,13 +29312,13 @@ }, "type": { "type": "reference", - "target": 9683, + "target": 10143, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 9286, + "id": 9745, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -29307,7 +29339,7 @@ } }, { - "id": 9287, + "id": 9746, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -29332,22 +29364,22 @@ { "title": "Properties", "children": [ - 9278, - 9279, - 9280, - 9281, - 9282, - 9283, - 9284, - 9285, - 9286, - 9287 + 9737, + 9738, + 9739, + 9740, + 9741, + 9742, + 9743, + 9744, + 9745, + 9746 ] } ], "typeParameters": [ { - "id": 9288, + "id": 9747, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -29364,4003 +29396,4007 @@ { "title": "Interfaces", "children": [ - 9232, - 9697, - 9395, - 9398, - 9786, - 9736, - 9218, - 9245, - 9472, - 9595, - 9622, - 9631, - 9641, - 9401, - 9561, - 9419, - 9442, - 9675, - 9727, - 9289, - 9406, - 9426, - 9452, - 9570, - 9497, - 9610, - 9577, - 9582, - 9589, - 9432, - 9435, - 9439, - 9723, - 9783, - 9412, - 9414, - 9417, - 9459, - 9463, - 9468, - 9505, - 9524, - 9543, - 9318, - 9344, - 9370, - 8826, - 9763, - 9683, - 9277 + 9691, + 10157, + 9854, + 9857, + 10246, + 10196, + 9677, + 9704, + 9931, + 10054, + 10082, + 10091, + 10101, + 9860, + 10020, + 9878, + 9901, + 10135, + 10187, + 9748, + 9865, + 9885, + 9911, + 10029, + 9956, + 10070, + 10036, + 10041, + 10048, + 9891, + 9894, + 9898, + 10183, + 10243, + 9871, + 9873, + 9876, + 9918, + 9922, + 9927, + 9964, + 9983, + 10002, + 9777, + 9803, + 9829, + 9285, + 10223, + 10143, + 9736 ] }, { "title": "Type Aliases", "children": [ - 9682, - 9779, - 9781, - 9804, - 9832, - 9822, - 9701, - 9820, - 9814, - 9819, - 9808, - 9816, - 9798, - 9759, - 9769, - 9789, - 9753, - 9650, - 9750, - 9674 + 10142, + 10239, + 10241, + 10264, + 10292, + 10282, + 10161, + 10280, + 10274, + 10279, + 10268, + 10276, + 10258, + 10219, + 10229, + 10249, + 10213, + 10110, + 10210, + 10134 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "8825": { + "9284": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "" }, - "8826": { + "9285": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService" }, - "8827": { + "9286": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProduct" }, - "8828": { + "9287": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProduct" }, - "8829": { + "9288": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "productId" }, - "8830": { + "9289": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8831": { + "9290": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8832": { + "9291": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProducts" }, - "8833": { + "9292": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProducts" }, - "8834": { + "9293": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "8835": { + "9294": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8836": { + "9295": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8837": { + "9296": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProducts" }, - "8838": { + "9297": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProducts" }, - "8839": { + "9298": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "8840": { + "9299": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8841": { + "9300": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8842": { + "9301": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProducts" }, - "8843": { + "9302": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProducts" }, - "8844": { + "9303": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8845": { + "9304": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8846": { + "9305": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProducts" }, - "8847": { + "9306": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8848": { + "9307": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8849": { + "9308": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProducts" }, - "8850": { + "9309": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProducts" }, - "8851": { + "9310": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8852": { + "9311": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8853": { + "9312": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProducts" }, - "8854": { + "9313": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8855": { + "9314": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8856": { + "9315": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProducts" }, - "8857": { + "9316": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProducts" }, - "8858": { + "9317": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "id" }, - "8859": { + "9318": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8860": { + "9319": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8861": { + "9320": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProducts" }, - "8862": { + "9321": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "selector" }, - "8863": { + "9322": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8864": { + "9323": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8865": { + "9324": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProducts" }, - "8866": { + "9325": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProducts" }, - "8867": { + "9326": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "productIds" }, - "8868": { + "9327": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8869": { + "9328": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProducts" }, - "8870": { + "9329": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProducts" }, - "8871": { + "9330": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "8872": { + "9331": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "productIds" }, - "8873": { + "9332": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8874": { + "9333": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8875": { + "9334": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProducts" }, - "8876": { + "9335": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProducts" }, - "8877": { + "9336": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "8878": { + "9337": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "productIds" }, - "8879": { + "9338": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8880": { + "9339": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8881": { + "9340": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProductTag" }, - "8882": { + "9341": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProductTag" }, - "8883": { + "9342": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "tagId" }, - "8884": { + "9343": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8885": { + "9344": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8886": { + "9345": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProductTags" }, - "8887": { + "9346": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProductTags" }, - "8888": { + "9347": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "8889": { + "9348": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8890": { + "9349": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8891": { + "9350": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProductTags" }, - "8892": { + "9351": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProductTags" }, - "8893": { + "9352": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "8894": { + "9353": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8895": { + "9354": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8896": { + "9355": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductTags" }, - "8897": { + "9356": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductTags" }, - "8898": { + "9357": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8899": { + "9358": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8900": { + "9359": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductTags" }, - "8901": { + "9360": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8902": { + "9361": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8903": { + "9362": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductTags" }, - "8904": { + "9363": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductTags" }, - "8905": { + "9364": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8906": { + "9365": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8907": { + "9366": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductTags" }, - "8908": { + "9367": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8909": { + "9368": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8910": { + "9369": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductTags" }, - "8911": { + "9370": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductTags" }, - "8912": { + "9371": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "id" }, - "8913": { + "9372": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8914": { + "9373": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8915": { + "9374": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductTags" }, - "8916": { + "9375": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "selector" }, - "8917": { + "9376": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8918": { + "9377": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8919": { + "9378": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProductTags" }, - "8920": { + "9379": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProductTags" }, - "8921": { + "9380": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "productTagIds" }, - "8922": { + "9381": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8923": { + "9382": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProductTags" }, - "8924": { + "9383": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProductTags" }, - "8925": { + "9384": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "8926": { + "9385": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "tagIds" }, - "8927": { + "9386": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8928": { + "9387": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8929": { + "9388": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProductTags" }, - "8930": { + "9389": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProductTags" }, - "8931": { + "9390": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "8932": { + "9391": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "tagIds" }, - "8933": { + "9392": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8934": { + "9393": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8935": { + "9394": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProductType" }, - "8936": { + "9395": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProductType" }, - "8937": { + "9396": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "typeId" }, - "8938": { + "9397": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8939": { + "9398": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8940": { + "9399": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProductTypes" }, - "8941": { + "9400": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProductTypes" }, - "8942": { + "9401": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "8943": { + "9402": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8944": { + "9403": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8945": { + "9404": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProductTypes" }, - "8946": { + "9405": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProductTypes" }, - "8947": { + "9406": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "8948": { + "9407": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8949": { + "9408": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8950": { + "9409": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductTypes" }, - "8951": { + "9410": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductTypes" }, - "8952": { + "9411": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8953": { + "9412": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8954": { + "9413": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductTypes" }, - "8955": { + "9414": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8956": { + "9415": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8957": { + "9416": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductTypes" }, - "8958": { + "9417": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductTypes" }, - "8959": { + "9418": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8960": { + "9419": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8961": { + "9420": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductTypes" }, - "8962": { + "9421": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8963": { + "9422": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8964": { + "9423": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductTypes" }, - "8965": { + "9424": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductTypes" }, - "8966": { + "9425": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "id" }, - "8967": { + "9426": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8968": { + "9427": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8969": { + "9428": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductTypes" }, - "8970": { + "9429": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "selector" }, - "8971": { + "9430": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "8972": { + "9431": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8973": { + "9432": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProductTypes" }, - "8974": { + "9433": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProductTypes" }, - "8975": { + "9434": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "productTypeIds" }, - "8976": { + "9435": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8977": { + "9436": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProductTypes" }, - "8978": { + "9437": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProductTypes" }, - "8979": { + "9438": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "8980": { + "9439": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "typeIds" }, - "8981": { + "9440": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8982": { + "9441": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8983": { + "9442": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProductTypes" }, - "8984": { + "9443": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProductTypes" }, - "8985": { + "9444": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "8986": { + "9445": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "typeIds" }, - "8987": { + "9446": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8988": { + "9447": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8989": { + "9448": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProductOption" }, - "8990": { + "9449": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProductOption" }, - "8991": { + "9450": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "optionId" }, - "8992": { + "9451": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8993": { + "9452": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8994": { + "9453": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProductOptions" }, - "8995": { + "9454": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProductOptions" }, - "8996": { + "9455": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "8997": { + "9456": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "8998": { + "9457": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "8999": { + "9458": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProductOptions" }, - "9000": { + "9459": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProductOptions" }, - "9001": { + "9460": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "9002": { + "9461": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9003": { + "9462": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9004": { + "9463": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductOptions" }, - "9005": { + "9464": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductOptions" }, - "9006": { + "9465": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9007": { + "9466": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9008": { + "9467": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductOptions" }, - "9009": { + "9468": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9010": { + "9469": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9011": { + "9470": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductOptions" }, - "9012": { + "9471": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductOptions" }, - "9013": { + "9472": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9014": { + "9473": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9015": { + "9474": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductOptions" }, - "9016": { + "9475": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9017": { + "9476": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9018": { + "9477": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductOptions" }, - "9019": { + "9478": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductOptions" }, - "9020": { + "9479": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "id" }, - "9021": { + "9480": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9022": { + "9481": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9023": { + "9482": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductOptions" }, - "9024": { + "9483": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "selector" }, - "9025": { + "9484": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9026": { + "9485": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9027": { + "9486": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProductOptions" }, - "9028": { + "9487": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProductOptions" }, - "9029": { + "9488": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "productOptionIds" }, - "9030": { + "9489": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9031": { + "9490": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProductOptions" }, - "9032": { + "9491": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProductOptions" }, - "9033": { + "9492": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "9034": { + "9493": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "optionIds" }, - "9035": { + "9494": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9036": { + "9495": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9037": { + "9496": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProductOptions" }, - "9038": { + "9497": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProductOptions" }, - "9039": { + "9498": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "9040": { + "9499": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "optionIds" }, - "9041": { + "9500": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9042": { + "9501": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9043": { + "9502": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProductVariant" }, - "9044": { + "9503": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProductVariant" }, - "9045": { + "9504": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "productVariantId" }, - "9046": { + "9505": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9047": { + "9506": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9048": { + "9507": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProductVariants" }, - "9049": { + "9508": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProductVariants" }, - "9050": { + "9509": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "9051": { + "9510": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9052": { + "9511": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9053": { + "9512": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProductVariants" }, - "9054": { + "9513": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProductVariants" }, - "9055": { + "9514": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "9056": { + "9515": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9057": { + "9516": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9058": { + "9517": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductVariants" }, - "9059": { + "9518": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductVariants" }, - "9060": { + "9519": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9061": { + "9520": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9062": { + "9521": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductVariants" }, - "9063": { + "9522": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9064": { + "9523": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9065": { + "9524": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductVariants" }, - "9066": { + "9525": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductVariants" }, - "9067": { + "9526": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9068": { + "9527": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9069": { + "9528": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductVariants" }, - "9070": { + "9529": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9071": { + "9530": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9072": { + "9531": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductVariants" }, - "9073": { + "9532": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductVariants" }, - "9074": { + "9533": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "id" }, - "9075": { + "9534": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9076": { + "9535": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9077": { + "9536": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductVariants" }, - "9078": { + "9537": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "selector" }, - "9079": { + "9538": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9080": { + "9539": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9081": { + "9540": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProductVariants" }, - "9082": { + "9541": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProductVariants" }, - "9083": { + "9542": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "productVariantIds" }, - "9084": { + "9543": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9085": { + "9544": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProductVariants" }, - "9086": { + "9545": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProductVariants" }, - "9087": { + "9546": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "9088": { + "9547": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "variantIds" }, - "9089": { + "9548": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9090": { + "9549": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9091": { + "9550": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProductVariants" }, - "9092": { + "9551": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProductVariants" }, - "9093": { + "9552": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "9094": { + "9553": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "variantIds" }, - "9095": { + "9554": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9096": { + "9555": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9097": { + "9556": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProductCollection" }, - "9098": { + "9557": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProductCollection" }, - "9099": { + "9558": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "productCollectionId" }, - "9100": { + "9559": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9101": { + "9560": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9102": { + "9561": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProductCollections" }, - "9103": { + "9562": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProductCollections" }, - "9104": { + "9563": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "9105": { + "9564": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9106": { + "9565": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9107": { + "9566": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProductCollections" }, - "9108": { + "9567": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProductCollections" }, - "9109": { + "9568": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "9110": { + "9569": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9111": { + "9570": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9112": { + "9571": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductCollections" }, - "9113": { + "9572": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductCollections" }, - "9114": { + "9573": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9115": { + "9574": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9116": { + "9575": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductCollections" }, - "9117": { + "9576": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9118": { + "9577": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9119": { + "9578": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductCollections" }, - "9120": { + "9579": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductCollections" }, - "9121": { + "9580": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9122": { + "9581": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9123": { + "9582": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductCollections" }, - "9124": { + "9583": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9125": { + "9584": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9126": { + "9585": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductCollections" }, - "9127": { + "9586": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductCollections" }, - "9128": { + "9587": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "id" }, - "9129": { + "9588": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9130": { + "9589": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9131": { + "9590": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductCollections" }, - "9132": { + "9591": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "selector" }, - "9133": { + "9592": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9134": { + "9593": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9135": { + "9594": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProductCollections" }, - "9136": { + "9595": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProductCollections" }, - "9137": { + "9596": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "productCollectionIds" }, - "9138": { + "9597": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9139": { + "9598": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProductCollections" }, - "9140": { + "9599": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProductCollections" }, - "9141": { + "9600": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "9142": { + "9601": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "collectionIds" }, - "9143": { + "9602": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9144": { + "9603": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9145": { + "9604": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProductCollections" }, - "9146": { + "9605": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProductCollections" }, - "9147": { + "9606": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "9148": { + "9607": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "collectionIds" }, - "9149": { + "9608": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9150": { + "9609": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9151": { + "9610": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProductCategory" }, - "9152": { + "9611": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.retrieveProductCategory" }, - "9153": { + "9612": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "productCategoryId" }, - "9154": { + "9613": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9155": { + "9614": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9156": { + "9615": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProductCategories" }, - "9157": { + "9616": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listProductCategories" }, - "9158": { + "9617": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "9159": { + "9618": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9160": { + "9619": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9161": { + "9620": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProductCategories" }, - "9162": { + "9621": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.listAndCountProductCategories" }, - "9163": { + "9622": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "filters" }, - "9164": { + "9623": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9165": { + "9624": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9166": { + "9625": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductCategories" }, - "9167": { + "9626": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductCategories" }, - "9168": { + "9627": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9169": { + "9628": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9170": { + "9629": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.createProductCategories" }, - "9171": { + "9630": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9172": { + "9631": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9173": { + "9632": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductCategories" }, - "9174": { + "9633": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductCategories" }, - "9175": { + "9634": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9176": { + "9635": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9177": { + "9636": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.upsertProductCategories" }, - "9178": { + "9637": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9179": { + "9638": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9180": { + "9639": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductCategories" }, - "9181": { + "9640": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductCategories" }, - "9182": { + "9641": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "id" }, - "9183": { + "9642": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9184": { + "9643": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9185": { + "9644": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.updateProductCategories" }, - "9186": { + "9645": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "selector" }, - "9187": { + "9646": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "data" }, - "9188": { + "9647": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9189": { + "9648": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProductCategories" }, - "9190": { + "9649": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.deleteProductCategories" }, - "9191": { + "9650": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "productCategoryIds" }, - "9192": { + "9651": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9193": { + "9652": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProductCategories" }, - "9194": { + "9653": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.softDeleteProductCategories" }, - "9195": { + "9654": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "9196": { + "9655": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "categoryIds" }, - "9197": { + "9656": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9198": { + "9657": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9199": { + "9658": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProductCategories" }, - "9200": { + "9659": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "IProductModuleService.restoreProductCategories" }, - "9201": { + "9660": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "9202": { + "9661": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "categoryIds" }, - "9203": { + "9662": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "config" }, - "9204": { + "9663": { "sourceFileName": "../../../../packages/core/types/src/product/service.ts", "qualifiedName": "sharedContext" }, - "9218": { + "9677": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "9232": { + "9691": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "9233": { + "9692": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "9234": { + "9693": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "9235": { + "9694": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "9236": { + "9695": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "9237": { + "9696": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "9238": { + "9697": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "9239": { + "9698": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "9241": { + "9700": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "9242": { + "9701": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "9243": { + "9702": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "9244": { + "9703": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "9245": { + "9704": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO" }, - "9246": { + "9705": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.id" }, - "9247": { + "9706": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.title" }, - "9248": { + "9707": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.handle" }, - "9249": { + "9708": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.subtitle" }, - "9250": { + "9709": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.description" }, - "9251": { + "9710": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.is_giftcard" }, - "9252": { + "9711": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.status" }, - "9253": { + "9712": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.thumbnail" }, - "9254": { + "9713": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.width" }, - "9255": { + "9714": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.weight" }, - "9256": { + "9715": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.length" }, - "9257": { + "9716": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.height" }, - "9258": { + "9717": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.origin_country" }, - "9259": { + "9718": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.hs_code" }, - "9260": { + "9719": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.mid_code" }, - "9261": { + "9720": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.material" }, - "9262": { + "9721": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.collection" }, - "9263": { + "9722": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.collection_id" }, - "9264": { + "9723": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.categories" }, - "9265": { + "9724": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.type" }, - "9266": { + "9725": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.type_id" }, - "9267": { + "9726": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.tags" }, - "9268": { + "9727": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.variants" }, - "9269": { + "9728": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.options" }, - "9270": { + "9729": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.images" }, - "9271": { + "9730": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.discountable" }, - "9272": { + "9731": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.external_id" }, - "9273": { + "9732": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.created_at" }, - "9274": { + "9733": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.updated_at" }, - "9275": { + "9734": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.deleted_at" }, - "9276": { + "9735": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductDTO.metadata" }, - "9277": { + "9736": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "9278": { + "9737": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "9279": { + "9738": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "9280": { + "9739": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "9281": { + "9740": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "9282": { + "9741": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "9283": { + "9742": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "9284": { + "9743": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "9285": { + "9744": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "9286": { + "9745": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "9287": { + "9746": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "9288": { + "9747": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "9289": { + "9748": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps" }, - "9290": { + "9749": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.q" }, - "9291": { + "9750": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.status" }, - "9292": { + "9751": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.title" }, - "9293": { + "9752": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.handle" }, - "9294": { + "9753": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.id" }, - "9295": { + "9754": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.is_giftcard" }, - "9296": { + "9755": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.tags" }, - "9297": { + "9756": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "__type" }, - "9298": { + "9757": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "__type.value" }, - "9299": { + "9758": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.variants" }, - "9300": { + "9759": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "__type" }, - "9301": { + "9760": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "__type.options" }, - "9302": { + "9761": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "__type" }, - "9303": { + "9762": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "__type.value" }, - "9304": { + "9763": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "__type.option_id" }, - "9305": { + "9764": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.type_id" }, - "9306": { + "9765": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.category_id" }, - "9307": { + "9766": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.categories" }, - "9308": { + "9767": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "__type" }, - "9309": { + "9768": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "__type.id" }, - "9310": { + "9769": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "__type" }, - "9311": { + "9770": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "__type.id" }, - "9312": { + "9771": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.collection_id" }, - "9313": { + "9772": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.created_at" }, - "9314": { + "9773": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.updated_at" }, - "9315": { + "9774": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductProps.deleted_at" }, - "9316": { + "9775": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "9317": { + "9776": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "9318": { + "9777": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO" }, - "9319": { + "9778": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.id" }, - "9320": { + "9779": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.title" }, - "9321": { + "9780": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.subtitle" }, - "9322": { + "9781": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.description" }, - "9323": { + "9782": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.is_giftcard" }, - "9324": { + "9783": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.discountable" }, - "9325": { + "9784": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.thumbnail" }, - "9326": { + "9785": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.handle" }, - "9327": { + "9786": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.status" }, - "9328": { + "9787": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.images" }, - "9329": { + "9788": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.type_id" }, - "9330": { + "9789": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.collection_id" }, - "9331": { + "9790": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.tags" }, - "9332": { + "9791": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.category_ids" }, - "9333": { + "9792": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.options" }, - "9334": { + "9793": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.variants" }, - "9335": { + "9794": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.width" }, - "9336": { + "9795": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.height" }, - "9337": { + "9796": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.length" }, - "9338": { + "9797": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.weight" }, - "9339": { + "9798": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.origin_country" }, - "9340": { + "9799": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.hs_code" }, - "9341": { + "9800": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.material" }, - "9342": { + "9801": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.mid_code" }, - "9343": { + "9802": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductDTO.metadata" }, - "9344": { + "9803": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductDTO" }, - "9345": { + "9804": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductDTO.id" }, - "9346": { + "9805": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.title" }, - "9347": { + "9806": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.subtitle" }, - "9348": { + "9807": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.description" }, - "9349": { + "9808": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.is_giftcard" }, - "9350": { + "9809": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.discountable" }, - "9351": { + "9810": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.thumbnail" }, - "9352": { + "9811": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.handle" }, - "9353": { + "9812": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.status" }, - "9354": { + "9813": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.images" }, - "9355": { + "9814": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.type_id" }, - "9356": { + "9815": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.collection_id" }, - "9357": { + "9816": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.tags" }, - "9358": { + "9817": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.category_ids" }, - "9359": { + "9818": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.options" }, - "9360": { + "9819": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.variants" }, - "9361": { + "9820": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.width" }, - "9362": { + "9821": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.height" }, - "9363": { + "9822": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.length" }, - "9364": { + "9823": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.weight" }, - "9365": { + "9824": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.origin_country" }, - "9366": { + "9825": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.hs_code" }, - "9367": { + "9826": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.material" }, - "9368": { + "9827": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.mid_code" }, - "9369": { + "9828": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.metadata" }, - "9370": { + "9829": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO" }, - "9371": { + "9830": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.title" }, - "9372": { + "9831": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.subtitle" }, - "9373": { + "9832": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.description" }, - "9374": { + "9833": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.is_giftcard" }, - "9375": { + "9834": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.discountable" }, - "9376": { + "9835": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.thumbnail" }, - "9377": { + "9836": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.handle" }, - "9378": { + "9837": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.status" }, - "9379": { + "9838": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.images" }, - "9380": { + "9839": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.type_id" }, - "9381": { + "9840": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.collection_id" }, - "9382": { + "9841": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.tags" }, - "9383": { + "9842": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.category_ids" }, - "9384": { + "9843": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.options" }, - "9385": { + "9844": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.variants" }, - "9386": { + "9845": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.width" }, - "9387": { + "9846": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.height" }, - "9388": { + "9847": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.length" }, - "9389": { + "9848": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.weight" }, - "9390": { + "9849": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.origin_country" }, - "9391": { + "9850": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.hs_code" }, - "9392": { + "9851": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.material" }, - "9393": { + "9852": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.mid_code" }, - "9394": { + "9853": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductDTO.metadata" }, - "9395": { + "9854": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "SoftDeleteReturn" }, - "9396": { + "9855": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "9397": { + "9856": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "9398": { + "9857": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RestoreReturn" }, - "9399": { + "9858": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "9400": { + "9859": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "9401": { + "9860": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductTagDTO" }, - "9402": { + "9861": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductTagDTO.id" }, - "9403": { + "9862": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductTagDTO.value" }, - "9404": { + "9863": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductTagDTO.metadata" }, - "9405": { + "9864": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductTagDTO.products" }, - "9406": { + "9865": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductTagProps" }, - "9407": { + "9866": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductTagProps.q" }, - "9408": { + "9867": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductTagProps.id" }, - "9409": { + "9868": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductTagProps.value" }, - "9410": { + "9869": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "9411": { + "9870": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "9412": { + "9871": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductTagDTO" }, - "9413": { + "9872": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductTagDTO.value" }, - "9414": { + "9873": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductTagDTO" }, - "9415": { + "9874": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductTagDTO.id" }, - "9416": { + "9875": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductTagDTO.value" }, - "9417": { + "9876": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductTagDTO" }, - "9418": { + "9877": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductTagDTO.value" }, - "9419": { + "9878": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductTypeDTO" }, - "9420": { + "9879": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductTypeDTO.id" }, - "9421": { + "9880": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductTypeDTO.value" }, - "9422": { + "9881": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductTypeDTO.metadata" }, - "9423": { + "9882": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductTypeDTO.created_at" }, - "9424": { + "9883": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductTypeDTO.updated_at" }, - "9425": { + "9884": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductTypeDTO.deleted_at" }, - "9426": { + "9885": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductTypeProps" }, - "9427": { + "9886": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductTypeProps.q" }, - "9428": { + "9887": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductTypeProps.id" }, - "9429": { + "9888": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductTypeProps.value" }, - "9430": { + "9889": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "9431": { + "9890": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "9432": { + "9891": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductTypeDTO" }, - "9433": { + "9892": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductTypeDTO.value" }, - "9434": { + "9893": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductTypeDTO.metadata" }, - "9435": { + "9894": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductTypeDTO" }, - "9436": { + "9895": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductTypeDTO.id" }, - "9437": { + "9896": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductTypeDTO.value" }, - "9438": { + "9897": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductTypeDTO.metadata" }, - "9439": { + "9898": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductTypeDTO" }, - "9440": { + "9899": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductTypeDTO.value" }, - "9441": { + "9900": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductTypeDTO.metadata" }, - "9442": { + "9901": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionDTO" }, - "9443": { + "9902": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionDTO.id" }, - "9444": { + "9903": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionDTO.title" }, - "9445": { + "9904": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionDTO.product" }, - "9446": { + "9905": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionDTO.product_id" }, - "9447": { + "9906": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionDTO.values" }, - "9448": { + "9907": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionDTO.metadata" }, - "9449": { + "9908": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionDTO.created_at" }, - "9450": { + "9909": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionDTO.updated_at" }, - "9451": { + "9910": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionDTO.deleted_at" }, - "9452": { + "9911": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductOptionProps" }, - "9453": { + "9912": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductOptionProps.q" }, - "9454": { + "9913": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductOptionProps.id" }, - "9455": { + "9914": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductOptionProps.title" }, - "9456": { + "9915": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductOptionProps.product_id" }, - "9457": { + "9916": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "9458": { + "9917": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "9459": { + "9918": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductOptionDTO" }, - "9460": { + "9919": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductOptionDTO.title" }, - "9461": { + "9920": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductOptionDTO.values" }, - "9462": { + "9921": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductOptionDTO.product_id" }, - "9463": { + "9922": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductOptionDTO" }, - "9464": { + "9923": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductOptionDTO.id" }, - "9465": { + "9924": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductOptionDTO.title" }, - "9466": { + "9925": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductOptionDTO.values" }, - "9467": { + "9926": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductOptionDTO.product_id" }, - "9468": { + "9927": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductOptionDTO" }, - "9469": { + "9928": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductOptionDTO.title" }, - "9470": { + "9929": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductOptionDTO.values" }, - "9471": { + "9930": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductOptionDTO.product_id" }, - "9472": { + "9931": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO" }, - "9473": { + "9932": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.id" }, - "9474": { + "9933": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.title" }, - "9475": { + "9934": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.sku" }, - "9476": { + "9935": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.barcode" }, - "9477": { + "9936": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.ean" }, - "9478": { + "9937": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.upc" }, - "9479": { + "9938": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.allow_backorder" }, - "9480": { + "9939": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.manage_inventory" }, - "9481": { + "9940": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.hs_code" }, - "9482": { + "9941": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.origin_country" }, - "9483": { + "9942": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.mid_code" }, - "9484": { + "9943": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.material" }, - "9485": { + "9944": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.weight" }, - "9486": { + "9945": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.length" }, - "9487": { + "9946": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.height" }, - "9488": { + "9947": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.width" }, - "9489": { + "9948": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.options" }, - "9490": { + "9949": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.metadata" }, - "9491": { + "9950": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.product" }, - "9492": { + "9951": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.product_id" }, - "9493": { + "9952": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.variant_rank" }, - "9494": { + "9953": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.created_at" }, - "9495": { + "9954": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.updated_at" }, - "9496": { + "9955": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductVariantDTO.deleted_at" }, - "9497": { + "9956": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductVariantProps" }, - "9498": { + "9957": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductVariantProps.q" }, - "9499": { + "9958": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductVariantProps.id" }, - "9500": { + "9959": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductVariantProps.sku" }, - "9501": { + "9960": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductVariantProps.product_id" }, - "9502": { + "9961": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductVariantProps.options" }, - "9503": { + "9962": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "9504": { + "9963": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "9505": { + "9964": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO" }, - "9506": { + "9965": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.product_id" }, - "9507": { + "9966": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.title" }, - "9508": { + "9967": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.sku" }, - "9509": { + "9968": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.barcode" }, - "9510": { + "9969": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.ean" }, - "9511": { + "9970": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.upc" }, - "9512": { + "9971": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.allow_backorder" }, - "9513": { + "9972": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.manage_inventory" }, - "9514": { + "9973": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.hs_code" }, - "9515": { + "9974": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.origin_country" }, - "9516": { + "9975": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.mid_code" }, - "9517": { + "9976": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.material" }, - "9518": { + "9977": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.weight" }, - "9519": { + "9978": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.length" }, - "9520": { + "9979": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.height" }, - "9521": { + "9980": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.width" }, - "9522": { + "9981": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.options" }, - "9523": { + "9982": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductVariantDTO.metadata" }, - "9524": { + "9983": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductVariantDTO" }, - "9525": { + "9984": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductVariantDTO.id" }, - "9526": { + "9985": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.title" }, - "9527": { + "9986": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.sku" }, - "9528": { + "9987": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.barcode" }, - "9529": { + "9988": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.ean" }, - "9530": { + "9989": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.upc" }, - "9531": { + "9990": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.allow_backorder" }, - "9532": { + "9991": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.manage_inventory" }, - "9533": { + "9992": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.hs_code" }, - "9534": { + "9993": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.origin_country" }, - "9535": { + "9994": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.mid_code" }, - "9536": { + "9995": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.material" }, - "9537": { + "9996": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.weight" }, - "9538": { + "9997": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.length" }, - "9539": { + "9998": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.height" }, - "9540": { + "9999": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.width" }, - "9541": { + "10000": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.options" }, - "9542": { + "10001": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.metadata" }, - "9543": { + "10002": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO" }, - "9544": { + "10003": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.title" }, - "9545": { + "10004": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.sku" }, - "9546": { + "10005": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.barcode" }, - "9547": { + "10006": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.ean" }, - "9548": { + "10007": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.upc" }, - "9549": { + "10008": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.allow_backorder" }, - "9550": { + "10009": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.manage_inventory" }, - "9551": { + "10010": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.hs_code" }, - "9552": { + "10011": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.origin_country" }, - "9553": { + "10012": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.mid_code" }, - "9554": { + "10013": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.material" }, - "9555": { + "10014": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.weight" }, - "9556": { + "10015": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.length" }, - "9557": { + "10016": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.height" }, - "9558": { + "10017": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.width" }, - "9559": { + "10018": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.options" }, - "9560": { + "10019": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductVariantDTO.metadata" }, - "9561": { + "10020": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCollectionDTO" }, - "9562": { + "10021": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCollectionDTO.id" }, - "9563": { + "10022": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCollectionDTO.title" }, - "9564": { + "10023": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCollectionDTO.handle" }, - "9565": { + "10024": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCollectionDTO.metadata" }, - "9566": { + "10025": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCollectionDTO.created_at" }, - "9567": { + "10026": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCollectionDTO.updated_at" }, - "9568": { + "10027": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCollectionDTO.deleted_at" }, - "9569": { + "10028": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCollectionDTO.products" }, - "9570": { + "10029": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCollectionProps" }, - "9571": { + "10030": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCollectionProps.q" }, - "9572": { + "10031": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCollectionProps.id" }, - "9573": { + "10032": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCollectionProps.handle" }, - "9574": { + "10033": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCollectionProps.title" }, - "9575": { + "10034": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "9576": { + "10035": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "9577": { + "10036": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCollectionDTO" }, - "9578": { + "10037": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCollectionDTO.title" }, - "9579": { + "10038": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCollectionDTO.handle" }, - "9580": { + "10039": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCollectionDTO.product_ids" }, - "9581": { + "10040": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCollectionDTO.metadata" }, - "9582": { + "10041": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductCollectionDTO" }, - "9583": { + "10042": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductCollectionDTO.id" }, - "9584": { + "10043": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCollectionDTO.value" }, - "9585": { + "10044": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCollectionDTO.title" }, - "9586": { + "10045": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCollectionDTO.handle" }, - "9587": { + "10046": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCollectionDTO.product_ids" }, - "9588": { + "10047": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCollectionDTO.metadata" }, - "9589": { + "10048": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCollectionDTO" }, - "9590": { + "10049": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCollectionDTO.value" }, - "9591": { + "10050": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCollectionDTO.title" }, - "9592": { + "10051": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCollectionDTO.handle" }, - "9593": { + "10052": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCollectionDTO.product_ids" }, - "9594": { + "10053": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCollectionDTO.metadata" }, - "9595": { + "10054": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO" }, - "9596": { + "10055": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.id" }, - "9597": { + "10056": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.name" }, - "9598": { + "10057": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.description" }, - "9599": { + "10058": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.handle" }, - "9600": { + "10059": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.is_active" }, - "9601": { + "10060": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.is_internal" }, - "9602": { + "10061": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.rank" }, - "9603": { + "10062": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.metadata" }, - "9604": { + "10063": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.parent_category" }, - "9605": { + "10064": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.parent_category_id" }, - "9606": { + "10065": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.category_children" }, - "9607": { + "10066": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.products" }, - "9608": { + "10067": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.created_at" }, - "9609": { + "10068": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductCategoryDTO.updated_at" }, - "9610": { + "10069": { + "sourceFileName": "../../../../packages/core/types/src/product/common.ts", + "qualifiedName": "ProductCategoryDTO.deleted_at" + }, + "10070": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCategoryProps" }, - "9611": { + "10071": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCategoryProps.q" }, - "9612": { + "10072": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCategoryProps.id" }, - "9613": { + "10073": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCategoryProps.name" }, - "9614": { + "10074": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCategoryProps.parent_category_id" }, - "9615": { + "10075": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCategoryProps.handle" }, - "9616": { + "10076": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCategoryProps.is_active" }, - "9617": { + "10077": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCategoryProps.is_internal" }, - "9618": { + "10078": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCategoryProps.include_descendants_tree" }, - "9619": { + "10079": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "FilterableProductCategoryProps.include_ancestors_tree" }, - "9620": { + "10080": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "9621": { + "10081": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "9622": { + "10082": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCategoryDTO" }, - "9623": { + "10083": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCategoryDTO.name" }, - "9624": { + "10084": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCategoryDTO.description" }, - "9625": { + "10085": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCategoryDTO.handle" }, - "9626": { + "10086": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCategoryDTO.is_active" }, - "9627": { + "10087": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCategoryDTO.is_internal" }, - "9628": { + "10088": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCategoryDTO.rank" }, - "9629": { + "10089": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCategoryDTO.parent_category_id" }, - "9630": { + "10090": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "CreateProductCategoryDTO.metadata" }, - "9631": { + "10091": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductCategoryDTO" }, - "9632": { + "10092": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductCategoryDTO.id" }, - "9633": { + "10093": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.name" }, - "9634": { + "10094": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.description" }, - "9635": { + "10095": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.handle" }, - "9636": { + "10096": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.is_active" }, - "9637": { + "10097": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.is_internal" }, - "9638": { + "10098": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.rank" }, - "9639": { + "10099": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.parent_category_id" }, - "9640": { + "10100": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.metadata" }, - "9641": { + "10101": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO" }, - "9642": { + "10102": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.name" }, - "9643": { + "10103": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.description" }, - "9644": { + "10104": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.handle" }, - "9645": { + "10105": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.is_active" }, - "9646": { + "10106": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.is_internal" }, - "9647": { + "10107": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.rank" }, - "9648": { + "10108": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.parent_category_id" }, - "9649": { + "10109": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductCategoryDTO.metadata" }, - "9650": { + "10110": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "9651": { + "10111": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "9652": { + "10112": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "9653": { + "10113": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "9654": { + "10114": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "9655": { + "10115": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "9656": { + "10116": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "9657": { + "10117": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "9658": { + "10118": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "9659": { + "10119": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "9660": { + "10120": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "9661": { + "10121": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "9662": { + "10122": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "9663": { + "10123": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "9664": { + "10124": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "9665": { + "10125": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "9666": { + "10126": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "9667": { + "10127": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "9668": { + "10128": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "9669": { + "10129": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "9670": { + "10130": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "9671": { + "10131": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "9672": { + "10132": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "9673": { + "10133": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "9674": { + "10134": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductStatus" }, - "9675": { + "10135": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductImageDTO" }, - "9676": { + "10136": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductImageDTO.id" }, - "9677": { + "10137": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductImageDTO.url" }, - "9678": { + "10138": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductImageDTO.metadata" }, - "9679": { + "10139": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductImageDTO.created_at" }, - "9680": { + "10140": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductImageDTO.updated_at" }, - "9681": { + "10141": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductImageDTO.deleted_at" }, - "9682": { + "10142": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "MetadataType" }, - "9683": { + "10143": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "9684": { + "10144": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "9685": { + "10145": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "9686": { + "10146": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "9687": { + "10147": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "9688": { + "10148": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "9689": { + "10149": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "9690": { + "10150": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "9691": { + "10151": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "9692": { + "10152": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "9693": { + "10153": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "9694": { + "10154": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "9695": { + "10155": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "9696": { + "10156": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "9697": { + "10157": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "9698": { + "10158": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "9699": { + "10159": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "9700": { + "10160": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "9701": { + "10161": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "OperatorMap" }, - "9702": { + "10162": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "9703": { + "10163": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$and" }, - "9704": { + "10164": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$or" }, - "9705": { + "10165": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$eq" }, - "9706": { + "10166": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ne" }, - "9707": { + "10167": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$in" }, - "9708": { + "10168": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$nin" }, - "9709": { + "10169": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$not" }, - "9710": { + "10170": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gt" }, - "9711": { + "10171": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gte" }, - "9712": { + "10172": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lt" }, - "9713": { + "10173": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lte" }, - "9714": { + "10174": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$like" }, - "9715": { + "10175": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$re" }, - "9716": { + "10176": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ilike" }, - "9717": { + "10177": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$fulltext" }, - "9718": { + "10178": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$overlap" }, - "9719": { + "10179": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contains" }, - "9720": { + "10180": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contained" }, - "9721": { + "10181": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$exists" }, - "9722": { + "10182": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "9723": { + "10183": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductImageDTO" }, - "9724": { + "10184": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpsertProductImageDTO.id" }, - "9725": { + "10185": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductImageDTO.url" }, - "9726": { + "10186": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductImageDTO.metadata" }, - "9727": { + "10187": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionValueDTO" }, - "9728": { + "10188": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionValueDTO.id" }, - "9729": { + "10189": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionValueDTO.value" }, - "9730": { + "10190": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionValueDTO.option" }, - "9731": { + "10191": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionValueDTO.option_id" }, - "9732": { + "10192": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionValueDTO.metadata" }, - "9733": { + "10193": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionValueDTO.created_at" }, - "9734": { + "10194": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionValueDTO.updated_at" }, - "9735": { + "10195": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "ProductOptionValueDTO.deleted_at" }, - "9736": { + "10196": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "9737": { + "10197": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "9738": { + "10198": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "9739": { + "10199": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "9740": { + "10200": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "9741": { + "10201": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "9742": { + "10202": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "9743": { + "10203": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "9744": { + "10204": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "9745": { + "10205": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "9746": { + "10206": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "9747": { + "10207": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "9748": { + "10208": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "9749": { + "10209": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "9750": { + "10210": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "9751": { + "10211": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "9752": { + "10212": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "9753": { + "10213": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "9754": { + "10214": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "9755": { + "10215": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "9756": { + "10216": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "9757": { + "10217": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "9758": { + "10218": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "9759": { + "10219": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "9760": { + "10220": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "9761": { + "10221": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "9762": { + "10222": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "9763": { + "10223": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "9764": { + "10224": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "9765": { + "10225": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "9766": { + "10226": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "9767": { + "10227": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "9769": { + "10229": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "9770": { + "10230": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "9771": { + "10231": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "9772": { + "10232": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "9773": { + "10233": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "9774": { + "10234": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "9775": { + "10235": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "9776": { + "10236": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "9777": { + "10237": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "9778": { + "10238": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "9779": { + "10239": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Query" }, - "9780": { + "10240": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "9781": { + "10241": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ExpandScalar" }, - "9782": { + "10242": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "9783": { + "10243": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductImageDTO" }, - "9784": { + "10244": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductImageDTO.url" }, - "9785": { + "10245": { "sourceFileName": "../../../../packages/core/types/src/product/common.ts", "qualifiedName": "UpdateProductImageDTO.metadata" }, - "9786": { + "10246": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "9787": { + "10247": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "9788": { + "10248": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "9789": { + "10249": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "9790": { + "10250": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "9791": { + "10251": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "9792": { + "10252": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "9793": { + "10253": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "9794": { + "10254": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "9795": { + "10255": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "9796": { + "10256": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "9797": { + "10257": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "9798": { + "10258": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "9799": { + "10259": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "9800": { + "10260": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "9801": { + "10261": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "9802": { + "10262": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "9803": { + "10263": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "9804": { + "10264": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Scalar" }, - "9805": { + "10265": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "9806": { + "10266": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "9807": { + "10267": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "9808": { + "10268": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterQuery" }, - "9809": { + "10269": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "9810": { + "10270": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "9812": { + "10272": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "9813": { + "10273": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Prev" }, - "9814": { + "10274": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue" }, - "9815": { + "10275": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "9816": { + "10276": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "9817": { + "10277": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "9818": { + "10278": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" }, - "9819": { + "10279": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "PrevLimit" }, - "9820": { + "10280": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue2" }, - "9821": { + "10281": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "9822": { + "10282": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Primary" }, - "9823": { + "10283": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "9824": { + "10284": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.[PrimaryKeyType]" }, - "9825": { + "10285": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "9826": { + "10286": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type._id" }, - "9827": { + "10287": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "9828": { + "10288": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.uuid" }, - "9829": { + "10289": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "9830": { + "10290": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.id" }, - "9831": { + "10291": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "9832": { + "10292": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ReadonlyPrimary" }, - "9833": { + "10293": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" } @@ -33370,7 +33406,7 @@ "1": "../../../../packages/core/types/src/product/service.ts" }, "reflections": { - "1": 8825 + "1": 9284 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/promotion-models.json b/www/utils/generated/typedoc-json-output/promotion-models.json index 5a2612f65f60c..d6c67664bbfbd 100644 --- a/www/utils/generated/typedoc-json-output/promotion-models.json +++ b/www/utils/generated/typedoc-json-output/promotion-models.json @@ -1,5 +1,5 @@ { - "id": 10574, + "id": 10867, "name": "promotion-models", "variant": "project", "kind": 1, @@ -18,28 +18,28 @@ }, "children": [ { - "id": 10575, + "id": 10868, "name": "ApplicationMethod", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 10576, + "id": 10869, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 10577, + "id": 10870, "name": "new ApplicationMethod", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 10575, + "target": 10868, "name": "ApplicationMethod", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -48,7 +48,7 @@ ] }, { - "id": 10578, + "id": 10871, "name": "id", "variant": "declaration", "kind": 1024, @@ -59,7 +59,7 @@ } }, { - "id": 10579, + "id": 10872, "name": "value", "variant": "declaration", "kind": 1024, @@ -88,7 +88,7 @@ } }, { - "id": 10580, + "id": 10873, "name": "raw_value", "variant": "declaration", "kind": 1024, @@ -113,7 +113,7 @@ } }, { - "id": 10581, + "id": 10874, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -134,7 +134,7 @@ "defaultValue": "null" }, { - "id": 10582, + "id": 10875, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -157,7 +157,7 @@ "defaultValue": "null" }, { - "id": 10583, + "id": 10876, "name": "apply_to_quantity", "variant": "declaration", "kind": 1024, @@ -180,7 +180,7 @@ "defaultValue": "null" }, { - "id": 10584, + "id": 10877, "name": "buy_rules_min_quantity", "variant": "declaration", "kind": 1024, @@ -203,7 +203,7 @@ "defaultValue": "null" }, { - "id": 10585, + "id": 10878, "name": "type", "variant": "declaration", "kind": 1024, @@ -219,7 +219,7 @@ } }, { - "id": 10586, + "id": 10879, "name": "target_type", "variant": "declaration", "kind": 1024, @@ -235,7 +235,7 @@ } }, { - "id": 10587, + "id": 10880, "name": "allocation", "variant": "declaration", "kind": 1024, @@ -253,21 +253,21 @@ } }, { - "id": 10588, + "id": 10881, "name": "promotion", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 10636, + "target": 10929, "name": "Promotion", "package": "@medusajs/promotion", "qualifiedName": "default" } }, { - "id": 10589, + "id": 10882, "name": "target_rules", "variant": "declaration", "kind": 1024, @@ -281,7 +281,7 @@ "typeArguments": [ { "type": "reference", - "target": 10655, + "target": 10948, "name": "PromotionRule", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -297,7 +297,7 @@ "defaultValue": "..." }, { - "id": 10590, + "id": 10883, "name": "buy_rules", "variant": "declaration", "kind": 1024, @@ -311,7 +311,7 @@ "typeArguments": [ { "type": "reference", - "target": 10655, + "target": 10948, "name": "PromotionRule", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -327,7 +327,7 @@ "defaultValue": "..." }, { - "id": 10591, + "id": 10884, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -343,7 +343,7 @@ } }, { - "id": 10592, + "id": 10885, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -359,7 +359,7 @@ } }, { - "id": 10593, + "id": 10886, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -385,14 +385,14 @@ "defaultValue": "null" }, { - "id": 10594, + "id": 10887, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10595, + "id": 10888, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -405,14 +405,14 @@ ] }, { - "id": 10596, + "id": 10889, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10597, + "id": 10890, "name": "onInit", "variant": "signature", "kind": 4096, @@ -429,62 +429,62 @@ { "title": "Constructors", "children": [ - 10576 + 10869 ] }, { "title": "Properties", "children": [ - 10578, - 10579, - 10580, - 10581, - 10582, - 10583, - 10584, - 10585, - 10586, - 10587, - 10588, - 10589, - 10590, - 10591, - 10592, - 10593 + 10871, + 10872, + 10873, + 10874, + 10875, + 10876, + 10877, + 10878, + 10879, + 10880, + 10881, + 10882, + 10883, + 10884, + 10885, + 10886 ] }, { "title": "Methods", "children": [ - 10594, - 10596 + 10887, + 10889 ] } ] }, { - "id": 10617, + "id": 10910, "name": "CampaignBudget", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 10618, + "id": 10911, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 10619, + "id": 10912, "name": "new CampaignBudget", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 10617, + "target": 10910, "name": "CampaignBudget", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -493,7 +493,7 @@ ] }, { - "id": 10635, + "id": 10928, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -511,7 +511,7 @@ } }, { - "id": 10620, + "id": 10913, "name": "id", "variant": "declaration", "kind": 1024, @@ -522,7 +522,7 @@ } }, { - "id": 10621, + "id": 10914, "name": "type", "variant": "declaration", "kind": 1024, @@ -538,7 +538,7 @@ } }, { - "id": 10622, + "id": 10915, "name": "campaign", "variant": "declaration", "kind": 1024, @@ -552,7 +552,7 @@ }, { "type": "reference", - "target": 10598, + "target": 10891, "name": "Campaign", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -562,7 +562,7 @@ "defaultValue": "null" }, { - "id": 10623, + "id": 10916, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -583,7 +583,7 @@ "defaultValue": "null" }, { - "id": 10624, + "id": 10917, "name": "limit", "variant": "declaration", "kind": 1024, @@ -613,7 +613,7 @@ "defaultValue": "null" }, { - "id": 10625, + "id": 10918, "name": "raw_limit", "variant": "declaration", "kind": 1024, @@ -639,7 +639,7 @@ "defaultValue": "null" }, { - "id": 10626, + "id": 10919, "name": "used", "variant": "declaration", "kind": 1024, @@ -665,7 +665,7 @@ "defaultValue": "0" }, { - "id": 10627, + "id": 10920, "name": "raw_used", "variant": "declaration", "kind": 1024, @@ -681,7 +681,7 @@ } }, { - "id": 10628, + "id": 10921, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -697,7 +697,7 @@ } }, { - "id": 10629, + "id": 10922, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -713,7 +713,7 @@ } }, { - "id": 10630, + "id": 10923, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -739,14 +739,14 @@ "defaultValue": "null" }, { - "id": 10631, + "id": 10924, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10632, + "id": 10925, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -759,14 +759,14 @@ ] }, { - "id": 10633, + "id": 10926, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10634, + "id": 10927, "name": "onInit", "variant": "signature", "kind": 4096, @@ -783,58 +783,58 @@ { "title": "Constructors", "children": [ - 10618 + 10911 ] }, { "title": "Properties", "children": [ - 10635, - 10620, - 10621, - 10622, - 10623, - 10624, - 10625, - 10626, - 10627, - 10628, - 10629, - 10630 + 10928, + 10913, + 10914, + 10915, + 10916, + 10917, + 10918, + 10919, + 10920, + 10921, + 10922, + 10923 ] }, { "title": "Methods", "children": [ - 10631, - 10633 + 10924, + 10926 ] } ] }, { - "id": 10598, + "id": 10891, "name": "Campaign", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 10599, + "id": 10892, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 10600, + "id": 10893, "name": "new Campaign", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 10598, + "target": 10891, "name": "Campaign", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -843,7 +843,7 @@ ] }, { - "id": 10616, + "id": 10909, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -870,7 +870,7 @@ } }, { - "id": 10601, + "id": 10894, "name": "id", "variant": "declaration", "kind": 1024, @@ -881,7 +881,7 @@ } }, { - "id": 10602, + "id": 10895, "name": "name", "variant": "declaration", "kind": 1024, @@ -892,7 +892,7 @@ } }, { - "id": 10603, + "id": 10896, "name": "description", "variant": "declaration", "kind": 1024, @@ -913,7 +913,7 @@ "defaultValue": "null" }, { - "id": 10604, + "id": 10897, "name": "campaign_identifier", "variant": "declaration", "kind": 1024, @@ -924,7 +924,7 @@ } }, { - "id": 10605, + "id": 10898, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -950,7 +950,7 @@ "defaultValue": "null" }, { - "id": 10606, + "id": 10899, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -976,7 +976,7 @@ "defaultValue": "null" }, { - "id": 10607, + "id": 10900, "name": "budget", "variant": "declaration", "kind": 1024, @@ -990,7 +990,7 @@ }, { "type": "reference", - "target": 10617, + "target": 10910, "name": "CampaignBudget", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -1000,7 +1000,7 @@ "defaultValue": "null" }, { - "id": 10608, + "id": 10901, "name": "promotions", "variant": "declaration", "kind": 1024, @@ -1014,7 +1014,7 @@ "typeArguments": [ { "type": "reference", - "target": 10636, + "target": 10929, "name": "Promotion", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -1030,7 +1030,7 @@ "defaultValue": "..." }, { - "id": 10609, + "id": 10902, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1046,7 +1046,7 @@ } }, { - "id": 10610, + "id": 10903, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1062,7 +1062,7 @@ } }, { - "id": 10611, + "id": 10904, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1088,14 +1088,14 @@ "defaultValue": "null" }, { - "id": 10612, + "id": 10905, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10613, + "id": 10906, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1108,14 +1108,14 @@ ] }, { - "id": 10614, + "id": 10907, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10615, + "id": 10908, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1132,58 +1132,58 @@ { "title": "Constructors", "children": [ - 10599 + 10892 ] }, { "title": "Properties", "children": [ - 10616, - 10601, - 10602, - 10603, - 10604, - 10605, - 10606, - 10607, - 10608, - 10609, - 10610, - 10611 + 10909, + 10894, + 10895, + 10896, + 10897, + 10898, + 10899, + 10900, + 10901, + 10902, + 10903, + 10904 ] }, { "title": "Methods", "children": [ - 10612, - 10614 + 10905, + 10907 ] } ] }, { - "id": 10674, + "id": 10967, "name": "PromotionRuleValue", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 10675, + "id": 10968, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 10676, + "id": 10969, "name": "new PromotionRuleValue", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 10674, + "target": 10967, "name": "PromotionRuleValue", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -1192,7 +1192,7 @@ ] }, { - "id": 10677, + "id": 10970, "name": "id", "variant": "declaration", "kind": 1024, @@ -1203,21 +1203,21 @@ } }, { - "id": 10678, + "id": 10971, "name": "promotion_rule", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 10655, + "target": 10948, "name": "PromotionRule", "package": "@medusajs/promotion", "qualifiedName": "default" } }, { - "id": 10679, + "id": 10972, "name": "value", "variant": "declaration", "kind": 1024, @@ -1228,7 +1228,7 @@ } }, { - "id": 10680, + "id": 10973, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1244,7 +1244,7 @@ } }, { - "id": 10681, + "id": 10974, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1260,7 +1260,7 @@ } }, { - "id": 10682, + "id": 10975, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1286,14 +1286,14 @@ "defaultValue": "null" }, { - "id": 10683, + "id": 10976, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10684, + "id": 10977, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1306,14 +1306,14 @@ ] }, { - "id": 10685, + "id": 10978, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10686, + "id": 10979, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1330,52 +1330,52 @@ { "title": "Constructors", "children": [ - 10675 + 10968 ] }, { "title": "Properties", "children": [ - 10677, - 10678, - 10679, - 10680, - 10681, - 10682 + 10970, + 10971, + 10972, + 10973, + 10974, + 10975 ] }, { "title": "Methods", "children": [ - 10683, - 10685 + 10976, + 10978 ] } ] }, { - "id": 10655, + "id": 10948, "name": "PromotionRule", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 10656, + "id": 10949, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 10657, + "id": 10950, "name": "new PromotionRule", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 10655, + "target": 10948, "name": "PromotionRule", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -1384,7 +1384,7 @@ ] }, { - "id": 10673, + "id": 10966, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -1416,7 +1416,7 @@ } }, { - "id": 10658, + "id": 10951, "name": "id", "variant": "declaration", "kind": 1024, @@ -1427,7 +1427,7 @@ } }, { - "id": 10659, + "id": 10952, "name": "description", "variant": "declaration", "kind": 1024, @@ -1448,7 +1448,7 @@ "defaultValue": "null" }, { - "id": 10660, + "id": 10953, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -1459,7 +1459,7 @@ } }, { - "id": 10661, + "id": 10954, "name": "operator", "variant": "declaration", "kind": 1024, @@ -1475,7 +1475,7 @@ } }, { - "id": 10662, + "id": 10955, "name": "values", "variant": "declaration", "kind": 1024, @@ -1489,7 +1489,7 @@ "typeArguments": [ { "type": "reference", - "target": 10674, + "target": 10967, "name": "PromotionRuleValue", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -1505,7 +1505,7 @@ "defaultValue": "..." }, { - "id": 10663, + "id": 10956, "name": "promotions", "variant": "declaration", "kind": 1024, @@ -1519,7 +1519,7 @@ "typeArguments": [ { "type": "reference", - "target": 10636, + "target": 10929, "name": "Promotion", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -1535,7 +1535,7 @@ "defaultValue": "..." }, { - "id": 10664, + "id": 10957, "name": "method_target_rules", "variant": "declaration", "kind": 1024, @@ -1549,7 +1549,7 @@ "typeArguments": [ { "type": "reference", - "target": 10575, + "target": 10868, "name": "ApplicationMethod", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -1565,7 +1565,7 @@ "defaultValue": "..." }, { - "id": 10665, + "id": 10958, "name": "method_buy_rules", "variant": "declaration", "kind": 1024, @@ -1579,7 +1579,7 @@ "typeArguments": [ { "type": "reference", - "target": 10575, + "target": 10868, "name": "ApplicationMethod", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -1595,7 +1595,7 @@ "defaultValue": "..." }, { - "id": 10666, + "id": 10959, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1611,7 +1611,7 @@ } }, { - "id": 10667, + "id": 10960, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1627,7 +1627,7 @@ } }, { - "id": 10668, + "id": 10961, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1653,14 +1653,14 @@ "defaultValue": "null" }, { - "id": 10669, + "id": 10962, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10670, + "id": 10963, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -1673,14 +1673,14 @@ ] }, { - "id": 10671, + "id": 10964, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10672, + "id": 10965, "name": "onInit", "variant": "signature", "kind": 4096, @@ -1697,58 +1697,58 @@ { "title": "Constructors", "children": [ - 10656 + 10949 ] }, { "title": "Properties", "children": [ - 10673, - 10658, - 10659, - 10660, - 10661, - 10662, - 10663, - 10664, - 10665, - 10666, - 10667, - 10668 + 10966, + 10951, + 10952, + 10953, + 10954, + 10955, + 10956, + 10957, + 10958, + 10959, + 10960, + 10961 ] }, { "title": "Methods", "children": [ - 10669, - 10671 + 10962, + 10964 ] } ] }, { - "id": 10636, + "id": 10929, "name": "Promotion", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 10637, + "id": 10930, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 10638, + "id": 10931, "name": "new Promotion", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 10636, + "target": 10929, "name": "Promotion", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -1757,7 +1757,7 @@ ] }, { - "id": 10654, + "id": 10947, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -1789,7 +1789,7 @@ } }, { - "id": 10639, + "id": 10932, "name": "id", "variant": "declaration", "kind": 1024, @@ -1800,7 +1800,7 @@ } }, { - "id": 10640, + "id": 10933, "name": "code", "variant": "declaration", "kind": 1024, @@ -1811,7 +1811,7 @@ } }, { - "id": 10641, + "id": 10934, "name": "campaign_id", "variant": "declaration", "kind": 1024, @@ -1832,7 +1832,7 @@ "defaultValue": "null" }, { - "id": 10642, + "id": 10935, "name": "campaign", "variant": "declaration", "kind": 1024, @@ -1846,7 +1846,7 @@ }, { "type": "reference", - "target": 10598, + "target": 10891, "name": "Campaign", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -1855,7 +1855,7 @@ } }, { - "id": 10643, + "id": 10936, "name": "is_automatic", "variant": "declaration", "kind": 1024, @@ -1867,7 +1867,7 @@ "defaultValue": "false" }, { - "id": 10644, + "id": 10937, "name": "type", "variant": "declaration", "kind": 1024, @@ -1883,21 +1883,21 @@ } }, { - "id": 10645, + "id": 10938, "name": "application_method", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 10575, + "target": 10868, "name": "ApplicationMethod", "package": "@medusajs/promotion", "qualifiedName": "default" } }, { - "id": 10646, + "id": 10939, "name": "rules", "variant": "declaration", "kind": 1024, @@ -1911,7 +1911,7 @@ "typeArguments": [ { "type": "reference", - "target": 10655, + "target": 10948, "name": "PromotionRule", "package": "@medusajs/promotion", "qualifiedName": "default" @@ -1927,7 +1927,7 @@ "defaultValue": "..." }, { - "id": 10647, + "id": 10940, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -1943,7 +1943,7 @@ } }, { - "id": 10648, + "id": 10941, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -1959,7 +1959,7 @@ } }, { - "id": 10649, + "id": 10942, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -1985,14 +1985,14 @@ "defaultValue": "null" }, { - "id": 10650, + "id": 10943, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10651, + "id": 10944, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -2005,14 +2005,14 @@ ] }, { - "id": 10652, + "id": 10945, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10653, + "id": 10946, "name": "onInit", "variant": "signature", "kind": 4096, @@ -2029,31 +2029,31 @@ { "title": "Constructors", "children": [ - 10637 + 10930 ] }, { "title": "Properties", "children": [ - 10654, - 10639, - 10640, - 10641, - 10642, - 10643, - 10644, - 10645, - 10646, - 10647, - 10648, - 10649 + 10947, + 10932, + 10933, + 10934, + 10935, + 10936, + 10937, + 10938, + 10939, + 10940, + 10941, + 10942 ] }, { "title": "Methods", "children": [ - 10650, - 10652 + 10943, + 10945 ] } ] @@ -2063,418 +2063,418 @@ { "title": "Classes", "children": [ - 10575, - 10617, - 10598, - 10674, - 10655, - 10636 + 10868, + 10910, + 10891, + 10967, + 10948, + 10929 ] } ], "packageName": "@medusajs/promotion", "symbolIdMap": { - "10574": { + "10867": { "sourceFileName": "../../../../packages/modules/promotion/src/models/index.ts", "qualifiedName": "" }, - "10575": { + "10868": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default" }, - "10578": { + "10871": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.id" }, - "10579": { + "10872": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.value" }, - "10580": { + "10873": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.raw_value" }, - "10581": { + "10874": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.currency_code" }, - "10582": { + "10875": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.max_quantity" }, - "10583": { + "10876": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.apply_to_quantity" }, - "10584": { + "10877": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.buy_rules_min_quantity" }, - "10585": { + "10878": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.type" }, - "10586": { + "10879": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.target_type" }, - "10587": { + "10880": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.allocation" }, - "10588": { + "10881": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.promotion" }, - "10589": { + "10882": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.target_rules" }, - "10590": { + "10883": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.buy_rules" }, - "10591": { + "10884": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.created_at" }, - "10592": { + "10885": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.updated_at" }, - "10593": { + "10886": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.deleted_at" }, - "10594": { + "10887": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.onCreate" }, - "10595": { + "10888": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.onCreate" }, - "10596": { + "10889": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.onInit" }, - "10597": { + "10890": { "sourceFileName": "../../../../packages/modules/promotion/src/models/application-method.ts", "qualifiedName": "default.onInit" }, - "10598": { + "10891": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default" }, - "10601": { + "10894": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.id" }, - "10602": { + "10895": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.name" }, - "10603": { + "10896": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.description" }, - "10604": { + "10897": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.campaign_identifier" }, - "10605": { + "10898": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.starts_at" }, - "10606": { + "10899": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.ends_at" }, - "10607": { + "10900": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.budget" }, - "10608": { + "10901": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.promotions" }, - "10609": { + "10902": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.created_at" }, - "10610": { + "10903": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.updated_at" }, - "10611": { + "10904": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.deleted_at" }, - "10612": { + "10905": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.onCreate" }, - "10613": { + "10906": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.onCreate" }, - "10614": { + "10907": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.onInit" }, - "10615": { + "10908": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.onInit" }, - "10616": { + "10909": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign.ts", "qualifiedName": "default.[OptionalProps]" }, - "10617": { + "10910": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default" }, - "10620": { + "10913": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.id" }, - "10621": { + "10914": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.type" }, - "10622": { + "10915": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.campaign" }, - "10623": { + "10916": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.currency_code" }, - "10624": { + "10917": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.limit" }, - "10625": { + "10918": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.raw_limit" }, - "10626": { + "10919": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.used" }, - "10627": { + "10920": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.raw_used" }, - "10628": { + "10921": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.created_at" }, - "10629": { + "10922": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.updated_at" }, - "10630": { + "10923": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.deleted_at" }, - "10631": { + "10924": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.onCreate" }, - "10632": { + "10925": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.onCreate" }, - "10633": { + "10926": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.onInit" }, - "10634": { + "10927": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.onInit" }, - "10635": { + "10928": { "sourceFileName": "../../../../packages/modules/promotion/src/models/campaign-budget.ts", "qualifiedName": "default.[OptionalProps]" }, - "10636": { + "10929": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default" }, - "10639": { + "10932": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.id" }, - "10640": { + "10933": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.code" }, - "10641": { + "10934": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.campaign_id" }, - "10642": { + "10935": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.campaign" }, - "10643": { + "10936": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.is_automatic" }, - "10644": { + "10937": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.type" }, - "10645": { + "10938": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.application_method" }, - "10646": { + "10939": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.rules" }, - "10647": { + "10940": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.created_at" }, - "10648": { + "10941": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.updated_at" }, - "10649": { + "10942": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.deleted_at" }, - "10650": { + "10943": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.onCreate" }, - "10651": { + "10944": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.onCreate" }, - "10652": { + "10945": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.onInit" }, - "10653": { + "10946": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.onInit" }, - "10654": { + "10947": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion.ts", "qualifiedName": "default.[OptionalProps]" }, - "10655": { + "10948": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default" }, - "10658": { + "10951": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.id" }, - "10659": { + "10952": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.description" }, - "10660": { + "10953": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.attribute" }, - "10661": { + "10954": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.operator" }, - "10662": { + "10955": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.values" }, - "10663": { + "10956": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.promotions" }, - "10664": { + "10957": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.method_target_rules" }, - "10665": { + "10958": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.method_buy_rules" }, - "10666": { + "10959": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.created_at" }, - "10667": { + "10960": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.updated_at" }, - "10668": { + "10961": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.deleted_at" }, - "10669": { + "10962": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.onCreate" }, - "10670": { + "10963": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.onCreate" }, - "10671": { + "10964": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.onInit" }, - "10672": { + "10965": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.onInit" }, - "10673": { + "10966": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule.ts", "qualifiedName": "default.[OptionalProps]" }, - "10674": { + "10967": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule-value.ts", "qualifiedName": "default" }, - "10677": { + "10970": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule-value.ts", "qualifiedName": "default.id" }, - "10678": { + "10971": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule-value.ts", "qualifiedName": "default.promotion_rule" }, - "10679": { + "10972": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule-value.ts", "qualifiedName": "default.value" }, - "10680": { + "10973": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule-value.ts", "qualifiedName": "default.created_at" }, - "10681": { + "10974": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule-value.ts", "qualifiedName": "default.updated_at" }, - "10682": { + "10975": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule-value.ts", "qualifiedName": "default.deleted_at" }, - "10683": { + "10976": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule-value.ts", "qualifiedName": "default.onCreate" }, - "10684": { + "10977": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule-value.ts", "qualifiedName": "default.onCreate" }, - "10685": { + "10978": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule-value.ts", "qualifiedName": "default.onInit" }, - "10686": { + "10979": { "sourceFileName": "../../../../packages/modules/promotion/src/models/promotion-rule-value.ts", "qualifiedName": "default.onInit" } @@ -2484,7 +2484,7 @@ "1": "../../../../packages/modules/promotion/src/models/index.ts" }, "reflections": { - "1": 10574 + "1": 10867 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/promotion.json b/www/utils/generated/typedoc-json-output/promotion.json index 38b64558473dc..db12831093bff 100644 --- a/www/utils/generated/typedoc-json-output/promotion.json +++ b/www/utils/generated/typedoc-json-output/promotion.json @@ -1,12 +1,12 @@ { - "id": 10001, + "id": 10294, "name": "promotion", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 10235, + "id": 10528, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 10236, + "id": 10529, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 10247, + "target": 10540, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 10237, + "id": 10530, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 10238, + "id": 10531, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 10239, + "id": 10532, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 10240, + "id": 10533, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 10241, + "id": 10534, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 10242, + "id": 10535, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 10243, + "id": 10536, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 10244, + "id": 10537, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 10245, + "id": 10538, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 10246, + "id": 10539, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 10236, - 10237, - 10238, - 10239, - 10240, - 10244, - 10245, - 10246 + 10529, + 10530, + 10531, + 10532, + 10533, + 10537, + 10538, + 10539 ] } ], "typeParameters": [ { - "id": 10247, + "id": 10540, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 10419, + "id": 10712, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -374,7 +374,7 @@ }, "children": [ { - "id": 10420, + "id": 10713, "name": "$and", "variant": "declaration", "kind": 1024, @@ -396,11 +396,11 @@ "types": [ { "type": "reference", - "target": 10419, + "target": 10712, "typeArguments": [ { "type": "reference", - "target": 10422, + "target": 10715, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -412,7 +412,7 @@ }, { "type": "reference", - "target": 10422, + "target": 10715, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -423,7 +423,7 @@ } }, { - "id": 10421, + "id": 10714, "name": "$or", "variant": "declaration", "kind": 1024, @@ -445,11 +445,11 @@ "types": [ { "type": "reference", - "target": 10419, + "target": 10712, "typeArguments": [ { "type": "reference", - "target": 10422, + "target": 10715, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -461,7 +461,7 @@ }, { "type": "reference", - "target": 10422, + "target": 10715, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -476,14 +476,14 @@ { "title": "Properties", "children": [ - 10420, - 10421 + 10713, + 10714 ] } ], "typeParameters": [ { - "id": 10422, + "id": 10715, "name": "T", "variant": "typeParam", "kind": 131072, @@ -493,23 +493,23 @@ "extendedBy": [ { "type": "reference", - "target": 10226, + "target": 10519, "name": "FilterablePromotionProps" }, { "type": "reference", - "target": 10289, + "target": 10582, "name": "FilterablePromotionRuleProps" }, { "type": "reference", - "target": 10299, + "target": 10592, "name": "FilterableCampaignProps" } ] }, { - "id": 10248, + "id": 10541, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -524,7 +524,7 @@ }, "children": [ { - "id": 10249, + "id": 10542, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -543,7 +543,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10250, + "target": 10543, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -555,13 +555,13 @@ { "title": "Properties", "children": [ - 10249 + 10542 ] } ], "typeParameters": [ { - "id": 10250, + "id": 10543, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -574,7 +574,7 @@ ] }, { - "id": 10251, + "id": 10544, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -589,7 +589,7 @@ }, "children": [ { - "id": 10252, + "id": 10545, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -608,7 +608,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10253, + "target": 10546, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -620,13 +620,13 @@ { "title": "Properties", "children": [ - 10252 + 10545 ] } ], "typeParameters": [ { - "id": 10253, + "id": 10546, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -639,14 +639,14 @@ ] }, { - "id": 10516, + "id": 10809, "name": "Query", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10517, + "id": 10810, "name": "T", "variant": "typeParam", "kind": 131072, @@ -657,7 +657,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10517, + "target": 10810, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -670,14 +670,14 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10517, + "target": 10810, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 10544, + "target": 10837, "name": "Scalar", "package": "@medusajs/types" }, @@ -687,11 +687,11 @@ }, "falseType": { "type": "reference", - "target": 10548, + "target": 10841, "typeArguments": [ { "type": "reference", - "target": 10517, + "target": 10810, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -703,11 +703,11 @@ }, "falseType": { "type": "reference", - "target": 10554, + "target": 10847, "typeArguments": [ { "type": "reference", - "target": 10517, + "target": 10810, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -719,14 +719,14 @@ } }, { - "id": 10518, + "id": 10811, "name": "ExpandScalar", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10519, + "id": 10812, "name": "T", "variant": "typeParam", "kind": 131072, @@ -744,7 +744,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10519, + "target": 10812, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -775,7 +775,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10519, + "target": 10812, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -809,7 +809,7 @@ }, "falseType": { "type": "reference", - "target": 10519, + "target": 10812, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -820,7 +820,7 @@ } }, { - "id": 10544, + "id": 10837, "name": "Scalar", "variant": "declaration", "kind": 2097152, @@ -879,21 +879,21 @@ { "type": "reflection", "declaration": { - "id": 10545, + "id": 10838, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10546, + "id": 10839, "name": "toHexString", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10547, + "id": 10840, "name": "toHexString", "variant": "signature", "kind": 4096, @@ -910,7 +910,7 @@ { "title": "Methods", "children": [ - 10546 + 10839 ] } ] @@ -920,14 +920,14 @@ } }, { - "id": 10572, + "id": 10865, "name": "ReadonlyPrimary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10573, + "id": 10866, "name": "T", "variant": "typeParam", "kind": 131072, @@ -938,7 +938,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10573, + "target": 10866, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -959,7 +959,7 @@ "typeArguments": [ { "type": "reference", - "target": 10573, + "target": 10866, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -970,7 +970,7 @@ }, "falseType": { "type": "reference", - "target": 10573, + "target": 10866, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -978,14 +978,14 @@ } }, { - "id": 10562, + "id": 10855, "name": "Primary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10571, + "id": 10864, "name": "T", "variant": "typeParam", "kind": 131072, @@ -996,7 +996,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10571, + "target": 10864, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1004,14 +1004,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 10563, + "id": 10856, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10564, + "id": 10857, "name": "[PrimaryKeyType]", "variant": "declaration", "kind": 1024, @@ -1028,7 +1028,7 @@ { "title": "Properties", "children": [ - 10564 + 10857 ] } ] @@ -1036,7 +1036,7 @@ }, "trueType": { "type": "reference", - "target": 10572, + "target": 10865, "typeArguments": [ { "type": "reference", @@ -1056,7 +1056,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10571, + "target": 10864, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1064,14 +1064,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 10565, + "id": 10858, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10566, + "id": 10859, "name": "_id", "variant": "declaration", "kind": 1024, @@ -1088,7 +1088,7 @@ { "title": "Properties", "children": [ - 10566 + 10859 ] } ] @@ -1099,7 +1099,7 @@ "types": [ { "type": "reference", - "target": 10572, + "target": 10865, "typeArguments": [ { "type": "reference", @@ -1125,7 +1125,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10571, + "target": 10864, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1133,14 +1133,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 10567, + "id": 10860, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10568, + "id": 10861, "name": "uuid", "variant": "declaration", "kind": 1024, @@ -1157,7 +1157,7 @@ { "title": "Properties", "children": [ - 10568 + 10861 ] } ] @@ -1165,7 +1165,7 @@ }, "trueType": { "type": "reference", - "target": 10572, + "target": 10865, "typeArguments": [ { "type": "reference", @@ -1185,7 +1185,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10571, + "target": 10864, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1193,14 +1193,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 10569, + "id": 10862, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10570, + "id": 10863, "name": "id", "variant": "declaration", "kind": 1024, @@ -1217,7 +1217,7 @@ { "title": "Properties", "children": [ - 10570 + 10863 ] } ] @@ -1225,7 +1225,7 @@ }, "trueType": { "type": "reference", - "target": 10572, + "target": 10865, "typeArguments": [ { "type": "reference", @@ -1251,14 +1251,14 @@ } }, { - "id": 10423, + "id": 10716, "name": "OperatorMap", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10444, + "id": 10737, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1268,14 +1268,14 @@ "type": { "type": "reflection", "declaration": { - "id": 10424, + "id": 10717, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10425, + "id": 10718, "name": "$and", "variant": "declaration", "kind": 1024, @@ -1286,11 +1286,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 10516, + "target": 10809, "typeArguments": [ { "type": "reference", - "target": 10444, + "target": 10737, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1302,7 +1302,7 @@ } }, { - "id": 10426, + "id": 10719, "name": "$or", "variant": "declaration", "kind": 1024, @@ -1313,11 +1313,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 10516, + "target": 10809, "typeArguments": [ { "type": "reference", - "target": 10444, + "target": 10737, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1329,7 +1329,7 @@ } }, { - "id": 10427, + "id": 10720, "name": "$eq", "variant": "declaration", "kind": 1024, @@ -1341,11 +1341,11 @@ "types": [ { "type": "reference", - "target": 10518, + "target": 10811, "typeArguments": [ { "type": "reference", - "target": 10444, + "target": 10737, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1358,11 +1358,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 10518, + "target": 10811, "typeArguments": [ { "type": "reference", - "target": 10444, + "target": 10737, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1376,7 +1376,7 @@ } }, { - "id": 10428, + "id": 10721, "name": "$ne", "variant": "declaration", "kind": 1024, @@ -1385,11 +1385,11 @@ }, "type": { "type": "reference", - "target": 10518, + "target": 10811, "typeArguments": [ { "type": "reference", - "target": 10444, + "target": 10737, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1400,7 +1400,7 @@ } }, { - "id": 10429, + "id": 10722, "name": "$in", "variant": "declaration", "kind": 1024, @@ -1411,11 +1411,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 10518, + "target": 10811, "typeArguments": [ { "type": "reference", - "target": 10444, + "target": 10737, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1427,7 +1427,7 @@ } }, { - "id": 10430, + "id": 10723, "name": "$nin", "variant": "declaration", "kind": 1024, @@ -1438,11 +1438,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 10518, + "target": 10811, "typeArguments": [ { "type": "reference", - "target": 10444, + "target": 10737, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1454,7 +1454,7 @@ } }, { - "id": 10431, + "id": 10724, "name": "$not", "variant": "declaration", "kind": 1024, @@ -1463,11 +1463,11 @@ }, "type": { "type": "reference", - "target": 10516, + "target": 10809, "typeArguments": [ { "type": "reference", - "target": 10444, + "target": 10737, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1478,7 +1478,7 @@ } }, { - "id": 10432, + "id": 10725, "name": "$gt", "variant": "declaration", "kind": 1024, @@ -1487,11 +1487,11 @@ }, "type": { "type": "reference", - "target": 10518, + "target": 10811, "typeArguments": [ { "type": "reference", - "target": 10444, + "target": 10737, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1502,7 +1502,7 @@ } }, { - "id": 10433, + "id": 10726, "name": "$gte", "variant": "declaration", "kind": 1024, @@ -1511,11 +1511,11 @@ }, "type": { "type": "reference", - "target": 10518, + "target": 10811, "typeArguments": [ { "type": "reference", - "target": 10444, + "target": 10737, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1526,7 +1526,7 @@ } }, { - "id": 10434, + "id": 10727, "name": "$lt", "variant": "declaration", "kind": 1024, @@ -1535,11 +1535,11 @@ }, "type": { "type": "reference", - "target": 10518, + "target": 10811, "typeArguments": [ { "type": "reference", - "target": 10444, + "target": 10737, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1550,7 +1550,7 @@ } }, { - "id": 10435, + "id": 10728, "name": "$lte", "variant": "declaration", "kind": 1024, @@ -1559,11 +1559,11 @@ }, "type": { "type": "reference", - "target": 10518, + "target": 10811, "typeArguments": [ { "type": "reference", - "target": 10444, + "target": 10737, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1574,7 +1574,7 @@ } }, { - "id": 10436, + "id": 10729, "name": "$like", "variant": "declaration", "kind": 1024, @@ -1587,7 +1587,7 @@ } }, { - "id": 10437, + "id": 10730, "name": "$re", "variant": "declaration", "kind": 1024, @@ -1600,7 +1600,7 @@ } }, { - "id": 10438, + "id": 10731, "name": "$ilike", "variant": "declaration", "kind": 1024, @@ -1613,7 +1613,7 @@ } }, { - "id": 10439, + "id": 10732, "name": "$fulltext", "variant": "declaration", "kind": 1024, @@ -1626,7 +1626,7 @@ } }, { - "id": 10440, + "id": 10733, "name": "$overlap", "variant": "declaration", "kind": 1024, @@ -1642,7 +1642,7 @@ } }, { - "id": 10441, + "id": 10734, "name": "$contains", "variant": "declaration", "kind": 1024, @@ -1658,7 +1658,7 @@ } }, { - "id": 10442, + "id": 10735, "name": "$contained", "variant": "declaration", "kind": 1024, @@ -1674,7 +1674,7 @@ } }, { - "id": 10443, + "id": 10736, "name": "$exists", "variant": "declaration", "kind": 1024, @@ -1691,25 +1691,25 @@ { "title": "Properties", "children": [ - 10425, - 10426, - 10427, - 10428, - 10429, - 10430, - 10431, - 10432, - 10433, - 10434, - 10435, - 10436, - 10437, - 10438, - 10439, - 10440, - 10441, - 10442, - 10443 + 10718, + 10719, + 10720, + 10721, + 10722, + 10723, + 10724, + 10725, + 10726, + 10727, + 10728, + 10729, + 10730, + 10731, + 10732, + 10733, + 10734, + 10735, + 10736 ] } ] @@ -1717,14 +1717,14 @@ } }, { - "id": 10560, + "id": 10853, "name": "FilterValue2", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10561, + "id": 10854, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1736,18 +1736,18 @@ "types": [ { "type": "reference", - "target": 10561, + "target": 10854, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, { "type": "reference", - "target": 10518, + "target": 10811, "typeArguments": [ { "type": "reference", - "target": 10561, + "target": 10854, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1758,11 +1758,11 @@ }, { "type": "reference", - "target": 10562, + "target": 10855, "typeArguments": [ { "type": "reference", - "target": 10561, + "target": 10854, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1775,14 +1775,14 @@ } }, { - "id": 10554, + "id": 10847, "name": "FilterValue", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10555, + "id": 10848, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1794,15 +1794,15 @@ "types": [ { "type": "reference", - "target": 10423, + "target": 10716, "typeArguments": [ { "type": "reference", - "target": 10560, + "target": 10853, "typeArguments": [ { "type": "reference", - "target": 10555, + "target": 10848, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1817,11 +1817,11 @@ }, { "type": "reference", - "target": 10560, + "target": 10853, "typeArguments": [ { "type": "reference", - "target": 10555, + "target": 10848, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1834,11 +1834,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 10560, + "target": 10853, "typeArguments": [ { "type": "reference", - "target": 10555, + "target": 10848, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1856,7 +1856,7 @@ } }, { - "id": 10559, + "id": 10852, "name": "PrevLimit", "variant": "declaration", "kind": 2097152, @@ -1884,14 +1884,14 @@ } }, { - "id": 10548, + "id": 10841, "name": "FilterQuery", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10552, + "id": 10845, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1902,7 +1902,7 @@ } }, { - "id": 10553, + "id": 10846, "name": "Prev", "variant": "typeParam", "kind": 131072, @@ -1921,7 +1921,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10553, + "target": 10846, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1942,7 +1942,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 10552, + "target": 10845, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1964,7 +1964,7 @@ }, "objectType": { "type": "reference", - "target": 10552, + "target": 10845, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2021,7 +2021,7 @@ }, "objectType": { "type": "reference", - "target": 10552, + "target": 10845, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2029,7 +2029,7 @@ }, { "type": "reference", - "target": 10423, + "target": 10716, "typeArguments": [ { "type": "indexedAccess", @@ -2045,7 +2045,7 @@ }, "objectType": { "type": "reference", - "target": 10552, + "target": 10845, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2073,7 +2073,7 @@ }, "objectType": { "type": "reference", - "target": 10552, + "target": 10845, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2098,21 +2098,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 10549, + "id": 10842, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 10550, + "id": 10843, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 10551, + "id": 10844, "name": "x", "variant": "param", "kind": 32768, @@ -2149,7 +2149,7 @@ }, "trueType": { "type": "reference", - "target": 10548, + "target": 10841, "typeArguments": [ { "type": "reference", @@ -2176,14 +2176,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 10553, + "target": 10846, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 10559, + "target": 10852, "name": "PrevLimit", "package": "@medusajs/types" } @@ -2213,7 +2213,7 @@ } }, { - "id": 10556, + "id": 10849, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -2243,14 +2243,14 @@ { "type": "reflection", "declaration": { - "id": 10557, + "id": 10850, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10558, + "id": 10851, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -2267,7 +2267,7 @@ { "title": "Properties", "children": [ - 10558 + 10851 ] } ] @@ -2277,14 +2277,14 @@ } }, { - "id": 10538, + "id": 10831, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10543, + "id": 10836, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2298,14 +2298,14 @@ "type": { "type": "reflection", "declaration": { - "id": 10539, + "id": 10832, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10540, + "id": 10833, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2316,7 +2316,7 @@ } }, { - "id": 10541, + "id": 10834, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2325,20 +2325,20 @@ }, "type": { "type": "reference", - "target": 10556, + "target": 10849, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 10542, + "id": 10835, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 10543, + "target": 10836, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2349,9 +2349,9 @@ { "title": "Properties", "children": [ - 10540, - 10541, - 10542 + 10833, + 10834, + 10835 ] } ] @@ -2359,14 +2359,14 @@ } }, { - "id": 10496, + "id": 10789, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10499, + "id": 10792, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2382,11 +2382,11 @@ "types": [ { "type": "reference", - "target": 10538, + "target": 10831, "typeArguments": [ { "type": "reference", - "target": 10499, + "target": 10792, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2398,14 +2398,14 @@ { "type": "reflection", "declaration": { - "id": 10497, + "id": 10790, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10498, + "id": 10791, "name": "options", "variant": "declaration", "kind": 1024, @@ -2437,7 +2437,7 @@ { "title": "Properties", "children": [ - 10498 + 10791 ] } ] @@ -2447,14 +2447,14 @@ } }, { - "id": 10506, + "id": 10799, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10515, + "id": 10808, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2468,14 +2468,14 @@ "type": { "type": "reflection", "declaration": { - "id": 10507, + "id": 10800, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10508, + "id": 10801, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2486,21 +2486,21 @@ } }, { - "id": 10509, + "id": 10802, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 10515, + "target": 10808, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 10510, + "id": 10803, "name": "source", "variant": "declaration", "kind": 1024, @@ -2511,7 +2511,7 @@ } }, { - "id": 10511, + "id": 10804, "name": "object", "variant": "declaration", "kind": 1024, @@ -2522,7 +2522,7 @@ } }, { - "id": 10512, + "id": 10805, "name": "action", "variant": "declaration", "kind": 1024, @@ -2535,7 +2535,7 @@ } }, { - "id": 10513, + "id": 10806, "name": "context", "variant": "declaration", "kind": 1024, @@ -2551,7 +2551,7 @@ "typeArguments": [ { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" }, @@ -2565,7 +2565,7 @@ } }, { - "id": 10514, + "id": 10807, "name": "options", "variant": "declaration", "kind": 1024, @@ -2597,13 +2597,13 @@ { "title": "Properties", "children": [ - 10508, - 10509, - 10510, - 10511, - 10512, - 10513, - 10514 + 10801, + 10802, + 10803, + 10804, + 10805, + 10806, + 10807 ] } ] @@ -2611,7 +2611,7 @@ } }, { - "id": 10524, + "id": 10817, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -2619,14 +2619,14 @@ "type": { "type": "reflection", "declaration": { - "id": 10525, + "id": 10818, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10526, + "id": 10819, "name": "alias", "variant": "declaration", "kind": 1024, @@ -2637,7 +2637,7 @@ } }, { - "id": 10527, + "id": 10820, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -2648,7 +2648,7 @@ } }, { - "id": 10528, + "id": 10821, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -2659,7 +2659,7 @@ } }, { - "id": 10529, + "id": 10822, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2670,7 +2670,7 @@ } }, { - "id": 10530, + "id": 10823, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -2691,7 +2691,7 @@ } }, { - "id": 10531, + "id": 10824, "name": "isList", "variant": "declaration", "kind": 1024, @@ -2712,7 +2712,7 @@ } }, { - "id": 10532, + "id": 10825, "name": "args", "variant": "declaration", "kind": 1024, @@ -2752,13 +2752,13 @@ { "title": "Properties", "children": [ - 10526, - 10527, - 10528, - 10529, - 10530, - 10531, - 10532 + 10819, + 10820, + 10821, + 10822, + 10823, + 10824, + 10825 ] } ] @@ -2766,14 +2766,14 @@ } }, { - "id": 10521, + "id": 10814, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 10522, + "id": 10815, "name": "name", "variant": "declaration", "kind": 1024, @@ -2796,7 +2796,7 @@ } }, { - "id": 10523, + "id": 10816, "name": "args", "variant": "declaration", "kind": 1024, @@ -2836,21 +2836,21 @@ { "title": "Properties", "children": [ - 10522, - 10523 + 10815, + 10816 ] } ] }, { - "id": 10466, + "id": 10759, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 10467, + "id": 10760, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2861,7 +2861,7 @@ } }, { - "id": 10468, + "id": 10761, "name": "alias", "variant": "declaration", "kind": 1024, @@ -2881,7 +2881,7 @@ "types": [ { "type": "reference", - "target": 10521, + "target": 10814, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -2889,7 +2889,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10521, + "target": 10814, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -2898,7 +2898,7 @@ } }, { - "id": 10469, + "id": 10762, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -2934,14 +2934,14 @@ { "type": "reflection", "declaration": { - "id": 10470, + "id": 10763, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10471, + "id": 10764, "name": "path", "variant": "declaration", "kind": 1024, @@ -2952,7 +2952,7 @@ } }, { - "id": 10472, + "id": 10765, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -2970,8 +2970,8 @@ { "title": "Properties", "children": [ - 10471, - 10472 + 10764, + 10765 ] } ] @@ -2985,7 +2985,7 @@ } }, { - "id": 10473, + "id": 10766, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -2999,7 +2999,7 @@ } }, { - "id": 10474, + "id": 10767, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -3010,14 +3010,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10524, + "target": 10817, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 10475, + "id": 10768, "name": "extends", "variant": "declaration", "kind": 1024, @@ -3029,14 +3029,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 10476, + "id": 10769, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10477, + "id": 10770, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3047,14 +3047,14 @@ } }, { - "id": 10478, + "id": 10771, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 10524, + "target": 10817, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -3064,8 +3064,8 @@ { "title": "Properties", "children": [ - 10477, - 10478 + 10770, + 10771 ] } ] @@ -3074,7 +3074,7 @@ } }, { - "id": 10479, + "id": 10772, "name": "args", "variant": "declaration", "kind": 1024, @@ -3114,19 +3114,19 @@ { "title": "Properties", "children": [ - 10467, - 10468, - 10469, - 10473, - 10474, - 10475, - 10479 + 10760, + 10761, + 10762, + 10766, + 10767, + 10768, + 10772 ] } ] }, { - "id": 10483, + "id": 10776, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -3145,14 +3145,14 @@ { "type": "reflection", "declaration": { - "id": 10484, + "id": 10777, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10485, + "id": 10778, "name": "type", "variant": "declaration", "kind": 1024, @@ -3248,7 +3248,7 @@ } }, { - "id": 10486, + "id": 10779, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -3261,7 +3261,7 @@ } }, { - "id": 10487, + "id": 10780, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -3274,7 +3274,7 @@ } }, { - "id": 10488, + "id": 10781, "name": "options", "variant": "declaration", "kind": 1024, @@ -3314,10 +3314,10 @@ { "title": "Properties", "children": [ - 10485, - 10486, - 10487, - 10488 + 10778, + 10779, + 10780, + 10781 ] } ] @@ -3329,7 +3329,7 @@ } }, { - "id": 10311, + "id": 10604, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -3346,7 +3346,7 @@ "typeArguments": [ { "type": "reference", - "target": 10466, + "target": 10759, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -3378,14 +3378,14 @@ { "type": "reflection", "declaration": { - "id": 10312, + "id": 10605, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10313, + "id": 10606, "name": "schema", "variant": "declaration", "kind": 1024, @@ -3406,7 +3406,7 @@ } }, { - "id": 10314, + "id": 10607, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -3417,14 +3417,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10480, + "target": 10773, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 10315, + "id": 10608, "name": "extends", "variant": "declaration", "kind": 1024, @@ -3436,14 +3436,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 10316, + "id": 10609, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10317, + "id": 10610, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3454,7 +3454,7 @@ } }, { - "id": 10318, + "id": 10611, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -3482,14 +3482,14 @@ { "type": "reflection", "declaration": { - "id": 10319, + "id": 10612, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10320, + "id": 10613, "name": "path", "variant": "declaration", "kind": 1024, @@ -3500,7 +3500,7 @@ } }, { - "id": 10321, + "id": 10614, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -3516,7 +3516,7 @@ } }, { - "id": 10322, + "id": 10615, "name": "isList", "variant": "declaration", "kind": 1024, @@ -3533,9 +3533,9 @@ { "title": "Properties", "children": [ - 10320, - 10321, - 10322 + 10613, + 10614, + 10615 ] } ] @@ -3549,14 +3549,14 @@ } }, { - "id": 10323, + "id": 10616, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 10480, + "target": 10773, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -3566,9 +3566,9 @@ { "title": "Properties", "children": [ - 10317, - 10318, - 10323 + 10610, + 10611, + 10616 ] } ] @@ -3577,7 +3577,7 @@ } }, { - "id": 10324, + "id": 10617, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3590,7 +3590,7 @@ } }, { - "id": 10325, + "id": 10618, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -3606,7 +3606,7 @@ } }, { - "id": 10326, + "id": 10619, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -3627,7 +3627,7 @@ } }, { - "id": 10327, + "id": 10620, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -3663,7 +3663,7 @@ } }, { - "id": 10328, + "id": 10621, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -3684,7 +3684,7 @@ } }, { - "id": 10329, + "id": 10622, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -3708,7 +3708,7 @@ } }, { - "id": 10330, + "id": 10623, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -3718,14 +3718,14 @@ "type": { "type": "reflection", "declaration": { - "id": 10331, + "id": 10624, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10332, + "id": 10625, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -3746,7 +3746,7 @@ } }, { - "id": 10333, + "id": 10626, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -3767,7 +3767,7 @@ } }, { - "id": 10334, + "id": 10627, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -3776,7 +3776,7 @@ }, "type": { "type": "reference", - "target": 10483, + "target": 10776, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -3786,9 +3786,9 @@ { "title": "Properties", "children": [ - 10332, - 10333, - 10334 + 10625, + 10626, + 10627 ] } ] @@ -3800,16 +3800,16 @@ { "title": "Properties", "children": [ - 10313, - 10314, - 10315, - 10324, - 10325, - 10326, - 10327, - 10328, - 10329, - 10330 + 10606, + 10607, + 10608, + 10617, + 10618, + 10619, + 10620, + 10621, + 10622, + 10623 ] } ] @@ -3819,7 +3819,7 @@ } }, { - "id": 10480, + "id": 10773, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -3829,21 +3829,21 @@ "types": [ { "type": "reference", - "target": 10524, + "target": 10817, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 10481, + "id": 10774, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10482, + "id": 10775, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -3868,7 +3868,7 @@ { "title": "Properties", "children": [ - 10482 + 10775 ] } ] @@ -3878,7 +3878,7 @@ } }, { - "id": 10171, + "id": 10464, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -3886,13 +3886,13 @@ "extendedBy": [ { "type": "reference", - "target": 10002, + "target": 10295, "name": "IPromotionModuleService" } ] }, { - "id": 10493, + "id": 10786, "name": "ApplicationMethodTypeValues", "variant": "declaration", "kind": 2097152, @@ -3920,7 +3920,7 @@ } }, { - "id": 10494, + "id": 10787, "name": "ApplicationMethodTargetTypeValues", "variant": "declaration", "kind": 2097152, @@ -3952,7 +3952,7 @@ } }, { - "id": 10495, + "id": 10788, "name": "ApplicationMethodAllocationValues", "variant": "declaration", "kind": 2097152, @@ -3980,7 +3980,7 @@ } }, { - "id": 10395, + "id": 10688, "name": "ApplicationMethodDTO", "variant": "declaration", "kind": 256, @@ -3995,7 +3995,7 @@ }, "children": [ { - "id": 10396, + "id": 10689, "name": "id", "variant": "declaration", "kind": 1024, @@ -4014,7 +4014,7 @@ } }, { - "id": 10397, + "id": 10690, "name": "type", "variant": "declaration", "kind": 1024, @@ -4031,13 +4031,13 @@ }, "type": { "type": "reference", - "target": 10493, + "target": 10786, "name": "ApplicationMethodTypeValues", "package": "@medusajs/types" } }, { - "id": 10398, + "id": 10691, "name": "target_type", "variant": "declaration", "kind": 1024, @@ -4054,13 +4054,13 @@ }, "type": { "type": "reference", - "target": 10494, + "target": 10787, "name": "ApplicationMethodTargetTypeValues", "package": "@medusajs/types" } }, { - "id": 10399, + "id": 10692, "name": "allocation", "variant": "declaration", "kind": 1024, @@ -4077,13 +4077,13 @@ }, "type": { "type": "reference", - "target": 10495, + "target": 10788, "name": "ApplicationMethodAllocationValues", "package": "@medusajs/types" } }, { - "id": 10400, + "id": 10693, "name": "value", "variant": "declaration", "kind": 1024, @@ -4112,7 +4112,7 @@ } }, { - "id": 10401, + "id": 10694, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -4133,7 +4133,7 @@ } }, { - "id": 10402, + "id": 10695, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -4163,7 +4163,7 @@ } }, { - "id": 10403, + "id": 10696, "name": "buy_rules_min_quantity", "variant": "declaration", "kind": 1024, @@ -4209,7 +4209,7 @@ } }, { - "id": 10404, + "id": 10697, "name": "apply_to_quantity", "variant": "declaration", "kind": 1024, @@ -4255,7 +4255,7 @@ } }, { - "id": 10405, + "id": 10698, "name": "promotion", "variant": "declaration", "kind": 1024, @@ -4279,7 +4279,7 @@ }, { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -4287,7 +4287,7 @@ } }, { - "id": 10406, + "id": 10699, "name": "target_rules", "variant": "declaration", "kind": 1024, @@ -4306,14 +4306,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10259, + "target": 10552, "name": "PromotionRuleDTO", "package": "@medusajs/types" } } }, { - "id": 10407, + "id": 10700, "name": "buy_rules", "variant": "declaration", "kind": 1024, @@ -4332,7 +4332,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10259, + "target": 10552, "name": "PromotionRuleDTO", "package": "@medusajs/types" } @@ -4343,24 +4343,24 @@ { "title": "Properties", "children": [ - 10396, - 10397, - 10398, - 10399, - 10400, - 10401, - 10402, - 10403, - 10404, - 10405, - 10406, - 10407 + 10689, + 10690, + 10691, + 10692, + 10693, + 10694, + 10695, + 10696, + 10697, + 10698, + 10699, + 10700 ] } ] }, { - "id": 10369, + "id": 10662, "name": "CreateApplicationMethodDTO", "variant": "declaration", "kind": 256, @@ -4375,7 +4375,7 @@ }, "children": [ { - "id": 10370, + "id": 10663, "name": "type", "variant": "declaration", "kind": 1024, @@ -4390,13 +4390,13 @@ }, "type": { "type": "reference", - "target": 10493, + "target": 10786, "name": "ApplicationMethodTypeValues", "package": "@medusajs/types" } }, { - "id": 10371, + "id": 10664, "name": "target_type", "variant": "declaration", "kind": 1024, @@ -4411,13 +4411,13 @@ }, "type": { "type": "reference", - "target": 10494, + "target": 10787, "name": "ApplicationMethodTargetTypeValues", "package": "@medusajs/types" } }, { - "id": 10372, + "id": 10665, "name": "allocation", "variant": "declaration", "kind": 1024, @@ -4434,13 +4434,13 @@ }, "type": { "type": "reference", - "target": 10495, + "target": 10788, "name": "ApplicationMethodAllocationValues", "package": "@medusajs/types" } }, { - "id": 10373, + "id": 10666, "name": "value", "variant": "declaration", "kind": 1024, @@ -4469,7 +4469,7 @@ } }, { - "id": 10374, + "id": 10667, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -4490,7 +4490,7 @@ } }, { - "id": 10375, + "id": 10668, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -4520,7 +4520,7 @@ } }, { - "id": 10376, + "id": 10669, "name": "buy_rules_min_quantity", "variant": "declaration", "kind": 1024, @@ -4566,7 +4566,7 @@ } }, { - "id": 10377, + "id": 10670, "name": "apply_to_quantity", "variant": "declaration", "kind": 1024, @@ -4612,7 +4612,7 @@ } }, { - "id": 10378, + "id": 10671, "name": "promotion", "variant": "declaration", "kind": 1024, @@ -4636,7 +4636,7 @@ }, { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -4644,7 +4644,7 @@ } }, { - "id": 10379, + "id": 10672, "name": "target_rules", "variant": "declaration", "kind": 1024, @@ -4663,14 +4663,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10254, + "target": 10547, "name": "CreatePromotionRuleDTO", "package": "@medusajs/types" } } }, { - "id": 10380, + "id": 10673, "name": "buy_rules", "variant": "declaration", "kind": 1024, @@ -4689,7 +4689,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10254, + "target": 10547, "name": "CreatePromotionRuleDTO", "package": "@medusajs/types" } @@ -4700,23 +4700,23 @@ { "title": "Properties", "children": [ - 10370, - 10371, - 10372, - 10373, - 10374, - 10375, - 10376, - 10377, - 10378, - 10379, - 10380 + 10663, + 10664, + 10665, + 10666, + 10667, + 10668, + 10669, + 10670, + 10671, + 10672, + 10673 ] } ] }, { - "id": 10408, + "id": 10701, "name": "UpdateApplicationMethodDTO", "variant": "declaration", "kind": 256, @@ -4731,7 +4731,7 @@ }, "children": [ { - "id": 10409, + "id": 10702, "name": "id", "variant": "declaration", "kind": 1024, @@ -4752,7 +4752,7 @@ } }, { - "id": 10410, + "id": 10703, "name": "type", "variant": "declaration", "kind": 1024, @@ -4769,13 +4769,13 @@ }, "type": { "type": "reference", - "target": 10493, + "target": 10786, "name": "ApplicationMethodTypeValues", "package": "@medusajs/types" } }, { - "id": 10411, + "id": 10704, "name": "target_type", "variant": "declaration", "kind": 1024, @@ -4792,13 +4792,13 @@ }, "type": { "type": "reference", - "target": 10494, + "target": 10787, "name": "ApplicationMethodTargetTypeValues", "package": "@medusajs/types" } }, { - "id": 10412, + "id": 10705, "name": "allocation", "variant": "declaration", "kind": 1024, @@ -4815,13 +4815,13 @@ }, "type": { "type": "reference", - "target": 10495, + "target": 10788, "name": "ApplicationMethodAllocationValues", "package": "@medusajs/types" } }, { - "id": 10413, + "id": 10706, "name": "value", "variant": "declaration", "kind": 1024, @@ -4850,7 +4850,7 @@ } }, { - "id": 10414, + "id": 10707, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -4871,7 +4871,7 @@ } }, { - "id": 10415, + "id": 10708, "name": "max_quantity", "variant": "declaration", "kind": 1024, @@ -4901,7 +4901,7 @@ } }, { - "id": 10416, + "id": 10709, "name": "buy_rules_min_quantity", "variant": "declaration", "kind": 1024, @@ -4947,7 +4947,7 @@ } }, { - "id": 10417, + "id": 10710, "name": "apply_to_quantity", "variant": "declaration", "kind": 1024, @@ -4993,7 +4993,7 @@ } }, { - "id": 10418, + "id": 10711, "name": "promotion", "variant": "declaration", "kind": 1024, @@ -5017,7 +5017,7 @@ }, { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -5029,22 +5029,22 @@ { "title": "Properties", "children": [ - 10409, - 10410, - 10411, - 10412, - 10413, - 10414, - 10415, - 10416, - 10417, - 10418 + 10702, + 10703, + 10704, + 10705, + 10706, + 10707, + 10708, + 10709, + 10710, + 10711 ] } ] }, { - "id": 10520, + "id": 10813, "name": "CampaignBudgetTypeValues", "variant": "declaration", "kind": 2097152, @@ -5072,7 +5072,7 @@ } }, { - "id": 10454, + "id": 10747, "name": "CampaignBudgetDTO", "variant": "declaration", "kind": 256, @@ -5087,7 +5087,7 @@ }, "children": [ { - "id": 10455, + "id": 10748, "name": "id", "variant": "declaration", "kind": 1024, @@ -5106,7 +5106,7 @@ } }, { - "id": 10456, + "id": 10749, "name": "type", "variant": "declaration", "kind": 1024, @@ -5139,13 +5139,13 @@ }, "type": { "type": "reference", - "target": 10520, + "target": 10813, "name": "CampaignBudgetTypeValues", "package": "@medusajs/types" } }, { - "id": 10457, + "id": 10750, "name": "limit", "variant": "declaration", "kind": 1024, @@ -5175,7 +5175,7 @@ } }, { - "id": 10458, + "id": 10751, "name": "used", "variant": "declaration", "kind": 1024, @@ -5212,7 +5212,7 @@ } }, { - "id": 10459, + "id": 10752, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -5237,17 +5237,17 @@ { "title": "Properties", "children": [ - 10455, - 10456, - 10457, - 10458, - 10459 + 10748, + 10749, + 10750, + 10751, + 10752 ] } ] }, { - "id": 10272, + "id": 10565, "name": "CampaignDTO", "variant": "declaration", "kind": 256, @@ -5262,7 +5262,7 @@ }, "children": [ { - "id": 10273, + "id": 10566, "name": "id", "variant": "declaration", "kind": 1024, @@ -5281,7 +5281,7 @@ } }, { - "id": 10274, + "id": 10567, "name": "name", "variant": "declaration", "kind": 1024, @@ -5302,7 +5302,7 @@ } }, { - "id": 10275, + "id": 10568, "name": "description", "variant": "declaration", "kind": 1024, @@ -5323,7 +5323,7 @@ } }, { - "id": 10276, + "id": 10569, "name": "campaign_identifier", "variant": "declaration", "kind": 1024, @@ -5344,7 +5344,7 @@ } }, { - "id": 10277, + "id": 10570, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -5370,7 +5370,7 @@ } }, { - "id": 10278, + "id": 10571, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -5396,7 +5396,7 @@ } }, { - "id": 10279, + "id": 10572, "name": "budget", "variant": "declaration", "kind": 1024, @@ -5413,13 +5413,13 @@ }, "type": { "type": "reference", - "target": 10454, + "target": 10747, "name": "CampaignBudgetDTO", "package": "@medusajs/types" } }, { - "id": 10280, + "id": 10573, "name": "promotions", "variant": "declaration", "kind": 1024, @@ -5438,7 +5438,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -5449,20 +5449,20 @@ { "title": "Properties", "children": [ - 10273, - 10274, - 10275, - 10276, - 10277, - 10278, - 10279, - 10280 + 10566, + 10567, + 10568, + 10569, + 10570, + 10571, + 10572, + 10573 ] } ] }, { - "id": 10299, + "id": 10592, "name": "FilterableCampaignProps", "variant": "declaration", "kind": 256, @@ -5477,7 +5477,7 @@ }, "children": [ { - "id": 10303, + "id": 10596, "name": "$and", "variant": "declaration", "kind": 1024, @@ -5500,17 +5500,17 @@ "types": [ { "type": "reference", - "target": 10299, + "target": 10592, "name": "FilterableCampaignProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 10419, + "target": 10712, "typeArguments": [ { "type": "reference", - "target": 10299, + "target": 10592, "name": "FilterableCampaignProps", "package": "@medusajs/types" } @@ -5523,12 +5523,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 10420, + "target": 10713, "name": "BaseFilterable.$and" } }, { - "id": 10304, + "id": 10597, "name": "$or", "variant": "declaration", "kind": 1024, @@ -5551,17 +5551,17 @@ "types": [ { "type": "reference", - "target": 10299, + "target": 10592, "name": "FilterableCampaignProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 10419, + "target": 10712, "typeArguments": [ { "type": "reference", - "target": 10299, + "target": 10592, "name": "FilterableCampaignProps", "package": "@medusajs/types" } @@ -5574,12 +5574,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 10421, + "target": 10714, "name": "BaseFilterable.$or" } }, { - "id": 10300, + "id": 10593, "name": "q", "variant": "declaration", "kind": 1024, @@ -5600,7 +5600,7 @@ } }, { - "id": 10301, + "id": 10594, "name": "id", "variant": "declaration", "kind": 1024, @@ -5624,7 +5624,7 @@ } }, { - "id": 10302, + "id": 10595, "name": "campaign_identifier", "variant": "declaration", "kind": 1024, @@ -5652,22 +5652,22 @@ { "title": "Properties", "children": [ - 10303, - 10304, - 10300, - 10301, - 10302 + 10596, + 10597, + 10593, + 10594, + 10595 ] } ], "extendedTypes": [ { "type": "reference", - "target": 10419, + "target": 10712, "typeArguments": [ { "type": "reference", - "target": 10299, + "target": 10592, "name": "FilterableCampaignProps", "package": "@medusajs/types" } @@ -5678,7 +5678,7 @@ ] }, { - "id": 10185, + "id": 10478, "name": "ComputeActions", "variant": "declaration", "kind": 2097152, @@ -5696,31 +5696,31 @@ "types": [ { "type": "reference", - "target": 10335, + "target": 10628, "name": "AddItemAdjustmentAction", "package": "@medusajs/types" }, { "type": "reference", - "target": 10341, + "target": 10634, "name": "RemoveItemAdjustmentAction", "package": "@medusajs/types" }, { "type": "reference", - "target": 10346, + "target": 10639, "name": "AddShippingMethodAdjustment", "package": "@medusajs/types" }, { "type": "reference", - "target": 10352, + "target": 10645, "name": "RemoveShippingMethodAdjustment", "package": "@medusajs/types" }, { "type": "reference", - "target": 10356, + "target": 10649, "name": "CampaignBudgetExceededAction", "package": "@medusajs/types" } @@ -5728,7 +5728,7 @@ } }, { - "id": 10356, + "id": 10649, "name": "CampaignBudgetExceededAction", "variant": "declaration", "kind": 256, @@ -5743,7 +5743,7 @@ }, "children": [ { - "id": 10357, + "id": 10650, "name": "action", "variant": "declaration", "kind": 1024, @@ -5762,7 +5762,7 @@ } }, { - "id": 10358, + "id": 10651, "name": "code", "variant": "declaration", "kind": 1024, @@ -5785,14 +5785,14 @@ { "title": "Properties", "children": [ - 10357, - 10358 + 10650, + 10651 ] } ] }, { - "id": 10335, + "id": 10628, "name": "AddItemAdjustmentAction", "variant": "declaration", "kind": 256, @@ -5807,7 +5807,7 @@ }, "children": [ { - "id": 10336, + "id": 10629, "name": "action", "variant": "declaration", "kind": 1024, @@ -5826,7 +5826,7 @@ } }, { - "id": 10337, + "id": 10630, "name": "item_id", "variant": "declaration", "kind": 1024, @@ -5845,7 +5845,7 @@ } }, { - "id": 10338, + "id": 10631, "name": "amount", "variant": "declaration", "kind": 1024, @@ -5860,13 +5860,13 @@ }, "type": { "type": "reference", - "target": 10489, + "target": 10782, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 10339, + "id": 10632, "name": "code", "variant": "declaration", "kind": 1024, @@ -5885,7 +5885,7 @@ } }, { - "id": 10340, + "id": 10633, "name": "description", "variant": "declaration", "kind": 1024, @@ -5910,17 +5910,17 @@ { "title": "Properties", "children": [ - 10336, - 10337, - 10338, - 10339, - 10340 + 10629, + 10630, + 10631, + 10632, + 10633 ] } ] }, { - "id": 10341, + "id": 10634, "name": "RemoveItemAdjustmentAction", "variant": "declaration", "kind": 256, @@ -5935,7 +5935,7 @@ }, "children": [ { - "id": 10342, + "id": 10635, "name": "action", "variant": "declaration", "kind": 1024, @@ -5954,7 +5954,7 @@ } }, { - "id": 10343, + "id": 10636, "name": "adjustment_id", "variant": "declaration", "kind": 1024, @@ -5973,7 +5973,7 @@ } }, { - "id": 10344, + "id": 10637, "name": "description", "variant": "declaration", "kind": 1024, @@ -5994,7 +5994,7 @@ } }, { - "id": 10345, + "id": 10638, "name": "code", "variant": "declaration", "kind": 1024, @@ -6017,16 +6017,16 @@ { "title": "Properties", "children": [ - 10342, - 10343, - 10344, - 10345 + 10635, + 10636, + 10637, + 10638 ] } ] }, { - "id": 10346, + "id": 10639, "name": "AddShippingMethodAdjustment", "variant": "declaration", "kind": 256, @@ -6041,7 +6041,7 @@ }, "children": [ { - "id": 10347, + "id": 10640, "name": "action", "variant": "declaration", "kind": 1024, @@ -6060,7 +6060,7 @@ } }, { - "id": 10348, + "id": 10641, "name": "shipping_method_id", "variant": "declaration", "kind": 1024, @@ -6079,7 +6079,7 @@ } }, { - "id": 10349, + "id": 10642, "name": "amount", "variant": "declaration", "kind": 1024, @@ -6094,13 +6094,13 @@ }, "type": { "type": "reference", - "target": 10489, + "target": 10782, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 10350, + "id": 10643, "name": "code", "variant": "declaration", "kind": 1024, @@ -6119,7 +6119,7 @@ } }, { - "id": 10351, + "id": 10644, "name": "description", "variant": "declaration", "kind": 1024, @@ -6144,17 +6144,17 @@ { "title": "Properties", "children": [ - 10347, - 10348, - 10349, - 10350, - 10351 + 10640, + 10641, + 10642, + 10643, + 10644 ] } ] }, { - "id": 10352, + "id": 10645, "name": "RemoveShippingMethodAdjustment", "variant": "declaration", "kind": 256, @@ -6169,7 +6169,7 @@ }, "children": [ { - "id": 10353, + "id": 10646, "name": "action", "variant": "declaration", "kind": 1024, @@ -6188,7 +6188,7 @@ } }, { - "id": 10354, + "id": 10647, "name": "adjustment_id", "variant": "declaration", "kind": 1024, @@ -6207,7 +6207,7 @@ } }, { - "id": 10355, + "id": 10648, "name": "code", "variant": "declaration", "kind": 1024, @@ -6230,15 +6230,15 @@ { "title": "Properties", "children": [ - 10353, - 10354, - 10355 + 10646, + 10647, + 10648 ] } ] }, { - "id": 10490, + "id": 10783, "name": "ComputeActionAdjustmentLine", "variant": "declaration", "kind": 256, @@ -6253,7 +6253,7 @@ }, "children": [ { - "id": 10491, + "id": 10784, "name": "id", "variant": "declaration", "kind": 1024, @@ -6272,7 +6272,7 @@ } }, { - "id": 10492, + "id": 10785, "name": "code", "variant": "declaration", "kind": 1024, @@ -6295,8 +6295,8 @@ { "title": "Properties", "children": [ - 10491, - 10492 + 10784, + 10785 ] } ], @@ -6323,7 +6323,7 @@ ] }, { - "id": 10359, + "id": 10652, "name": "ComputeActionItemLine", "variant": "declaration", "kind": 256, @@ -6338,7 +6338,7 @@ }, "children": [ { - "id": 10360, + "id": 10653, "name": "id", "variant": "declaration", "kind": 1024, @@ -6357,7 +6357,7 @@ } }, { - "id": 10361, + "id": 10654, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -6372,13 +6372,13 @@ }, "type": { "type": "reference", - "target": 10489, + "target": 10782, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 10362, + "id": 10655, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -6393,13 +6393,13 @@ }, "type": { "type": "reference", - "target": 10489, + "target": 10782, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 10363, + "id": 10656, "name": "adjustments", "variant": "declaration", "kind": 1024, @@ -6418,7 +6418,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10490, + "target": 10783, "name": "ComputeActionAdjustmentLine", "package": "@medusajs/types" } @@ -6429,10 +6429,10 @@ { "title": "Properties", "children": [ - 10360, - 10361, - 10362, - 10363 + 10653, + 10654, + 10655, + 10656 ] } ], @@ -6459,7 +6459,7 @@ ] }, { - "id": 10364, + "id": 10657, "name": "ComputeActionShippingLine", "variant": "declaration", "kind": 256, @@ -6474,7 +6474,7 @@ }, "children": [ { - "id": 10365, + "id": 10658, "name": "id", "variant": "declaration", "kind": 1024, @@ -6493,7 +6493,7 @@ } }, { - "id": 10366, + "id": 10659, "name": "subtotal", "variant": "declaration", "kind": 1024, @@ -6508,13 +6508,13 @@ }, "type": { "type": "reference", - "target": 10489, + "target": 10782, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 10367, + "id": 10660, "name": "adjustments", "variant": "declaration", "kind": 1024, @@ -6533,7 +6533,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10490, + "target": 10783, "name": "ComputeActionAdjustmentLine", "package": "@medusajs/types" } @@ -6544,9 +6544,9 @@ { "title": "Properties", "children": [ - 10365, - 10366, - 10367 + 10658, + 10659, + 10660 ] } ], @@ -6573,7 +6573,7 @@ ] }, { - "id": 10186, + "id": 10479, "name": "ComputeActionContext", "variant": "declaration", "kind": 256, @@ -6588,7 +6588,7 @@ }, "children": [ { - "id": 10187, + "id": 10480, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -6607,7 +6607,7 @@ } }, { - "id": 10188, + "id": 10481, "name": "items", "variant": "declaration", "kind": 1024, @@ -6626,14 +6626,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10359, + "target": 10652, "name": "ComputeActionItemLine", "package": "@medusajs/types" } } }, { - "id": 10189, + "id": 10482, "name": "shipping_methods", "variant": "declaration", "kind": 1024, @@ -6652,7 +6652,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10364, + "target": 10657, "name": "ComputeActionShippingLine", "package": "@medusajs/types" } @@ -6663,9 +6663,9 @@ { "title": "Properties", "children": [ - 10187, - 10188, - 10189 + 10480, + 10481, + 10482 ] } ], @@ -6692,7 +6692,7 @@ ] }, { - "id": 10446, + "id": 10739, "name": "PromotionRuleValueDTO", "variant": "declaration", "kind": 256, @@ -6707,7 +6707,7 @@ }, "children": [ { - "id": 10447, + "id": 10740, "name": "id", "variant": "declaration", "kind": 1024, @@ -6726,7 +6726,7 @@ } }, { - "id": 10448, + "id": 10741, "name": "value", "variant": "declaration", "kind": 1024, @@ -6751,14 +6751,14 @@ { "title": "Properties", "children": [ - 10447, - 10448 + 10740, + 10741 ] } ] }, { - "id": 10445, + "id": 10738, "name": "PromotionRuleOperatorValues", "variant": "declaration", "kind": 2097152, @@ -6806,7 +6806,7 @@ } }, { - "id": 10259, + "id": 10552, "name": "PromotionRuleDTO", "variant": "declaration", "kind": 256, @@ -6821,7 +6821,7 @@ }, "children": [ { - "id": 10260, + "id": 10553, "name": "id", "variant": "declaration", "kind": 1024, @@ -6840,7 +6840,7 @@ } }, { - "id": 10261, + "id": 10554, "name": "description", "variant": "declaration", "kind": 1024, @@ -6870,7 +6870,7 @@ } }, { - "id": 10262, + "id": 10555, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -6891,7 +6891,7 @@ } }, { - "id": 10263, + "id": 10556, "name": "operator", "variant": "declaration", "kind": 1024, @@ -6908,13 +6908,13 @@ }, "type": { "type": "reference", - "target": 10445, + "target": 10738, "name": "PromotionRuleOperatorValues", "package": "@medusajs/types" } }, { - "id": 10264, + "id": 10557, "name": "values", "variant": "declaration", "kind": 1024, @@ -6931,7 +6931,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10446, + "target": 10739, "name": "PromotionRuleValueDTO", "package": "@medusajs/types" } @@ -6942,17 +6942,17 @@ { "title": "Properties", "children": [ - 10260, - 10261, - 10262, - 10263, - 10264 + 10553, + 10554, + 10555, + 10556, + 10557 ] } ] }, { - "id": 10254, + "id": 10547, "name": "CreatePromotionRuleDTO", "variant": "declaration", "kind": 256, @@ -6967,7 +6967,7 @@ }, "children": [ { - "id": 10255, + "id": 10548, "name": "description", "variant": "declaration", "kind": 1024, @@ -6997,7 +6997,7 @@ } }, { - "id": 10256, + "id": 10549, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -7016,7 +7016,7 @@ } }, { - "id": 10257, + "id": 10550, "name": "operator", "variant": "declaration", "kind": 1024, @@ -7031,13 +7031,13 @@ }, "type": { "type": "reference", - "target": 10445, + "target": 10738, "name": "PromotionRuleOperatorValues", "package": "@medusajs/types" } }, { - "id": 10258, + "id": 10551, "name": "values", "variant": "declaration", "kind": 1024, @@ -7080,16 +7080,16 @@ { "title": "Properties", "children": [ - 10255, - 10256, - 10257, - 10258 + 10548, + 10549, + 10550, + 10551 ] } ] }, { - "id": 10293, + "id": 10586, "name": "UpdatePromotionRuleDTO", "variant": "declaration", "kind": 256, @@ -7104,7 +7104,7 @@ }, "children": [ { - "id": 10294, + "id": 10587, "name": "id", "variant": "declaration", "kind": 1024, @@ -7123,7 +7123,7 @@ } }, { - "id": 10295, + "id": 10588, "name": "description", "variant": "declaration", "kind": 1024, @@ -7153,7 +7153,7 @@ } }, { - "id": 10296, + "id": 10589, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -7174,7 +7174,7 @@ } }, { - "id": 10297, + "id": 10590, "name": "operator", "variant": "declaration", "kind": 1024, @@ -7191,13 +7191,13 @@ }, "type": { "type": "reference", - "target": 10445, + "target": 10738, "name": "PromotionRuleOperatorValues", "package": "@medusajs/types" } }, { - "id": 10298, + "id": 10591, "name": "values", "variant": "declaration", "kind": 1024, @@ -7242,17 +7242,17 @@ { "title": "Properties", "children": [ - 10294, - 10295, - 10296, - 10297, - 10298 + 10587, + 10588, + 10589, + 10590, + 10591 ] } ] }, { - "id": 10289, + "id": 10582, "name": "FilterablePromotionRuleProps", "variant": "declaration", "kind": 256, @@ -7267,7 +7267,7 @@ }, "children": [ { - "id": 10291, + "id": 10584, "name": "$and", "variant": "declaration", "kind": 1024, @@ -7290,17 +7290,17 @@ "types": [ { "type": "reference", - "target": 10289, + "target": 10582, "name": "FilterablePromotionRuleProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 10419, + "target": 10712, "typeArguments": [ { "type": "reference", - "target": 10289, + "target": 10582, "name": "FilterablePromotionRuleProps", "package": "@medusajs/types" } @@ -7313,12 +7313,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 10420, + "target": 10713, "name": "BaseFilterable.$and" } }, { - "id": 10292, + "id": 10585, "name": "$or", "variant": "declaration", "kind": 1024, @@ -7341,17 +7341,17 @@ "types": [ { "type": "reference", - "target": 10289, + "target": 10582, "name": "FilterablePromotionRuleProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 10419, + "target": 10712, "typeArguments": [ { "type": "reference", - "target": 10289, + "target": 10582, "name": "FilterablePromotionRuleProps", "package": "@medusajs/types" } @@ -7364,12 +7364,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 10421, + "target": 10714, "name": "BaseFilterable.$or" } }, { - "id": 10290, + "id": 10583, "name": "id", "variant": "declaration", "kind": 1024, @@ -7397,20 +7397,20 @@ { "title": "Properties", "children": [ - 10291, - 10292, - 10290 + 10584, + 10585, + 10583 ] } ], "extendedTypes": [ { "type": "reference", - "target": 10419, + "target": 10712, "typeArguments": [ { "type": "reference", - "target": 10289, + "target": 10582, "name": "FilterablePromotionRuleProps", "package": "@medusajs/types" } @@ -7421,7 +7421,7 @@ ] }, { - "id": 10368, + "id": 10661, "name": "PromotionTypeValues", "variant": "declaration", "kind": 2097152, @@ -7449,7 +7449,7 @@ } }, { - "id": 10210, + "id": 10503, "name": "PromotionDTO", "variant": "declaration", "kind": 256, @@ -7464,7 +7464,7 @@ }, "children": [ { - "id": 10211, + "id": 10504, "name": "id", "variant": "declaration", "kind": 1024, @@ -7483,7 +7483,7 @@ } }, { - "id": 10212, + "id": 10505, "name": "code", "variant": "declaration", "kind": 1024, @@ -7504,7 +7504,7 @@ } }, { - "id": 10213, + "id": 10506, "name": "type", "variant": "declaration", "kind": 1024, @@ -7537,13 +7537,13 @@ }, "type": { "type": "reference", - "target": 10368, + "target": 10661, "name": "PromotionTypeValues", "package": "@medusajs/types" } }, { - "id": 10214, + "id": 10507, "name": "is_automatic", "variant": "declaration", "kind": 1024, @@ -7564,7 +7564,7 @@ } }, { - "id": 10215, + "id": 10508, "name": "application_method", "variant": "declaration", "kind": 1024, @@ -7581,13 +7581,13 @@ }, "type": { "type": "reference", - "target": 10395, + "target": 10688, "name": "ApplicationMethodDTO", "package": "@medusajs/types" } }, { - "id": 10216, + "id": 10509, "name": "rules", "variant": "declaration", "kind": 1024, @@ -7606,14 +7606,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10259, + "target": 10552, "name": "PromotionRuleDTO", "package": "@medusajs/types" } } }, { - "id": 10217, + "id": 10510, "name": "campaign_id", "variant": "declaration", "kind": 1024, @@ -7643,7 +7643,7 @@ } }, { - "id": 10218, + "id": 10511, "name": "campaign", "variant": "declaration", "kind": 1024, @@ -7660,7 +7660,7 @@ }, "type": { "type": "reference", - "target": 10272, + "target": 10565, "name": "CampaignDTO", "package": "@medusajs/types" } @@ -7670,20 +7670,20 @@ { "title": "Properties", "children": [ - 10211, - 10212, - 10213, - 10214, - 10215, - 10216, - 10217, - 10218 + 10504, + 10505, + 10506, + 10507, + 10508, + 10509, + 10510, + 10511 ] } ] }, { - "id": 10190, + "id": 10483, "name": "CreatePromotionDTO", "variant": "declaration", "kind": 256, @@ -7698,7 +7698,7 @@ }, "children": [ { - "id": 10191, + "id": 10484, "name": "code", "variant": "declaration", "kind": 1024, @@ -7717,7 +7717,7 @@ } }, { - "id": 10192, + "id": 10485, "name": "type", "variant": "declaration", "kind": 1024, @@ -7748,13 +7748,13 @@ }, "type": { "type": "reference", - "target": 10368, + "target": 10661, "name": "PromotionTypeValues", "package": "@medusajs/types" } }, { - "id": 10193, + "id": 10486, "name": "is_automatic", "variant": "declaration", "kind": 1024, @@ -7775,7 +7775,7 @@ } }, { - "id": 10194, + "id": 10487, "name": "application_method", "variant": "declaration", "kind": 1024, @@ -7790,13 +7790,13 @@ }, "type": { "type": "reference", - "target": 10369, + "target": 10662, "name": "CreateApplicationMethodDTO", "package": "@medusajs/types" } }, { - "id": 10195, + "id": 10488, "name": "rules", "variant": "declaration", "kind": 1024, @@ -7815,14 +7815,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10254, + "target": 10547, "name": "CreatePromotionRuleDTO", "package": "@medusajs/types" } } }, { - "id": 10196, + "id": 10489, "name": "campaign", "variant": "declaration", "kind": 1024, @@ -7839,13 +7839,13 @@ }, "type": { "type": "reference", - "target": 10265, + "target": 10558, "name": "CreateCampaignDTO", "package": "@medusajs/types" } }, { - "id": 10197, + "id": 10490, "name": "campaign_id", "variant": "declaration", "kind": 1024, @@ -7870,19 +7870,19 @@ { "title": "Properties", "children": [ - 10191, - 10192, - 10193, - 10194, - 10195, - 10196, - 10197 + 10484, + 10485, + 10486, + 10487, + 10488, + 10489, + 10490 ] } ] }, { - "id": 10219, + "id": 10512, "name": "UpdatePromotionDTO", "variant": "declaration", "kind": 256, @@ -7897,7 +7897,7 @@ }, "children": [ { - "id": 10220, + "id": 10513, "name": "id", "variant": "declaration", "kind": 1024, @@ -7916,7 +7916,7 @@ } }, { - "id": 10221, + "id": 10514, "name": "is_automatic", "variant": "declaration", "kind": 1024, @@ -7937,7 +7937,7 @@ } }, { - "id": 10222, + "id": 10515, "name": "code", "variant": "declaration", "kind": 1024, @@ -7958,7 +7958,7 @@ } }, { - "id": 10223, + "id": 10516, "name": "type", "variant": "declaration", "kind": 1024, @@ -7975,13 +7975,13 @@ }, "type": { "type": "reference", - "target": 10368, + "target": 10661, "name": "PromotionTypeValues", "package": "@medusajs/types" } }, { - "id": 10224, + "id": 10517, "name": "application_method", "variant": "declaration", "kind": 1024, @@ -7998,13 +7998,13 @@ }, "type": { "type": "reference", - "target": 10408, + "target": 10701, "name": "UpdateApplicationMethodDTO", "package": "@medusajs/types" } }, { - "id": 10225, + "id": 10518, "name": "campaign_id", "variant": "declaration", "kind": 1024, @@ -8038,18 +8038,18 @@ { "title": "Properties", "children": [ - 10220, - 10221, - 10222, - 10223, - 10224, - 10225 + 10513, + 10514, + 10515, + 10516, + 10517, + 10518 ] } ] }, { - "id": 10226, + "id": 10519, "name": "FilterablePromotionProps", "variant": "declaration", "kind": 256, @@ -8064,7 +8064,7 @@ }, "children": [ { - "id": 10233, + "id": 10526, "name": "$and", "variant": "declaration", "kind": 1024, @@ -8087,17 +8087,17 @@ "types": [ { "type": "reference", - "target": 10226, + "target": 10519, "name": "FilterablePromotionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 10419, + "target": 10712, "typeArguments": [ { "type": "reference", - "target": 10226, + "target": 10519, "name": "FilterablePromotionProps", "package": "@medusajs/types" } @@ -8110,12 +8110,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 10420, + "target": 10713, "name": "BaseFilterable.$and" } }, { - "id": 10234, + "id": 10527, "name": "$or", "variant": "declaration", "kind": 1024, @@ -8138,17 +8138,17 @@ "types": [ { "type": "reference", - "target": 10226, + "target": 10519, "name": "FilterablePromotionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 10419, + "target": 10712, "typeArguments": [ { "type": "reference", - "target": 10226, + "target": 10519, "name": "FilterablePromotionProps", "package": "@medusajs/types" } @@ -8161,12 +8161,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 10421, + "target": 10714, "name": "BaseFilterable.$or" } }, { - "id": 10227, + "id": 10520, "name": "q", "variant": "declaration", "kind": 1024, @@ -8187,7 +8187,7 @@ } }, { - "id": 10228, + "id": 10521, "name": "id", "variant": "declaration", "kind": 1024, @@ -8220,7 +8220,7 @@ } }, { - "id": 10229, + "id": 10522, "name": "code", "variant": "declaration", "kind": 1024, @@ -8251,7 +8251,7 @@ }, { "type": "reference", - "target": 10423, + "target": 10716, "typeArguments": [ { "type": "intrinsic", @@ -8265,7 +8265,7 @@ } }, { - "id": 10230, + "id": 10523, "name": "budget_id", "variant": "declaration", "kind": 1024, @@ -8292,7 +8292,7 @@ }, { "type": "reference", - "target": 10423, + "target": 10716, "typeArguments": [ { "type": "intrinsic", @@ -8306,7 +8306,7 @@ } }, { - "id": 10231, + "id": 10524, "name": "is_automatic", "variant": "declaration", "kind": 1024, @@ -8327,7 +8327,7 @@ } }, { - "id": 10232, + "id": 10525, "name": "type", "variant": "declaration", "kind": 1024, @@ -8346,7 +8346,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10368, + "target": 10661, "name": "PromotionTypeValues", "package": "@medusajs/types" } @@ -8357,25 +8357,25 @@ { "title": "Properties", "children": [ - 10233, - 10234, - 10227, - 10228, - 10229, - 10230, - 10231, - 10232 + 10526, + 10527, + 10520, + 10521, + 10522, + 10523, + 10524, + 10525 ] } ], "extendedTypes": [ { "type": "reference", - "target": 10419, + "target": 10712, "typeArguments": [ { "type": "reference", - "target": 10226, + "target": 10519, "name": "FilterablePromotionProps", "package": "@medusajs/types" } @@ -8386,7 +8386,7 @@ ] }, { - "id": 10449, + "id": 10742, "name": "CreateCampaignBudgetDTO", "variant": "declaration", "kind": 256, @@ -8401,7 +8401,7 @@ }, "children": [ { - "id": 10450, + "id": 10743, "name": "type", "variant": "declaration", "kind": 1024, @@ -8418,13 +8418,13 @@ }, "type": { "type": "reference", - "target": 10520, + "target": 10813, "name": "CampaignBudgetTypeValues", "package": "@medusajs/types" } }, { - "id": 10451, + "id": 10744, "name": "limit", "variant": "declaration", "kind": 1024, @@ -8454,7 +8454,7 @@ } }, { - "id": 10452, + "id": 10745, "name": "used", "variant": "declaration", "kind": 1024, @@ -8475,7 +8475,7 @@ } }, { - "id": 10453, + "id": 10746, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -8509,16 +8509,16 @@ { "title": "Properties", "children": [ - 10450, - 10451, - 10452, - 10453 + 10743, + 10744, + 10745, + 10746 ] } ] }, { - "id": 10460, + "id": 10753, "name": "UpdateCampaignBudgetDTO", "variant": "declaration", "kind": 256, @@ -8533,7 +8533,7 @@ }, "children": [ { - "id": 10461, + "id": 10754, "name": "id", "variant": "declaration", "kind": 1024, @@ -8552,7 +8552,7 @@ } }, { - "id": 10462, + "id": 10755, "name": "type", "variant": "declaration", "kind": 1024, @@ -8569,13 +8569,13 @@ }, "type": { "type": "reference", - "target": 10520, + "target": 10813, "name": "CampaignBudgetTypeValues", "package": "@medusajs/types" } }, { - "id": 10463, + "id": 10756, "name": "limit", "variant": "declaration", "kind": 1024, @@ -8605,7 +8605,7 @@ } }, { - "id": 10464, + "id": 10757, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -8635,7 +8635,7 @@ } }, { - "id": 10465, + "id": 10758, "name": "used", "variant": "declaration", "kind": 1024, @@ -8660,17 +8660,17 @@ { "title": "Properties", "children": [ - 10461, - 10462, - 10463, - 10464, - 10465 + 10754, + 10755, + 10756, + 10757, + 10758 ] } ] }, { - "id": 10265, + "id": 10558, "name": "CreateCampaignDTO", "variant": "declaration", "kind": 256, @@ -8685,7 +8685,7 @@ }, "children": [ { - "id": 10266, + "id": 10559, "name": "name", "variant": "declaration", "kind": 1024, @@ -8704,7 +8704,7 @@ } }, { - "id": 10267, + "id": 10560, "name": "description", "variant": "declaration", "kind": 1024, @@ -8734,7 +8734,7 @@ } }, { - "id": 10268, + "id": 10561, "name": "campaign_identifier", "variant": "declaration", "kind": 1024, @@ -8753,7 +8753,7 @@ } }, { - "id": 10269, + "id": 10562, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -8788,7 +8788,7 @@ } }, { - "id": 10270, + "id": 10563, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -8823,7 +8823,7 @@ } }, { - "id": 10271, + "id": 10564, "name": "budget", "variant": "declaration", "kind": 1024, @@ -8839,10 +8839,19 @@ ] }, "type": { - "type": "reference", - "target": 10449, - "name": "CreateCampaignBudgetDTO", - "package": "@medusajs/types" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "target": 10742, + "name": "CreateCampaignBudgetDTO", + "package": "@medusajs/types" + } + ] } } ], @@ -8850,18 +8859,18 @@ { "title": "Properties", "children": [ - 10266, - 10267, - 10268, - 10269, - 10270, - 10271 + 10559, + 10560, + 10561, + 10562, + 10563, + 10564 ] } ] }, { - "id": 10281, + "id": 10574, "name": "UpdateCampaignDTO", "variant": "declaration", "kind": 256, @@ -8876,7 +8885,7 @@ }, "children": [ { - "id": 10282, + "id": 10575, "name": "id", "variant": "declaration", "kind": 1024, @@ -8895,7 +8904,7 @@ } }, { - "id": 10283, + "id": 10576, "name": "name", "variant": "declaration", "kind": 1024, @@ -8916,7 +8925,7 @@ } }, { - "id": 10284, + "id": 10577, "name": "description", "variant": "declaration", "kind": 1024, @@ -8946,7 +8955,7 @@ } }, { - "id": 10285, + "id": 10578, "name": "campaign_identifier", "variant": "declaration", "kind": 1024, @@ -8967,7 +8976,7 @@ } }, { - "id": 10286, + "id": 10579, "name": "starts_at", "variant": "declaration", "kind": 1024, @@ -9002,7 +9011,7 @@ } }, { - "id": 10287, + "id": 10580, "name": "ends_at", "variant": "declaration", "kind": 1024, @@ -9037,7 +9046,7 @@ } }, { - "id": 10288, + "id": 10581, "name": "budget", "variant": "declaration", "kind": 1024, @@ -9061,7 +9070,7 @@ "typeArguments": [ { "type": "reference", - "target": 10460, + "target": 10753, "name": "UpdateCampaignBudgetDTO", "package": "@medusajs/types" }, @@ -9079,26 +9088,26 @@ { "title": "Properties", "children": [ - 10282, - 10283, - 10284, - 10285, - 10286, - 10287, - 10288 + 10575, + 10576, + 10577, + 10578, + 10579, + 10580, + 10581 ] } ] }, { - "id": 10305, + "id": 10598, "name": "AddPromotionsToCampaignDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 10306, + "id": 10599, "name": "id", "variant": "declaration", "kind": 1024, @@ -9117,7 +9126,7 @@ } }, { - "id": 10307, + "id": 10600, "name": "promotion_ids", "variant": "declaration", "kind": 1024, @@ -9143,21 +9152,21 @@ { "title": "Properties", "children": [ - 10306, - 10307 + 10599, + 10600 ] } ] }, { - "id": 10308, + "id": 10601, "name": "RemovePromotionsFromCampaignDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 10309, + "id": 10602, "name": "id", "variant": "declaration", "kind": 1024, @@ -9176,7 +9185,7 @@ } }, { - "id": 10310, + "id": 10603, "name": "promotion_ids", "variant": "declaration", "kind": 1024, @@ -9202,14 +9211,14 @@ { "title": "Properties", "children": [ - 10309, - 10310 + 10602, + 10603 ] } ] }, { - "id": 10002, + "id": 10295, "name": "IPromotionModuleService", "variant": "declaration", "kind": 256, @@ -9224,14 +9233,14 @@ }, "children": [ { - "id": 10003, + "id": 10296, "name": "registerUsage", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10004, + "id": 10297, "name": "registerUsage", "variant": "signature", "kind": 4096, @@ -9282,7 +9291,7 @@ }, "parameters": [ { - "id": 10005, + "id": 10298, "name": "computedActions", "variant": "param", "kind": 32768, @@ -9299,7 +9308,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10185, + "target": 10478, "name": "ComputeActions", "package": "@medusajs/types" } @@ -9325,14 +9334,14 @@ ] }, { - "id": 10006, + "id": 10299, "name": "computeActions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10007, + "id": 10300, "name": "computeActions", "variant": "signature", "kind": 4096, @@ -9367,7 +9376,7 @@ }, "parameters": [ { - "id": 10008, + "id": 10301, "name": "promotionCodesToApply", "variant": "param", "kind": 32768, @@ -9389,7 +9398,7 @@ } }, { - "id": 10009, + "id": 10302, "name": "applicationContext", "variant": "param", "kind": 32768, @@ -9404,13 +9413,13 @@ }, "type": { "type": "reference", - "target": 10186, + "target": 10479, "name": "ComputeActionContext", "package": "@medusajs/types" } }, { - "id": 10010, + "id": 10303, "name": "options", "variant": "param", "kind": 32768, @@ -9457,7 +9466,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10185, + "target": 10478, "name": "ComputeActions", "package": "@medusajs/types" } @@ -9470,14 +9479,14 @@ ] }, { - "id": 10011, + "id": 10304, "name": "createPromotions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10012, + "id": 10305, "name": "createPromotions", "variant": "signature", "kind": 4096, @@ -9512,7 +9521,7 @@ }, "parameters": [ { - "id": 10013, + "id": 10306, "name": "data", "variant": "param", "kind": 32768, @@ -9529,14 +9538,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10190, + "target": 10483, "name": "CreatePromotionDTO", "package": "@medusajs/types" } } }, { - "id": 10014, + "id": 10307, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -9553,7 +9562,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -9570,7 +9579,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -9581,7 +9590,7 @@ } }, { - "id": 10015, + "id": 10308, "name": "createPromotions", "variant": "signature", "kind": 4096, @@ -9616,7 +9625,7 @@ }, "parameters": [ { - "id": 10016, + "id": 10309, "name": "data", "variant": "param", "kind": 32768, @@ -9631,13 +9640,13 @@ }, "type": { "type": "reference", - "target": 10190, + "target": 10483, "name": "CreatePromotionDTO", "package": "@medusajs/types" } }, { - "id": 10017, + "id": 10310, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -9654,7 +9663,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -9669,7 +9678,7 @@ "typeArguments": [ { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -9681,14 +9690,14 @@ ] }, { - "id": 10018, + "id": 10311, "name": "updatePromotions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10019, + "id": 10312, "name": "updatePromotions", "variant": "signature", "kind": 4096, @@ -9723,7 +9732,7 @@ }, "parameters": [ { - "id": 10020, + "id": 10313, "name": "data", "variant": "param", "kind": 32768, @@ -9740,14 +9749,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10219, + "target": 10512, "name": "UpdatePromotionDTO", "package": "@medusajs/types" } } }, { - "id": 10021, + "id": 10314, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -9764,7 +9773,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -9781,7 +9790,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -9792,7 +9801,7 @@ } }, { - "id": 10022, + "id": 10315, "name": "updatePromotions", "variant": "signature", "kind": 4096, @@ -9827,7 +9836,7 @@ }, "parameters": [ { - "id": 10023, + "id": 10316, "name": "data", "variant": "param", "kind": 32768, @@ -9842,13 +9851,13 @@ }, "type": { "type": "reference", - "target": 10219, + "target": 10512, "name": "UpdatePromotionDTO", "package": "@medusajs/types" } }, { - "id": 10024, + "id": 10317, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -9865,7 +9874,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -9880,7 +9889,7 @@ "typeArguments": [ { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -9892,14 +9901,14 @@ ] }, { - "id": 10025, + "id": 10318, "name": "listPromotions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10026, + "id": 10319, "name": "listPromotions", "variant": "signature", "kind": 4096, @@ -9986,7 +9995,7 @@ }, "parameters": [ { - "id": 10027, + "id": 10320, "name": "filters", "variant": "param", "kind": 32768, @@ -10003,13 +10012,13 @@ }, "type": { "type": "reference", - "target": 10226, + "target": 10519, "name": "FilterablePromotionProps", "package": "@medusajs/types" } }, { - "id": 10028, + "id": 10321, "name": "config", "variant": "param", "kind": 32768, @@ -10042,11 +10051,11 @@ }, "type": { "type": "reference", - "target": 10235, + "target": 10528, "typeArguments": [ { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -10056,7 +10065,7 @@ } }, { - "id": 10029, + "id": 10322, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10073,7 +10082,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -10090,7 +10099,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -10103,14 +10112,14 @@ ] }, { - "id": 10030, + "id": 10323, "name": "listAndCountPromotions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10031, + "id": 10324, "name": "listAndCountPromotions", "variant": "signature", "kind": 4096, @@ -10197,7 +10206,7 @@ }, "parameters": [ { - "id": 10032, + "id": 10325, "name": "filters", "variant": "param", "kind": 32768, @@ -10214,13 +10223,13 @@ }, "type": { "type": "reference", - "target": 10226, + "target": 10519, "name": "FilterablePromotionProps", "package": "@medusajs/types" } }, { - "id": 10033, + "id": 10326, "name": "config", "variant": "param", "kind": 32768, @@ -10253,11 +10262,11 @@ }, "type": { "type": "reference", - "target": 10235, + "target": 10528, "typeArguments": [ { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -10267,7 +10276,7 @@ } }, { - "id": 10034, + "id": 10327, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10284,7 +10293,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -10304,7 +10313,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -10323,14 +10332,14 @@ ] }, { - "id": 10035, + "id": 10328, "name": "retrievePromotion", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10036, + "id": 10329, "name": "retrievePromotion", "variant": "signature", "kind": 4096, @@ -10377,7 +10386,7 @@ }, "parameters": [ { - "id": 10037, + "id": 10330, "name": "id", "variant": "param", "kind": 32768, @@ -10396,7 +10405,7 @@ } }, { - "id": 10038, + "id": 10331, "name": "config", "variant": "param", "kind": 32768, @@ -10429,11 +10438,11 @@ }, "type": { "type": "reference", - "target": 10235, + "target": 10528, "typeArguments": [ { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -10443,7 +10452,7 @@ } }, { - "id": 10039, + "id": 10332, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10460,7 +10469,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -10475,7 +10484,7 @@ "typeArguments": [ { "type": "reference", - "target": 10210, + "target": 10503, "name": "PromotionDTO", "package": "@medusajs/types" } @@ -10487,14 +10496,14 @@ ] }, { - "id": 10040, + "id": 10333, "name": "deletePromotions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10041, + "id": 10334, "name": "deletePromotions", "variant": "signature", "kind": 4096, @@ -10529,7 +10538,7 @@ }, "parameters": [ { - "id": 10042, + "id": 10335, "name": "ids", "variant": "param", "kind": 32768, @@ -10551,7 +10560,7 @@ } }, { - "id": 10043, + "id": 10336, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10568,7 +10577,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -10591,7 +10600,7 @@ } }, { - "id": 10044, + "id": 10337, "name": "deletePromotions", "variant": "signature", "kind": 4096, @@ -10626,7 +10635,7 @@ }, "parameters": [ { - "id": 10045, + "id": 10338, "name": "ids", "variant": "param", "kind": 32768, @@ -10645,7 +10654,7 @@ } }, { - "id": 10046, + "id": 10339, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10662,7 +10671,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -10687,14 +10696,14 @@ ] }, { - "id": 10047, + "id": 10340, "name": "softDeletePromotions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10048, + "id": 10341, "name": "softDeletePromotions", "variant": "signature", "kind": 4096, @@ -10745,7 +10754,7 @@ }, "typeParameters": [ { - "id": 10049, + "id": 10342, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -10762,7 +10771,7 @@ ], "parameters": [ { - "id": 10050, + "id": 10343, "name": "promotionIds", "variant": "param", "kind": 32768, @@ -10793,7 +10802,7 @@ } }, { - "id": 10051, + "id": 10344, "name": "config", "variant": "param", "kind": 32768, @@ -10810,11 +10819,11 @@ }, "type": { "type": "reference", - "target": 10248, + "target": 10541, "typeArguments": [ { "type": "reference", - "target": 10049, + "target": 10342, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -10825,7 +10834,7 @@ } }, { - "id": 10052, + "id": 10345, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10842,7 +10851,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -10894,14 +10903,14 @@ ] }, { - "id": 10053, + "id": 10346, "name": "restorePromotions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10054, + "id": 10347, "name": "restorePromotions", "variant": "signature", "kind": 4096, @@ -10952,7 +10961,7 @@ }, "typeParameters": [ { - "id": 10055, + "id": 10348, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -10969,7 +10978,7 @@ ], "parameters": [ { - "id": 10056, + "id": 10349, "name": "promotionIds", "variant": "param", "kind": 32768, @@ -11000,7 +11009,7 @@ } }, { - "id": 10057, + "id": 10350, "name": "config", "variant": "param", "kind": 32768, @@ -11033,11 +11042,11 @@ }, "type": { "type": "reference", - "target": 10251, + "target": 10544, "typeArguments": [ { "type": "reference", - "target": 10055, + "target": 10348, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11048,7 +11057,7 @@ } }, { - "id": 10058, + "id": 10351, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11065,7 +11074,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -11117,14 +11126,14 @@ ] }, { - "id": 10059, + "id": 10352, "name": "addPromotionRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10060, + "id": 10353, "name": "addPromotionRules", "variant": "signature", "kind": 4096, @@ -11159,7 +11168,7 @@ }, "parameters": [ { - "id": 10061, + "id": 10354, "name": "promotionId", "variant": "param", "kind": 32768, @@ -11178,7 +11187,7 @@ } }, { - "id": 10062, + "id": 10355, "name": "rulesData", "variant": "param", "kind": 32768, @@ -11195,14 +11204,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10254, + "target": 10547, "name": "CreatePromotionRuleDTO", "package": "@medusajs/types" } } }, { - "id": 10063, + "id": 10356, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11219,7 +11228,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -11236,7 +11245,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10259, + "target": 10552, "name": "PromotionRuleDTO", "package": "@medusajs/types" } @@ -11249,14 +11258,14 @@ ] }, { - "id": 10064, + "id": 10357, "name": "addPromotionTargetRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10065, + "id": 10358, "name": "addPromotionTargetRules", "variant": "signature", "kind": 4096, @@ -11291,7 +11300,7 @@ }, "parameters": [ { - "id": 10066, + "id": 10359, "name": "promotionId", "variant": "param", "kind": 32768, @@ -11310,7 +11319,7 @@ } }, { - "id": 10067, + "id": 10360, "name": "rulesData", "variant": "param", "kind": 32768, @@ -11327,14 +11336,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10254, + "target": 10547, "name": "CreatePromotionRuleDTO", "package": "@medusajs/types" } } }, { - "id": 10068, + "id": 10361, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11351,7 +11360,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -11368,7 +11377,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10259, + "target": 10552, "name": "PromotionRuleDTO", "package": "@medusajs/types" } @@ -11381,14 +11390,14 @@ ] }, { - "id": 10069, + "id": 10362, "name": "addPromotionBuyRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10070, + "id": 10363, "name": "addPromotionBuyRules", "variant": "signature", "kind": 4096, @@ -11423,7 +11432,7 @@ }, "parameters": [ { - "id": 10071, + "id": 10364, "name": "promotionId", "variant": "param", "kind": 32768, @@ -11442,7 +11451,7 @@ } }, { - "id": 10072, + "id": 10365, "name": "rulesData", "variant": "param", "kind": 32768, @@ -11459,14 +11468,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10254, + "target": 10547, "name": "CreatePromotionRuleDTO", "package": "@medusajs/types" } } }, { - "id": 10073, + "id": 10366, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11483,7 +11492,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -11500,7 +11509,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10259, + "target": 10552, "name": "PromotionRuleDTO", "package": "@medusajs/types" } @@ -11513,14 +11522,14 @@ ] }, { - "id": 10074, + "id": 10367, "name": "removePromotionRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10075, + "id": 10368, "name": "removePromotionRules", "variant": "signature", "kind": 4096, @@ -11555,7 +11564,7 @@ }, "parameters": [ { - "id": 10076, + "id": 10369, "name": "promotionId", "variant": "param", "kind": 32768, @@ -11574,7 +11583,7 @@ } }, { - "id": 10077, + "id": 10370, "name": "ruleIds", "variant": "param", "kind": 32768, @@ -11596,7 +11605,7 @@ } }, { - "id": 10078, + "id": 10371, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11613,7 +11622,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -11638,14 +11647,14 @@ ] }, { - "id": 10079, + "id": 10372, "name": "removePromotionTargetRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10080, + "id": 10373, "name": "removePromotionTargetRules", "variant": "signature", "kind": 4096, @@ -11680,7 +11689,7 @@ }, "parameters": [ { - "id": 10081, + "id": 10374, "name": "promotionId", "variant": "param", "kind": 32768, @@ -11699,7 +11708,7 @@ } }, { - "id": 10082, + "id": 10375, "name": "ruleIds", "variant": "param", "kind": 32768, @@ -11721,7 +11730,7 @@ } }, { - "id": 10083, + "id": 10376, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11738,7 +11747,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -11763,14 +11772,14 @@ ] }, { - "id": 10084, + "id": 10377, "name": "removePromotionBuyRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10085, + "id": 10378, "name": "removePromotionBuyRules", "variant": "signature", "kind": 4096, @@ -11805,7 +11814,7 @@ }, "parameters": [ { - "id": 10086, + "id": 10379, "name": "promotionId", "variant": "param", "kind": 32768, @@ -11824,7 +11833,7 @@ } }, { - "id": 10087, + "id": 10380, "name": "ruleIds", "variant": "param", "kind": 32768, @@ -11846,7 +11855,7 @@ } }, { - "id": 10088, + "id": 10381, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11863,7 +11872,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -11888,14 +11897,14 @@ ] }, { - "id": 10089, + "id": 10382, "name": "createCampaigns", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10090, + "id": 10383, "name": "createCampaigns", "variant": "signature", "kind": 4096, @@ -11930,7 +11939,7 @@ }, "parameters": [ { - "id": 10091, + "id": 10384, "name": "data", "variant": "param", "kind": 32768, @@ -11945,13 +11954,13 @@ }, "type": { "type": "reference", - "target": 10265, + "target": 10558, "name": "CreateCampaignDTO", "package": "@medusajs/types" } }, { - "id": 10092, + "id": 10385, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11968,7 +11977,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -11983,7 +11992,7 @@ "typeArguments": [ { "type": "reference", - "target": 10272, + "target": 10565, "name": "CampaignDTO", "package": "@medusajs/types" } @@ -11993,7 +12002,7 @@ } }, { - "id": 10093, + "id": 10386, "name": "createCampaigns", "variant": "signature", "kind": 4096, @@ -12028,7 +12037,7 @@ }, "parameters": [ { - "id": 10094, + "id": 10387, "name": "data", "variant": "param", "kind": 32768, @@ -12045,14 +12054,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10265, + "target": 10558, "name": "CreateCampaignDTO", "package": "@medusajs/types" } } }, { - "id": 10095, + "id": 10388, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12069,7 +12078,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -12086,7 +12095,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10272, + "target": 10565, "name": "CampaignDTO", "package": "@medusajs/types" } @@ -12099,14 +12108,14 @@ ] }, { - "id": 10096, + "id": 10389, "name": "updateCampaigns", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10097, + "id": 10390, "name": "updateCampaigns", "variant": "signature", "kind": 4096, @@ -12141,7 +12150,7 @@ }, "parameters": [ { - "id": 10098, + "id": 10391, "name": "data", "variant": "param", "kind": 32768, @@ -12158,14 +12167,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10281, + "target": 10574, "name": "UpdateCampaignDTO", "package": "@medusajs/types" } } }, { - "id": 10099, + "id": 10392, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12182,7 +12191,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -12199,7 +12208,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10272, + "target": 10565, "name": "CampaignDTO", "package": "@medusajs/types" } @@ -12210,7 +12219,7 @@ } }, { - "id": 10100, + "id": 10393, "name": "updateCampaigns", "variant": "signature", "kind": 4096, @@ -12245,7 +12254,7 @@ }, "parameters": [ { - "id": 10101, + "id": 10394, "name": "data", "variant": "param", "kind": 32768, @@ -12260,13 +12269,13 @@ }, "type": { "type": "reference", - "target": 10281, + "target": 10574, "name": "UpdateCampaignDTO", "package": "@medusajs/types" } }, { - "id": 10102, + "id": 10395, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12283,7 +12292,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -12298,7 +12307,7 @@ "typeArguments": [ { "type": "reference", - "target": 10272, + "target": 10565, "name": "CampaignDTO", "package": "@medusajs/types" } @@ -12310,14 +12319,14 @@ ] }, { - "id": 10103, + "id": 10396, "name": "listPromotionRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10104, + "id": 10397, "name": "listPromotionRules", "variant": "signature", "kind": 4096, @@ -12404,7 +12413,7 @@ }, "parameters": [ { - "id": 10105, + "id": 10398, "name": "filters", "variant": "param", "kind": 32768, @@ -12421,13 +12430,13 @@ }, "type": { "type": "reference", - "target": 10289, + "target": 10582, "name": "FilterablePromotionRuleProps", "package": "@medusajs/types" } }, { - "id": 10106, + "id": 10399, "name": "config", "variant": "param", "kind": 32768, @@ -12460,11 +12469,11 @@ }, "type": { "type": "reference", - "target": 10235, + "target": 10528, "typeArguments": [ { "type": "reference", - "target": 10259, + "target": 10552, "name": "PromotionRuleDTO", "package": "@medusajs/types" } @@ -12474,7 +12483,7 @@ } }, { - "id": 10107, + "id": 10400, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12491,7 +12500,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -12508,7 +12517,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10259, + "target": 10552, "name": "PromotionRuleDTO", "package": "@medusajs/types" } @@ -12521,14 +12530,14 @@ ] }, { - "id": 10108, + "id": 10401, "name": "updatePromotionRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10109, + "id": 10402, "name": "updatePromotionRules", "variant": "signature", "kind": 4096, @@ -12563,7 +12572,7 @@ }, "parameters": [ { - "id": 10110, + "id": 10403, "name": "data", "variant": "param", "kind": 32768, @@ -12580,14 +12589,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10293, + "target": 10586, "name": "UpdatePromotionRuleDTO", "package": "@medusajs/types" } } }, { - "id": 10111, + "id": 10404, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12604,7 +12613,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -12621,7 +12630,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10259, + "target": 10552, "name": "PromotionRuleDTO", "package": "@medusajs/types" } @@ -12634,14 +12643,14 @@ ] }, { - "id": 10112, + "id": 10405, "name": "listCampaigns", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10113, + "id": 10406, "name": "listCampaigns", "variant": "signature", "kind": 4096, @@ -12728,7 +12737,7 @@ }, "parameters": [ { - "id": 10114, + "id": 10407, "name": "filters", "variant": "param", "kind": 32768, @@ -12745,13 +12754,13 @@ }, "type": { "type": "reference", - "target": 10299, + "target": 10592, "name": "FilterableCampaignProps", "package": "@medusajs/types" } }, { - "id": 10115, + "id": 10408, "name": "config", "variant": "param", "kind": 32768, @@ -12784,11 +12793,11 @@ }, "type": { "type": "reference", - "target": 10235, + "target": 10528, "typeArguments": [ { "type": "reference", - "target": 10272, + "target": 10565, "name": "CampaignDTO", "package": "@medusajs/types" } @@ -12798,7 +12807,7 @@ } }, { - "id": 10116, + "id": 10409, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12815,7 +12824,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -12832,7 +12841,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10272, + "target": 10565, "name": "CampaignDTO", "package": "@medusajs/types" } @@ -12845,14 +12854,14 @@ ] }, { - "id": 10117, + "id": 10410, "name": "listAndCountCampaigns", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10118, + "id": 10411, "name": "listAndCountCampaigns", "variant": "signature", "kind": 4096, @@ -12939,7 +12948,7 @@ }, "parameters": [ { - "id": 10119, + "id": 10412, "name": "filters", "variant": "param", "kind": 32768, @@ -12956,13 +12965,13 @@ }, "type": { "type": "reference", - "target": 10299, + "target": 10592, "name": "FilterableCampaignProps", "package": "@medusajs/types" } }, { - "id": 10120, + "id": 10413, "name": "config", "variant": "param", "kind": 32768, @@ -12995,11 +13004,11 @@ }, "type": { "type": "reference", - "target": 10235, + "target": 10528, "typeArguments": [ { "type": "reference", - "target": 10272, + "target": 10565, "name": "CampaignDTO", "package": "@medusajs/types" } @@ -13009,7 +13018,7 @@ } }, { - "id": 10121, + "id": 10414, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13026,7 +13035,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -13046,7 +13055,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10272, + "target": 10565, "name": "CampaignDTO", "package": "@medusajs/types" } @@ -13065,14 +13074,14 @@ ] }, { - "id": 10122, + "id": 10415, "name": "retrieveCampaign", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10123, + "id": 10416, "name": "retrieveCampaign", "variant": "signature", "kind": 4096, @@ -13119,7 +13128,7 @@ }, "parameters": [ { - "id": 10124, + "id": 10417, "name": "id", "variant": "param", "kind": 32768, @@ -13138,7 +13147,7 @@ } }, { - "id": 10125, + "id": 10418, "name": "config", "variant": "param", "kind": 32768, @@ -13171,11 +13180,11 @@ }, "type": { "type": "reference", - "target": 10235, + "target": 10528, "typeArguments": [ { "type": "reference", - "target": 10272, + "target": 10565, "name": "CampaignDTO", "package": "@medusajs/types" } @@ -13185,7 +13194,7 @@ } }, { - "id": 10126, + "id": 10419, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13202,7 +13211,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -13217,7 +13226,7 @@ "typeArguments": [ { "type": "reference", - "target": 10272, + "target": 10565, "name": "CampaignDTO", "package": "@medusajs/types" } @@ -13229,14 +13238,14 @@ ] }, { - "id": 10127, + "id": 10420, "name": "deleteCampaigns", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10128, + "id": 10421, "name": "deleteCampaigns", "variant": "signature", "kind": 4096, @@ -13271,7 +13280,7 @@ }, "parameters": [ { - "id": 10129, + "id": 10422, "name": "ids", "variant": "param", "kind": 32768, @@ -13293,7 +13302,7 @@ } }, { - "id": 10130, + "id": 10423, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13310,7 +13319,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -13333,7 +13342,7 @@ } }, { - "id": 10131, + "id": 10424, "name": "deleteCampaigns", "variant": "signature", "kind": 4096, @@ -13368,7 +13377,7 @@ }, "parameters": [ { - "id": 10132, + "id": 10425, "name": "ids", "variant": "param", "kind": 32768, @@ -13387,7 +13396,7 @@ } }, { - "id": 10133, + "id": 10426, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13404,7 +13413,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -13429,14 +13438,14 @@ ] }, { - "id": 10134, + "id": 10427, "name": "softDeleteCampaigns", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10135, + "id": 10428, "name": "softDeleteCampaigns", "variant": "signature", "kind": 4096, @@ -13487,7 +13496,7 @@ }, "typeParameters": [ { - "id": 10136, + "id": 10429, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -13504,7 +13513,7 @@ ], "parameters": [ { - "id": 10137, + "id": 10430, "name": "campaignIds", "variant": "param", "kind": 32768, @@ -13535,7 +13544,7 @@ } }, { - "id": 10138, + "id": 10431, "name": "config", "variant": "param", "kind": 32768, @@ -13552,11 +13561,11 @@ }, "type": { "type": "reference", - "target": 10248, + "target": 10541, "typeArguments": [ { "type": "reference", - "target": 10136, + "target": 10429, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13567,7 +13576,7 @@ } }, { - "id": 10139, + "id": 10432, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13584,7 +13593,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -13636,14 +13645,14 @@ ] }, { - "id": 10140, + "id": 10433, "name": "restoreCampaigns", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10141, + "id": 10434, "name": "restoreCampaigns", "variant": "signature", "kind": 4096, @@ -13694,7 +13703,7 @@ }, "typeParameters": [ { - "id": 10142, + "id": 10435, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -13711,7 +13720,7 @@ ], "parameters": [ { - "id": 10143, + "id": 10436, "name": "campaignIds", "variant": "param", "kind": 32768, @@ -13742,7 +13751,7 @@ } }, { - "id": 10144, + "id": 10437, "name": "config", "variant": "param", "kind": 32768, @@ -13775,11 +13784,11 @@ }, "type": { "type": "reference", - "target": 10251, + "target": 10544, "typeArguments": [ { "type": "reference", - "target": 10142, + "target": 10435, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13790,7 +13799,7 @@ } }, { - "id": 10145, + "id": 10438, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13807,7 +13816,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -13859,34 +13868,34 @@ ] }, { - "id": 10146, + "id": 10439, "name": "addPromotionsToCampaign", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10147, + "id": 10440, "name": "addPromotionsToCampaign", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 10148, + "id": 10441, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 10305, + "target": 10598, "name": "AddPromotionsToCampaignDTO", "package": "@medusajs/types" } }, { - "id": 10149, + "id": 10442, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13895,7 +13904,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -13911,14 +13920,14 @@ { "type": "reflection", "declaration": { - "id": 10150, + "id": 10443, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10151, + "id": 10444, "name": "ids", "variant": "declaration", "kind": 1024, @@ -13936,7 +13945,7 @@ { "title": "Properties", "children": [ - 10151 + 10444 ] } ] @@ -13950,34 +13959,34 @@ ] }, { - "id": 10152, + "id": 10445, "name": "removePromotionsFromCampaign", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10153, + "id": 10446, "name": "removePromotionsFromCampaign", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 10154, + "id": 10447, "name": "data", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 10308, + "target": 10601, "name": "RemovePromotionsFromCampaignDTO", "package": "@medusajs/types" } }, { - "id": 10155, + "id": 10448, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13986,7 +13995,7 @@ }, "type": { "type": "reference", - "target": 10198, + "target": 10491, "name": "Context", "package": "@medusajs/types" } @@ -14002,14 +14011,14 @@ { "type": "reflection", "declaration": { - "id": 10156, + "id": 10449, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10157, + "id": 10450, "name": "ids", "variant": "declaration", "kind": 1024, @@ -14027,7 +14036,7 @@ { "title": "Properties", "children": [ - 10157 + 10450 ] } ] @@ -14045,55 +14054,55 @@ { "title": "Methods", "children": [ - 10003, - 10006, - 10011, - 10018, - 10025, - 10030, - 10035, - 10040, - 10047, - 10053, - 10059, - 10064, - 10069, - 10074, - 10079, - 10084, - 10089, - 10096, - 10103, - 10108, - 10112, - 10117, - 10122, - 10127, - 10134, - 10140, - 10146, - 10152 + 10296, + 10299, + 10304, + 10311, + 10318, + 10323, + 10328, + 10333, + 10340, + 10346, + 10352, + 10357, + 10362, + 10367, + 10372, + 10377, + 10382, + 10389, + 10396, + 10401, + 10405, + 10410, + 10415, + 10420, + 10427, + 10433, + 10439, + 10445 ] } ], "extendedTypes": [ { "type": "reference", - "target": 10171, + "target": 10464, "name": "IModuleService", "package": "@medusajs/types" } ] }, { - "id": 10500, + "id": 10793, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 10501, + "id": 10794, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -14109,7 +14118,7 @@ } }, { - "id": 10502, + "id": 10795, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -14119,21 +14128,21 @@ "type": { "type": "reflection", "declaration": { - "id": 10503, + "id": 10796, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 10504, + "id": 10797, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 10505, + "id": 10798, "name": "key", "variant": "param", "kind": 32768, @@ -14174,35 +14183,35 @@ { "title": "Properties", "children": [ - 10501, - 10502 + 10794, + 10795 ] } ] }, { - "id": 10381, + "id": 10674, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 10382, + "id": 10675, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10383, + "id": 10676, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 10384, + "id": 10677, "name": "msg", "variant": "param", "kind": 32768, @@ -14212,7 +14221,7 @@ "types": [ { "type": "reference", - "target": 10496, + "target": 10789, "name": "Message", "package": "@medusajs/types" }, @@ -14220,7 +14229,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10496, + "target": 10789, "name": "Message", "package": "@medusajs/types" } @@ -14237,21 +14246,21 @@ ] }, { - "id": 10385, + "id": 10678, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10386, + "id": 10679, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 10387, + "id": 10680, "name": "format", "variant": "param", "kind": 32768, @@ -14260,7 +14269,7 @@ }, "type": { "type": "reference", - "target": 10500, + "target": 10793, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -14281,7 +14290,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10496, + "target": 10789, "name": "Message", "package": "@medusajs/types" } @@ -14294,14 +14303,14 @@ ] }, { - "id": 10388, + "id": 10681, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10389, + "id": 10682, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -14314,21 +14323,21 @@ ] }, { - "id": 10390, + "id": 10683, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10391, + "id": 10684, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 10392, + "id": 10685, "name": "T", "variant": "typeParam", "kind": 131072, @@ -14337,7 +14346,7 @@ ], "parameters": [ { - "id": 10393, + "id": 10686, "name": "messageData", "variant": "param", "kind": 32768, @@ -14347,11 +14356,11 @@ "types": [ { "type": "reference", - "target": 10506, + "target": 10799, "typeArguments": [ { "type": "reference", - "target": 10392, + "target": 10685, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -14364,11 +14373,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 10506, + "target": 10799, "typeArguments": [ { "type": "reference", - "target": 10392, + "target": 10685, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -14382,7 +14391,7 @@ } }, { - "id": 10394, + "id": 10687, "name": "options", "variant": "param", "kind": 32768, @@ -14422,16 +14431,16 @@ { "title": "Methods", "children": [ - 10382, - 10385, - 10388, - 10390 + 10675, + 10678, + 10681, + 10683 ] } ] }, { - "id": 10198, + "id": 10491, "name": "Context", "variant": "declaration", "kind": 256, @@ -14446,7 +14455,7 @@ }, "children": [ { - "id": 10199, + "id": 10492, "name": "__type", "variant": "declaration", "kind": 1024, @@ -14459,7 +14468,7 @@ } }, { - "id": 10200, + "id": 10493, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -14492,14 +14501,14 @@ }, "type": { "type": "reference", - "target": 10209, + "target": 10502, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 10201, + "id": 10494, "name": "manager", "variant": "declaration", "kind": 1024, @@ -14532,14 +14541,14 @@ }, "type": { "type": "reference", - "target": 10209, + "target": 10502, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 10202, + "id": 10495, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -14592,7 +14601,7 @@ } }, { - "id": 10203, + "id": 10496, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -14613,7 +14622,7 @@ } }, { - "id": 10204, + "id": 10497, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -14634,7 +14643,7 @@ } }, { - "id": 10205, + "id": 10498, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -14655,7 +14664,7 @@ } }, { - "id": 10206, + "id": 10499, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -14672,13 +14681,13 @@ }, "type": { "type": "reference", - "target": 10381, + "target": 10674, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 10207, + "id": 10500, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -14699,7 +14708,7 @@ } }, { - "id": 10208, + "id": 10501, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -14724,22 +14733,22 @@ { "title": "Properties", "children": [ - 10199, - 10200, - 10201, - 10202, - 10203, - 10204, - 10205, - 10206, - 10207, - 10208 + 10492, + 10493, + 10494, + 10495, + 10496, + 10497, + 10498, + 10499, + 10500, + 10501 ] } ], "typeParameters": [ { - "id": 10209, + "id": 10502, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -14752,7 +14761,7 @@ ] }, { - "id": 10533, + "id": 10826, "name": "BigNumberRawValue", "variant": "declaration", "kind": 2097152, @@ -14760,14 +14769,14 @@ "type": { "type": "reflection", "declaration": { - "id": 10534, + "id": 10827, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10535, + "id": 10828, "name": "value", "variant": "declaration", "kind": 1024, @@ -14791,20 +14800,20 @@ { "title": "Properties", "children": [ - 10535 + 10828 ] } ], "indexSignatures": [ { - "id": 10536, + "id": 10829, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 10537, + "id": 10830, "name": "key", "variant": "param", "kind": 32768, @@ -14825,7 +14834,7 @@ } }, { - "id": 10489, + "id": 10782, "name": "BigNumberInput", "variant": "declaration", "kind": 2097152, @@ -14835,7 +14844,7 @@ "types": [ { "type": "reference", - "target": 10533, + "target": 10826, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -14865,2253 +14874,2253 @@ { "title": "Interfaces", "children": [ - 10235, - 10419, - 10248, - 10251, - 10521, - 10466, - 10171, - 10395, - 10369, - 10408, - 10454, - 10272, - 10299, - 10356, - 10335, - 10341, - 10346, - 10352, - 10490, - 10359, - 10364, - 10186, - 10446, - 10259, - 10254, - 10293, - 10289, - 10210, - 10190, - 10219, - 10226, - 10449, - 10460, - 10265, - 10281, - 10305, - 10308, - 10002, - 10500, - 10381, - 10198 + 10528, + 10712, + 10541, + 10544, + 10814, + 10759, + 10464, + 10688, + 10662, + 10701, + 10747, + 10565, + 10592, + 10649, + 10628, + 10634, + 10639, + 10645, + 10783, + 10652, + 10657, + 10479, + 10739, + 10552, + 10547, + 10586, + 10582, + 10503, + 10483, + 10512, + 10519, + 10742, + 10753, + 10558, + 10574, + 10598, + 10601, + 10295, + 10793, + 10674, + 10491 ] }, { "title": "Type Aliases", "children": [ - 10516, - 10518, - 10544, - 10572, - 10562, - 10423, - 10560, - 10554, - 10559, - 10548, - 10556, - 10538, - 10496, - 10506, - 10524, - 10483, - 10311, - 10480, - 10493, - 10494, - 10495, - 10520, - 10185, - 10445, - 10368, - 10533, - 10489 + 10809, + 10811, + 10837, + 10865, + 10855, + 10716, + 10853, + 10847, + 10852, + 10841, + 10849, + 10831, + 10789, + 10799, + 10817, + 10776, + 10604, + 10773, + 10786, + 10787, + 10788, + 10813, + 10478, + 10738, + 10661, + 10826, + 10782 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "10001": { + "10294": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "" }, - "10002": { + "10295": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService" }, - "10003": { + "10296": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.registerUsage" }, - "10004": { + "10297": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.registerUsage" }, - "10005": { + "10298": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "computedActions" }, - "10006": { + "10299": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.computeActions" }, - "10007": { + "10300": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.computeActions" }, - "10008": { + "10301": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "promotionCodesToApply" }, - "10009": { + "10302": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "applicationContext" }, - "10010": { + "10303": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "options" }, - "10011": { + "10304": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.createPromotions" }, - "10012": { + "10305": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.createPromotions" }, - "10013": { + "10306": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "data" }, - "10014": { + "10307": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10015": { + "10308": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.createPromotions" }, - "10016": { + "10309": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "data" }, - "10017": { + "10310": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10018": { + "10311": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.updatePromotions" }, - "10019": { + "10312": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.updatePromotions" }, - "10020": { + "10313": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "data" }, - "10021": { + "10314": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10022": { + "10315": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.updatePromotions" }, - "10023": { + "10316": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "data" }, - "10024": { + "10317": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10025": { + "10318": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.listPromotions" }, - "10026": { + "10319": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.listPromotions" }, - "10027": { + "10320": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "filters" }, - "10028": { + "10321": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "config" }, - "10029": { + "10322": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10030": { + "10323": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.listAndCountPromotions" }, - "10031": { + "10324": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.listAndCountPromotions" }, - "10032": { + "10325": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "filters" }, - "10033": { + "10326": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "config" }, - "10034": { + "10327": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10035": { + "10328": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.retrievePromotion" }, - "10036": { + "10329": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.retrievePromotion" }, - "10037": { + "10330": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "id" }, - "10038": { + "10331": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "config" }, - "10039": { + "10332": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10040": { + "10333": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.deletePromotions" }, - "10041": { + "10334": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.deletePromotions" }, - "10042": { + "10335": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "ids" }, - "10043": { + "10336": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10044": { + "10337": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.deletePromotions" }, - "10045": { + "10338": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "ids" }, - "10046": { + "10339": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10047": { + "10340": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.softDeletePromotions" }, - "10048": { + "10341": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.softDeletePromotions" }, - "10049": { + "10342": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "10050": { + "10343": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "promotionIds" }, - "10051": { + "10344": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "config" }, - "10052": { + "10345": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10053": { + "10346": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.restorePromotions" }, - "10054": { + "10347": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.restorePromotions" }, - "10055": { + "10348": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "10056": { + "10349": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "promotionIds" }, - "10057": { + "10350": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "config" }, - "10058": { + "10351": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10059": { + "10352": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.addPromotionRules" }, - "10060": { + "10353": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.addPromotionRules" }, - "10061": { + "10354": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "promotionId" }, - "10062": { + "10355": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "rulesData" }, - "10063": { + "10356": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10064": { + "10357": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.addPromotionTargetRules" }, - "10065": { + "10358": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.addPromotionTargetRules" }, - "10066": { + "10359": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "promotionId" }, - "10067": { + "10360": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "rulesData" }, - "10068": { + "10361": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10069": { + "10362": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.addPromotionBuyRules" }, - "10070": { + "10363": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.addPromotionBuyRules" }, - "10071": { + "10364": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "promotionId" }, - "10072": { + "10365": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "rulesData" }, - "10073": { + "10366": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10074": { + "10367": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.removePromotionRules" }, - "10075": { + "10368": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.removePromotionRules" }, - "10076": { + "10369": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "promotionId" }, - "10077": { + "10370": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "ruleIds" }, - "10078": { + "10371": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10079": { + "10372": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.removePromotionTargetRules" }, - "10080": { + "10373": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.removePromotionTargetRules" }, - "10081": { + "10374": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "promotionId" }, - "10082": { + "10375": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "ruleIds" }, - "10083": { + "10376": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10084": { + "10377": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.removePromotionBuyRules" }, - "10085": { + "10378": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.removePromotionBuyRules" }, - "10086": { + "10379": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "promotionId" }, - "10087": { + "10380": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "ruleIds" }, - "10088": { + "10381": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10089": { + "10382": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.createCampaigns" }, - "10090": { + "10383": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.createCampaigns" }, - "10091": { + "10384": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "data" }, - "10092": { + "10385": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10093": { + "10386": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.createCampaigns" }, - "10094": { + "10387": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "data" }, - "10095": { + "10388": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10096": { + "10389": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.updateCampaigns" }, - "10097": { + "10390": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.updateCampaigns" }, - "10098": { + "10391": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "data" }, - "10099": { + "10392": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10100": { + "10393": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.updateCampaigns" }, - "10101": { + "10394": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "data" }, - "10102": { + "10395": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10103": { + "10396": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.listPromotionRules" }, - "10104": { + "10397": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.listPromotionRules" }, - "10105": { + "10398": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "filters" }, - "10106": { + "10399": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "config" }, - "10107": { + "10400": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10108": { + "10401": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.updatePromotionRules" }, - "10109": { + "10402": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.updatePromotionRules" }, - "10110": { + "10403": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "data" }, - "10111": { + "10404": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10112": { + "10405": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.listCampaigns" }, - "10113": { + "10406": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.listCampaigns" }, - "10114": { + "10407": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "filters" }, - "10115": { + "10408": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "config" }, - "10116": { + "10409": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10117": { + "10410": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.listAndCountCampaigns" }, - "10118": { + "10411": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.listAndCountCampaigns" }, - "10119": { + "10412": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "filters" }, - "10120": { + "10413": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "config" }, - "10121": { + "10414": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10122": { + "10415": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.retrieveCampaign" }, - "10123": { + "10416": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.retrieveCampaign" }, - "10124": { + "10417": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "id" }, - "10125": { + "10418": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "config" }, - "10126": { + "10419": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10127": { + "10420": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.deleteCampaigns" }, - "10128": { + "10421": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.deleteCampaigns" }, - "10129": { + "10422": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "ids" }, - "10130": { + "10423": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10131": { + "10424": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.deleteCampaigns" }, - "10132": { + "10425": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "ids" }, - "10133": { + "10426": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10134": { + "10427": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.softDeleteCampaigns" }, - "10135": { + "10428": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.softDeleteCampaigns" }, - "10136": { + "10429": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "10137": { + "10430": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "campaignIds" }, - "10138": { + "10431": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "config" }, - "10139": { + "10432": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10140": { + "10433": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.restoreCampaigns" }, - "10141": { + "10434": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.restoreCampaigns" }, - "10142": { + "10435": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "10143": { + "10436": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "campaignIds" }, - "10144": { + "10437": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "config" }, - "10145": { + "10438": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10146": { + "10439": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.addPromotionsToCampaign" }, - "10147": { + "10440": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.addPromotionsToCampaign" }, - "10148": { + "10441": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "data" }, - "10149": { + "10442": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10150": { + "10443": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "__type" }, - "10151": { + "10444": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "__type.ids" }, - "10152": { + "10445": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.removePromotionsFromCampaign" }, - "10153": { + "10446": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "IPromotionModuleService.removePromotionsFromCampaign" }, - "10154": { + "10447": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "data" }, - "10155": { + "10448": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "sharedContext" }, - "10156": { + "10449": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "__type" }, - "10157": { + "10450": { "sourceFileName": "../../../../packages/core/types/src/promotion/service.ts", "qualifiedName": "__type.ids" }, - "10171": { + "10464": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "10185": { + "10478": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActions" }, - "10186": { + "10479": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionContext" }, - "10187": { + "10480": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionContext.currency_code" }, - "10188": { + "10481": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionContext.items" }, - "10189": { + "10482": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionContext.shipping_methods" }, - "10190": { + "10483": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "CreatePromotionDTO" }, - "10191": { + "10484": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "CreatePromotionDTO.code" }, - "10192": { + "10485": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "CreatePromotionDTO.type" }, - "10193": { + "10486": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "CreatePromotionDTO.is_automatic" }, - "10194": { + "10487": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "CreatePromotionDTO.application_method" }, - "10195": { + "10488": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "CreatePromotionDTO.rules" }, - "10196": { + "10489": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "CreatePromotionDTO.campaign" }, - "10197": { + "10490": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "CreatePromotionDTO.campaign_id" }, - "10198": { + "10491": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "10199": { + "10492": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "10200": { + "10493": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "10201": { + "10494": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "10202": { + "10495": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "10203": { + "10496": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "10204": { + "10497": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "10205": { + "10498": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "10206": { + "10499": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "10207": { + "10500": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "10208": { + "10501": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "10209": { + "10502": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "10210": { + "10503": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "PromotionDTO" }, - "10211": { + "10504": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "PromotionDTO.id" }, - "10212": { + "10505": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "PromotionDTO.code" }, - "10213": { + "10506": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "PromotionDTO.type" }, - "10214": { + "10507": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "PromotionDTO.is_automatic" }, - "10215": { + "10508": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "PromotionDTO.application_method" }, - "10216": { + "10509": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "PromotionDTO.rules" }, - "10217": { + "10510": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "PromotionDTO.campaign_id" }, - "10218": { + "10511": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "PromotionDTO.campaign" }, - "10219": { + "10512": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "UpdatePromotionDTO" }, - "10220": { + "10513": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "UpdatePromotionDTO.id" }, - "10221": { + "10514": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "UpdatePromotionDTO.is_automatic" }, - "10222": { + "10515": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "UpdatePromotionDTO.code" }, - "10223": { + "10516": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "UpdatePromotionDTO.type" }, - "10224": { + "10517": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "UpdatePromotionDTO.application_method" }, - "10225": { + "10518": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "UpdatePromotionDTO.campaign_id" }, - "10226": { + "10519": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "FilterablePromotionProps" }, - "10227": { + "10520": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "FilterablePromotionProps.q" }, - "10228": { + "10521": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "FilterablePromotionProps.id" }, - "10229": { + "10522": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "FilterablePromotionProps.code" }, - "10230": { + "10523": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "FilterablePromotionProps.budget_id" }, - "10231": { + "10524": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "FilterablePromotionProps.is_automatic" }, - "10232": { + "10525": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "FilterablePromotionProps.type" }, - "10233": { + "10526": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "10234": { + "10527": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "10235": { + "10528": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "10236": { + "10529": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "10237": { + "10530": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "10238": { + "10531": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "10239": { + "10532": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "10240": { + "10533": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "10241": { + "10534": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "10242": { + "10535": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "10244": { + "10537": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "10245": { + "10538": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "10246": { + "10539": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "10247": { + "10540": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "10248": { + "10541": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "SoftDeleteReturn" }, - "10249": { + "10542": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "10250": { + "10543": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "10251": { + "10544": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RestoreReturn" }, - "10252": { + "10545": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "10253": { + "10546": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "10254": { + "10547": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "CreatePromotionRuleDTO" }, - "10255": { + "10548": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "CreatePromotionRuleDTO.description" }, - "10256": { + "10549": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "CreatePromotionRuleDTO.attribute" }, - "10257": { + "10550": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "CreatePromotionRuleDTO.operator" }, - "10258": { + "10551": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "CreatePromotionRuleDTO.values" }, - "10259": { + "10552": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "PromotionRuleDTO" }, - "10260": { + "10553": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "PromotionRuleDTO.id" }, - "10261": { + "10554": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "PromotionRuleDTO.description" }, - "10262": { + "10555": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "PromotionRuleDTO.attribute" }, - "10263": { + "10556": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "PromotionRuleDTO.operator" }, - "10264": { + "10557": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "PromotionRuleDTO.values" }, - "10265": { + "10558": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "CreateCampaignDTO" }, - "10266": { + "10559": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "CreateCampaignDTO.name" }, - "10267": { + "10560": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "CreateCampaignDTO.description" }, - "10268": { + "10561": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "CreateCampaignDTO.campaign_identifier" }, - "10269": { + "10562": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "CreateCampaignDTO.starts_at" }, - "10270": { + "10563": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "CreateCampaignDTO.ends_at" }, - "10271": { + "10564": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "CreateCampaignDTO.budget" }, - "10272": { + "10565": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign.ts", "qualifiedName": "CampaignDTO" }, - "10273": { + "10566": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign.ts", "qualifiedName": "CampaignDTO.id" }, - "10274": { + "10567": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign.ts", "qualifiedName": "CampaignDTO.name" }, - "10275": { + "10568": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign.ts", "qualifiedName": "CampaignDTO.description" }, - "10276": { + "10569": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign.ts", "qualifiedName": "CampaignDTO.campaign_identifier" }, - "10277": { + "10570": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign.ts", "qualifiedName": "CampaignDTO.starts_at" }, - "10278": { + "10571": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign.ts", "qualifiedName": "CampaignDTO.ends_at" }, - "10279": { + "10572": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign.ts", "qualifiedName": "CampaignDTO.budget" }, - "10280": { + "10573": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign.ts", "qualifiedName": "CampaignDTO.promotions" }, - "10281": { + "10574": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignDTO" }, - "10282": { + "10575": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignDTO.id" }, - "10283": { + "10576": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignDTO.name" }, - "10284": { + "10577": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignDTO.description" }, - "10285": { + "10578": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignDTO.campaign_identifier" }, - "10286": { + "10579": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignDTO.starts_at" }, - "10287": { + "10580": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignDTO.ends_at" }, - "10288": { + "10581": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignDTO.budget" }, - "10289": { + "10582": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "FilterablePromotionRuleProps" }, - "10290": { + "10583": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "FilterablePromotionRuleProps.id" }, - "10291": { + "10584": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "10292": { + "10585": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "10293": { + "10586": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "UpdatePromotionRuleDTO" }, - "10294": { + "10587": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "UpdatePromotionRuleDTO.id" }, - "10295": { + "10588": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "UpdatePromotionRuleDTO.description" }, - "10296": { + "10589": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "UpdatePromotionRuleDTO.attribute" }, - "10297": { + "10590": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "UpdatePromotionRuleDTO.operator" }, - "10298": { + "10591": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "UpdatePromotionRuleDTO.values" }, - "10299": { + "10592": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign.ts", "qualifiedName": "FilterableCampaignProps" }, - "10300": { + "10593": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign.ts", "qualifiedName": "FilterableCampaignProps.q" }, - "10301": { + "10594": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign.ts", "qualifiedName": "FilterableCampaignProps.id" }, - "10302": { + "10595": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign.ts", "qualifiedName": "FilterableCampaignProps.campaign_identifier" }, - "10303": { + "10596": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "10304": { + "10597": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "10305": { + "10598": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "AddPromotionsToCampaignDTO" }, - "10306": { + "10599": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "AddPromotionsToCampaignDTO.id" }, - "10307": { + "10600": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "AddPromotionsToCampaignDTO.promotion_ids" }, - "10308": { + "10601": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "RemovePromotionsFromCampaignDTO" }, - "10309": { + "10602": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "RemovePromotionsFromCampaignDTO.id" }, - "10310": { + "10603": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "RemovePromotionsFromCampaignDTO.promotion_ids" }, - "10311": { + "10604": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "10312": { + "10605": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "10313": { + "10606": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "10314": { + "10607": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "10315": { + "10608": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "10316": { + "10609": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "10317": { + "10610": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "10318": { + "10611": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "10319": { + "10612": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "10320": { + "10613": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "10321": { + "10614": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "10322": { + "10615": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "10323": { + "10616": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "10324": { + "10617": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "10325": { + "10618": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "10326": { + "10619": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "10327": { + "10620": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "10328": { + "10621": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "10329": { + "10622": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "10330": { + "10623": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "10331": { + "10624": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "10332": { + "10625": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "10333": { + "10626": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "10334": { + "10627": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "10335": { + "10628": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "AddItemAdjustmentAction" }, - "10336": { + "10629": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "AddItemAdjustmentAction.action" }, - "10337": { + "10630": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "AddItemAdjustmentAction.item_id" }, - "10338": { + "10631": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "AddItemAdjustmentAction.amount" }, - "10339": { + "10632": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "AddItemAdjustmentAction.code" }, - "10340": { + "10633": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "AddItemAdjustmentAction.description" }, - "10341": { + "10634": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "RemoveItemAdjustmentAction" }, - "10342": { + "10635": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "RemoveItemAdjustmentAction.action" }, - "10343": { + "10636": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "RemoveItemAdjustmentAction.adjustment_id" }, - "10344": { + "10637": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "RemoveItemAdjustmentAction.description" }, - "10345": { + "10638": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "RemoveItemAdjustmentAction.code" }, - "10346": { + "10639": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "AddShippingMethodAdjustment" }, - "10347": { + "10640": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "AddShippingMethodAdjustment.action" }, - "10348": { + "10641": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "AddShippingMethodAdjustment.shipping_method_id" }, - "10349": { + "10642": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "AddShippingMethodAdjustment.amount" }, - "10350": { + "10643": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "AddShippingMethodAdjustment.code" }, - "10351": { + "10644": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "AddShippingMethodAdjustment.description" }, - "10352": { + "10645": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "RemoveShippingMethodAdjustment" }, - "10353": { + "10646": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "RemoveShippingMethodAdjustment.action" }, - "10354": { + "10647": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "RemoveShippingMethodAdjustment.adjustment_id" }, - "10355": { + "10648": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "RemoveShippingMethodAdjustment.code" }, - "10356": { + "10649": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "CampaignBudgetExceededAction" }, - "10357": { + "10650": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "CampaignBudgetExceededAction.action" }, - "10358": { + "10651": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "CampaignBudgetExceededAction.code" }, - "10359": { + "10652": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionItemLine" }, - "10360": { + "10653": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionItemLine.id" }, - "10361": { + "10654": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionItemLine.quantity" }, - "10362": { + "10655": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionItemLine.subtotal" }, - "10363": { + "10656": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionItemLine.adjustments" }, - "10364": { + "10657": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionShippingLine" }, - "10365": { + "10658": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionShippingLine.id" }, - "10366": { + "10659": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionShippingLine.subtotal" }, - "10367": { + "10660": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionShippingLine.adjustments" }, - "10368": { + "10661": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion.ts", "qualifiedName": "PromotionTypeValues" }, - "10369": { + "10662": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "CreateApplicationMethodDTO" }, - "10370": { + "10663": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "CreateApplicationMethodDTO.type" }, - "10371": { + "10664": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "CreateApplicationMethodDTO.target_type" }, - "10372": { + "10665": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "CreateApplicationMethodDTO.allocation" }, - "10373": { + "10666": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "CreateApplicationMethodDTO.value" }, - "10374": { + "10667": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "CreateApplicationMethodDTO.currency_code" }, - "10375": { + "10668": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "CreateApplicationMethodDTO.max_quantity" }, - "10376": { + "10669": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "CreateApplicationMethodDTO.buy_rules_min_quantity" }, - "10377": { + "10670": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "CreateApplicationMethodDTO.apply_to_quantity" }, - "10378": { + "10671": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "CreateApplicationMethodDTO.promotion" }, - "10379": { + "10672": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "CreateApplicationMethodDTO.target_rules" }, - "10380": { + "10673": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "CreateApplicationMethodDTO.buy_rules" }, - "10381": { + "10674": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "10382": { + "10675": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "10383": { + "10676": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "10384": { + "10677": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "10385": { + "10678": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "10386": { + "10679": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "10387": { + "10680": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "10388": { + "10681": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "10389": { + "10682": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "10390": { + "10683": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "10391": { + "10684": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "10392": { + "10685": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "10393": { + "10686": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "10394": { + "10687": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "10395": { + "10688": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodDTO" }, - "10396": { + "10689": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodDTO.id" }, - "10397": { + "10690": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodDTO.type" }, - "10398": { + "10691": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodDTO.target_type" }, - "10399": { + "10692": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodDTO.allocation" }, - "10400": { + "10693": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodDTO.value" }, - "10401": { + "10694": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodDTO.currency_code" }, - "10402": { + "10695": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodDTO.max_quantity" }, - "10403": { + "10696": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodDTO.buy_rules_min_quantity" }, - "10404": { + "10697": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodDTO.apply_to_quantity" }, - "10405": { + "10698": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodDTO.promotion" }, - "10406": { + "10699": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodDTO.target_rules" }, - "10407": { + "10700": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodDTO.buy_rules" }, - "10408": { + "10701": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "UpdateApplicationMethodDTO" }, - "10409": { + "10702": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "UpdateApplicationMethodDTO.id" }, - "10410": { + "10703": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "UpdateApplicationMethodDTO.type" }, - "10411": { + "10704": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "UpdateApplicationMethodDTO.target_type" }, - "10412": { + "10705": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "UpdateApplicationMethodDTO.allocation" }, - "10413": { + "10706": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "UpdateApplicationMethodDTO.value" }, - "10414": { + "10707": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "UpdateApplicationMethodDTO.currency_code" }, - "10415": { + "10708": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "UpdateApplicationMethodDTO.max_quantity" }, - "10416": { + "10709": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "UpdateApplicationMethodDTO.buy_rules_min_quantity" }, - "10417": { + "10710": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "UpdateApplicationMethodDTO.apply_to_quantity" }, - "10418": { + "10711": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "UpdateApplicationMethodDTO.promotion" }, - "10419": { + "10712": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "10420": { + "10713": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "10421": { + "10714": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "10422": { + "10715": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "10423": { + "10716": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "OperatorMap" }, - "10424": { + "10717": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "10425": { + "10718": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$and" }, - "10426": { + "10719": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$or" }, - "10427": { + "10720": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$eq" }, - "10428": { + "10721": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ne" }, - "10429": { + "10722": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$in" }, - "10430": { + "10723": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$nin" }, - "10431": { + "10724": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$not" }, - "10432": { + "10725": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gt" }, - "10433": { + "10726": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gte" }, - "10434": { + "10727": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lt" }, - "10435": { + "10728": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lte" }, - "10436": { + "10729": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$like" }, - "10437": { + "10730": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$re" }, - "10438": { + "10731": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ilike" }, - "10439": { + "10732": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$fulltext" }, - "10440": { + "10733": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$overlap" }, - "10441": { + "10734": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contains" }, - "10442": { + "10735": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contained" }, - "10443": { + "10736": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$exists" }, - "10444": { + "10737": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "10445": { + "10738": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule.ts", "qualifiedName": "PromotionRuleOperatorValues" }, - "10446": { + "10739": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule-value.ts", "qualifiedName": "PromotionRuleValueDTO" }, - "10447": { + "10740": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule-value.ts", "qualifiedName": "PromotionRuleValueDTO.id" }, - "10448": { + "10741": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/promotion-rule-value.ts", "qualifiedName": "PromotionRuleValueDTO.value" }, - "10449": { + "10742": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "CreateCampaignBudgetDTO" }, - "10450": { + "10743": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "CreateCampaignBudgetDTO.type" }, - "10451": { + "10744": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "CreateCampaignBudgetDTO.limit" }, - "10452": { + "10745": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "CreateCampaignBudgetDTO.used" }, - "10453": { + "10746": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "CreateCampaignBudgetDTO.currency_code" }, - "10454": { + "10747": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign-budget.ts", "qualifiedName": "CampaignBudgetDTO" }, - "10455": { + "10748": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign-budget.ts", "qualifiedName": "CampaignBudgetDTO.id" }, - "10456": { + "10749": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign-budget.ts", "qualifiedName": "CampaignBudgetDTO.type" }, - "10457": { + "10750": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign-budget.ts", "qualifiedName": "CampaignBudgetDTO.limit" }, - "10458": { + "10751": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign-budget.ts", "qualifiedName": "CampaignBudgetDTO.used" }, - "10459": { + "10752": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign-budget.ts", "qualifiedName": "CampaignBudgetDTO.currency_code" }, - "10460": { + "10753": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignBudgetDTO" }, - "10461": { + "10754": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignBudgetDTO.id" }, - "10462": { + "10755": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignBudgetDTO.type" }, - "10463": { + "10756": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignBudgetDTO.limit" }, - "10464": { + "10757": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignBudgetDTO.currency_code" }, - "10465": { + "10758": { "sourceFileName": "../../../../packages/core/types/src/promotion/mutations.ts", "qualifiedName": "UpdateCampaignBudgetDTO.used" }, - "10466": { + "10759": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "10467": { + "10760": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "10468": { + "10761": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "10469": { + "10762": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "10470": { + "10763": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "10471": { + "10764": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "10472": { + "10765": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "10473": { + "10766": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "10474": { + "10767": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "10475": { + "10768": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "10476": { + "10769": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "10477": { + "10770": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "10478": { + "10771": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "10479": { + "10772": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "10480": { + "10773": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "10481": { + "10774": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "10482": { + "10775": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "10483": { + "10776": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "10484": { + "10777": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "10485": { + "10778": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "10486": { + "10779": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "10487": { + "10780": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "10488": { + "10781": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "10489": { + "10782": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberInput" }, - "10490": { + "10783": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionAdjustmentLine" }, - "10491": { + "10784": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionAdjustmentLine.id" }, - "10492": { + "10785": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/compute-actions.ts", "qualifiedName": "ComputeActionAdjustmentLine.code" }, - "10493": { + "10786": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodTypeValues" }, - "10494": { + "10787": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodTargetTypeValues" }, - "10495": { + "10788": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/application-method.ts", "qualifiedName": "ApplicationMethodAllocationValues" }, - "10496": { + "10789": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "10497": { + "10790": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "10498": { + "10791": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "10499": { + "10792": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "10500": { + "10793": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "10501": { + "10794": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "10502": { + "10795": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "10503": { + "10796": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "10504": { + "10797": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "10506": { + "10799": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "10507": { + "10800": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "10508": { + "10801": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "10509": { + "10802": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "10510": { + "10803": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "10511": { + "10804": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "10512": { + "10805": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "10513": { + "10806": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "10514": { + "10807": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "10515": { + "10808": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "10516": { + "10809": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Query" }, - "10517": { + "10810": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "10518": { + "10811": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ExpandScalar" }, - "10519": { + "10812": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "10520": { + "10813": { "sourceFileName": "../../../../packages/core/types/src/promotion/common/campaign-budget.ts", "qualifiedName": "CampaignBudgetTypeValues" }, - "10521": { + "10814": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "10522": { + "10815": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "10523": { + "10816": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "10524": { + "10817": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "10525": { + "10818": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "10526": { + "10819": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "10527": { + "10820": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "10528": { + "10821": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "10529": { + "10822": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "10530": { + "10823": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "10531": { + "10824": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "10532": { + "10825": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "10533": { + "10826": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberRawValue" }, - "10534": { + "10827": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type" }, - "10535": { + "10828": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type.value" }, - "10536": { + "10829": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type.__index" }, - "10538": { + "10831": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "10539": { + "10832": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "10540": { + "10833": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "10541": { + "10834": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "10542": { + "10835": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "10543": { + "10836": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "10544": { + "10837": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Scalar" }, - "10545": { + "10838": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "10546": { + "10839": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "10547": { + "10840": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "10548": { + "10841": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterQuery" }, - "10549": { + "10842": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "10550": { + "10843": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "10552": { + "10845": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "10553": { + "10846": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Prev" }, - "10554": { + "10847": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue" }, - "10555": { + "10848": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "10556": { + "10849": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "10557": { + "10850": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "10558": { + "10851": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" }, - "10559": { + "10852": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "PrevLimit" }, - "10560": { + "10853": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue2" }, - "10561": { + "10854": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "10562": { + "10855": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Primary" }, - "10563": { + "10856": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "10564": { + "10857": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.[PrimaryKeyType]" }, - "10565": { + "10858": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "10566": { + "10859": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type._id" }, - "10567": { + "10860": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "10568": { + "10861": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.uuid" }, - "10569": { + "10862": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "10570": { + "10863": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.id" }, - "10571": { + "10864": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "10572": { + "10865": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ReadonlyPrimary" }, - "10573": { + "10866": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" } @@ -17121,7 +17130,7 @@ "1": "../../../../packages/core/types/src/promotion/service.ts" }, "reflections": { - "1": 10001 + "1": 10294 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/region-models.json b/www/utils/generated/typedoc-json-output/region-models.json index e941da6c1ea14..5a67b00f8d9db 100644 --- a/www/utils/generated/typedoc-json-output/region-models.json +++ b/www/utils/generated/typedoc-json-output/region-models.json @@ -1,5 +1,5 @@ { - "id": 11038, + "id": 11331, "name": "region-models", "variant": "project", "kind": 1, @@ -11,20 +11,18 @@ "kind": "text" }, { - "text": "```mermaid\nerDiagram\n\tRegion ||--|| RegionCountry : countries\n\n```", + "text": "```mermaid\nerDiagram\n\tRegion ||--|| Country : countries\n\n```", "kind": "code" } ] }, "children": [ { - "id": 11039, - "name": "RegionCountry", + "id": 11332, + "name": "Country", "variant": "declaration", "kind": 32, - "flags": { - "isConst": true - }, + "flags": {}, "type": { "type": "reference", "target": { @@ -38,14 +36,14 @@ { "type": "reflection", "declaration": { - "id": 11040, + "id": 11333, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11041, + "id": 11334, "name": "iso_2", "variant": "declaration", "kind": 1024, @@ -53,16 +51,27 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/utils/src/dml/properties/text.ts", - "qualifiedName": "TextProperty" + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/primary-key.ts", + "qualifiedName": "PrimaryKeyModifier" }, - "name": "TextProperty", + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/text.ts", + "qualifiedName": "TextProperty" + }, + "name": "TextProperty", + "package": "@medusajs/utils" + } + ], + "name": "PrimaryKeyModifier", "package": "@medusajs/utils" }, "defaultValue": "..." }, { - "id": 11042, + "id": 11335, "name": "iso_3", "variant": "declaration", "kind": 1024, @@ -79,7 +88,7 @@ "defaultValue": "..." }, { - "id": 11043, + "id": 11336, "name": "num_code", "variant": "declaration", "kind": 1024, @@ -96,7 +105,7 @@ "defaultValue": "..." }, { - "id": 11044, + "id": 11337, "name": "name", "variant": "declaration", "kind": 1024, @@ -113,7 +122,7 @@ "defaultValue": "..." }, { - "id": 11045, + "id": 11338, "name": "display_name", "variant": "declaration", "kind": 1024, @@ -130,7 +139,7 @@ "defaultValue": "..." }, { - "id": 11046, + "id": 11339, "name": "region", "variant": "declaration", "kind": 1024, @@ -146,7 +155,7 @@ "typeArguments": [ { "type": "reference", - "target": 11141, + "target": 11437, "name": "Region" } ], @@ -156,7 +165,7 @@ "defaultValue": "..." }, { - "id": 11089, + "id": 11382, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -179,13 +188,13 @@ { "title": "Properties", "children": [ - 11041, - 11042, - 11043, - 11044, - 11045, - 11046, - 11089 + 11334, + 11335, + 11336, + 11337, + 11338, + 11339, + 11382 ] } ] @@ -194,14 +203,14 @@ { "type": "reflection", "declaration": { - "id": 11090, + "id": 11383, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11091, + "id": 11384, "name": "iso_2", "variant": "declaration", "kind": 1024, @@ -209,16 +218,27 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/utils/src/dml/properties/text.ts", - "qualifiedName": "TextProperty" + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/primary-key.ts", + "qualifiedName": "PrimaryKeyModifier" }, - "name": "TextProperty", + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/text.ts", + "qualifiedName": "TextProperty" + }, + "name": "TextProperty", + "package": "@medusajs/utils" + } + ], + "name": "PrimaryKeyModifier", "package": "@medusajs/utils" }, "defaultValue": "..." }, { - "id": 11092, + "id": 11385, "name": "iso_3", "variant": "declaration", "kind": 1024, @@ -235,7 +255,7 @@ "defaultValue": "..." }, { - "id": 11093, + "id": 11386, "name": "num_code", "variant": "declaration", "kind": 1024, @@ -252,7 +272,7 @@ "defaultValue": "..." }, { - "id": 11094, + "id": 11387, "name": "name", "variant": "declaration", "kind": 1024, @@ -269,7 +289,7 @@ "defaultValue": "..." }, { - "id": 11095, + "id": 11388, "name": "display_name", "variant": "declaration", "kind": 1024, @@ -286,7 +306,7 @@ "defaultValue": "..." }, { - "id": 11096, + "id": 11389, "name": "region", "variant": "declaration", "kind": 1024, @@ -303,14 +323,14 @@ { "type": "reflection", "declaration": { - "id": 11118, + "id": 11411, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 11119, + "id": 11412, "name": "__type", "variant": "signature", "kind": 4096, @@ -328,14 +348,14 @@ { "type": "reflection", "declaration": { - "id": 11120, + "id": 11413, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11121, + "id": 11414, "name": "id", "variant": "declaration", "kind": 1024, @@ -343,16 +363,27 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/utils/src/dml/properties/id.ts", - "qualifiedName": "IdProperty" + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/primary-key.ts", + "qualifiedName": "PrimaryKeyModifier" }, - "name": "IdProperty", + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/id.ts", + "qualifiedName": "IdProperty" + }, + "name": "IdProperty", + "package": "@medusajs/utils" + } + ], + "name": "PrimaryKeyModifier", "package": "@medusajs/utils" }, "defaultValue": "..." }, { - "id": 11122, + "id": 11415, "name": "name", "variant": "declaration", "kind": 1024, @@ -369,7 +400,7 @@ "defaultValue": "..." }, { - "id": 11123, + "id": 11416, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -386,7 +417,7 @@ "defaultValue": "..." }, { - "id": 11124, + "id": 11417, "name": "automatic_taxes", "variant": "declaration", "kind": 1024, @@ -403,7 +434,7 @@ "defaultValue": "..." }, { - "id": 11125, + "id": 11418, "name": "countries", "variant": "declaration", "kind": 1024, @@ -418,14 +449,14 @@ { "type": "reflection", "declaration": { - "id": 11126, + "id": 11419, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 11127, + "id": 11420, "name": "__type", "variant": "signature", "kind": 4096, @@ -445,7 +476,7 @@ "defaultValue": "..." }, { - "id": 11128, + "id": 11421, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -468,12 +499,12 @@ { "title": "Properties", "children": [ - 11121, - 11122, - 11123, - 11124, - 11125, - 11128 + 11414, + 11415, + 11416, + 11417, + 11418, + 11421 ] } ] @@ -482,14 +513,14 @@ { "type": "reflection", "declaration": { - "id": 11129, + "id": 11422, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11130, + "id": 11423, "name": "id", "variant": "declaration", "kind": 1024, @@ -497,16 +528,27 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/utils/src/dml/properties/id.ts", - "qualifiedName": "IdProperty" + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/primary-key.ts", + "qualifiedName": "PrimaryKeyModifier" }, - "name": "IdProperty", + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/id.ts", + "qualifiedName": "IdProperty" + }, + "name": "IdProperty", + "package": "@medusajs/utils" + } + ], + "name": "PrimaryKeyModifier", "package": "@medusajs/utils" }, "defaultValue": "..." }, { - "id": 11131, + "id": 11424, "name": "name", "variant": "declaration", "kind": 1024, @@ -523,7 +565,7 @@ "defaultValue": "..." }, { - "id": 11132, + "id": 11425, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -540,7 +582,7 @@ "defaultValue": "..." }, { - "id": 11133, + "id": 11426, "name": "automatic_taxes", "variant": "declaration", "kind": 1024, @@ -557,7 +599,7 @@ "defaultValue": "..." }, { - "id": 11134, + "id": 11427, "name": "countries", "variant": "declaration", "kind": 1024, @@ -572,14 +614,14 @@ { "type": "reflection", "declaration": { - "id": 11135, + "id": 11428, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 11136, + "id": 11429, "name": "__type", "variant": "signature", "kind": 4096, @@ -599,7 +641,7 @@ "defaultValue": "..." }, { - "id": 11137, + "id": 11430, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -622,12 +664,12 @@ { "title": "Properties", "children": [ - 11130, - 11131, - 11132, - 11133, - 11134, - 11137 + 11423, + 11424, + 11425, + 11426, + 11427, + 11430 ] } ] @@ -636,7 +678,7 @@ { "type": "reflection", "declaration": { - "id": 11138, + "id": 11431, "name": "__type", "variant": "declaration", "kind": 65536, @@ -653,6 +695,10 @@ "package": "@medusajs/utils" } ] + }, + { + "type": "literal", + "value": "region" } ], "name": "DmlEntity", @@ -669,7 +715,7 @@ "defaultValue": "..." }, { - "id": 11139, + "id": 11432, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -692,13 +738,13 @@ { "title": "Properties", "children": [ - 11091, - 11092, - 11093, - 11094, - 11095, - 11096, - 11139 + 11384, + 11385, + 11386, + 11387, + 11388, + 11389, + 11432 ] } ] @@ -707,7 +753,7 @@ { "type": "reflection", "declaration": { - "id": 11140, + "id": 11433, "name": "__type", "variant": "declaration", "kind": 65536, @@ -724,21 +770,67 @@ "package": "@medusajs/utils" } ] + }, + { + "type": "reflection", + "declaration": { + "id": 11434, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 11435, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": { + "isReadonly": true + }, + "type": { + "type": "literal", + "value": "Country" + }, + "defaultValue": "\"Country\"" + }, + { + "id": 11436, + "name": "tableName", + "variant": "declaration", + "kind": 1024, + "flags": { + "isReadonly": true + }, + "type": { + "type": "literal", + "value": "region_country" + }, + "defaultValue": "\"region_country\"" + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 11435, + 11436 + ] + } + ] + } } ], "name": "DmlEntity", "package": "@medusajs/utils" - }, - "defaultValue": "..." + } }, { - "id": 11141, + "id": 11437, "name": "Region", "variant": "declaration", "kind": 32, - "flags": { - "isConst": true - }, + "flags": {}, "type": { "type": "reference", "target": { @@ -752,14 +844,14 @@ { "type": "reflection", "declaration": { - "id": 11142, + "id": 11438, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11143, + "id": 11439, "name": "id", "variant": "declaration", "kind": 1024, @@ -767,16 +859,27 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/utils/src/dml/properties/id.ts", - "qualifiedName": "IdProperty" + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/primary-key.ts", + "qualifiedName": "PrimaryKeyModifier" }, - "name": "IdProperty", + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/id.ts", + "qualifiedName": "IdProperty" + }, + "name": "IdProperty", + "package": "@medusajs/utils" + } + ], + "name": "PrimaryKeyModifier", "package": "@medusajs/utils" }, "defaultValue": "..." }, { - "id": 11144, + "id": 11440, "name": "name", "variant": "declaration", "kind": 1024, @@ -793,7 +896,7 @@ "defaultValue": "..." }, { - "id": 11145, + "id": 11441, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -810,7 +913,7 @@ "defaultValue": "..." }, { - "id": 11146, + "id": 11442, "name": "automatic_taxes", "variant": "declaration", "kind": 1024, @@ -827,7 +930,7 @@ "defaultValue": "..." }, { - "id": 11147, + "id": 11443, "name": "countries", "variant": "declaration", "kind": 1024, @@ -841,8 +944,8 @@ "typeArguments": [ { "type": "reference", - "target": 11039, - "name": "RegionCountry" + "target": 11332, + "name": "Country" } ], "name": "HasMany", @@ -851,7 +954,7 @@ "defaultValue": "..." }, { - "id": 11175, + "id": 11474, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -874,12 +977,12 @@ { "title": "Properties", "children": [ - 11143, - 11144, - 11145, - 11146, - 11147, - 11175 + 11439, + 11440, + 11441, + 11442, + 11443, + 11474 ] } ] @@ -888,14 +991,14 @@ { "type": "reflection", "declaration": { - "id": 11176, + "id": 11475, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11177, + "id": 11476, "name": "id", "variant": "declaration", "kind": 1024, @@ -903,16 +1006,27 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/utils/src/dml/properties/id.ts", - "qualifiedName": "IdProperty" + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/primary-key.ts", + "qualifiedName": "PrimaryKeyModifier" }, - "name": "IdProperty", + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/id.ts", + "qualifiedName": "IdProperty" + }, + "name": "IdProperty", + "package": "@medusajs/utils" + } + ], + "name": "PrimaryKeyModifier", "package": "@medusajs/utils" }, "defaultValue": "..." }, { - "id": 11178, + "id": 11477, "name": "name", "variant": "declaration", "kind": 1024, @@ -929,7 +1043,7 @@ "defaultValue": "..." }, { - "id": 11179, + "id": 11478, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -946,7 +1060,7 @@ "defaultValue": "..." }, { - "id": 11180, + "id": 11479, "name": "automatic_taxes", "variant": "declaration", "kind": 1024, @@ -963,7 +1077,7 @@ "defaultValue": "..." }, { - "id": 11181, + "id": 11480, "name": "countries", "variant": "declaration", "kind": 1024, @@ -978,14 +1092,14 @@ { "type": "reflection", "declaration": { - "id": 11182, + "id": 11481, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 11183, + "id": 11482, "name": "__type", "variant": "signature", "kind": 4096, @@ -1003,14 +1117,14 @@ { "type": "reflection", "declaration": { - "id": 11184, + "id": 11483, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11185, + "id": 11484, "name": "iso_2", "variant": "declaration", "kind": 1024, @@ -1018,16 +1132,27 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/utils/src/dml/properties/text.ts", - "qualifiedName": "TextProperty" + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/primary-key.ts", + "qualifiedName": "PrimaryKeyModifier" }, - "name": "TextProperty", + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/text.ts", + "qualifiedName": "TextProperty" + }, + "name": "TextProperty", + "package": "@medusajs/utils" + } + ], + "name": "PrimaryKeyModifier", "package": "@medusajs/utils" }, "defaultValue": "..." }, { - "id": 11186, + "id": 11485, "name": "iso_3", "variant": "declaration", "kind": 1024, @@ -1044,7 +1169,7 @@ "defaultValue": "..." }, { - "id": 11187, + "id": 11486, "name": "num_code", "variant": "declaration", "kind": 1024, @@ -1061,7 +1186,7 @@ "defaultValue": "..." }, { - "id": 11188, + "id": 11487, "name": "name", "variant": "declaration", "kind": 1024, @@ -1078,7 +1203,7 @@ "defaultValue": "..." }, { - "id": 11189, + "id": 11488, "name": "display_name", "variant": "declaration", "kind": 1024, @@ -1095,7 +1220,7 @@ "defaultValue": "..." }, { - "id": 11190, + "id": 11489, "name": "region", "variant": "declaration", "kind": 1024, @@ -1112,14 +1237,14 @@ { "type": "reflection", "declaration": { - "id": 11193, + "id": 11492, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 11194, + "id": 11493, "name": "__type", "variant": "signature", "kind": 4096, @@ -1139,7 +1264,7 @@ "defaultValue": "..." }, { - "id": 11195, + "id": 11494, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1162,13 +1287,13 @@ { "title": "Properties", "children": [ - 11185, - 11186, - 11187, - 11188, - 11189, - 11190, - 11195 + 11484, + 11485, + 11486, + 11487, + 11488, + 11489, + 11494 ] } ] @@ -1177,14 +1302,14 @@ { "type": "reflection", "declaration": { - "id": 11196, + "id": 11495, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11197, + "id": 11496, "name": "iso_2", "variant": "declaration", "kind": 1024, @@ -1192,16 +1317,27 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/utils/src/dml/properties/text.ts", - "qualifiedName": "TextProperty" + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/primary-key.ts", + "qualifiedName": "PrimaryKeyModifier" }, - "name": "TextProperty", + "typeArguments": [ + { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/utils/src/dml/properties/text.ts", + "qualifiedName": "TextProperty" + }, + "name": "TextProperty", + "package": "@medusajs/utils" + } + ], + "name": "PrimaryKeyModifier", "package": "@medusajs/utils" }, "defaultValue": "..." }, { - "id": 11198, + "id": 11497, "name": "iso_3", "variant": "declaration", "kind": 1024, @@ -1218,7 +1354,7 @@ "defaultValue": "..." }, { - "id": 11199, + "id": 11498, "name": "num_code", "variant": "declaration", "kind": 1024, @@ -1235,7 +1371,7 @@ "defaultValue": "..." }, { - "id": 11200, + "id": 11499, "name": "name", "variant": "declaration", "kind": 1024, @@ -1252,7 +1388,7 @@ "defaultValue": "..." }, { - "id": 11201, + "id": 11500, "name": "display_name", "variant": "declaration", "kind": 1024, @@ -1269,7 +1405,7 @@ "defaultValue": "..." }, { - "id": 11202, + "id": 11501, "name": "region", "variant": "declaration", "kind": 1024, @@ -1286,14 +1422,14 @@ { "type": "reflection", "declaration": { - "id": 11205, + "id": 11504, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 11206, + "id": 11505, "name": "__type", "variant": "signature", "kind": 4096, @@ -1313,7 +1449,7 @@ "defaultValue": "..." }, { - "id": 11207, + "id": 11506, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1336,13 +1472,13 @@ { "title": "Properties", "children": [ - 11197, - 11198, - 11199, - 11200, - 11201, - 11202, - 11207 + 11496, + 11497, + 11498, + 11499, + 11500, + 11501, + 11506 ] } ] @@ -1351,7 +1487,7 @@ { "type": "reflection", "declaration": { - "id": 11208, + "id": 11507, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1368,6 +1504,55 @@ "package": "@medusajs/utils" } ] + }, + { + "type": "reflection", + "declaration": { + "id": 11508, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 11509, + "name": "name", + "variant": "declaration", + "kind": 1024, + "flags": { + "isReadonly": true + }, + "type": { + "type": "literal", + "value": "Country" + }, + "defaultValue": "\"Country\"" + }, + { + "id": 11510, + "name": "tableName", + "variant": "declaration", + "kind": 1024, + "flags": { + "isReadonly": true + }, + "type": { + "type": "literal", + "value": "region_country" + }, + "defaultValue": "\"region_country\"" + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 11509, + 11510 + ] + } + ] + } } ], "name": "DmlEntity", @@ -1384,7 +1569,7 @@ "defaultValue": "..." }, { - "id": 11209, + "id": 11511, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -1407,12 +1592,12 @@ { "title": "Properties", "children": [ - 11177, - 11178, - 11179, - 11180, - 11181, - 11209 + 11476, + 11477, + 11478, + 11479, + 11480, + 11511 ] } ] @@ -1421,7 +1606,7 @@ { "type": "reflection", "declaration": { - "id": 11210, + "id": 11512, "name": "__type", "variant": "declaration", "kind": 65536, @@ -1438,715 +1623,754 @@ "package": "@medusajs/utils" } ] + }, + { + "type": "literal", + "value": "region" } ], "name": "DmlEntity", "package": "@medusajs/utils" - }, - "defaultValue": "..." + } } ], "groups": [ { "title": "Variables", "children": [ - 11039, - 11141 + 11332, + 11437 ] } ], "packageName": "@medusajs/region", "symbolIdMap": { - "11038": { + "11331": { "sourceFileName": "../../../../packages/modules/region/src/models/index.ts", "qualifiedName": "" }, - "11039": { + "11332": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", - "qualifiedName": "Country" + "qualifiedName": "default" }, - "11040": { + "11333": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object" }, - "11041": { + "11334": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.iso_2" }, - "11042": { + "11335": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.iso_3" }, - "11043": { + "11336": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.num_code" }, - "11044": { + "11337": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.name" }, - "11045": { + "11338": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.display_name" }, - "11046": { + "11339": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.region" }, - "11047": { + "11340": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11048": { + "11341": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11049": { + "11342": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object" }, - "11050": { + "11343": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.id" }, - "11051": { + "11344": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.name" }, - "11052": { + "11345": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.currency_code" }, - "11053": { + "11346": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.automatic_taxes" }, - "11054": { + "11347": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.countries" }, - "11055": { + "11348": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11056": { + "11349": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11057": { + "11350": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.metadata" }, - "11058": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11351": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11059": { + "11352": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "id" }, - "11060": { + "11353": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "name" }, - "11061": { + "11354": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "currency_code" }, - "11062": { + "11355": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "automatic_taxes" }, - "11063": { + "11356": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "countries" }, - "11064": { + "11357": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11065": { + "11358": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11066": { + "11359": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "metadata" }, - "11067": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11360": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11068": { + "11361": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11069": { + "11362": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11070": { + "11363": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object" }, - "11071": { + "11364": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.id" }, - "11072": { + "11365": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.name" }, - "11073": { + "11366": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.currency_code" }, - "11074": { + "11367": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.automatic_taxes" }, - "11075": { + "11368": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.countries" }, - "11076": { + "11369": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11077": { + "11370": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11078": { + "11371": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.metadata" }, - "11079": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11372": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11080": { + "11373": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "id" }, - "11081": { + "11374": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "name" }, - "11082": { + "11375": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "currency_code" }, - "11083": { + "11376": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "automatic_taxes" }, - "11084": { + "11377": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "countries" }, - "11085": { + "11378": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11086": { + "11379": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11087": { + "11380": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "metadata" }, - "11088": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11381": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11089": { + "11382": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.metadata" }, - "11090": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11383": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11091": { + "11384": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "iso_2" }, - "11092": { + "11385": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "iso_3" }, - "11093": { + "11386": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "num_code" }, - "11094": { + "11387": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "name" }, - "11095": { + "11388": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "display_name" }, - "11096": { + "11389": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "region" }, - "11097": { + "11390": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11098": { + "11391": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11099": { + "11392": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object" }, - "11100": { + "11393": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.id" }, - "11101": { + "11394": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.name" }, - "11102": { + "11395": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.currency_code" }, - "11103": { + "11396": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.automatic_taxes" }, - "11104": { + "11397": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.countries" }, - "11105": { + "11398": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11106": { + "11399": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11107": { + "11400": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.metadata" }, - "11108": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11401": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11109": { + "11402": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "id" }, - "11110": { + "11403": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "name" }, - "11111": { + "11404": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "currency_code" }, - "11112": { + "11405": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "automatic_taxes" }, - "11113": { + "11406": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "countries" }, - "11114": { + "11407": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11115": { + "11408": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11116": { + "11409": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "metadata" }, - "11117": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11410": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11118": { + "11411": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11119": { + "11412": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11120": { + "11413": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object" }, - "11121": { + "11414": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.id" }, - "11122": { + "11415": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.name" }, - "11123": { + "11416": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.currency_code" }, - "11124": { + "11417": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.automatic_taxes" }, - "11125": { + "11418": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.countries" }, - "11126": { + "11419": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11127": { + "11420": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11128": { + "11421": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.metadata" }, - "11129": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11422": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11130": { + "11423": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "id" }, - "11131": { + "11424": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "name" }, - "11132": { + "11425": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "currency_code" }, - "11133": { + "11426": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "automatic_taxes" }, - "11134": { + "11427": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "countries" }, - "11135": { + "11428": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11136": { + "11429": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11137": { + "11430": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "metadata" }, - "11138": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11431": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11139": { + "11432": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "metadata" }, - "11140": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11433": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11141": { + "11434": { + "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", + "qualifiedName": "__object" + }, + "11435": { + "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", + "qualifiedName": "__object.name" + }, + "11436": { + "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", + "qualifiedName": "__object.tableName" + }, + "11437": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", - "qualifiedName": "Region" + "qualifiedName": "default" }, - "11142": { + "11438": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object" }, - "11143": { + "11439": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.id" }, - "11144": { + "11440": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.name" }, - "11145": { + "11441": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.currency_code" }, - "11146": { + "11442": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.automatic_taxes" }, - "11147": { + "11443": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.countries" }, - "11148": { + "11444": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11149": { + "11445": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11150": { + "11446": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object" }, - "11151": { + "11447": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.iso_2" }, - "11152": { + "11448": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.iso_3" }, - "11153": { + "11449": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.num_code" }, - "11154": { + "11450": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.name" }, - "11155": { + "11451": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.display_name" }, - "11156": { + "11452": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.region" }, - "11157": { + "11453": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11158": { + "11454": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11159": { + "11455": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11160": { + "11456": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11161": { + "11457": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.metadata" }, - "11162": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11458": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11163": { + "11459": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "iso_2" }, - "11164": { + "11460": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "iso_3" }, - "11165": { + "11461": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "num_code" }, - "11166": { + "11462": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "name" }, - "11167": { + "11463": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "display_name" }, - "11168": { + "11464": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "region" }, - "11169": { + "11465": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11170": { + "11466": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11171": { + "11467": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11172": { + "11468": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11173": { + "11469": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "metadata" }, - "11174": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11470": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11175": { + "11471": { + "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", + "qualifiedName": "__object" + }, + "11472": { + "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", + "qualifiedName": "__object.name" + }, + "11473": { + "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", + "qualifiedName": "__object.tableName" + }, + "11474": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__object.metadata" }, - "11176": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11475": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11177": { + "11476": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "id" }, - "11178": { + "11477": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "name" }, - "11179": { + "11478": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "currency_code" }, - "11180": { + "11479": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "automatic_taxes" }, - "11181": { + "11480": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "countries" }, - "11182": { + "11481": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11183": { + "11482": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "__function" }, - "11184": { + "11483": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object" }, - "11185": { + "11484": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.iso_2" }, - "11186": { + "11485": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.iso_3" }, - "11187": { + "11486": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.num_code" }, - "11188": { + "11487": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.name" }, - "11189": { + "11488": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.display_name" }, - "11190": { + "11489": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.region" }, - "11191": { + "11490": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11192": { + "11491": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11193": { + "11492": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11194": { + "11493": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11195": { + "11494": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__object.metadata" }, - "11196": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11495": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11197": { + "11496": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "iso_2" }, - "11198": { + "11497": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "iso_3" }, - "11199": { + "11498": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "num_code" }, - "11200": { + "11499": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "name" }, - "11201": { + "11500": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "display_name" }, - "11202": { + "11501": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "region" }, - "11203": { + "11502": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11204": { + "11503": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11205": { + "11504": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11206": { + "11505": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "__function" }, - "11207": { + "11506": { "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", "qualifiedName": "metadata" }, - "11208": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11507": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" }, - "11209": { + "11508": { + "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", + "qualifiedName": "__object" + }, + "11509": { + "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", + "qualifiedName": "__object.name" + }, + "11510": { + "sourceFileName": "../../../../packages/modules/region/src/models/country.ts", + "qualifiedName": "__object.tableName" + }, + "11511": { "sourceFileName": "../../../../packages/modules/region/src/models/region.ts", "qualifiedName": "metadata" }, - "11210": { - "sourceFileName": "../../../../packages/core/utils/src/dml/entity-builder.ts", + "11512": { + "sourceFileName": "../../../../packages/core/utils/src/dml/helpers/entity-builder/create-big-number-properties.ts", "qualifiedName": "__type" } }, @@ -2155,7 +2379,7 @@ "1": "../../../../packages/modules/region/src/models/index.ts" }, "reflections": { - "1": 11038 + "1": 11331 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/region.json b/www/utils/generated/typedoc-json-output/region.json index 526d5775ae6b8..485599c7c27cb 100644 --- a/www/utils/generated/typedoc-json-output/region.json +++ b/www/utils/generated/typedoc-json-output/region.json @@ -1,12 +1,12 @@ { - "id": 10687, + "id": 10980, "name": "region", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 10840, + "id": 11133, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 10841, + "id": 11134, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 10852, + "target": 11145, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 10842, + "id": 11135, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 10843, + "id": 11136, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 10844, + "id": 11137, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 10845, + "id": 11138, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 10846, + "id": 11139, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 10847, + "id": 11140, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 10848, + "id": 11141, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 10849, + "id": 11142, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 10850, + "id": 11143, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 10851, + "id": 11144, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 10841, - 10842, - 10843, - 10844, - 10845, - 10849, - 10850, - 10851 + 11134, + 11135, + 11136, + 11137, + 11138, + 11142, + 11143, + 11144 ] } ], "typeParameters": [ { - "id": 10852, + "id": 11145, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 10899, + "id": 11192, "name": "MetadataType", "variant": "declaration", "kind": 2097152, @@ -394,7 +394,7 @@ } }, { - "id": 10917, + "id": 11210, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -409,7 +409,7 @@ }, "children": [ { - "id": 10918, + "id": 11211, "name": "$and", "variant": "declaration", "kind": 1024, @@ -431,11 +431,11 @@ "types": [ { "type": "reference", - "target": 10917, + "target": 11210, "typeArguments": [ { "type": "reference", - "target": 10920, + "target": 11213, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -447,7 +447,7 @@ }, { "type": "reference", - "target": 10920, + "target": 11213, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -458,7 +458,7 @@ } }, { - "id": 10919, + "id": 11212, "name": "$or", "variant": "declaration", "kind": 1024, @@ -480,11 +480,11 @@ "types": [ { "type": "reference", - "target": 10917, + "target": 11210, "typeArguments": [ { "type": "reference", - "target": 10920, + "target": 11213, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -496,7 +496,7 @@ }, { "type": "reference", - "target": 10920, + "target": 11213, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -511,14 +511,14 @@ { "title": "Properties", "children": [ - 10918, - 10919 + 11211, + 11212 ] } ], "typeParameters": [ { - "id": 10920, + "id": 11213, "name": "T", "variant": "typeParam", "kind": 131072, @@ -528,18 +528,18 @@ "extendedBy": [ { "type": "reference", - "target": 10830, + "target": 11123, "name": "FilterableRegionProps" }, { "type": "reference", - "target": 10860, + "target": 11153, "name": "FilterableRegionCountryProps" } ] }, { - "id": 10869, + "id": 11162, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -554,7 +554,7 @@ }, "children": [ { - "id": 10870, + "id": 11163, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -573,7 +573,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10871, + "target": 11164, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -585,13 +585,13 @@ { "title": "Properties", "children": [ - 10870 + 11163 ] } ], "typeParameters": [ { - "id": 10871, + "id": 11164, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -604,7 +604,7 @@ ] }, { - "id": 10872, + "id": 11165, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -619,7 +619,7 @@ }, "children": [ { - "id": 10873, + "id": 11166, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -638,7 +638,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10874, + "target": 11167, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -650,13 +650,13 @@ { "title": "Properties", "children": [ - 10873 + 11166 ] } ], "typeParameters": [ { - "id": 10874, + "id": 11167, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -669,14 +669,14 @@ ] }, { - "id": 10986, + "id": 11279, "name": "Query", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10987, + "id": 11280, "name": "T", "variant": "typeParam", "kind": 131072, @@ -687,7 +687,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10987, + "target": 11280, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -700,14 +700,14 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10987, + "target": 11280, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 11008, + "target": 11301, "name": "Scalar", "package": "@medusajs/types" }, @@ -717,11 +717,11 @@ }, "falseType": { "type": "reference", - "target": 11012, + "target": 11305, "typeArguments": [ { "type": "reference", - "target": 10987, + "target": 11280, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -733,11 +733,11 @@ }, "falseType": { "type": "reference", - "target": 11018, + "target": 11311, "typeArguments": [ { "type": "reference", - "target": 10987, + "target": 11280, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -749,14 +749,14 @@ } }, { - "id": 10988, + "id": 11281, "name": "ExpandScalar", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10989, + "id": 11282, "name": "T", "variant": "typeParam", "kind": 131072, @@ -774,7 +774,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10989, + "target": 11282, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -805,7 +805,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 10989, + "target": 11282, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -839,7 +839,7 @@ }, "falseType": { "type": "reference", - "target": 10989, + "target": 11282, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -850,7 +850,7 @@ } }, { - "id": 11008, + "id": 11301, "name": "Scalar", "variant": "declaration", "kind": 2097152, @@ -909,21 +909,21 @@ { "type": "reflection", "declaration": { - "id": 11009, + "id": 11302, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11010, + "id": 11303, "name": "toHexString", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11011, + "id": 11304, "name": "toHexString", "variant": "signature", "kind": 4096, @@ -940,7 +940,7 @@ { "title": "Methods", "children": [ - 11010 + 11303 ] } ] @@ -950,14 +950,14 @@ } }, { - "id": 11036, + "id": 11329, "name": "ReadonlyPrimary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11037, + "id": 11330, "name": "T", "variant": "typeParam", "kind": 131072, @@ -968,7 +968,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11037, + "target": 11330, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -989,7 +989,7 @@ "typeArguments": [ { "type": "reference", - "target": 11037, + "target": 11330, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1000,7 +1000,7 @@ }, "falseType": { "type": "reference", - "target": 11037, + "target": 11330, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1008,14 +1008,14 @@ } }, { - "id": 11026, + "id": 11319, "name": "Primary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11035, + "id": 11328, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1026,7 +1026,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11035, + "target": 11328, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1034,14 +1034,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 11027, + "id": 11320, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11028, + "id": 11321, "name": "[PrimaryKeyType]", "variant": "declaration", "kind": 1024, @@ -1058,7 +1058,7 @@ { "title": "Properties", "children": [ - 11028 + 11321 ] } ] @@ -1066,7 +1066,7 @@ }, "trueType": { "type": "reference", - "target": 11036, + "target": 11329, "typeArguments": [ { "type": "reference", @@ -1086,7 +1086,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11035, + "target": 11328, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1094,14 +1094,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 11029, + "id": 11322, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11030, + "id": 11323, "name": "_id", "variant": "declaration", "kind": 1024, @@ -1118,7 +1118,7 @@ { "title": "Properties", "children": [ - 11030 + 11323 ] } ] @@ -1129,7 +1129,7 @@ "types": [ { "type": "reference", - "target": 11036, + "target": 11329, "typeArguments": [ { "type": "reference", @@ -1155,7 +1155,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11035, + "target": 11328, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1163,14 +1163,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 11031, + "id": 11324, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11032, + "id": 11325, "name": "uuid", "variant": "declaration", "kind": 1024, @@ -1187,7 +1187,7 @@ { "title": "Properties", "children": [ - 11032 + 11325 ] } ] @@ -1195,7 +1195,7 @@ }, "trueType": { "type": "reference", - "target": 11036, + "target": 11329, "typeArguments": [ { "type": "reference", @@ -1215,7 +1215,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11035, + "target": 11328, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1223,14 +1223,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 11033, + "id": 11326, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11034, + "id": 11327, "name": "id", "variant": "declaration", "kind": 1024, @@ -1247,7 +1247,7 @@ { "title": "Properties", "children": [ - 11034 + 11327 ] } ] @@ -1255,7 +1255,7 @@ }, "trueType": { "type": "reference", - "target": 11036, + "target": 11329, "typeArguments": [ { "type": "reference", @@ -1281,14 +1281,14 @@ } }, { - "id": 10921, + "id": 11214, "name": "OperatorMap", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10942, + "id": 11235, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1298,14 +1298,14 @@ "type": { "type": "reflection", "declaration": { - "id": 10922, + "id": 11215, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10923, + "id": 11216, "name": "$and", "variant": "declaration", "kind": 1024, @@ -1316,11 +1316,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 10986, + "target": 11279, "typeArguments": [ { "type": "reference", - "target": 10942, + "target": 11235, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1332,7 +1332,7 @@ } }, { - "id": 10924, + "id": 11217, "name": "$or", "variant": "declaration", "kind": 1024, @@ -1343,11 +1343,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 10986, + "target": 11279, "typeArguments": [ { "type": "reference", - "target": 10942, + "target": 11235, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1359,7 +1359,7 @@ } }, { - "id": 10925, + "id": 11218, "name": "$eq", "variant": "declaration", "kind": 1024, @@ -1371,11 +1371,11 @@ "types": [ { "type": "reference", - "target": 10988, + "target": 11281, "typeArguments": [ { "type": "reference", - "target": 10942, + "target": 11235, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1388,11 +1388,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 10988, + "target": 11281, "typeArguments": [ { "type": "reference", - "target": 10942, + "target": 11235, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1406,7 +1406,7 @@ } }, { - "id": 10926, + "id": 11219, "name": "$ne", "variant": "declaration", "kind": 1024, @@ -1415,11 +1415,11 @@ }, "type": { "type": "reference", - "target": 10988, + "target": 11281, "typeArguments": [ { "type": "reference", - "target": 10942, + "target": 11235, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1430,7 +1430,7 @@ } }, { - "id": 10927, + "id": 11220, "name": "$in", "variant": "declaration", "kind": 1024, @@ -1441,11 +1441,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 10988, + "target": 11281, "typeArguments": [ { "type": "reference", - "target": 10942, + "target": 11235, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1457,7 +1457,7 @@ } }, { - "id": 10928, + "id": 11221, "name": "$nin", "variant": "declaration", "kind": 1024, @@ -1468,11 +1468,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 10988, + "target": 11281, "typeArguments": [ { "type": "reference", - "target": 10942, + "target": 11235, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1484,7 +1484,7 @@ } }, { - "id": 10929, + "id": 11222, "name": "$not", "variant": "declaration", "kind": 1024, @@ -1493,11 +1493,11 @@ }, "type": { "type": "reference", - "target": 10986, + "target": 11279, "typeArguments": [ { "type": "reference", - "target": 10942, + "target": 11235, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1508,7 +1508,7 @@ } }, { - "id": 10930, + "id": 11223, "name": "$gt", "variant": "declaration", "kind": 1024, @@ -1517,11 +1517,11 @@ }, "type": { "type": "reference", - "target": 10988, + "target": 11281, "typeArguments": [ { "type": "reference", - "target": 10942, + "target": 11235, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1532,7 +1532,7 @@ } }, { - "id": 10931, + "id": 11224, "name": "$gte", "variant": "declaration", "kind": 1024, @@ -1541,11 +1541,11 @@ }, "type": { "type": "reference", - "target": 10988, + "target": 11281, "typeArguments": [ { "type": "reference", - "target": 10942, + "target": 11235, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1556,7 +1556,7 @@ } }, { - "id": 10932, + "id": 11225, "name": "$lt", "variant": "declaration", "kind": 1024, @@ -1565,11 +1565,11 @@ }, "type": { "type": "reference", - "target": 10988, + "target": 11281, "typeArguments": [ { "type": "reference", - "target": 10942, + "target": 11235, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1580,7 +1580,7 @@ } }, { - "id": 10933, + "id": 11226, "name": "$lte", "variant": "declaration", "kind": 1024, @@ -1589,11 +1589,11 @@ }, "type": { "type": "reference", - "target": 10988, + "target": 11281, "typeArguments": [ { "type": "reference", - "target": 10942, + "target": 11235, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1604,7 +1604,7 @@ } }, { - "id": 10934, + "id": 11227, "name": "$like", "variant": "declaration", "kind": 1024, @@ -1617,7 +1617,7 @@ } }, { - "id": 10935, + "id": 11228, "name": "$re", "variant": "declaration", "kind": 1024, @@ -1630,7 +1630,7 @@ } }, { - "id": 10936, + "id": 11229, "name": "$ilike", "variant": "declaration", "kind": 1024, @@ -1643,7 +1643,7 @@ } }, { - "id": 10937, + "id": 11230, "name": "$fulltext", "variant": "declaration", "kind": 1024, @@ -1656,7 +1656,7 @@ } }, { - "id": 10938, + "id": 11231, "name": "$overlap", "variant": "declaration", "kind": 1024, @@ -1672,7 +1672,7 @@ } }, { - "id": 10939, + "id": 11232, "name": "$contains", "variant": "declaration", "kind": 1024, @@ -1688,7 +1688,7 @@ } }, { - "id": 10940, + "id": 11233, "name": "$contained", "variant": "declaration", "kind": 1024, @@ -1704,7 +1704,7 @@ } }, { - "id": 10941, + "id": 11234, "name": "$exists", "variant": "declaration", "kind": 1024, @@ -1721,25 +1721,25 @@ { "title": "Properties", "children": [ - 10923, - 10924, - 10925, - 10926, - 10927, - 10928, - 10929, - 10930, - 10931, - 10932, - 10933, - 10934, - 10935, - 10936, - 10937, - 10938, - 10939, - 10940, - 10941 + 11216, + 11217, + 11218, + 11219, + 11220, + 11221, + 11222, + 11223, + 11224, + 11225, + 11226, + 11227, + 11228, + 11229, + 11230, + 11231, + 11232, + 11233, + 11234 ] } ] @@ -1747,14 +1747,14 @@ } }, { - "id": 11024, + "id": 11317, "name": "FilterValue2", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11025, + "id": 11318, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1766,18 +1766,18 @@ "types": [ { "type": "reference", - "target": 11025, + "target": 11318, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, { "type": "reference", - "target": 10988, + "target": 11281, "typeArguments": [ { "type": "reference", - "target": 11025, + "target": 11318, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1788,11 +1788,11 @@ }, { "type": "reference", - "target": 11026, + "target": 11319, "typeArguments": [ { "type": "reference", - "target": 11025, + "target": 11318, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1805,14 +1805,14 @@ } }, { - "id": 11018, + "id": 11311, "name": "FilterValue", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11019, + "id": 11312, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1824,15 +1824,15 @@ "types": [ { "type": "reference", - "target": 10921, + "target": 11214, "typeArguments": [ { "type": "reference", - "target": 11024, + "target": 11317, "typeArguments": [ { "type": "reference", - "target": 11019, + "target": 11312, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1847,11 +1847,11 @@ }, { "type": "reference", - "target": 11024, + "target": 11317, "typeArguments": [ { "type": "reference", - "target": 11019, + "target": 11312, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1864,11 +1864,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 11024, + "target": 11317, "typeArguments": [ { "type": "reference", - "target": 11019, + "target": 11312, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1886,7 +1886,7 @@ } }, { - "id": 11023, + "id": 11316, "name": "PrevLimit", "variant": "declaration", "kind": 2097152, @@ -1914,14 +1914,14 @@ } }, { - "id": 11012, + "id": 11305, "name": "FilterQuery", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11016, + "id": 11309, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1932,7 +1932,7 @@ } }, { - "id": 11017, + "id": 11310, "name": "Prev", "variant": "typeParam", "kind": 131072, @@ -1951,7 +1951,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11017, + "target": 11310, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1972,7 +1972,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 11016, + "target": 11309, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1994,7 +1994,7 @@ }, "objectType": { "type": "reference", - "target": 11016, + "target": 11309, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2051,7 +2051,7 @@ }, "objectType": { "type": "reference", - "target": 11016, + "target": 11309, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2059,7 +2059,7 @@ }, { "type": "reference", - "target": 10921, + "target": 11214, "typeArguments": [ { "type": "indexedAccess", @@ -2075,7 +2075,7 @@ }, "objectType": { "type": "reference", - "target": 11016, + "target": 11309, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2103,7 +2103,7 @@ }, "objectType": { "type": "reference", - "target": 11016, + "target": 11309, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2128,21 +2128,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 11013, + "id": 11306, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 11014, + "id": 11307, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 11015, + "id": 11308, "name": "x", "variant": "param", "kind": 32768, @@ -2179,7 +2179,7 @@ }, "trueType": { "type": "reference", - "target": 11012, + "target": 11305, "typeArguments": [ { "type": "reference", @@ -2206,14 +2206,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 11017, + "target": 11310, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 11023, + "target": 11316, "name": "PrevLimit", "package": "@medusajs/types" } @@ -2243,7 +2243,7 @@ } }, { - "id": 11020, + "id": 11313, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -2273,14 +2273,14 @@ { "type": "reflection", "declaration": { - "id": 11021, + "id": 11314, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11022, + "id": 11315, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -2297,7 +2297,7 @@ { "title": "Properties", "children": [ - 11022 + 11315 ] } ] @@ -2307,14 +2307,14 @@ } }, { - "id": 11002, + "id": 11295, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11007, + "id": 11300, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2328,14 +2328,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11003, + "id": 11296, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11004, + "id": 11297, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2346,7 +2346,7 @@ } }, { - "id": 11005, + "id": 11298, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2355,20 +2355,20 @@ }, "type": { "type": "reference", - "target": 11020, + "target": 11313, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 11006, + "id": 11299, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 11007, + "target": 11300, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2379,9 +2379,9 @@ { "title": "Properties", "children": [ - 11004, - 11005, - 11006 + 11297, + 11298, + 11299 ] } ] @@ -2389,14 +2389,14 @@ } }, { - "id": 10966, + "id": 11259, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10969, + "id": 11262, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2412,11 +2412,11 @@ "types": [ { "type": "reference", - "target": 11002, + "target": 11295, "typeArguments": [ { "type": "reference", - "target": 10969, + "target": 11262, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2428,14 +2428,14 @@ { "type": "reflection", "declaration": { - "id": 10967, + "id": 11260, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10968, + "id": 11261, "name": "options", "variant": "declaration", "kind": 1024, @@ -2467,7 +2467,7 @@ { "title": "Properties", "children": [ - 10968 + 11261 ] } ] @@ -2477,14 +2477,14 @@ } }, { - "id": 10976, + "id": 11269, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 10985, + "id": 11278, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2498,14 +2498,14 @@ "type": { "type": "reflection", "declaration": { - "id": 10977, + "id": 11270, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10978, + "id": 11271, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2516,21 +2516,21 @@ } }, { - "id": 10979, + "id": 11272, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 10985, + "target": 11278, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 10980, + "id": 11273, "name": "source", "variant": "declaration", "kind": 1024, @@ -2541,7 +2541,7 @@ } }, { - "id": 10981, + "id": 11274, "name": "object", "variant": "declaration", "kind": 1024, @@ -2552,7 +2552,7 @@ } }, { - "id": 10982, + "id": 11275, "name": "action", "variant": "declaration", "kind": 1024, @@ -2565,7 +2565,7 @@ } }, { - "id": 10983, + "id": 11276, "name": "context", "variant": "declaration", "kind": 1024, @@ -2581,7 +2581,7 @@ "typeArguments": [ { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" }, @@ -2595,7 +2595,7 @@ } }, { - "id": 10984, + "id": 11277, "name": "options", "variant": "declaration", "kind": 1024, @@ -2627,13 +2627,13 @@ { "title": "Properties", "children": [ - 10978, - 10979, - 10980, - 10981, - 10982, - 10983, - 10984 + 11271, + 11272, + 11273, + 11274, + 11275, + 11276, + 11277 ] } ] @@ -2641,7 +2641,7 @@ } }, { - "id": 10993, + "id": 11286, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -2649,14 +2649,14 @@ "type": { "type": "reflection", "declaration": { - "id": 10994, + "id": 11287, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10995, + "id": 11288, "name": "alias", "variant": "declaration", "kind": 1024, @@ -2667,7 +2667,7 @@ } }, { - "id": 10996, + "id": 11289, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -2678,7 +2678,7 @@ } }, { - "id": 10997, + "id": 11290, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -2689,7 +2689,7 @@ } }, { - "id": 10998, + "id": 11291, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2700,7 +2700,7 @@ } }, { - "id": 10999, + "id": 11292, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -2721,7 +2721,7 @@ } }, { - "id": 11000, + "id": 11293, "name": "isList", "variant": "declaration", "kind": 1024, @@ -2742,7 +2742,7 @@ } }, { - "id": 11001, + "id": 11294, "name": "args", "variant": "declaration", "kind": 1024, @@ -2782,13 +2782,13 @@ { "title": "Properties", "children": [ - 10995, - 10996, - 10997, - 10998, - 10999, - 11000, - 11001 + 11288, + 11289, + 11290, + 11291, + 11292, + 11293, + 11294 ] } ] @@ -2796,14 +2796,14 @@ } }, { - "id": 10990, + "id": 11283, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 10991, + "id": 11284, "name": "name", "variant": "declaration", "kind": 1024, @@ -2826,7 +2826,7 @@ } }, { - "id": 10992, + "id": 11285, "name": "args", "variant": "declaration", "kind": 1024, @@ -2866,21 +2866,21 @@ { "title": "Properties", "children": [ - 10991, - 10992 + 11284, + 11285 ] } ] }, { - "id": 10943, + "id": 11236, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 10944, + "id": 11237, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2891,7 +2891,7 @@ } }, { - "id": 10945, + "id": 11238, "name": "alias", "variant": "declaration", "kind": 1024, @@ -2911,7 +2911,7 @@ "types": [ { "type": "reference", - "target": 10990, + "target": 11283, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -2919,7 +2919,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10990, + "target": 11283, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -2928,7 +2928,7 @@ } }, { - "id": 10946, + "id": 11239, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -2964,14 +2964,14 @@ { "type": "reflection", "declaration": { - "id": 10947, + "id": 11240, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10948, + "id": 11241, "name": "path", "variant": "declaration", "kind": 1024, @@ -2982,7 +2982,7 @@ } }, { - "id": 10949, + "id": 11242, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -3000,8 +3000,8 @@ { "title": "Properties", "children": [ - 10948, - 10949 + 11241, + 11242 ] } ] @@ -3015,7 +3015,7 @@ } }, { - "id": 10950, + "id": 11243, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -3029,7 +3029,7 @@ } }, { - "id": 10951, + "id": 11244, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -3040,14 +3040,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10993, + "target": 11286, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 10952, + "id": 11245, "name": "extends", "variant": "declaration", "kind": 1024, @@ -3059,14 +3059,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 10953, + "id": 11246, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10954, + "id": 11247, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3077,14 +3077,14 @@ } }, { - "id": 10955, + "id": 11248, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 10993, + "target": 11286, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -3094,8 +3094,8 @@ { "title": "Properties", "children": [ - 10954, - 10955 + 11247, + 11248 ] } ] @@ -3104,7 +3104,7 @@ } }, { - "id": 10956, + "id": 11249, "name": "args", "variant": "declaration", "kind": 1024, @@ -3144,19 +3144,19 @@ { "title": "Properties", "children": [ - 10944, - 10945, - 10946, - 10950, - 10951, - 10952, - 10956 + 11237, + 11238, + 11239, + 11243, + 11244, + 11245, + 11249 ] } ] }, { - "id": 10960, + "id": 11253, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -3175,14 +3175,14 @@ { "type": "reflection", "declaration": { - "id": 10961, + "id": 11254, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10962, + "id": 11255, "name": "type", "variant": "declaration", "kind": 1024, @@ -3278,7 +3278,7 @@ } }, { - "id": 10963, + "id": 11256, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -3291,7 +3291,7 @@ } }, { - "id": 10964, + "id": 11257, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -3304,7 +3304,7 @@ } }, { - "id": 10965, + "id": 11258, "name": "options", "variant": "declaration", "kind": 1024, @@ -3344,10 +3344,10 @@ { "title": "Properties", "children": [ - 10962, - 10963, - 10964, - 10965 + 11255, + 11256, + 11257, + 11258 ] } ] @@ -3359,7 +3359,7 @@ } }, { - "id": 10875, + "id": 11168, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -3376,7 +3376,7 @@ "typeArguments": [ { "type": "reference", - "target": 10943, + "target": 11236, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -3408,14 +3408,14 @@ { "type": "reflection", "declaration": { - "id": 10876, + "id": 11169, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10877, + "id": 11170, "name": "schema", "variant": "declaration", "kind": 1024, @@ -3436,7 +3436,7 @@ } }, { - "id": 10878, + "id": 11171, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -3447,14 +3447,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10957, + "target": 11250, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 10879, + "id": 11172, "name": "extends", "variant": "declaration", "kind": 1024, @@ -3466,14 +3466,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 10880, + "id": 11173, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10881, + "id": 11174, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3484,7 +3484,7 @@ } }, { - "id": 10882, + "id": 11175, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -3512,14 +3512,14 @@ { "type": "reflection", "declaration": { - "id": 10883, + "id": 11176, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10884, + "id": 11177, "name": "path", "variant": "declaration", "kind": 1024, @@ -3530,7 +3530,7 @@ } }, { - "id": 10885, + "id": 11178, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -3546,7 +3546,7 @@ } }, { - "id": 10886, + "id": 11179, "name": "isList", "variant": "declaration", "kind": 1024, @@ -3563,9 +3563,9 @@ { "title": "Properties", "children": [ - 10884, - 10885, - 10886 + 11177, + 11178, + 11179 ] } ] @@ -3579,14 +3579,14 @@ } }, { - "id": 10887, + "id": 11180, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 10957, + "target": 11250, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -3596,9 +3596,9 @@ { "title": "Properties", "children": [ - 10881, - 10882, - 10887 + 11174, + 11175, + 11180 ] } ] @@ -3607,7 +3607,7 @@ } }, { - "id": 10888, + "id": 11181, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3620,7 +3620,7 @@ } }, { - "id": 10889, + "id": 11182, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -3636,7 +3636,7 @@ } }, { - "id": 10890, + "id": 11183, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -3657,7 +3657,7 @@ } }, { - "id": 10891, + "id": 11184, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -3693,7 +3693,7 @@ } }, { - "id": 10892, + "id": 11185, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -3714,7 +3714,7 @@ } }, { - "id": 10893, + "id": 11186, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -3738,7 +3738,7 @@ } }, { - "id": 10894, + "id": 11187, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -3748,14 +3748,14 @@ "type": { "type": "reflection", "declaration": { - "id": 10895, + "id": 11188, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10896, + "id": 11189, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -3776,7 +3776,7 @@ } }, { - "id": 10897, + "id": 11190, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -3797,7 +3797,7 @@ } }, { - "id": 10898, + "id": 11191, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -3806,7 +3806,7 @@ }, "type": { "type": "reference", - "target": 10960, + "target": 11253, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -3816,9 +3816,9 @@ { "title": "Properties", "children": [ - 10896, - 10897, - 10898 + 11189, + 11190, + 11191 ] } ] @@ -3830,16 +3830,16 @@ { "title": "Properties", "children": [ - 10877, - 10878, - 10879, - 10888, - 10889, - 10890, - 10891, - 10892, - 10893, - 10894 + 11170, + 11171, + 11172, + 11181, + 11182, + 11183, + 11184, + 11185, + 11186, + 11187 ] } ] @@ -3849,7 +3849,7 @@ } }, { - "id": 10957, + "id": 11250, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -3859,21 +3859,21 @@ "types": [ { "type": "reference", - "target": 10993, + "target": 11286, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 10958, + "id": 11251, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 10959, + "id": 11252, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -3898,7 +3898,7 @@ { "title": "Properties", "children": [ - 10959 + 11252 ] } ] @@ -3908,7 +3908,7 @@ } }, { - "id": 10774, + "id": 11067, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -3916,13 +3916,13 @@ "extendedBy": [ { "type": "reference", - "target": 10688, + "target": 10981, "name": "IRegionModuleService" } ] }, { - "id": 10914, + "id": 11207, "name": "PaymentProviderDTO", "variant": "declaration", "kind": 256, @@ -3937,7 +3937,7 @@ }, "children": [ { - "id": 10915, + "id": 11208, "name": "id", "variant": "declaration", "kind": 1024, @@ -3956,7 +3956,7 @@ } }, { - "id": 10916, + "id": 11209, "name": "is_enabled", "variant": "declaration", "kind": 1024, @@ -3979,14 +3979,14 @@ { "title": "Properties", "children": [ - 10915, - 10916 + 11208, + 11209 ] } ] }, { - "id": 10807, + "id": 11100, "name": "RegionDTO", "variant": "declaration", "kind": 256, @@ -4001,7 +4001,7 @@ }, "children": [ { - "id": 10808, + "id": 11101, "name": "id", "variant": "declaration", "kind": 1024, @@ -4020,7 +4020,7 @@ } }, { - "id": 10809, + "id": 11102, "name": "name", "variant": "declaration", "kind": 1024, @@ -4039,7 +4039,7 @@ } }, { - "id": 10810, + "id": 11103, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -4058,7 +4058,7 @@ } }, { - "id": 10811, + "id": 11104, "name": "automatic_taxes", "variant": "declaration", "kind": 1024, @@ -4077,7 +4077,7 @@ } }, { - "id": 10812, + "id": 11105, "name": "countries", "variant": "declaration", "kind": 1024, @@ -4094,14 +4094,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10853, + "target": 11146, "name": "RegionCountryDTO", "package": "@medusajs/types" } } }, { - "id": 10813, + "id": 11106, "name": "payment_providers", "variant": "declaration", "kind": 1024, @@ -4118,14 +4118,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10914, + "target": 11207, "name": "PaymentProviderDTO", "package": "@medusajs/types" } } }, { - "id": 10814, + "id": 11107, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4161,7 +4161,7 @@ } }, { - "id": 10815, + "id": 11108, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4180,7 +4180,7 @@ } }, { - "id": 10816, + "id": 11109, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4203,21 +4203,21 @@ { "title": "Properties", "children": [ - 10808, - 10809, - 10810, - 10811, - 10812, - 10813, - 10814, - 10815, - 10816 + 11101, + 11102, + 11103, + 11104, + 11105, + 11106, + 11107, + 11108, + 11109 ] } ] }, { - "id": 10853, + "id": 11146, "name": "RegionCountryDTO", "variant": "declaration", "kind": 256, @@ -4232,7 +4232,7 @@ }, "children": [ { - "id": 10854, + "id": 11147, "name": "id", "variant": "declaration", "kind": 1024, @@ -4251,7 +4251,7 @@ } }, { - "id": 10855, + "id": 11148, "name": "iso_2", "variant": "declaration", "kind": 1024, @@ -4270,7 +4270,7 @@ } }, { - "id": 10856, + "id": 11149, "name": "iso_3", "variant": "declaration", "kind": 1024, @@ -4289,7 +4289,7 @@ } }, { - "id": 10857, + "id": 11150, "name": "num_code", "variant": "declaration", "kind": 1024, @@ -4308,7 +4308,7 @@ } }, { - "id": 10858, + "id": 11151, "name": "name", "variant": "declaration", "kind": 1024, @@ -4327,7 +4327,7 @@ } }, { - "id": 10859, + "id": 11152, "name": "display_name", "variant": "declaration", "kind": 1024, @@ -4350,18 +4350,18 @@ { "title": "Properties", "children": [ - 10854, - 10855, - 10856, - 10857, - 10858, - 10859 + 11147, + 11148, + 11149, + 11150, + 11151, + 11152 ] } ] }, { - "id": 10830, + "id": 11123, "name": "FilterableRegionProps", "variant": "declaration", "kind": 256, @@ -4376,7 +4376,7 @@ }, "children": [ { - "id": 10838, + "id": 11131, "name": "$and", "variant": "declaration", "kind": 1024, @@ -4399,17 +4399,17 @@ "types": [ { "type": "reference", - "target": 10830, + "target": 11123, "name": "FilterableRegionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 10917, + "target": 11210, "typeArguments": [ { "type": "reference", - "target": 10830, + "target": 11123, "name": "FilterableRegionProps", "package": "@medusajs/types" } @@ -4422,12 +4422,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 10918, + "target": 11211, "name": "BaseFilterable.$and" } }, { - "id": 10839, + "id": 11132, "name": "$or", "variant": "declaration", "kind": 1024, @@ -4450,17 +4450,17 @@ "types": [ { "type": "reference", - "target": 10830, + "target": 11123, "name": "FilterableRegionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 10917, + "target": 11210, "typeArguments": [ { "type": "reference", - "target": 10830, + "target": 11123, "name": "FilterableRegionProps", "package": "@medusajs/types" } @@ -4473,12 +4473,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 10919, + "target": 11212, "name": "BaseFilterable.$or" } }, { - "id": 10831, + "id": 11124, "name": "q", "variant": "declaration", "kind": 1024, @@ -4499,7 +4499,7 @@ } }, { - "id": 10832, + "id": 11125, "name": "id", "variant": "declaration", "kind": 1024, @@ -4530,7 +4530,7 @@ }, { "type": "reference", - "target": 10921, + "target": 11214, "typeArguments": [ { "type": "union", @@ -4556,7 +4556,7 @@ } }, { - "id": 10833, + "id": 11126, "name": "name", "variant": "declaration", "kind": 1024, @@ -4580,7 +4580,7 @@ }, { "type": "reference", - "target": 10921, + "target": 11214, "typeArguments": [ { "type": "intrinsic", @@ -4594,7 +4594,7 @@ } }, { - "id": 10834, + "id": 11127, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -4618,7 +4618,7 @@ }, { "type": "reference", - "target": 10921, + "target": 11214, "typeArguments": [ { "type": "intrinsic", @@ -4632,7 +4632,7 @@ } }, { - "id": 10835, + "id": 11128, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4671,7 +4671,7 @@ }, { "type": "reference", - "target": 10921, + "target": 11214, "typeArguments": [ { "type": "reference", @@ -4700,7 +4700,7 @@ } }, { - "id": 10836, + "id": 11129, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4717,7 +4717,7 @@ }, "type": { "type": "reference", - "target": 10921, + "target": 11214, "typeArguments": [ { "type": "intrinsic", @@ -4729,7 +4729,7 @@ } }, { - "id": 10837, + "id": 11130, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4746,7 +4746,7 @@ }, "type": { "type": "reference", - "target": 10921, + "target": 11214, "typeArguments": [ { "type": "intrinsic", @@ -4762,26 +4762,26 @@ { "title": "Properties", "children": [ - 10838, - 10839, - 10831, - 10832, - 10833, - 10834, - 10835, - 10836, - 10837 + 11131, + 11132, + 11124, + 11125, + 11126, + 11127, + 11128, + 11129, + 11130 ] } ], "extendedTypes": [ { "type": "reference", - "target": 10917, + "target": 11210, "typeArguments": [ { "type": "reference", - "target": 10830, + "target": 11123, "name": "FilterableRegionProps", "package": "@medusajs/types" } @@ -4792,7 +4792,7 @@ ] }, { - "id": 10860, + "id": 11153, "name": "FilterableRegionCountryProps", "variant": "declaration", "kind": 256, @@ -4807,7 +4807,7 @@ }, "children": [ { - "id": 10867, + "id": 11160, "name": "$and", "variant": "declaration", "kind": 1024, @@ -4830,17 +4830,17 @@ "types": [ { "type": "reference", - "target": 10860, + "target": 11153, "name": "FilterableRegionCountryProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 10917, + "target": 11210, "typeArguments": [ { "type": "reference", - "target": 10860, + "target": 11153, "name": "FilterableRegionCountryProps", "package": "@medusajs/types" } @@ -4853,12 +4853,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 10918, + "target": 11211, "name": "BaseFilterable.$and" } }, { - "id": 10868, + "id": 11161, "name": "$or", "variant": "declaration", "kind": 1024, @@ -4881,17 +4881,17 @@ "types": [ { "type": "reference", - "target": 10860, + "target": 11153, "name": "FilterableRegionCountryProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 10917, + "target": 11210, "typeArguments": [ { "type": "reference", - "target": 10860, + "target": 11153, "name": "FilterableRegionCountryProps", "package": "@medusajs/types" } @@ -4904,12 +4904,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 10919, + "target": 11212, "name": "BaseFilterable.$or" } }, { - "id": 10861, + "id": 11154, "name": "id", "variant": "declaration", "kind": 1024, @@ -4942,7 +4942,7 @@ } }, { - "id": 10862, + "id": 11155, "name": "iso_2", "variant": "declaration", "kind": 1024, @@ -4975,7 +4975,7 @@ } }, { - "id": 10863, + "id": 11156, "name": "iso_3", "variant": "declaration", "kind": 1024, @@ -5008,7 +5008,7 @@ } }, { - "id": 10864, + "id": 11157, "name": "num_code", "variant": "declaration", "kind": 1024, @@ -5041,7 +5041,7 @@ } }, { - "id": 10865, + "id": 11158, "name": "name", "variant": "declaration", "kind": 1024, @@ -5074,7 +5074,7 @@ } }, { - "id": 10866, + "id": 11159, "name": "display_name", "variant": "declaration", "kind": 1024, @@ -5111,25 +5111,25 @@ { "title": "Properties", "children": [ - 10867, - 10868, - 10861, - 10862, - 10863, - 10864, - 10865, - 10866 + 11160, + 11161, + 11154, + 11155, + 11156, + 11157, + 11158, + 11159 ] } ], "extendedTypes": [ { "type": "reference", - "target": 10917, + "target": 11210, "typeArguments": [ { "type": "reference", - "target": 10860, + "target": 11153, "name": "FilterableRegionCountryProps", "package": "@medusajs/types" } @@ -5140,7 +5140,7 @@ ] }, { - "id": 10788, + "id": 11081, "name": "CreateRegionDTO", "variant": "declaration", "kind": 256, @@ -5155,7 +5155,7 @@ }, "children": [ { - "id": 10789, + "id": 11082, "name": "name", "variant": "declaration", "kind": 1024, @@ -5174,7 +5174,7 @@ } }, { - "id": 10790, + "id": 11083, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -5193,7 +5193,7 @@ } }, { - "id": 10791, + "id": 11084, "name": "automatic_taxes", "variant": "declaration", "kind": 1024, @@ -5214,7 +5214,7 @@ } }, { - "id": 10792, + "id": 11085, "name": "countries", "variant": "declaration", "kind": 1024, @@ -5238,7 +5238,7 @@ } }, { - "id": 10793, + "id": 11086, "name": "payment_providers", "variant": "declaration", "kind": 1024, @@ -5262,7 +5262,7 @@ } }, { - "id": 10794, + "id": 11087, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5279,7 +5279,7 @@ }, "type": { "type": "reference", - "target": 10899, + "target": 11192, "name": "MetadataType", "package": "@medusajs/types" } @@ -5289,18 +5289,18 @@ { "title": "Properties", "children": [ - 10789, - 10790, - 10791, - 10792, - 10793, - 10794 + 11082, + 11083, + 11084, + 11085, + 11086, + 11087 ] } ] }, { - "id": 10817, + "id": 11110, "name": "UpsertRegionDTO", "variant": "declaration", "kind": 256, @@ -5315,7 +5315,7 @@ }, "children": [ { - "id": 10818, + "id": 11111, "name": "id", "variant": "declaration", "kind": 1024, @@ -5336,7 +5336,7 @@ } }, { - "id": 10819, + "id": 11112, "name": "name", "variant": "declaration", "kind": 1024, @@ -5357,7 +5357,7 @@ } }, { - "id": 10820, + "id": 11113, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -5378,7 +5378,7 @@ } }, { - "id": 10821, + "id": 11114, "name": "automatic_taxes", "variant": "declaration", "kind": 1024, @@ -5399,7 +5399,7 @@ } }, { - "id": 10822, + "id": 11115, "name": "countries", "variant": "declaration", "kind": 1024, @@ -5423,7 +5423,7 @@ } }, { - "id": 10823, + "id": 11116, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5440,7 +5440,7 @@ }, "type": { "type": "reference", - "target": 10899, + "target": 11192, "name": "MetadataType", "package": "@medusajs/types" } @@ -5450,18 +5450,18 @@ { "title": "Properties", "children": [ - 10818, - 10819, - 10820, - 10821, - 10822, - 10823 + 11111, + 11112, + 11113, + 11114, + 11115, + 11116 ] } ] }, { - "id": 10824, + "id": 11117, "name": "UpdateRegionDTO", "variant": "declaration", "kind": 256, @@ -5476,7 +5476,7 @@ }, "children": [ { - "id": 10825, + "id": 11118, "name": "name", "variant": "declaration", "kind": 1024, @@ -5497,7 +5497,7 @@ } }, { - "id": 10826, + "id": 11119, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -5518,7 +5518,7 @@ } }, { - "id": 10827, + "id": 11120, "name": "automatic_taxes", "variant": "declaration", "kind": 1024, @@ -5539,7 +5539,7 @@ } }, { - "id": 10828, + "id": 11121, "name": "countries", "variant": "declaration", "kind": 1024, @@ -5563,7 +5563,7 @@ } }, { - "id": 10829, + "id": 11122, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5580,7 +5580,7 @@ }, "type": { "type": "reference", - "target": 10899, + "target": 11192, "name": "MetadataType", "package": "@medusajs/types" } @@ -5590,17 +5590,17 @@ { "title": "Properties", "children": [ - 10825, - 10826, - 10827, - 10828, - 10829 + 11118, + 11119, + 11120, + 11121, + 11122 ] } ] }, { - "id": 10688, + "id": 10981, "name": "IRegionModuleService", "variant": "declaration", "kind": 256, @@ -5615,14 +5615,14 @@ }, "children": [ { - "id": 10689, + "id": 10982, "name": "createRegions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10690, + "id": 10983, "name": "createRegions", "variant": "signature", "kind": 4096, @@ -5657,7 +5657,7 @@ }, "parameters": [ { - "id": 10691, + "id": 10984, "name": "data", "variant": "param", "kind": 32768, @@ -5674,14 +5674,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10788, + "target": 11081, "name": "CreateRegionDTO", "package": "@medusajs/types" } } }, { - "id": 10692, + "id": 10985, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5698,7 +5698,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -5715,7 +5715,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10807, + "target": 11100, "name": "RegionDTO", "package": "@medusajs/types" } @@ -5726,7 +5726,7 @@ } }, { - "id": 10693, + "id": 10986, "name": "createRegions", "variant": "signature", "kind": 4096, @@ -5761,7 +5761,7 @@ }, "parameters": [ { - "id": 10694, + "id": 10987, "name": "data", "variant": "param", "kind": 32768, @@ -5776,13 +5776,13 @@ }, "type": { "type": "reference", - "target": 10788, + "target": 11081, "name": "CreateRegionDTO", "package": "@medusajs/types" } }, { - "id": 10695, + "id": 10988, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5799,7 +5799,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -5814,7 +5814,7 @@ "typeArguments": [ { "type": "reference", - "target": 10807, + "target": 11100, "name": "RegionDTO", "package": "@medusajs/types" } @@ -5826,14 +5826,14 @@ ] }, { - "id": 10696, + "id": 10989, "name": "upsertRegions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10697, + "id": 10990, "name": "upsertRegions", "variant": "signature", "kind": 4096, @@ -5868,7 +5868,7 @@ }, "parameters": [ { - "id": 10698, + "id": 10991, "name": "data", "variant": "param", "kind": 32768, @@ -5885,14 +5885,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 10817, + "target": 11110, "name": "UpsertRegionDTO", "package": "@medusajs/types" } } }, { - "id": 10699, + "id": 10992, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5909,7 +5909,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -5926,7 +5926,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10807, + "target": 11100, "name": "RegionDTO", "package": "@medusajs/types" } @@ -5937,7 +5937,7 @@ } }, { - "id": 10700, + "id": 10993, "name": "upsertRegions", "variant": "signature", "kind": 4096, @@ -5972,7 +5972,7 @@ }, "parameters": [ { - "id": 10701, + "id": 10994, "name": "data", "variant": "param", "kind": 32768, @@ -5987,13 +5987,13 @@ }, "type": { "type": "reference", - "target": 10817, + "target": 11110, "name": "UpsertRegionDTO", "package": "@medusajs/types" } }, { - "id": 10702, + "id": 10995, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6010,7 +6010,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -6025,7 +6025,7 @@ "typeArguments": [ { "type": "reference", - "target": 10807, + "target": 11100, "name": "RegionDTO", "package": "@medusajs/types" } @@ -6037,14 +6037,14 @@ ] }, { - "id": 10703, + "id": 10996, "name": "updateRegions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10704, + "id": 10997, "name": "updateRegions", "variant": "signature", "kind": 4096, @@ -6079,7 +6079,7 @@ }, "parameters": [ { - "id": 10705, + "id": 10998, "name": "id", "variant": "param", "kind": 32768, @@ -6098,7 +6098,7 @@ } }, { - "id": 10706, + "id": 10999, "name": "data", "variant": "param", "kind": 32768, @@ -6113,13 +6113,13 @@ }, "type": { "type": "reference", - "target": 10824, + "target": 11117, "name": "UpdateRegionDTO", "package": "@medusajs/types" } }, { - "id": 10707, + "id": 11000, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6136,7 +6136,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -6151,7 +6151,7 @@ "typeArguments": [ { "type": "reference", - "target": 10807, + "target": 11100, "name": "RegionDTO", "package": "@medusajs/types" } @@ -6161,7 +6161,7 @@ } }, { - "id": 10708, + "id": 11001, "name": "updateRegions", "variant": "signature", "kind": 4096, @@ -6196,7 +6196,7 @@ }, "parameters": [ { - "id": 10709, + "id": 11002, "name": "selector", "variant": "param", "kind": 32768, @@ -6211,13 +6211,13 @@ }, "type": { "type": "reference", - "target": 10830, + "target": 11123, "name": "FilterableRegionProps", "package": "@medusajs/types" } }, { - "id": 10710, + "id": 11003, "name": "data", "variant": "param", "kind": 32768, @@ -6232,13 +6232,13 @@ }, "type": { "type": "reference", - "target": 10824, + "target": 11117, "name": "UpdateRegionDTO", "package": "@medusajs/types" } }, { - "id": 10711, + "id": 11004, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6255,7 +6255,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -6272,7 +6272,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10807, + "target": 11100, "name": "RegionDTO", "package": "@medusajs/types" } @@ -6285,14 +6285,14 @@ ] }, { - "id": 10712, + "id": 11005, "name": "deleteRegions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10713, + "id": 11006, "name": "deleteRegions", "variant": "signature", "kind": 4096, @@ -6327,7 +6327,7 @@ }, "parameters": [ { - "id": 10714, + "id": 11007, "name": "ids", "variant": "param", "kind": 32768, @@ -6349,7 +6349,7 @@ } }, { - "id": 10715, + "id": 11008, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6366,7 +6366,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -6389,7 +6389,7 @@ } }, { - "id": 10716, + "id": 11009, "name": "deleteRegions", "variant": "signature", "kind": 4096, @@ -6424,7 +6424,7 @@ }, "parameters": [ { - "id": 10717, + "id": 11010, "name": "id", "variant": "param", "kind": 32768, @@ -6443,7 +6443,7 @@ } }, { - "id": 10718, + "id": 11011, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6460,7 +6460,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -6485,14 +6485,14 @@ ] }, { - "id": 10719, + "id": 11012, "name": "retrieveRegion", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10720, + "id": 11013, "name": "retrieveRegion", "variant": "signature", "kind": 4096, @@ -6539,7 +6539,7 @@ }, "parameters": [ { - "id": 10721, + "id": 11014, "name": "id", "variant": "param", "kind": 32768, @@ -6558,7 +6558,7 @@ } }, { - "id": 10722, + "id": 11015, "name": "config", "variant": "param", "kind": 32768, @@ -6591,11 +6591,11 @@ }, "type": { "type": "reference", - "target": 10840, + "target": 11133, "typeArguments": [ { "type": "reference", - "target": 10807, + "target": 11100, "name": "RegionDTO", "package": "@medusajs/types" } @@ -6605,7 +6605,7 @@ } }, { - "id": 10723, + "id": 11016, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6622,7 +6622,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -6637,7 +6637,7 @@ "typeArguments": [ { "type": "reference", - "target": 10807, + "target": 11100, "name": "RegionDTO", "package": "@medusajs/types" } @@ -6649,14 +6649,14 @@ ] }, { - "id": 10724, + "id": 11017, "name": "listRegions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10725, + "id": 11018, "name": "listRegions", "variant": "signature", "kind": 4096, @@ -6743,7 +6743,7 @@ }, "parameters": [ { - "id": 10726, + "id": 11019, "name": "filters", "variant": "param", "kind": 32768, @@ -6760,13 +6760,13 @@ }, "type": { "type": "reference", - "target": 10830, + "target": 11123, "name": "FilterableRegionProps", "package": "@medusajs/types" } }, { - "id": 10727, + "id": 11020, "name": "config", "variant": "param", "kind": 32768, @@ -6799,11 +6799,11 @@ }, "type": { "type": "reference", - "target": 10840, + "target": 11133, "typeArguments": [ { "type": "reference", - "target": 10807, + "target": 11100, "name": "RegionDTO", "package": "@medusajs/types" } @@ -6813,7 +6813,7 @@ } }, { - "id": 10728, + "id": 11021, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6830,7 +6830,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -6847,7 +6847,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10807, + "target": 11100, "name": "RegionDTO", "package": "@medusajs/types" } @@ -6860,14 +6860,14 @@ ] }, { - "id": 10729, + "id": 11022, "name": "listAndCountRegions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10730, + "id": 11023, "name": "listAndCountRegions", "variant": "signature", "kind": 4096, @@ -6954,7 +6954,7 @@ }, "parameters": [ { - "id": 10731, + "id": 11024, "name": "filters", "variant": "param", "kind": 32768, @@ -6971,13 +6971,13 @@ }, "type": { "type": "reference", - "target": 10830, + "target": 11123, "name": "FilterableRegionProps", "package": "@medusajs/types" } }, { - "id": 10732, + "id": 11025, "name": "config", "variant": "param", "kind": 32768, @@ -7010,11 +7010,11 @@ }, "type": { "type": "reference", - "target": 10840, + "target": 11133, "typeArguments": [ { "type": "reference", - "target": 10807, + "target": 11100, "name": "RegionDTO", "package": "@medusajs/types" } @@ -7024,7 +7024,7 @@ } }, { - "id": 10733, + "id": 11026, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7041,7 +7041,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -7061,7 +7061,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10807, + "target": 11100, "name": "RegionDTO", "package": "@medusajs/types" } @@ -7080,14 +7080,14 @@ ] }, { - "id": 10734, + "id": 11027, "name": "retrieveCountry", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10735, + "id": 11028, "name": "retrieveCountry", "variant": "signature", "kind": 4096, @@ -7134,7 +7134,7 @@ }, "parameters": [ { - "id": 10736, + "id": 11029, "name": "countryId", "variant": "param", "kind": 32768, @@ -7153,7 +7153,7 @@ } }, { - "id": 10737, + "id": 11030, "name": "config", "variant": "param", "kind": 32768, @@ -7186,11 +7186,11 @@ }, "type": { "type": "reference", - "target": 10840, + "target": 11133, "typeArguments": [ { "type": "reference", - "target": 10853, + "target": 11146, "name": "RegionCountryDTO", "package": "@medusajs/types" } @@ -7200,7 +7200,7 @@ } }, { - "id": 10738, + "id": 11031, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7217,7 +7217,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -7232,7 +7232,7 @@ "typeArguments": [ { "type": "reference", - "target": 10853, + "target": 11146, "name": "RegionCountryDTO", "package": "@medusajs/types" } @@ -7244,14 +7244,14 @@ ] }, { - "id": 10739, + "id": 11032, "name": "listCountries", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10740, + "id": 11033, "name": "listCountries", "variant": "signature", "kind": 4096, @@ -7338,7 +7338,7 @@ }, "parameters": [ { - "id": 10741, + "id": 11034, "name": "filters", "variant": "param", "kind": 32768, @@ -7355,13 +7355,13 @@ }, "type": { "type": "reference", - "target": 10860, + "target": 11153, "name": "FilterableRegionCountryProps", "package": "@medusajs/types" } }, { - "id": 10742, + "id": 11035, "name": "config", "variant": "param", "kind": 32768, @@ -7394,11 +7394,11 @@ }, "type": { "type": "reference", - "target": 10840, + "target": 11133, "typeArguments": [ { "type": "reference", - "target": 10853, + "target": 11146, "name": "RegionCountryDTO", "package": "@medusajs/types" } @@ -7408,7 +7408,7 @@ } }, { - "id": 10743, + "id": 11036, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7425,7 +7425,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -7442,7 +7442,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10853, + "target": 11146, "name": "RegionCountryDTO", "package": "@medusajs/types" } @@ -7455,14 +7455,14 @@ ] }, { - "id": 10744, + "id": 11037, "name": "listAndCountCountries", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10745, + "id": 11038, "name": "listAndCountCountries", "variant": "signature", "kind": 4096, @@ -7549,7 +7549,7 @@ }, "parameters": [ { - "id": 10746, + "id": 11039, "name": "filters", "variant": "param", "kind": 32768, @@ -7566,13 +7566,13 @@ }, "type": { "type": "reference", - "target": 10860, + "target": 11153, "name": "FilterableRegionCountryProps", "package": "@medusajs/types" } }, { - "id": 10747, + "id": 11040, "name": "config", "variant": "param", "kind": 32768, @@ -7605,11 +7605,11 @@ }, "type": { "type": "reference", - "target": 10840, + "target": 11133, "typeArguments": [ { "type": "reference", - "target": 10853, + "target": 11146, "name": "RegionCountryDTO", "package": "@medusajs/types" } @@ -7619,7 +7619,7 @@ } }, { - "id": 10748, + "id": 11041, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7636,7 +7636,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -7656,7 +7656,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10853, + "target": 11146, "name": "RegionCountryDTO", "package": "@medusajs/types" } @@ -7675,14 +7675,14 @@ ] }, { - "id": 10749, + "id": 11042, "name": "softDeleteRegions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10750, + "id": 11043, "name": "softDeleteRegions", "variant": "signature", "kind": 4096, @@ -7733,7 +7733,7 @@ }, "typeParameters": [ { - "id": 10751, + "id": 11044, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -7750,7 +7750,7 @@ ], "parameters": [ { - "id": 10752, + "id": 11045, "name": "regionIds", "variant": "param", "kind": 32768, @@ -7772,7 +7772,7 @@ } }, { - "id": 10753, + "id": 11046, "name": "config", "variant": "param", "kind": 32768, @@ -7789,11 +7789,11 @@ }, "type": { "type": "reference", - "target": 10869, + "target": 11162, "typeArguments": [ { "type": "reference", - "target": 10751, + "target": 11044, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -7804,7 +7804,7 @@ } }, { - "id": 10754, + "id": 11047, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7821,7 +7821,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -7873,14 +7873,14 @@ ] }, { - "id": 10755, + "id": 11048, "name": "restoreRegions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10756, + "id": 11049, "name": "restoreRegions", "variant": "signature", "kind": 4096, @@ -7931,7 +7931,7 @@ }, "typeParameters": [ { - "id": 10757, + "id": 11050, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -7948,7 +7948,7 @@ ], "parameters": [ { - "id": 10758, + "id": 11051, "name": "regionIds", "variant": "param", "kind": 32768, @@ -7970,7 +7970,7 @@ } }, { - "id": 10759, + "id": 11052, "name": "config", "variant": "param", "kind": 32768, @@ -8003,11 +8003,11 @@ }, "type": { "type": "reference", - "target": 10872, + "target": 11165, "typeArguments": [ { "type": "reference", - "target": 10757, + "target": 11050, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -8018,7 +8018,7 @@ } }, { - "id": 10760, + "id": 11053, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -8035,7 +8035,7 @@ }, "type": { "type": "reference", - "target": 10795, + "target": 11088, "name": "Context", "package": "@medusajs/types" } @@ -8091,39 +8091,39 @@ { "title": "Methods", "children": [ - 10689, - 10696, - 10703, - 10712, - 10719, - 10724, - 10729, - 10734, - 10739, - 10744, - 10749, - 10755 + 10982, + 10989, + 10996, + 11005, + 11012, + 11017, + 11022, + 11027, + 11032, + 11037, + 11042, + 11048 ] } ], "extendedTypes": [ { "type": "reference", - "target": 10774, + "target": 11067, "name": "IModuleService", "package": "@medusajs/types" } ] }, { - "id": 10970, + "id": 11263, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 10971, + "id": 11264, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -8139,7 +8139,7 @@ } }, { - "id": 10972, + "id": 11265, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -8149,21 +8149,21 @@ "type": { "type": "reflection", "declaration": { - "id": 10973, + "id": 11266, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 10974, + "id": 11267, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 10975, + "id": 11268, "name": "key", "variant": "param", "kind": 32768, @@ -8204,35 +8204,35 @@ { "title": "Properties", "children": [ - 10971, - 10972 + 11264, + 11265 ] } ] }, { - "id": 10900, + "id": 11193, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 10901, + "id": 11194, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10902, + "id": 11195, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 10903, + "id": 11196, "name": "msg", "variant": "param", "kind": 32768, @@ -8242,7 +8242,7 @@ "types": [ { "type": "reference", - "target": 10966, + "target": 11259, "name": "Message", "package": "@medusajs/types" }, @@ -8250,7 +8250,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10966, + "target": 11259, "name": "Message", "package": "@medusajs/types" } @@ -8267,21 +8267,21 @@ ] }, { - "id": 10904, + "id": 11197, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10905, + "id": 11198, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 10906, + "id": 11199, "name": "format", "variant": "param", "kind": 32768, @@ -8290,7 +8290,7 @@ }, "type": { "type": "reference", - "target": 10970, + "target": 11263, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -8311,7 +8311,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 10966, + "target": 11259, "name": "Message", "package": "@medusajs/types" } @@ -8324,14 +8324,14 @@ ] }, { - "id": 10907, + "id": 11200, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10908, + "id": 11201, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -8344,21 +8344,21 @@ ] }, { - "id": 10909, + "id": 11202, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 10910, + "id": 11203, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 10911, + "id": 11204, "name": "T", "variant": "typeParam", "kind": 131072, @@ -8367,7 +8367,7 @@ ], "parameters": [ { - "id": 10912, + "id": 11205, "name": "messageData", "variant": "param", "kind": 32768, @@ -8377,11 +8377,11 @@ "types": [ { "type": "reference", - "target": 10976, + "target": 11269, "typeArguments": [ { "type": "reference", - "target": 10911, + "target": 11204, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -8394,11 +8394,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 10976, + "target": 11269, "typeArguments": [ { "type": "reference", - "target": 10911, + "target": 11204, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -8412,7 +8412,7 @@ } }, { - "id": 10913, + "id": 11206, "name": "options", "variant": "param", "kind": 32768, @@ -8452,16 +8452,16 @@ { "title": "Methods", "children": [ - 10901, - 10904, - 10907, - 10909 + 11194, + 11197, + 11200, + 11202 ] } ] }, { - "id": 10795, + "id": 11088, "name": "Context", "variant": "declaration", "kind": 256, @@ -8476,7 +8476,7 @@ }, "children": [ { - "id": 10796, + "id": 11089, "name": "__type", "variant": "declaration", "kind": 1024, @@ -8489,7 +8489,7 @@ } }, { - "id": 10797, + "id": 11090, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -8522,14 +8522,14 @@ }, "type": { "type": "reference", - "target": 10806, + "target": 11099, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 10798, + "id": 11091, "name": "manager", "variant": "declaration", "kind": 1024, @@ -8562,14 +8562,14 @@ }, "type": { "type": "reference", - "target": 10806, + "target": 11099, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 10799, + "id": 11092, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -8622,7 +8622,7 @@ } }, { - "id": 10800, + "id": 11093, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -8643,7 +8643,7 @@ } }, { - "id": 10801, + "id": 11094, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -8664,7 +8664,7 @@ } }, { - "id": 10802, + "id": 11095, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -8685,7 +8685,7 @@ } }, { - "id": 10803, + "id": 11096, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -8702,13 +8702,13 @@ }, "type": { "type": "reference", - "target": 10900, + "target": 11193, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 10804, + "id": 11097, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -8729,7 +8729,7 @@ } }, { - "id": 10805, + "id": 11098, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -8754,22 +8754,22 @@ { "title": "Properties", "children": [ - 10796, - 10797, - 10798, - 10799, - 10800, - 10801, - 10802, - 10803, - 10804, - 10805 + 11089, + 11090, + 11091, + 11092, + 11093, + 11094, + 11095, + 11096, + 11097, + 11098 ] } ], "typeParameters": [ { - "id": 10806, + "id": 11099, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -8786,1339 +8786,1339 @@ { "title": "Interfaces", "children": [ - 10840, - 10917, - 10869, - 10872, - 10990, - 10943, - 10774, - 10914, - 10807, - 10853, - 10830, - 10860, - 10788, - 10817, - 10824, - 10688, - 10970, - 10900, - 10795 + 11133, + 11210, + 11162, + 11165, + 11283, + 11236, + 11067, + 11207, + 11100, + 11146, + 11123, + 11153, + 11081, + 11110, + 11117, + 10981, + 11263, + 11193, + 11088 ] }, { "title": "Type Aliases", "children": [ - 10899, - 10986, - 10988, - 11008, - 11036, - 11026, - 10921, - 11024, - 11018, - 11023, - 11012, - 11020, - 11002, - 10966, - 10976, - 10993, - 10960, - 10875, - 10957 + 11192, + 11279, + 11281, + 11301, + 11329, + 11319, + 11214, + 11317, + 11311, + 11316, + 11305, + 11313, + 11295, + 11259, + 11269, + 11286, + 11253, + 11168, + 11250 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "10687": { + "10980": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "" }, - "10688": { + "10981": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService" }, - "10689": { + "10982": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.createRegions" }, - "10690": { + "10983": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.createRegions" }, - "10691": { + "10984": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "data" }, - "10692": { + "10985": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10693": { + "10986": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.createRegions" }, - "10694": { + "10987": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "data" }, - "10695": { + "10988": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10696": { + "10989": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.upsertRegions" }, - "10697": { + "10990": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.upsertRegions" }, - "10698": { + "10991": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "data" }, - "10699": { + "10992": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10700": { + "10993": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.upsertRegions" }, - "10701": { + "10994": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "data" }, - "10702": { + "10995": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10703": { + "10996": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.updateRegions" }, - "10704": { + "10997": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.updateRegions" }, - "10705": { + "10998": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "id" }, - "10706": { + "10999": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "data" }, - "10707": { + "11000": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10708": { + "11001": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.updateRegions" }, - "10709": { + "11002": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "selector" }, - "10710": { + "11003": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "data" }, - "10711": { + "11004": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10712": { + "11005": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.deleteRegions" }, - "10713": { + "11006": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.deleteRegions" }, - "10714": { + "11007": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "ids" }, - "10715": { + "11008": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10716": { + "11009": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.deleteRegions" }, - "10717": { + "11010": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "id" }, - "10718": { + "11011": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10719": { + "11012": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.retrieveRegion" }, - "10720": { + "11013": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.retrieveRegion" }, - "10721": { + "11014": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "id" }, - "10722": { + "11015": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "config" }, - "10723": { + "11016": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10724": { + "11017": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.listRegions" }, - "10725": { + "11018": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.listRegions" }, - "10726": { + "11019": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "filters" }, - "10727": { + "11020": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "config" }, - "10728": { + "11021": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10729": { + "11022": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.listAndCountRegions" }, - "10730": { + "11023": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.listAndCountRegions" }, - "10731": { + "11024": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "filters" }, - "10732": { + "11025": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "config" }, - "10733": { + "11026": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10734": { + "11027": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.retrieveCountry" }, - "10735": { + "11028": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.retrieveCountry" }, - "10736": { + "11029": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "countryId" }, - "10737": { + "11030": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "config" }, - "10738": { + "11031": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10739": { + "11032": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.listCountries" }, - "10740": { + "11033": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.listCountries" }, - "10741": { + "11034": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "filters" }, - "10742": { + "11035": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "config" }, - "10743": { + "11036": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10744": { + "11037": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.listAndCountCountries" }, - "10745": { + "11038": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.listAndCountCountries" }, - "10746": { + "11039": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "filters" }, - "10747": { + "11040": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "config" }, - "10748": { + "11041": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10749": { + "11042": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.softDeleteRegions" }, - "10750": { + "11043": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.softDeleteRegions" }, - "10751": { + "11044": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "10752": { + "11045": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "regionIds" }, - "10753": { + "11046": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "config" }, - "10754": { + "11047": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10755": { + "11048": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.restoreRegions" }, - "10756": { + "11049": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "IRegionModuleService.restoreRegions" }, - "10757": { + "11050": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "10758": { + "11051": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "regionIds" }, - "10759": { + "11052": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "config" }, - "10760": { + "11053": { "sourceFileName": "../../../../packages/core/types/src/region/service.ts", "qualifiedName": "sharedContext" }, - "10774": { + "11067": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "10788": { + "11081": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "CreateRegionDTO" }, - "10789": { + "11082": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "CreateRegionDTO.name" }, - "10790": { + "11083": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "CreateRegionDTO.currency_code" }, - "10791": { + "11084": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "CreateRegionDTO.automatic_taxes" }, - "10792": { + "11085": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "CreateRegionDTO.countries" }, - "10793": { + "11086": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "CreateRegionDTO.payment_providers" }, - "10794": { + "11087": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "CreateRegionDTO.metadata" }, - "10795": { + "11088": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "10796": { + "11089": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "10797": { + "11090": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "10798": { + "11091": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "10799": { + "11092": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "10800": { + "11093": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "10801": { + "11094": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "10802": { + "11095": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "10803": { + "11096": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "10804": { + "11097": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "10805": { + "11098": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "10806": { + "11099": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "10807": { + "11100": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionDTO" }, - "10808": { + "11101": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionDTO.id" }, - "10809": { + "11102": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionDTO.name" }, - "10810": { + "11103": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionDTO.currency_code" }, - "10811": { + "11104": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionDTO.automatic_taxes" }, - "10812": { + "11105": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionDTO.countries" }, - "10813": { + "11106": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionDTO.payment_providers" }, - "10814": { + "11107": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionDTO.metadata" }, - "10815": { + "11108": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionDTO.created_at" }, - "10816": { + "11109": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionDTO.updated_at" }, - "10817": { + "11110": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "UpsertRegionDTO" }, - "10818": { + "11111": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "UpsertRegionDTO.id" }, - "10819": { + "11112": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "UpsertRegionDTO.name" }, - "10820": { + "11113": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "UpsertRegionDTO.currency_code" }, - "10821": { + "11114": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "UpsertRegionDTO.automatic_taxes" }, - "10822": { + "11115": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "UpsertRegionDTO.countries" }, - "10823": { + "11116": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "UpsertRegionDTO.metadata" }, - "10824": { + "11117": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "UpdateRegionDTO" }, - "10825": { + "11118": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "UpdateRegionDTO.name" }, - "10826": { + "11119": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "UpdateRegionDTO.currency_code" }, - "10827": { + "11120": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "UpdateRegionDTO.automatic_taxes" }, - "10828": { + "11121": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "UpdateRegionDTO.countries" }, - "10829": { + "11122": { "sourceFileName": "../../../../packages/core/types/src/region/mutations.ts", "qualifiedName": "UpdateRegionDTO.metadata" }, - "10830": { + "11123": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionProps" }, - "10831": { + "11124": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionProps.q" }, - "10832": { + "11125": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionProps.id" }, - "10833": { + "11126": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionProps.name" }, - "10834": { + "11127": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionProps.currency_code" }, - "10835": { + "11128": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionProps.metadata" }, - "10836": { + "11129": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionProps.created_at" }, - "10837": { + "11130": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionProps.updated_at" }, - "10838": { + "11131": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "10839": { + "11132": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "10840": { + "11133": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "10841": { + "11134": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "10842": { + "11135": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "10843": { + "11136": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "10844": { + "11137": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "10845": { + "11138": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "10846": { + "11139": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "10847": { + "11140": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "10849": { + "11142": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "10850": { + "11143": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "10851": { + "11144": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "10852": { + "11145": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "10853": { + "11146": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionCountryDTO" }, - "10854": { + "11147": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionCountryDTO.id" }, - "10855": { + "11148": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionCountryDTO.iso_2" }, - "10856": { + "11149": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionCountryDTO.iso_3" }, - "10857": { + "11150": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionCountryDTO.num_code" }, - "10858": { + "11151": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionCountryDTO.name" }, - "10859": { + "11152": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "RegionCountryDTO.display_name" }, - "10860": { + "11153": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionCountryProps" }, - "10861": { + "11154": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionCountryProps.id" }, - "10862": { + "11155": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionCountryProps.iso_2" }, - "10863": { + "11156": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionCountryProps.iso_3" }, - "10864": { + "11157": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionCountryProps.num_code" }, - "10865": { + "11158": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionCountryProps.name" }, - "10866": { + "11159": { "sourceFileName": "../../../../packages/core/types/src/region/common.ts", "qualifiedName": "FilterableRegionCountryProps.display_name" }, - "10867": { + "11160": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "10868": { + "11161": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "10869": { + "11162": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "SoftDeleteReturn" }, - "10870": { + "11163": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "10871": { + "11164": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "10872": { + "11165": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RestoreReturn" }, - "10873": { + "11166": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "10874": { + "11167": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "10875": { + "11168": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "10876": { + "11169": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "10877": { + "11170": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "10878": { + "11171": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "10879": { + "11172": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "10880": { + "11173": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "10881": { + "11174": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "10882": { + "11175": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "10883": { + "11176": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "10884": { + "11177": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "10885": { + "11178": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "10886": { + "11179": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "10887": { + "11180": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "10888": { + "11181": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "10889": { + "11182": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "10890": { + "11183": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "10891": { + "11184": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "10892": { + "11185": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "10893": { + "11186": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "10894": { + "11187": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "10895": { + "11188": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "10896": { + "11189": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "10897": { + "11190": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "10898": { + "11191": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "10899": { + "11192": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "MetadataType" }, - "10900": { + "11193": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "10901": { + "11194": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "10902": { + "11195": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "10903": { + "11196": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "10904": { + "11197": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "10905": { + "11198": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "10906": { + "11199": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "10907": { + "11200": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "10908": { + "11201": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "10909": { + "11202": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "10910": { + "11203": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "10911": { + "11204": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "10912": { + "11205": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "10913": { + "11206": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "10914": { + "11207": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentProviderDTO" }, - "10915": { + "11208": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentProviderDTO.id" }, - "10916": { + "11209": { "sourceFileName": "../../../../packages/core/types/src/payment/common.ts", "qualifiedName": "PaymentProviderDTO.is_enabled" }, - "10917": { + "11210": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "10918": { + "11211": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "10919": { + "11212": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "10920": { + "11213": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "10921": { + "11214": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "OperatorMap" }, - "10922": { + "11215": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "10923": { + "11216": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$and" }, - "10924": { + "11217": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$or" }, - "10925": { + "11218": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$eq" }, - "10926": { + "11219": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ne" }, - "10927": { + "11220": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$in" }, - "10928": { + "11221": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$nin" }, - "10929": { + "11222": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$not" }, - "10930": { + "11223": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gt" }, - "10931": { + "11224": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gte" }, - "10932": { + "11225": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lt" }, - "10933": { + "11226": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lte" }, - "10934": { + "11227": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$like" }, - "10935": { + "11228": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$re" }, - "10936": { + "11229": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ilike" }, - "10937": { + "11230": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$fulltext" }, - "10938": { + "11231": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$overlap" }, - "10939": { + "11232": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contains" }, - "10940": { + "11233": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contained" }, - "10941": { + "11234": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$exists" }, - "10942": { + "11235": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "10943": { + "11236": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "10944": { + "11237": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "10945": { + "11238": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "10946": { + "11239": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "10947": { + "11240": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "10948": { + "11241": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "10949": { + "11242": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "10950": { + "11243": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "10951": { + "11244": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "10952": { + "11245": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "10953": { + "11246": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "10954": { + "11247": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "10955": { + "11248": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "10956": { + "11249": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "10957": { + "11250": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "10958": { + "11251": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "10959": { + "11252": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "10960": { + "11253": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "10961": { + "11254": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "10962": { + "11255": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "10963": { + "11256": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "10964": { + "11257": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "10965": { + "11258": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "10966": { + "11259": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "10967": { + "11260": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "10968": { + "11261": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "10969": { + "11262": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "10970": { + "11263": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "10971": { + "11264": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "10972": { + "11265": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "10973": { + "11266": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "10974": { + "11267": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "10976": { + "11269": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "10977": { + "11270": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "10978": { + "11271": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "10979": { + "11272": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "10980": { + "11273": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "10981": { + "11274": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "10982": { + "11275": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "10983": { + "11276": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "10984": { + "11277": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "10985": { + "11278": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "10986": { + "11279": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Query" }, - "10987": { + "11280": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "10988": { + "11281": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ExpandScalar" }, - "10989": { + "11282": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "10990": { + "11283": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "10991": { + "11284": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "10992": { + "11285": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "10993": { + "11286": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "10994": { + "11287": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "10995": { + "11288": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "10996": { + "11289": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "10997": { + "11290": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "10998": { + "11291": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "10999": { + "11292": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "11000": { + "11293": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "11001": { + "11294": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "11002": { + "11295": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "11003": { + "11296": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "11004": { + "11297": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "11005": { + "11298": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "11006": { + "11299": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "11007": { + "11300": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "11008": { + "11301": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Scalar" }, - "11009": { + "11302": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "11010": { + "11303": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "11011": { + "11304": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "11012": { + "11305": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterQuery" }, - "11013": { + "11306": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "11014": { + "11307": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "11016": { + "11309": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "11017": { + "11310": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Prev" }, - "11018": { + "11311": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue" }, - "11019": { + "11312": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "11020": { + "11313": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "11021": { + "11314": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "11022": { + "11315": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" }, - "11023": { + "11316": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "PrevLimit" }, - "11024": { + "11317": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue2" }, - "11025": { + "11318": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "11026": { + "11319": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Primary" }, - "11027": { + "11320": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "11028": { + "11321": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.[PrimaryKeyType]" }, - "11029": { + "11322": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "11030": { + "11323": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type._id" }, - "11031": { + "11324": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "11032": { + "11325": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.uuid" }, - "11033": { + "11326": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "11034": { + "11327": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.id" }, - "11035": { + "11328": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "11036": { + "11329": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ReadonlyPrimary" }, - "11037": { + "11330": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" } @@ -10128,7 +10128,7 @@ "1": "../../../../packages/core/types/src/region/service.ts" }, "reflections": { - "1": 10687 + "1": 10980 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/sales-channel-models.json b/www/utils/generated/typedoc-json-output/sales-channel-models.json index 221602476a586..41a323caa76c8 100644 --- a/www/utils/generated/typedoc-json-output/sales-channel-models.json +++ b/www/utils/generated/typedoc-json-output/sales-channel-models.json @@ -1,33 +1,33 @@ { - "id": 11468, + "id": 11770, "name": "sales-channel-models", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 11469, + "id": 11771, "name": "SalesChannel", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 11470, + "id": 11772, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 11471, + "id": 11773, "name": "new SalesChannel", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 11469, + "target": 11771, "name": "SalesChannel", "package": "@medusajs/sales-channel", "qualifiedName": "default" @@ -36,7 +36,7 @@ ] }, { - "id": 11484, + "id": 11786, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -54,7 +54,7 @@ } }, { - "id": 11472, + "id": 11774, "name": "id", "variant": "declaration", "kind": 1024, @@ -65,7 +65,7 @@ } }, { - "id": 11473, + "id": 11775, "name": "name", "variant": "declaration", "kind": 1024, @@ -76,7 +76,7 @@ } }, { - "id": 11474, + "id": 11776, "name": "description", "variant": "declaration", "kind": 1024, @@ -97,7 +97,7 @@ "defaultValue": "null" }, { - "id": 11475, + "id": 11777, "name": "is_disabled", "variant": "declaration", "kind": 1024, @@ -109,7 +109,7 @@ "defaultValue": "false" }, { - "id": 11476, + "id": 11778, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -125,7 +125,7 @@ } }, { - "id": 11477, + "id": 11779, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -161,7 +161,7 @@ "defaultValue": "null" }, { - "id": 11478, + "id": 11780, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -177,7 +177,7 @@ } }, { - "id": 11479, + "id": 11781, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -203,14 +203,14 @@ "defaultValue": "null" }, { - "id": 11480, + "id": 11782, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11481, + "id": 11783, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -223,14 +223,14 @@ ] }, { - "id": 11482, + "id": 11784, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11483, + "id": 11785, "name": "onInit", "variant": "signature", "kind": 4096, @@ -247,28 +247,28 @@ { "title": "Constructors", "children": [ - 11470 + 11772 ] }, { "title": "Properties", "children": [ - 11484, - 11472, - 11473, - 11474, - 11475, - 11476, - 11477, - 11478, - 11479 + 11786, + 11774, + 11775, + 11776, + 11777, + 11778, + 11779, + 11780, + 11781 ] }, { "title": "Methods", "children": [ - 11480, - 11482 + 11782, + 11784 ] } ] @@ -278,69 +278,69 @@ { "title": "Classes", "children": [ - 11469 + 11771 ] } ], "packageName": "@medusajs/sales-channel", "symbolIdMap": { - "11468": { + "11770": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/index.ts", "qualifiedName": "" }, - "11469": { + "11771": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default" }, - "11472": { + "11774": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default.id" }, - "11473": { + "11775": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default.name" }, - "11474": { + "11776": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default.description" }, - "11475": { + "11777": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default.is_disabled" }, - "11476": { + "11778": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default.created_at" }, - "11477": { + "11779": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default.metadata" }, - "11478": { + "11780": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default.updated_at" }, - "11479": { + "11781": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default.deleted_at" }, - "11480": { + "11782": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default.onCreate" }, - "11481": { + "11783": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default.onCreate" }, - "11482": { + "11784": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default.onInit" }, - "11483": { + "11785": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default.onInit" }, - "11484": { + "11786": { "sourceFileName": "../../../../packages/modules/sales-channel/src/models/sales-channel.ts", "qualifiedName": "default.[OptionalProps]" } @@ -350,7 +350,7 @@ "1": "../../../../packages/modules/sales-channel/src/models/index.ts" }, "reflections": { - "1": 11468 + "1": 11770 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/sales-channel.json b/www/utils/generated/typedoc-json-output/sales-channel.json index 949d8a2df987b..364497cecf56b 100644 --- a/www/utils/generated/typedoc-json-output/sales-channel.json +++ b/www/utils/generated/typedoc-json-output/sales-channel.json @@ -1,12 +1,12 @@ { - "id": 11211, + "id": 11513, "name": "sales-channel", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 11338, + "id": 11640, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 11339, + "id": 11641, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 11350, + "target": 11652, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 11340, + "id": 11642, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 11341, + "id": 11643, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 11342, + "id": 11644, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 11343, + "id": 11645, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 11344, + "id": 11646, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 11345, + "id": 11647, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 11346, + "id": 11648, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 11347, + "id": 11649, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 11348, + "id": 11650, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 11349, + "id": 11651, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 11339, - 11340, - 11341, - 11342, - 11343, - 11347, - 11348, - 11349 + 11641, + 11642, + 11643, + 11644, + 11645, + 11649, + 11650, + 11651 ] } ], "typeParameters": [ { - "id": 11350, + "id": 11652, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 11399, + "id": 11701, "name": "MetadataType", "variant": "declaration", "kind": 2097152, @@ -394,7 +394,7 @@ } }, { - "id": 11400, + "id": 11702, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -409,7 +409,7 @@ }, "children": [ { - "id": 11401, + "id": 11703, "name": "$and", "variant": "declaration", "kind": 1024, @@ -431,11 +431,11 @@ "types": [ { "type": "reference", - "target": 11400, + "target": 11702, "typeArguments": [ { "type": "reference", - "target": 11403, + "target": 11705, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -447,7 +447,7 @@ }, { "type": "reference", - "target": 11403, + "target": 11705, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -458,7 +458,7 @@ } }, { - "id": 11402, + "id": 11704, "name": "$or", "variant": "declaration", "kind": 1024, @@ -480,11 +480,11 @@ "types": [ { "type": "reference", - "target": 11400, + "target": 11702, "typeArguments": [ { "type": "reference", - "target": 11403, + "target": 11705, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -496,7 +496,7 @@ }, { "type": "reference", - "target": 11403, + "target": 11705, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -511,14 +511,14 @@ { "title": "Properties", "children": [ - 11401, - 11402 + 11703, + 11704 ] } ], "typeParameters": [ { - "id": 11403, + "id": 11705, "name": "T", "variant": "typeParam", "kind": 131072, @@ -528,13 +528,13 @@ "extendedBy": [ { "type": "reference", - "target": 11325, + "target": 11627, "name": "FilterableSalesChannelProps" } ] }, { - "id": 11351, + "id": 11653, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -549,7 +549,7 @@ }, "children": [ { - "id": 11352, + "id": 11654, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -568,7 +568,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11353, + "target": 11655, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -580,13 +580,13 @@ { "title": "Properties", "children": [ - 11352 + 11654 ] } ], "typeParameters": [ { - "id": 11353, + "id": 11655, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -599,7 +599,7 @@ ] }, { - "id": 11354, + "id": 11656, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -614,7 +614,7 @@ }, "children": [ { - "id": 11355, + "id": 11657, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -633,7 +633,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11356, + "target": 11658, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -645,13 +645,13 @@ { "title": "Properties", "children": [ - 11355 + 11657 ] } ], "typeParameters": [ { - "id": 11356, + "id": 11658, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -664,7 +664,7 @@ ] }, { - "id": 11465, + "id": 11767, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -694,14 +694,14 @@ { "type": "reflection", "declaration": { - "id": 11466, + "id": 11768, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11467, + "id": 11769, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -718,7 +718,7 @@ { "title": "Properties", "children": [ - 11467 + 11769 ] } ] @@ -728,14 +728,14 @@ } }, { - "id": 11459, + "id": 11761, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11464, + "id": 11766, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -749,14 +749,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11460, + "id": 11762, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11461, + "id": 11763, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -767,7 +767,7 @@ } }, { - "id": 11462, + "id": 11764, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -776,20 +776,20 @@ }, "type": { "type": "reference", - "target": 11465, + "target": 11767, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 11463, + "id": 11765, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 11464, + "target": 11766, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -800,9 +800,9 @@ { "title": "Properties", "children": [ - 11461, - 11462, - 11463 + 11763, + 11764, + 11765 ] } ] @@ -810,14 +810,14 @@ } }, { - "id": 11427, + "id": 11729, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11430, + "id": 11732, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -833,11 +833,11 @@ "types": [ { "type": "reference", - "target": 11459, + "target": 11761, "typeArguments": [ { "type": "reference", - "target": 11430, + "target": 11732, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -849,14 +849,14 @@ { "type": "reflection", "declaration": { - "id": 11428, + "id": 11730, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11429, + "id": 11731, "name": "options", "variant": "declaration", "kind": 1024, @@ -888,7 +888,7 @@ { "title": "Properties", "children": [ - 11429 + 11731 ] } ] @@ -898,14 +898,14 @@ } }, { - "id": 11437, + "id": 11739, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11446, + "id": 11748, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -919,14 +919,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11438, + "id": 11740, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11439, + "id": 11741, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -937,21 +937,21 @@ } }, { - "id": 11440, + "id": 11742, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 11446, + "target": 11748, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 11441, + "id": 11743, "name": "source", "variant": "declaration", "kind": 1024, @@ -962,7 +962,7 @@ } }, { - "id": 11442, + "id": 11744, "name": "object", "variant": "declaration", "kind": 1024, @@ -973,7 +973,7 @@ } }, { - "id": 11443, + "id": 11745, "name": "action", "variant": "declaration", "kind": 1024, @@ -986,7 +986,7 @@ } }, { - "id": 11444, + "id": 11746, "name": "context", "variant": "declaration", "kind": 1024, @@ -1002,7 +1002,7 @@ "typeArguments": [ { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" }, @@ -1016,7 +1016,7 @@ } }, { - "id": 11445, + "id": 11747, "name": "options", "variant": "declaration", "kind": 1024, @@ -1048,13 +1048,13 @@ { "title": "Properties", "children": [ - 11439, - 11440, - 11441, - 11442, - 11443, - 11444, - 11445 + 11741, + 11742, + 11743, + 11744, + 11745, + 11746, + 11747 ] } ] @@ -1062,7 +1062,7 @@ } }, { - "id": 11450, + "id": 11752, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -1070,14 +1070,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11451, + "id": 11753, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11452, + "id": 11754, "name": "alias", "variant": "declaration", "kind": 1024, @@ -1088,7 +1088,7 @@ } }, { - "id": 11453, + "id": 11755, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -1099,7 +1099,7 @@ } }, { - "id": 11454, + "id": 11756, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -1110,7 +1110,7 @@ } }, { - "id": 11455, + "id": 11757, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -1121,7 +1121,7 @@ } }, { - "id": 11456, + "id": 11758, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -1142,7 +1142,7 @@ } }, { - "id": 11457, + "id": 11759, "name": "isList", "variant": "declaration", "kind": 1024, @@ -1163,7 +1163,7 @@ } }, { - "id": 11458, + "id": 11760, "name": "args", "variant": "declaration", "kind": 1024, @@ -1203,13 +1203,13 @@ { "title": "Properties", "children": [ - 11452, - 11453, - 11454, - 11455, - 11456, - 11457, - 11458 + 11754, + 11755, + 11756, + 11757, + 11758, + 11759, + 11760 ] } ] @@ -1217,14 +1217,14 @@ } }, { - "id": 11447, + "id": 11749, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 11448, + "id": 11750, "name": "name", "variant": "declaration", "kind": 1024, @@ -1247,7 +1247,7 @@ } }, { - "id": 11449, + "id": 11751, "name": "args", "variant": "declaration", "kind": 1024, @@ -1287,21 +1287,21 @@ { "title": "Properties", "children": [ - 11448, - 11449 + 11750, + 11751 ] } ] }, { - "id": 11404, + "id": 11706, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 11405, + "id": 11707, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -1312,7 +1312,7 @@ } }, { - "id": 11406, + "id": 11708, "name": "alias", "variant": "declaration", "kind": 1024, @@ -1332,7 +1332,7 @@ "types": [ { "type": "reference", - "target": 11447, + "target": 11749, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -1340,7 +1340,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11447, + "target": 11749, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -1349,7 +1349,7 @@ } }, { - "id": 11407, + "id": 11709, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -1385,14 +1385,14 @@ { "type": "reflection", "declaration": { - "id": 11408, + "id": 11710, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11409, + "id": 11711, "name": "path", "variant": "declaration", "kind": 1024, @@ -1403,7 +1403,7 @@ } }, { - "id": 11410, + "id": 11712, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -1421,8 +1421,8 @@ { "title": "Properties", "children": [ - 11409, - 11410 + 11711, + 11712 ] } ] @@ -1436,7 +1436,7 @@ } }, { - "id": 11411, + "id": 11713, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -1450,7 +1450,7 @@ } }, { - "id": 11412, + "id": 11714, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -1461,14 +1461,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11450, + "target": 11752, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 11413, + "id": 11715, "name": "extends", "variant": "declaration", "kind": 1024, @@ -1480,14 +1480,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 11414, + "id": 11716, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11415, + "id": 11717, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -1498,14 +1498,14 @@ } }, { - "id": 11416, + "id": 11718, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 11450, + "target": 11752, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -1515,8 +1515,8 @@ { "title": "Properties", "children": [ - 11415, - 11416 + 11717, + 11718 ] } ] @@ -1525,7 +1525,7 @@ } }, { - "id": 11417, + "id": 11719, "name": "args", "variant": "declaration", "kind": 1024, @@ -1565,19 +1565,19 @@ { "title": "Properties", "children": [ - 11405, - 11406, - 11407, - 11411, - 11412, - 11413, - 11417 + 11707, + 11708, + 11709, + 11713, + 11714, + 11715, + 11719 ] } ] }, { - "id": 11421, + "id": 11723, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -1596,14 +1596,14 @@ { "type": "reflection", "declaration": { - "id": 11422, + "id": 11724, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11423, + "id": 11725, "name": "type", "variant": "declaration", "kind": 1024, @@ -1699,7 +1699,7 @@ } }, { - "id": 11424, + "id": 11726, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -1712,7 +1712,7 @@ } }, { - "id": 11425, + "id": 11727, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -1725,7 +1725,7 @@ } }, { - "id": 11426, + "id": 11728, "name": "options", "variant": "declaration", "kind": 1024, @@ -1765,10 +1765,10 @@ { "title": "Properties", "children": [ - 11423, - 11424, - 11425, - 11426 + 11725, + 11726, + 11727, + 11728 ] } ] @@ -1780,7 +1780,7 @@ } }, { - "id": 11357, + "id": 11659, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -1797,7 +1797,7 @@ "typeArguments": [ { "type": "reference", - "target": 11404, + "target": 11706, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -1829,14 +1829,14 @@ { "type": "reflection", "declaration": { - "id": 11358, + "id": 11660, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11359, + "id": 11661, "name": "schema", "variant": "declaration", "kind": 1024, @@ -1857,7 +1857,7 @@ } }, { - "id": 11360, + "id": 11662, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -1868,14 +1868,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11418, + "target": 11720, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 11361, + "id": 11663, "name": "extends", "variant": "declaration", "kind": 1024, @@ -1887,14 +1887,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 11362, + "id": 11664, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11363, + "id": 11665, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -1905,7 +1905,7 @@ } }, { - "id": 11364, + "id": 11666, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -1933,14 +1933,14 @@ { "type": "reflection", "declaration": { - "id": 11365, + "id": 11667, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11366, + "id": 11668, "name": "path", "variant": "declaration", "kind": 1024, @@ -1951,7 +1951,7 @@ } }, { - "id": 11367, + "id": 11669, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -1967,7 +1967,7 @@ } }, { - "id": 11368, + "id": 11670, "name": "isList", "variant": "declaration", "kind": 1024, @@ -1984,9 +1984,9 @@ { "title": "Properties", "children": [ - 11366, - 11367, - 11368 + 11668, + 11669, + 11670 ] } ] @@ -2000,14 +2000,14 @@ } }, { - "id": 11369, + "id": 11671, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 11418, + "target": 11720, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -2017,9 +2017,9 @@ { "title": "Properties", "children": [ - 11363, - 11364, - 11369 + 11665, + 11666, + 11671 ] } ] @@ -2028,7 +2028,7 @@ } }, { - "id": 11370, + "id": 11672, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2041,7 +2041,7 @@ } }, { - "id": 11371, + "id": 11673, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -2057,7 +2057,7 @@ } }, { - "id": 11372, + "id": 11674, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -2078,7 +2078,7 @@ } }, { - "id": 11373, + "id": 11675, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -2114,7 +2114,7 @@ } }, { - "id": 11374, + "id": 11676, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -2135,7 +2135,7 @@ } }, { - "id": 11375, + "id": 11677, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -2159,7 +2159,7 @@ } }, { - "id": 11376, + "id": 11678, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -2169,14 +2169,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11377, + "id": 11679, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11378, + "id": 11680, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -2197,7 +2197,7 @@ } }, { - "id": 11379, + "id": 11681, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -2218,7 +2218,7 @@ } }, { - "id": 11380, + "id": 11682, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -2227,7 +2227,7 @@ }, "type": { "type": "reference", - "target": 11421, + "target": 11723, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -2237,9 +2237,9 @@ { "title": "Properties", "children": [ - 11378, - 11379, - 11380 + 11680, + 11681, + 11682 ] } ] @@ -2251,16 +2251,16 @@ { "title": "Properties", "children": [ - 11359, - 11360, - 11361, - 11370, - 11371, - 11372, - 11373, - 11374, - 11375, - 11376 + 11661, + 11662, + 11663, + 11672, + 11673, + 11674, + 11675, + 11676, + 11677, + 11678 ] } ] @@ -2270,7 +2270,7 @@ } }, { - "id": 11418, + "id": 11720, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -2280,21 +2280,21 @@ "types": [ { "type": "reference", - "target": 11450, + "target": 11752, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 11419, + "id": 11721, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11420, + "id": 11722, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -2319,7 +2319,7 @@ { "title": "Properties", "children": [ - 11420 + 11722 ] } ] @@ -2329,7 +2329,7 @@ } }, { - "id": 11283, + "id": 11585, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -2337,13 +2337,13 @@ "extendedBy": [ { "type": "reference", - "target": 11212, + "target": 11514, "name": "ISalesChannelModuleService" } ] }, { - "id": 11395, + "id": 11697, "name": "SalesChannelLocationDTO", "variant": "declaration", "kind": 256, @@ -2358,7 +2358,7 @@ }, "children": [ { - "id": 11396, + "id": 11698, "name": "sales_channel_id", "variant": "declaration", "kind": 1024, @@ -2377,7 +2377,7 @@ } }, { - "id": 11397, + "id": 11699, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -2396,7 +2396,7 @@ } }, { - "id": 11398, + "id": 11700, "name": "sales_channel", "variant": "declaration", "kind": 1024, @@ -2411,7 +2411,7 @@ }, "type": { "type": "reference", - "target": 11313, + "target": 11615, "name": "SalesChannelDTO", "package": "@medusajs/types" } @@ -2421,15 +2421,15 @@ { "title": "Properties", "children": [ - 11396, - 11397, - 11398 + 11698, + 11699, + 11700 ] } ] }, { - "id": 11313, + "id": 11615, "name": "SalesChannelDTO", "variant": "declaration", "kind": 256, @@ -2444,7 +2444,7 @@ }, "children": [ { - "id": 11314, + "id": 11616, "name": "id", "variant": "declaration", "kind": 1024, @@ -2463,7 +2463,7 @@ } }, { - "id": 11315, + "id": 11617, "name": "name", "variant": "declaration", "kind": 1024, @@ -2482,7 +2482,7 @@ } }, { - "id": 11316, + "id": 11618, "name": "description", "variant": "declaration", "kind": 1024, @@ -2510,7 +2510,7 @@ } }, { - "id": 11317, + "id": 11619, "name": "is_disabled", "variant": "declaration", "kind": 1024, @@ -2529,7 +2529,7 @@ } }, { - "id": 11318, + "id": 11620, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2572,7 +2572,7 @@ } }, { - "id": 11319, + "id": 11621, "name": "locations", "variant": "declaration", "kind": 1024, @@ -2591,7 +2591,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11395, + "target": 11697, "name": "SalesChannelLocationDTO", "package": "@medusajs/types" } @@ -2602,18 +2602,18 @@ { "title": "Properties", "children": [ - 11314, - 11315, - 11316, - 11317, - 11318, - 11319 + 11616, + 11617, + 11618, + 11619, + 11620, + 11621 ] } ] }, { - "id": 11325, + "id": 11627, "name": "FilterableSalesChannelProps", "variant": "declaration", "kind": 256, @@ -2628,7 +2628,7 @@ }, "children": [ { - "id": 11330, + "id": 11632, "name": "$and", "variant": "declaration", "kind": 1024, @@ -2651,17 +2651,17 @@ "types": [ { "type": "reference", - "target": 11325, + "target": 11627, "name": "FilterableSalesChannelProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 11400, + "target": 11702, "typeArguments": [ { "type": "reference", - "target": 11325, + "target": 11627, "name": "FilterableSalesChannelProps", "package": "@medusajs/types" } @@ -2674,12 +2674,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 11401, + "target": 11703, "name": "BaseFilterable.$and" } }, { - "id": 11331, + "id": 11633, "name": "$or", "variant": "declaration", "kind": 1024, @@ -2702,17 +2702,17 @@ "types": [ { "type": "reference", - "target": 11325, + "target": 11627, "name": "FilterableSalesChannelProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 11400, + "target": 11702, "typeArguments": [ { "type": "reference", - "target": 11325, + "target": 11627, "name": "FilterableSalesChannelProps", "package": "@medusajs/types" } @@ -2725,12 +2725,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 11402, + "target": 11704, "name": "BaseFilterable.$or" } }, { - "id": 11326, + "id": 11628, "name": "q", "variant": "declaration", "kind": 1024, @@ -2751,7 +2751,7 @@ } }, { - "id": 11327, + "id": 11629, "name": "id", "variant": "declaration", "kind": 1024, @@ -2784,7 +2784,7 @@ } }, { - "id": 11328, + "id": 11630, "name": "name", "variant": "declaration", "kind": 1024, @@ -2817,7 +2817,7 @@ } }, { - "id": 11329, + "id": 11631, "name": "is_disabled", "variant": "declaration", "kind": 1024, @@ -2842,23 +2842,23 @@ { "title": "Properties", "children": [ - 11330, - 11331, - 11326, - 11327, - 11328, - 11329 + 11632, + 11633, + 11628, + 11629, + 11630, + 11631 ] } ], "extendedTypes": [ { "type": "reference", - "target": 11400, + "target": 11702, "typeArguments": [ { "type": "reference", - "target": 11325, + "target": 11627, "name": "FilterableSalesChannelProps", "package": "@medusajs/types" } @@ -2869,7 +2869,7 @@ ] }, { - "id": 11297, + "id": 11599, "name": "CreateSalesChannelDTO", "variant": "declaration", "kind": 256, @@ -2884,7 +2884,7 @@ }, "children": [ { - "id": 11298, + "id": 11600, "name": "name", "variant": "declaration", "kind": 1024, @@ -2903,7 +2903,7 @@ } }, { - "id": 11299, + "id": 11601, "name": "description", "variant": "declaration", "kind": 1024, @@ -2933,7 +2933,7 @@ } }, { - "id": 11300, + "id": 11602, "name": "is_disabled", "variant": "declaration", "kind": 1024, @@ -2958,15 +2958,15 @@ { "title": "Properties", "children": [ - 11298, - 11299, - 11300 + 11600, + 11601, + 11602 ] } ] }, { - "id": 11320, + "id": 11622, "name": "UpdateSalesChannelDTO", "variant": "declaration", "kind": 256, @@ -2981,7 +2981,7 @@ }, "children": [ { - "id": 11321, + "id": 11623, "name": "name", "variant": "declaration", "kind": 1024, @@ -3002,7 +3002,7 @@ } }, { - "id": 11322, + "id": 11624, "name": "description", "variant": "declaration", "kind": 1024, @@ -3032,7 +3032,7 @@ } }, { - "id": 11323, + "id": 11625, "name": "is_disabled", "variant": "declaration", "kind": 1024, @@ -3053,7 +3053,7 @@ } }, { - "id": 11324, + "id": 11626, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3070,7 +3070,7 @@ }, "type": { "type": "reference", - "target": 11399, + "target": 11701, "name": "MetadataType", "package": "@medusajs/types" } @@ -3080,16 +3080,16 @@ { "title": "Properties", "children": [ - 11321, - 11322, - 11323, - 11324 + 11623, + 11624, + 11625, + 11626 ] } ] }, { - "id": 11332, + "id": 11634, "name": "UpsertSalesChannelDTO", "variant": "declaration", "kind": 256, @@ -3104,7 +3104,7 @@ }, "children": [ { - "id": 11333, + "id": 11635, "name": "id", "variant": "declaration", "kind": 1024, @@ -3125,7 +3125,7 @@ } }, { - "id": 11334, + "id": 11636, "name": "name", "variant": "declaration", "kind": 1024, @@ -3146,7 +3146,7 @@ } }, { - "id": 11335, + "id": 11637, "name": "description", "variant": "declaration", "kind": 1024, @@ -3176,7 +3176,7 @@ } }, { - "id": 11336, + "id": 11638, "name": "is_disabled", "variant": "declaration", "kind": 1024, @@ -3197,7 +3197,7 @@ } }, { - "id": 11337, + "id": 11639, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3214,7 +3214,7 @@ }, "type": { "type": "reference", - "target": 11399, + "target": 11701, "name": "MetadataType", "package": "@medusajs/types" } @@ -3224,17 +3224,17 @@ { "title": "Properties", "children": [ - 11333, - 11334, - 11335, - 11336, - 11337 + 11635, + 11636, + 11637, + 11638, + 11639 ] } ] }, { - "id": 11212, + "id": 11514, "name": "ISalesChannelModuleService", "variant": "declaration", "kind": 256, @@ -3249,14 +3249,14 @@ }, "children": [ { - "id": 11213, + "id": 11515, "name": "createSalesChannels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11214, + "id": 11516, "name": "createSalesChannels", "variant": "signature", "kind": 4096, @@ -3291,7 +3291,7 @@ }, "parameters": [ { - "id": 11215, + "id": 11517, "name": "data", "variant": "param", "kind": 32768, @@ -3308,14 +3308,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11297, + "target": 11599, "name": "CreateSalesChannelDTO", "package": "@medusajs/types" } } }, { - "id": 11216, + "id": 11518, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -3332,7 +3332,7 @@ }, "type": { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" } @@ -3349,7 +3349,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11313, + "target": 11615, "name": "SalesChannelDTO", "package": "@medusajs/types" } @@ -3360,7 +3360,7 @@ } }, { - "id": 11217, + "id": 11519, "name": "createSalesChannels", "variant": "signature", "kind": 4096, @@ -3395,7 +3395,7 @@ }, "parameters": [ { - "id": 11218, + "id": 11520, "name": "data", "variant": "param", "kind": 32768, @@ -3410,13 +3410,13 @@ }, "type": { "type": "reference", - "target": 11297, + "target": 11599, "name": "CreateSalesChannelDTO", "package": "@medusajs/types" } }, { - "id": 11219, + "id": 11521, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -3433,7 +3433,7 @@ }, "type": { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" } @@ -3448,7 +3448,7 @@ "typeArguments": [ { "type": "reference", - "target": 11313, + "target": 11615, "name": "SalesChannelDTO", "package": "@medusajs/types" } @@ -3460,14 +3460,14 @@ ] }, { - "id": 11220, + "id": 11522, "name": "updateSalesChannels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11221, + "id": 11523, "name": "updateSalesChannels", "variant": "signature", "kind": 4096, @@ -3502,7 +3502,7 @@ }, "parameters": [ { - "id": 11222, + "id": 11524, "name": "channelId", "variant": "param", "kind": 32768, @@ -3521,7 +3521,7 @@ } }, { - "id": 11223, + "id": 11525, "name": "data", "variant": "param", "kind": 32768, @@ -3536,13 +3536,13 @@ }, "type": { "type": "reference", - "target": 11320, + "target": 11622, "name": "UpdateSalesChannelDTO", "package": "@medusajs/types" } }, { - "id": 11224, + "id": 11526, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -3559,7 +3559,7 @@ }, "type": { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" } @@ -3574,7 +3574,7 @@ "typeArguments": [ { "type": "reference", - "target": 11313, + "target": 11615, "name": "SalesChannelDTO", "package": "@medusajs/types" } @@ -3584,7 +3584,7 @@ } }, { - "id": 11225, + "id": 11527, "name": "updateSalesChannels", "variant": "signature", "kind": 4096, @@ -3619,7 +3619,7 @@ }, "parameters": [ { - "id": 11226, + "id": 11528, "name": "selector", "variant": "param", "kind": 32768, @@ -3634,13 +3634,13 @@ }, "type": { "type": "reference", - "target": 11325, + "target": 11627, "name": "FilterableSalesChannelProps", "package": "@medusajs/types" } }, { - "id": 11227, + "id": 11529, "name": "data", "variant": "param", "kind": 32768, @@ -3655,13 +3655,13 @@ }, "type": { "type": "reference", - "target": 11320, + "target": 11622, "name": "UpdateSalesChannelDTO", "package": "@medusajs/types" } }, { - "id": 11228, + "id": 11530, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -3678,7 +3678,7 @@ }, "type": { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" } @@ -3695,7 +3695,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11313, + "target": 11615, "name": "SalesChannelDTO", "package": "@medusajs/types" } @@ -3708,14 +3708,14 @@ ] }, { - "id": 11229, + "id": 11531, "name": "upsertSalesChannels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11230, + "id": 11532, "name": "upsertSalesChannels", "variant": "signature", "kind": 4096, @@ -3750,7 +3750,7 @@ }, "parameters": [ { - "id": 11231, + "id": 11533, "name": "data", "variant": "param", "kind": 32768, @@ -3765,13 +3765,13 @@ }, "type": { "type": "reference", - "target": 11332, + "target": 11634, "name": "UpsertSalesChannelDTO", "package": "@medusajs/types" } }, { - "id": 11232, + "id": 11534, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -3788,7 +3788,7 @@ }, "type": { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" } @@ -3803,7 +3803,7 @@ "typeArguments": [ { "type": "reference", - "target": 11313, + "target": 11615, "name": "SalesChannelDTO", "package": "@medusajs/types" } @@ -3813,7 +3813,7 @@ } }, { - "id": 11233, + "id": 11535, "name": "upsertSalesChannels", "variant": "signature", "kind": 4096, @@ -3848,7 +3848,7 @@ }, "parameters": [ { - "id": 11234, + "id": 11536, "name": "data", "variant": "param", "kind": 32768, @@ -3865,14 +3865,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11332, + "target": 11634, "name": "UpsertSalesChannelDTO", "package": "@medusajs/types" } } }, { - "id": 11235, + "id": 11537, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -3889,7 +3889,7 @@ }, "type": { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" } @@ -3906,7 +3906,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11313, + "target": 11615, "name": "SalesChannelDTO", "package": "@medusajs/types" } @@ -3919,14 +3919,14 @@ ] }, { - "id": 11236, + "id": 11538, "name": "deleteSalesChannels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11237, + "id": 11539, "name": "deleteSalesChannels", "variant": "signature", "kind": 4096, @@ -3961,7 +3961,7 @@ }, "parameters": [ { - "id": 11238, + "id": 11540, "name": "ids", "variant": "param", "kind": 32768, @@ -3983,7 +3983,7 @@ } }, { - "id": 11239, + "id": 11541, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4000,7 +4000,7 @@ }, "type": { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" } @@ -4023,7 +4023,7 @@ } }, { - "id": 11240, + "id": 11542, "name": "deleteSalesChannels", "variant": "signature", "kind": 4096, @@ -4058,7 +4058,7 @@ }, "parameters": [ { - "id": 11241, + "id": 11543, "name": "id", "variant": "param", "kind": 32768, @@ -4077,7 +4077,7 @@ } }, { - "id": 11242, + "id": 11544, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4094,7 +4094,7 @@ }, "type": { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" } @@ -4119,14 +4119,14 @@ ] }, { - "id": 11243, + "id": 11545, "name": "retrieveSalesChannel", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11244, + "id": 11546, "name": "retrieveSalesChannel", "variant": "signature", "kind": 4096, @@ -4161,7 +4161,7 @@ }, "parameters": [ { - "id": 11245, + "id": 11547, "name": "id", "variant": "param", "kind": 32768, @@ -4180,7 +4180,7 @@ } }, { - "id": 11246, + "id": 11548, "name": "config", "variant": "param", "kind": 32768, @@ -4213,11 +4213,11 @@ }, "type": { "type": "reference", - "target": 11338, + "target": 11640, "typeArguments": [ { "type": "reference", - "target": 11313, + "target": 11615, "name": "SalesChannelDTO", "package": "@medusajs/types" } @@ -4227,7 +4227,7 @@ } }, { - "id": 11247, + "id": 11549, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4244,7 +4244,7 @@ }, "type": { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" } @@ -4259,7 +4259,7 @@ "typeArguments": [ { "type": "reference", - "target": 11313, + "target": 11615, "name": "SalesChannelDTO", "package": "@medusajs/types" } @@ -4271,14 +4271,14 @@ ] }, { - "id": 11248, + "id": 11550, "name": "listSalesChannels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11249, + "id": 11551, "name": "listSalesChannels", "variant": "signature", "kind": 4096, @@ -4357,7 +4357,7 @@ }, "parameters": [ { - "id": 11250, + "id": 11552, "name": "filters", "variant": "param", "kind": 32768, @@ -4374,13 +4374,13 @@ }, "type": { "type": "reference", - "target": 11325, + "target": 11627, "name": "FilterableSalesChannelProps", "package": "@medusajs/types" } }, { - "id": 11251, + "id": 11553, "name": "config", "variant": "param", "kind": 32768, @@ -4413,11 +4413,11 @@ }, "type": { "type": "reference", - "target": 11338, + "target": 11640, "typeArguments": [ { "type": "reference", - "target": 11313, + "target": 11615, "name": "SalesChannelDTO", "package": "@medusajs/types" } @@ -4427,7 +4427,7 @@ } }, { - "id": 11252, + "id": 11554, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4444,7 +4444,7 @@ }, "type": { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" } @@ -4461,7 +4461,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11313, + "target": 11615, "name": "SalesChannelDTO", "package": "@medusajs/types" } @@ -4474,14 +4474,14 @@ ] }, { - "id": 11253, + "id": 11555, "name": "listAndCountSalesChannels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11254, + "id": 11556, "name": "listAndCountSalesChannels", "variant": "signature", "kind": 4096, @@ -4560,7 +4560,7 @@ }, "parameters": [ { - "id": 11255, + "id": 11557, "name": "filters", "variant": "param", "kind": 32768, @@ -4577,13 +4577,13 @@ }, "type": { "type": "reference", - "target": 11325, + "target": 11627, "name": "FilterableSalesChannelProps", "package": "@medusajs/types" } }, { - "id": 11256, + "id": 11558, "name": "config", "variant": "param", "kind": 32768, @@ -4616,11 +4616,11 @@ }, "type": { "type": "reference", - "target": 11338, + "target": 11640, "typeArguments": [ { "type": "reference", - "target": 11313, + "target": 11615, "name": "SalesChannelDTO", "package": "@medusajs/types" } @@ -4630,7 +4630,7 @@ } }, { - "id": 11257, + "id": 11559, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4647,7 +4647,7 @@ }, "type": { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" } @@ -4667,7 +4667,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11313, + "target": 11615, "name": "SalesChannelDTO", "package": "@medusajs/types" } @@ -4686,14 +4686,14 @@ ] }, { - "id": 11258, + "id": 11560, "name": "softDeleteSalesChannels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11259, + "id": 11561, "name": "softDeleteSalesChannels", "variant": "signature", "kind": 4096, @@ -4736,7 +4736,7 @@ }, "typeParameters": [ { - "id": 11260, + "id": 11562, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -4753,7 +4753,7 @@ ], "parameters": [ { - "id": 11261, + "id": 11563, "name": "salesChannelIds", "variant": "param", "kind": 32768, @@ -4775,7 +4775,7 @@ } }, { - "id": 11262, + "id": 11564, "name": "config", "variant": "param", "kind": 32768, @@ -4792,11 +4792,11 @@ }, "type": { "type": "reference", - "target": 11351, + "target": 11653, "typeArguments": [ { "type": "reference", - "target": 11260, + "target": 11562, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -4807,7 +4807,7 @@ } }, { - "id": 11263, + "id": 11565, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4824,7 +4824,7 @@ }, "type": { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" } @@ -4876,14 +4876,14 @@ ] }, { - "id": 11264, + "id": 11566, "name": "restoreSalesChannels", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11265, + "id": 11567, "name": "restoreSalesChannels", "variant": "signature", "kind": 4096, @@ -4926,7 +4926,7 @@ }, "typeParameters": [ { - "id": 11266, + "id": 11568, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -4943,7 +4943,7 @@ ], "parameters": [ { - "id": 11267, + "id": 11569, "name": "salesChannelIds", "variant": "param", "kind": 32768, @@ -4965,7 +4965,7 @@ } }, { - "id": 11268, + "id": 11570, "name": "config", "variant": "param", "kind": 32768, @@ -4990,11 +4990,11 @@ }, "type": { "type": "reference", - "target": 11354, + "target": 11656, "typeArguments": [ { "type": "reference", - "target": 11266, + "target": 11568, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -5005,7 +5005,7 @@ } }, { - "id": 11269, + "id": 11571, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5022,7 +5022,7 @@ }, "type": { "type": "reference", - "target": 11301, + "target": 11603, "name": "Context", "package": "@medusajs/types" } @@ -5078,36 +5078,36 @@ { "title": "Methods", "children": [ - 11213, - 11220, - 11229, - 11236, - 11243, - 11248, - 11253, - 11258, - 11264 + 11515, + 11522, + 11531, + 11538, + 11545, + 11550, + 11555, + 11560, + 11566 ] } ], "extendedTypes": [ { "type": "reference", - "target": 11283, + "target": 11585, "name": "IModuleService", "package": "@medusajs/types" } ] }, { - "id": 11431, + "id": 11733, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 11432, + "id": 11734, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -5123,7 +5123,7 @@ } }, { - "id": 11433, + "id": 11735, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -5133,21 +5133,21 @@ "type": { "type": "reflection", "declaration": { - "id": 11434, + "id": 11736, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 11435, + "id": 11737, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 11436, + "id": 11738, "name": "key", "variant": "param", "kind": 32768, @@ -5188,35 +5188,35 @@ { "title": "Properties", "children": [ - 11432, - 11433 + 11734, + 11735 ] } ] }, { - "id": 11381, + "id": 11683, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 11382, + "id": 11684, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11383, + "id": 11685, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 11384, + "id": 11686, "name": "msg", "variant": "param", "kind": 32768, @@ -5226,7 +5226,7 @@ "types": [ { "type": "reference", - "target": 11427, + "target": 11729, "name": "Message", "package": "@medusajs/types" }, @@ -5234,7 +5234,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11427, + "target": 11729, "name": "Message", "package": "@medusajs/types" } @@ -5251,21 +5251,21 @@ ] }, { - "id": 11385, + "id": 11687, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11386, + "id": 11688, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 11387, + "id": 11689, "name": "format", "variant": "param", "kind": 32768, @@ -5274,7 +5274,7 @@ }, "type": { "type": "reference", - "target": 11431, + "target": 11733, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -5295,7 +5295,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11427, + "target": 11729, "name": "Message", "package": "@medusajs/types" } @@ -5308,14 +5308,14 @@ ] }, { - "id": 11388, + "id": 11690, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11389, + "id": 11691, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -5328,21 +5328,21 @@ ] }, { - "id": 11390, + "id": 11692, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11391, + "id": 11693, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 11392, + "id": 11694, "name": "T", "variant": "typeParam", "kind": 131072, @@ -5351,7 +5351,7 @@ ], "parameters": [ { - "id": 11393, + "id": 11695, "name": "messageData", "variant": "param", "kind": 32768, @@ -5361,11 +5361,11 @@ "types": [ { "type": "reference", - "target": 11437, + "target": 11739, "typeArguments": [ { "type": "reference", - "target": 11392, + "target": 11694, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -5378,11 +5378,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 11437, + "target": 11739, "typeArguments": [ { "type": "reference", - "target": 11392, + "target": 11694, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -5396,7 +5396,7 @@ } }, { - "id": 11394, + "id": 11696, "name": "options", "variant": "param", "kind": 32768, @@ -5436,16 +5436,16 @@ { "title": "Methods", "children": [ - 11382, - 11385, - 11388, - 11390 + 11684, + 11687, + 11690, + 11692 ] } ] }, { - "id": 11301, + "id": 11603, "name": "Context", "variant": "declaration", "kind": 256, @@ -5460,7 +5460,7 @@ }, "children": [ { - "id": 11302, + "id": 11604, "name": "__type", "variant": "declaration", "kind": 1024, @@ -5473,7 +5473,7 @@ } }, { - "id": 11303, + "id": 11605, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -5506,14 +5506,14 @@ }, "type": { "type": "reference", - "target": 11312, + "target": 11614, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 11304, + "id": 11606, "name": "manager", "variant": "declaration", "kind": 1024, @@ -5546,14 +5546,14 @@ }, "type": { "type": "reference", - "target": 11312, + "target": 11614, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 11305, + "id": 11607, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -5606,7 +5606,7 @@ } }, { - "id": 11306, + "id": 11608, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -5627,7 +5627,7 @@ } }, { - "id": 11307, + "id": 11609, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -5648,7 +5648,7 @@ } }, { - "id": 11308, + "id": 11610, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -5669,7 +5669,7 @@ } }, { - "id": 11309, + "id": 11611, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -5686,13 +5686,13 @@ }, "type": { "type": "reference", - "target": 11381, + "target": 11683, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 11310, + "id": 11612, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -5713,7 +5713,7 @@ } }, { - "id": 11311, + "id": 11613, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -5738,22 +5738,22 @@ { "title": "Properties", "children": [ - 11302, - 11303, - 11304, - 11305, - 11306, - 11307, - 11308, - 11309, - 11310, - 11311 + 11604, + 11605, + 11606, + 11607, + 11608, + 11609, + 11610, + 11611, + 11612, + 11613 ] } ], "typeParameters": [ { - "id": 11312, + "id": 11614, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -5770,955 +5770,955 @@ { "title": "Interfaces", "children": [ - 11338, - 11400, - 11351, - 11354, - 11447, - 11404, - 11283, - 11395, - 11313, - 11325, - 11297, - 11320, - 11332, - 11212, - 11431, - 11381, - 11301 + 11640, + 11702, + 11653, + 11656, + 11749, + 11706, + 11585, + 11697, + 11615, + 11627, + 11599, + 11622, + 11634, + 11514, + 11733, + 11683, + 11603 ] }, { "title": "Type Aliases", "children": [ - 11399, - 11465, - 11459, - 11427, - 11437, - 11450, - 11421, - 11357, - 11418 + 11701, + 11767, + 11761, + 11729, + 11739, + 11752, + 11723, + 11659, + 11720 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "11211": { + "11513": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "" }, - "11212": { + "11514": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService" }, - "11213": { + "11515": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.createSalesChannels" }, - "11214": { + "11516": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.createSalesChannels" }, - "11215": { + "11517": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "data" }, - "11216": { + "11518": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "sharedContext" }, - "11217": { + "11519": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.createSalesChannels" }, - "11218": { + "11520": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "data" }, - "11219": { + "11521": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "sharedContext" }, - "11220": { + "11522": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.updateSalesChannels" }, - "11221": { + "11523": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.updateSalesChannels" }, - "11222": { + "11524": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "channelId" }, - "11223": { + "11525": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "data" }, - "11224": { + "11526": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "sharedContext" }, - "11225": { + "11527": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.updateSalesChannels" }, - "11226": { + "11528": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "selector" }, - "11227": { + "11529": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "data" }, - "11228": { + "11530": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "sharedContext" }, - "11229": { + "11531": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.upsertSalesChannels" }, - "11230": { + "11532": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.upsertSalesChannels" }, - "11231": { + "11533": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "data" }, - "11232": { + "11534": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "sharedContext" }, - "11233": { + "11535": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.upsertSalesChannels" }, - "11234": { + "11536": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "data" }, - "11235": { + "11537": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "sharedContext" }, - "11236": { + "11538": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.deleteSalesChannels" }, - "11237": { + "11539": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.deleteSalesChannels" }, - "11238": { + "11540": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ids" }, - "11239": { + "11541": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "sharedContext" }, - "11240": { + "11542": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.deleteSalesChannels" }, - "11241": { + "11543": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "id" }, - "11242": { + "11544": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "sharedContext" }, - "11243": { + "11545": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.retrieveSalesChannel" }, - "11244": { + "11546": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.retrieveSalesChannel" }, - "11245": { + "11547": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "id" }, - "11246": { + "11548": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "config" }, - "11247": { + "11549": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "sharedContext" }, - "11248": { + "11550": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.listSalesChannels" }, - "11249": { + "11551": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.listSalesChannels" }, - "11250": { + "11552": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "filters" }, - "11251": { + "11553": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "config" }, - "11252": { + "11554": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "sharedContext" }, - "11253": { + "11555": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.listAndCountSalesChannels" }, - "11254": { + "11556": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.listAndCountSalesChannels" }, - "11255": { + "11557": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "filters" }, - "11256": { + "11558": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "config" }, - "11257": { + "11559": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "sharedContext" }, - "11258": { + "11560": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.softDeleteSalesChannels" }, - "11259": { + "11561": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.softDeleteSalesChannels" }, - "11260": { + "11562": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "11261": { + "11563": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "salesChannelIds" }, - "11262": { + "11564": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "config" }, - "11263": { + "11565": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "sharedContext" }, - "11264": { + "11566": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.restoreSalesChannels" }, - "11265": { + "11567": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "ISalesChannelModuleService.restoreSalesChannels" }, - "11266": { + "11568": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "11267": { + "11569": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "salesChannelIds" }, - "11268": { + "11570": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "config" }, - "11269": { + "11571": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/service.ts", "qualifiedName": "sharedContext" }, - "11283": { + "11585": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "11297": { + "11599": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "CreateSalesChannelDTO" }, - "11298": { + "11600": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "CreateSalesChannelDTO.name" }, - "11299": { + "11601": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "CreateSalesChannelDTO.description" }, - "11300": { + "11602": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "CreateSalesChannelDTO.is_disabled" }, - "11301": { + "11603": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "11302": { + "11604": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "11303": { + "11605": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "11304": { + "11606": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "11305": { + "11607": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "11306": { + "11608": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "11307": { + "11609": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "11308": { + "11610": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "11309": { + "11611": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "11310": { + "11612": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "11311": { + "11613": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "11312": { + "11614": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "11313": { + "11615": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "SalesChannelDTO" }, - "11314": { + "11616": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "SalesChannelDTO.id" }, - "11315": { + "11617": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "SalesChannelDTO.name" }, - "11316": { + "11618": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "SalesChannelDTO.description" }, - "11317": { + "11619": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "SalesChannelDTO.is_disabled" }, - "11318": { + "11620": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "SalesChannelDTO.metadata" }, - "11319": { + "11621": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "SalesChannelDTO.locations" }, - "11320": { + "11622": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "UpdateSalesChannelDTO" }, - "11321": { + "11623": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "UpdateSalesChannelDTO.name" }, - "11322": { + "11624": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "UpdateSalesChannelDTO.description" }, - "11323": { + "11625": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "UpdateSalesChannelDTO.is_disabled" }, - "11324": { + "11626": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "UpdateSalesChannelDTO.metadata" }, - "11325": { + "11627": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "FilterableSalesChannelProps" }, - "11326": { + "11628": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "FilterableSalesChannelProps.q" }, - "11327": { + "11629": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "FilterableSalesChannelProps.id" }, - "11328": { + "11630": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "FilterableSalesChannelProps.name" }, - "11329": { + "11631": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "FilterableSalesChannelProps.is_disabled" }, - "11330": { + "11632": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "11331": { + "11633": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "11332": { + "11634": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "UpsertSalesChannelDTO" }, - "11333": { + "11635": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "UpsertSalesChannelDTO.id" }, - "11334": { + "11636": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "UpsertSalesChannelDTO.name" }, - "11335": { + "11637": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "UpsertSalesChannelDTO.description" }, - "11336": { + "11638": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "UpsertSalesChannelDTO.is_disabled" }, - "11337": { + "11639": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/mutations.ts", "qualifiedName": "UpsertSalesChannelDTO.metadata" }, - "11338": { + "11640": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "11339": { + "11641": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "11340": { + "11642": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "11341": { + "11643": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "11342": { + "11644": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "11343": { + "11645": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "11344": { + "11646": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "11345": { + "11647": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "11347": { + "11649": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "11348": { + "11650": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "11349": { + "11651": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "11350": { + "11652": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "11351": { + "11653": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "SoftDeleteReturn" }, - "11352": { + "11654": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "11353": { + "11655": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "11354": { + "11656": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RestoreReturn" }, - "11355": { + "11657": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "11356": { + "11658": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "11357": { + "11659": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "11358": { + "11660": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "11359": { + "11661": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "11360": { + "11662": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "11361": { + "11663": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "11362": { + "11664": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "11363": { + "11665": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "11364": { + "11666": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "11365": { + "11667": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "11366": { + "11668": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "11367": { + "11669": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "11368": { + "11670": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "11369": { + "11671": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "11370": { + "11672": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "11371": { + "11673": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "11372": { + "11674": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "11373": { + "11675": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "11374": { + "11676": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "11375": { + "11677": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "11376": { + "11678": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "11377": { + "11679": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "11378": { + "11680": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "11379": { + "11681": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "11380": { + "11682": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "11381": { + "11683": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "11382": { + "11684": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "11383": { + "11685": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "11384": { + "11686": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "11385": { + "11687": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "11386": { + "11688": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "11387": { + "11689": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "11388": { + "11690": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "11389": { + "11691": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "11390": { + "11692": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "11391": { + "11693": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "11392": { + "11694": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "11393": { + "11695": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "11394": { + "11696": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "11395": { + "11697": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "SalesChannelLocationDTO" }, - "11396": { + "11698": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "SalesChannelLocationDTO.sales_channel_id" }, - "11397": { + "11699": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "SalesChannelLocationDTO.location_id" }, - "11398": { + "11700": { "sourceFileName": "../../../../packages/core/types/src/sales-channel/common.ts", "qualifiedName": "SalesChannelLocationDTO.sales_channel" }, - "11399": { + "11701": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "MetadataType" }, - "11400": { + "11702": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "11401": { + "11703": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "11402": { + "11704": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "11403": { + "11705": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "11404": { + "11706": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "11405": { + "11707": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "11406": { + "11708": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "11407": { + "11709": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "11408": { + "11710": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "11409": { + "11711": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "11410": { + "11712": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "11411": { + "11713": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "11412": { + "11714": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "11413": { + "11715": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "11414": { + "11716": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "11415": { + "11717": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "11416": { + "11718": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "11417": { + "11719": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "11418": { + "11720": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "11419": { + "11721": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "11420": { + "11722": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "11421": { + "11723": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "11422": { + "11724": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "11423": { + "11725": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "11424": { + "11726": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "11425": { + "11727": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "11426": { + "11728": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "11427": { + "11729": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "11428": { + "11730": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "11429": { + "11731": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "11430": { + "11732": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "11431": { + "11733": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "11432": { + "11734": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "11433": { + "11735": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "11434": { + "11736": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "11435": { + "11737": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "11437": { + "11739": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "11438": { + "11740": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "11439": { + "11741": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "11440": { + "11742": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "11441": { + "11743": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "11442": { + "11744": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "11443": { + "11745": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "11444": { + "11746": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "11445": { + "11747": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "11446": { + "11748": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "11447": { + "11749": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "11448": { + "11750": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "11449": { + "11751": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "11450": { + "11752": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "11451": { + "11753": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "11452": { + "11754": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "11453": { + "11755": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "11454": { + "11756": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "11455": { + "11757": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "11456": { + "11758": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "11457": { + "11759": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "11458": { + "11760": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "11459": { + "11761": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "11460": { + "11762": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "11461": { + "11763": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "11462": { + "11764": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "11463": { + "11765": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "11464": { + "11766": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "11465": { + "11767": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "11466": { + "11768": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "11467": { + "11769": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" } @@ -6728,7 +6728,7 @@ "1": "../../../../packages/core/types/src/sales-channel/service.ts" }, "reflections": { - "1": 11211 + "1": 11513 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/stock-location-next-models.json b/www/utils/generated/typedoc-json-output/stock-location-next-models.json index ebe3621540bee..49311b45daf43 100644 --- a/www/utils/generated/typedoc-json-output/stock-location-next-models.json +++ b/www/utils/generated/typedoc-json-output/stock-location-next-models.json @@ -1,5 +1,5 @@ { - "id": 11968, + "id": 12270, "name": "stock-location-next-models", "variant": "project", "kind": 1, @@ -18,28 +18,28 @@ }, "children": [ { - "id": 11984, + "id": 12286, "name": "StockLocationAddress", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 11985, + "id": 12287, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 11986, + "id": 12288, "name": "new StockLocationAddress", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 11984, + "target": 12286, "name": "StockLocationAddress", "package": "@medusajs/stock-location-next" } @@ -47,7 +47,7 @@ ] }, { - "id": 11987, + "id": 12289, "name": "id", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ } }, { - "id": 11988, + "id": 12290, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -74,7 +74,7 @@ } }, { - "id": 11989, + "id": 12291, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -90,7 +90,7 @@ } }, { - "id": 11990, + "id": 12292, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -116,7 +116,7 @@ "defaultValue": "null" }, { - "id": 11991, + "id": 12293, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -127,7 +127,7 @@ } }, { - "id": 11992, + "id": 12294, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -147,7 +147,7 @@ } }, { - "id": 11993, + "id": 12295, "name": "company", "variant": "declaration", "kind": 1024, @@ -167,7 +167,7 @@ } }, { - "id": 11994, + "id": 12296, "name": "city", "variant": "declaration", "kind": 1024, @@ -187,7 +187,7 @@ } }, { - "id": 11995, + "id": 12297, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -198,7 +198,7 @@ } }, { - "id": 11996, + "id": 12298, "name": "phone", "variant": "declaration", "kind": 1024, @@ -218,7 +218,7 @@ } }, { - "id": 11997, + "id": 12299, "name": "province", "variant": "declaration", "kind": 1024, @@ -238,7 +238,7 @@ } }, { - "id": 11998, + "id": 12300, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -258,7 +258,7 @@ } }, { - "id": 11999, + "id": 12301, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -297,52 +297,52 @@ { "title": "Constructors", "children": [ - 11985 + 12287 ] }, { "title": "Properties", "children": [ - 11987, - 11988, - 11989, - 11990, - 11991, - 11992, - 11993, - 11994, - 11995, - 11996, - 11997, - 11998, - 11999 + 12289, + 12290, + 12291, + 12292, + 12293, + 12294, + 12295, + 12296, + 12297, + 12298, + 12299, + 12300, + 12301 ] } ] }, { - "id": 11969, + "id": 12271, "name": "StockLocation", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 11970, + "id": 12272, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 11971, + "id": 12273, "name": "new StockLocation", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 11969, + "target": 12271, "name": "StockLocation", "package": "@medusajs/stock-location-next" } @@ -350,7 +350,7 @@ ] }, { - "id": 11972, + "id": 12274, "name": "id", "variant": "declaration", "kind": 1024, @@ -361,7 +361,7 @@ } }, { - "id": 11973, + "id": 12275, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -377,7 +377,7 @@ } }, { - "id": 11974, + "id": 12276, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -393,7 +393,7 @@ } }, { - "id": 11975, + "id": 12277, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -419,7 +419,7 @@ "defaultValue": "null" }, { - "id": 11976, + "id": 12278, "name": "name", "variant": "declaration", "kind": 1024, @@ -430,7 +430,7 @@ } }, { - "id": 11977, + "id": 12279, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -450,7 +450,7 @@ } }, { - "id": 11978, + "id": 12280, "name": "address", "variant": "declaration", "kind": 1024, @@ -464,7 +464,7 @@ }, { "type": "reference", - "target": 11984, + "target": 12286, "name": "StockLocationAddress", "package": "@medusajs/stock-location-next" } @@ -472,7 +472,7 @@ } }, { - "id": 11979, + "id": 12281, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -511,20 +511,20 @@ { "title": "Constructors", "children": [ - 11970 + 12272 ] }, { "title": "Properties", "children": [ - 11972, - 11973, - 11974, - 11975, - 11976, - 11977, - 11978, - 11979 + 12274, + 12275, + 12276, + 12277, + 12278, + 12279, + 12280, + 12281 ] } ] @@ -534,106 +534,106 @@ { "title": "Classes", "children": [ - 11984, - 11969 + 12286, + 12271 ] } ], "packageName": "@medusajs/stock-location-next", "symbolIdMap": { - "11968": { + "12270": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/index.ts", "qualifiedName": "" }, - "11969": { + "12271": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts", "qualifiedName": "StockLocation" }, - "11972": { + "12274": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts", "qualifiedName": "StockLocation.id" }, - "11973": { + "12275": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts", "qualifiedName": "StockLocation.created_at" }, - "11974": { + "12276": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts", "qualifiedName": "StockLocation.updated_at" }, - "11975": { + "12277": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts", "qualifiedName": "StockLocation.deleted_at" }, - "11976": { + "12278": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts", "qualifiedName": "StockLocation.name" }, - "11977": { + "12279": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts", "qualifiedName": "StockLocation.address_id" }, - "11978": { + "12280": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts", "qualifiedName": "StockLocation.address" }, - "11979": { + "12281": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location.ts", "qualifiedName": "StockLocation.metadata" }, - "11984": { + "12286": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress" }, - "11987": { + "12289": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress.id" }, - "11988": { + "12290": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress.created_at" }, - "11989": { + "12291": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress.updated_at" }, - "11990": { + "12292": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress.deleted_at" }, - "11991": { + "12293": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress.address_1" }, - "11992": { + "12294": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress.address_2" }, - "11993": { + "12295": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress.company" }, - "11994": { + "12296": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress.city" }, - "11995": { + "12297": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress.country_code" }, - "11996": { + "12298": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress.phone" }, - "11997": { + "12299": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress.province" }, - "11998": { + "12300": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress.postal_code" }, - "11999": { + "12301": { "sourceFileName": "../../../../packages/modules/stock-location-next/src/models/stock-location-address.ts", "qualifiedName": "StockLocationAddress.metadata" } @@ -643,7 +643,7 @@ "1": "../../../../packages/modules/stock-location-next/src/models/index.ts" }, "reflections": { - "1": 11968 + "1": 12270 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/stock-location-next.json b/www/utils/generated/typedoc-json-output/stock-location-next.json index f08cdba80d837..286583a8c8ed6 100644 --- a/www/utils/generated/typedoc-json-output/stock-location-next.json +++ b/www/utils/generated/typedoc-json-output/stock-location-next.json @@ -1,12 +1,12 @@ { - "id": 11485, + "id": 11787, "name": "stock-location-next", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 11574, + "id": 11876, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 11575, + "id": 11877, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 11586, + "target": 11888, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 11576, + "id": 11878, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 11577, + "id": 11879, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 11578, + "id": 11880, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 11579, + "id": 11881, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 11580, + "id": 11882, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 11581, + "id": 11883, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 11582, + "id": 11884, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 11583, + "id": 11885, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 11584, + "id": 11886, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 11585, + "id": 11887, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 11575, - 11576, - 11577, - 11578, - 11579, - 11583, - 11584, - 11585 + 11877, + 11878, + 11879, + 11880, + 11881, + 11885, + 11886, + 11887 ] } ], "typeParameters": [ { - "id": 11586, + "id": 11888, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 11732, + "id": 12034, "name": "MetadataType", "variant": "declaration", "kind": 2097152, @@ -394,7 +394,7 @@ } }, { - "id": 11658, + "id": 11960, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -409,7 +409,7 @@ }, "children": [ { - "id": 11659, + "id": 11961, "name": "$and", "variant": "declaration", "kind": 1024, @@ -431,11 +431,11 @@ "types": [ { "type": "reference", - "target": 11658, + "target": 11960, "typeArguments": [ { "type": "reference", - "target": 11661, + "target": 11963, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -447,7 +447,7 @@ }, { "type": "reference", - "target": 11661, + "target": 11963, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -458,7 +458,7 @@ } }, { - "id": 11660, + "id": 11962, "name": "$or", "variant": "declaration", "kind": 1024, @@ -480,11 +480,11 @@ "types": [ { "type": "reference", - "target": 11658, + "target": 11960, "typeArguments": [ { "type": "reference", - "target": 11661, + "target": 11963, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -496,7 +496,7 @@ }, { "type": "reference", - "target": 11661, + "target": 11963, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -511,14 +511,14 @@ { "title": "Properties", "children": [ - 11659, - 11660 + 11961, + 11962 ] } ], "typeParameters": [ { - "id": 11661, + "id": 11963, "name": "T", "variant": "typeParam", "kind": 131072, @@ -528,13 +528,13 @@ "extendedBy": [ { "type": "reference", - "target": 11568, + "target": 11870, "name": "FilterableStockLocationProps" } ] }, { - "id": 11628, + "id": 11930, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -549,7 +549,7 @@ }, "children": [ { - "id": 11629, + "id": 11931, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -568,7 +568,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11630, + "target": 11932, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -580,13 +580,13 @@ { "title": "Properties", "children": [ - 11629 + 11931 ] } ], "typeParameters": [ { - "id": 11630, + "id": 11932, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -599,7 +599,7 @@ ] }, { - "id": 11631, + "id": 11933, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -614,7 +614,7 @@ }, "children": [ { - "id": 11632, + "id": 11934, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -633,7 +633,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11633, + "target": 11935, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -645,13 +645,13 @@ { "title": "Properties", "children": [ - 11632 + 11934 ] } ], "typeParameters": [ { - "id": 11633, + "id": 11935, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -664,14 +664,14 @@ ] }, { - "id": 11756, + "id": 12058, "name": "Query", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11757, + "id": 12059, "name": "T", "variant": "typeParam", "kind": 131072, @@ -682,7 +682,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11757, + "target": 12059, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -695,14 +695,14 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11757, + "target": 12059, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 11802, + "target": 12104, "name": "Scalar", "package": "@medusajs/types" }, @@ -712,11 +712,11 @@ }, "falseType": { "type": "reference", - "target": 11806, + "target": 12108, "typeArguments": [ { "type": "reference", - "target": 11757, + "target": 12059, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -728,11 +728,11 @@ }, "falseType": { "type": "reference", - "target": 11812, + "target": 12114, "typeArguments": [ { "type": "reference", - "target": 11757, + "target": 12059, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -744,14 +744,14 @@ } }, { - "id": 11758, + "id": 12060, "name": "ExpandScalar", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11759, + "id": 12061, "name": "T", "variant": "typeParam", "kind": 131072, @@ -769,7 +769,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11759, + "target": 12061, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -800,7 +800,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11759, + "target": 12061, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -834,7 +834,7 @@ }, "falseType": { "type": "reference", - "target": 11759, + "target": 12061, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -845,7 +845,7 @@ } }, { - "id": 11802, + "id": 12104, "name": "Scalar", "variant": "declaration", "kind": 2097152, @@ -904,21 +904,21 @@ { "type": "reflection", "declaration": { - "id": 11803, + "id": 12105, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11804, + "id": 12106, "name": "toHexString", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11805, + "id": 12107, "name": "toHexString", "variant": "signature", "kind": 4096, @@ -935,7 +935,7 @@ { "title": "Methods", "children": [ - 11804 + 12106 ] } ] @@ -945,14 +945,14 @@ } }, { - "id": 11966, + "id": 12268, "name": "ReadonlyPrimary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11967, + "id": 12269, "name": "T", "variant": "typeParam", "kind": 131072, @@ -963,7 +963,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11967, + "target": 12269, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -984,7 +984,7 @@ "typeArguments": [ { "type": "reference", - "target": 11967, + "target": 12269, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -995,7 +995,7 @@ }, "falseType": { "type": "reference", - "target": 11967, + "target": 12269, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1003,14 +1003,14 @@ } }, { - "id": 11916, + "id": 12218, "name": "Primary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11925, + "id": 12227, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1021,7 +1021,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11925, + "target": 12227, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1029,14 +1029,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 11917, + "id": 12219, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11918, + "id": 12220, "name": "[PrimaryKeyType]", "variant": "declaration", "kind": 1024, @@ -1053,7 +1053,7 @@ { "title": "Properties", "children": [ - 11918 + 12220 ] } ] @@ -1061,7 +1061,7 @@ }, "trueType": { "type": "reference", - "target": 11966, + "target": 12268, "typeArguments": [ { "type": "reference", @@ -1081,7 +1081,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11925, + "target": 12227, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1089,14 +1089,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 11919, + "id": 12221, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11920, + "id": 12222, "name": "_id", "variant": "declaration", "kind": 1024, @@ -1113,7 +1113,7 @@ { "title": "Properties", "children": [ - 11920 + 12222 ] } ] @@ -1124,7 +1124,7 @@ "types": [ { "type": "reference", - "target": 11966, + "target": 12268, "typeArguments": [ { "type": "reference", @@ -1150,7 +1150,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11925, + "target": 12227, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1158,14 +1158,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 11921, + "id": 12223, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11922, + "id": 12224, "name": "uuid", "variant": "declaration", "kind": 1024, @@ -1182,7 +1182,7 @@ { "title": "Properties", "children": [ - 11922 + 12224 ] } ] @@ -1190,7 +1190,7 @@ }, "trueType": { "type": "reference", - "target": 11966, + "target": 12268, "typeArguments": [ { "type": "reference", @@ -1210,7 +1210,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11925, + "target": 12227, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1218,14 +1218,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 11923, + "id": 12225, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11924, + "id": 12226, "name": "id", "variant": "declaration", "kind": 1024, @@ -1242,7 +1242,7 @@ { "title": "Properties", "children": [ - 11924 + 12226 ] } ] @@ -1250,7 +1250,7 @@ }, "trueType": { "type": "reference", - "target": 11966, + "target": 12268, "typeArguments": [ { "type": "reference", @@ -1276,14 +1276,14 @@ } }, { - "id": 11662, + "id": 11964, "name": "OperatorMap", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11683, + "id": 11985, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1293,14 +1293,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11663, + "id": 11965, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11664, + "id": 11966, "name": "$and", "variant": "declaration", "kind": 1024, @@ -1311,11 +1311,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 11756, + "target": 12058, "typeArguments": [ { "type": "reference", - "target": 11683, + "target": 11985, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1327,7 +1327,7 @@ } }, { - "id": 11665, + "id": 11967, "name": "$or", "variant": "declaration", "kind": 1024, @@ -1338,11 +1338,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 11756, + "target": 12058, "typeArguments": [ { "type": "reference", - "target": 11683, + "target": 11985, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1354,7 +1354,7 @@ } }, { - "id": 11666, + "id": 11968, "name": "$eq", "variant": "declaration", "kind": 1024, @@ -1366,11 +1366,11 @@ "types": [ { "type": "reference", - "target": 11758, + "target": 12060, "typeArguments": [ { "type": "reference", - "target": 11683, + "target": 11985, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1383,11 +1383,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 11758, + "target": 12060, "typeArguments": [ { "type": "reference", - "target": 11683, + "target": 11985, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1401,7 +1401,7 @@ } }, { - "id": 11667, + "id": 11969, "name": "$ne", "variant": "declaration", "kind": 1024, @@ -1410,11 +1410,11 @@ }, "type": { "type": "reference", - "target": 11758, + "target": 12060, "typeArguments": [ { "type": "reference", - "target": 11683, + "target": 11985, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1425,7 +1425,7 @@ } }, { - "id": 11668, + "id": 11970, "name": "$in", "variant": "declaration", "kind": 1024, @@ -1436,11 +1436,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 11758, + "target": 12060, "typeArguments": [ { "type": "reference", - "target": 11683, + "target": 11985, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1452,7 +1452,7 @@ } }, { - "id": 11669, + "id": 11971, "name": "$nin", "variant": "declaration", "kind": 1024, @@ -1463,11 +1463,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 11758, + "target": 12060, "typeArguments": [ { "type": "reference", - "target": 11683, + "target": 11985, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1479,7 +1479,7 @@ } }, { - "id": 11670, + "id": 11972, "name": "$not", "variant": "declaration", "kind": 1024, @@ -1488,11 +1488,11 @@ }, "type": { "type": "reference", - "target": 11756, + "target": 12058, "typeArguments": [ { "type": "reference", - "target": 11683, + "target": 11985, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1503,7 +1503,7 @@ } }, { - "id": 11671, + "id": 11973, "name": "$gt", "variant": "declaration", "kind": 1024, @@ -1512,11 +1512,11 @@ }, "type": { "type": "reference", - "target": 11758, + "target": 12060, "typeArguments": [ { "type": "reference", - "target": 11683, + "target": 11985, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1527,7 +1527,7 @@ } }, { - "id": 11672, + "id": 11974, "name": "$gte", "variant": "declaration", "kind": 1024, @@ -1536,11 +1536,11 @@ }, "type": { "type": "reference", - "target": 11758, + "target": 12060, "typeArguments": [ { "type": "reference", - "target": 11683, + "target": 11985, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1551,7 +1551,7 @@ } }, { - "id": 11673, + "id": 11975, "name": "$lt", "variant": "declaration", "kind": 1024, @@ -1560,11 +1560,11 @@ }, "type": { "type": "reference", - "target": 11758, + "target": 12060, "typeArguments": [ { "type": "reference", - "target": 11683, + "target": 11985, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1575,7 +1575,7 @@ } }, { - "id": 11674, + "id": 11976, "name": "$lte", "variant": "declaration", "kind": 1024, @@ -1584,11 +1584,11 @@ }, "type": { "type": "reference", - "target": 11758, + "target": 12060, "typeArguments": [ { "type": "reference", - "target": 11683, + "target": 11985, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1599,7 +1599,7 @@ } }, { - "id": 11675, + "id": 11977, "name": "$like", "variant": "declaration", "kind": 1024, @@ -1612,7 +1612,7 @@ } }, { - "id": 11676, + "id": 11978, "name": "$re", "variant": "declaration", "kind": 1024, @@ -1625,7 +1625,7 @@ } }, { - "id": 11677, + "id": 11979, "name": "$ilike", "variant": "declaration", "kind": 1024, @@ -1638,7 +1638,7 @@ } }, { - "id": 11678, + "id": 11980, "name": "$fulltext", "variant": "declaration", "kind": 1024, @@ -1651,7 +1651,7 @@ } }, { - "id": 11679, + "id": 11981, "name": "$overlap", "variant": "declaration", "kind": 1024, @@ -1667,7 +1667,7 @@ } }, { - "id": 11680, + "id": 11982, "name": "$contains", "variant": "declaration", "kind": 1024, @@ -1683,7 +1683,7 @@ } }, { - "id": 11681, + "id": 11983, "name": "$contained", "variant": "declaration", "kind": 1024, @@ -1699,7 +1699,7 @@ } }, { - "id": 11682, + "id": 11984, "name": "$exists", "variant": "declaration", "kind": 1024, @@ -1716,25 +1716,25 @@ { "title": "Properties", "children": [ - 11664, - 11665, - 11666, - 11667, - 11668, - 11669, - 11670, - 11671, - 11672, - 11673, - 11674, - 11675, - 11676, - 11677, - 11678, - 11679, - 11680, - 11681, - 11682 + 11966, + 11967, + 11968, + 11969, + 11970, + 11971, + 11972, + 11973, + 11974, + 11975, + 11976, + 11977, + 11978, + 11979, + 11980, + 11981, + 11982, + 11983, + 11984 ] } ] @@ -1742,14 +1742,14 @@ } }, { - "id": 11851, + "id": 12153, "name": "FilterValue2", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11852, + "id": 12154, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1761,18 +1761,18 @@ "types": [ { "type": "reference", - "target": 11852, + "target": 12154, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, { "type": "reference", - "target": 11758, + "target": 12060, "typeArguments": [ { "type": "reference", - "target": 11852, + "target": 12154, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1783,11 +1783,11 @@ }, { "type": "reference", - "target": 11916, + "target": 12218, "typeArguments": [ { "type": "reference", - "target": 11852, + "target": 12154, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1800,14 +1800,14 @@ } }, { - "id": 11812, + "id": 12114, "name": "FilterValue", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11813, + "id": 12115, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1819,15 +1819,15 @@ "types": [ { "type": "reference", - "target": 11662, + "target": 11964, "typeArguments": [ { "type": "reference", - "target": 11851, + "target": 12153, "typeArguments": [ { "type": "reference", - "target": 11813, + "target": 12115, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1842,11 +1842,11 @@ }, { "type": "reference", - "target": 11851, + "target": 12153, "typeArguments": [ { "type": "reference", - "target": 11813, + "target": 12115, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1859,11 +1859,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 11851, + "target": 12153, "typeArguments": [ { "type": "reference", - "target": 11813, + "target": 12115, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1881,7 +1881,7 @@ } }, { - "id": 11850, + "id": 12152, "name": "PrevLimit", "variant": "declaration", "kind": 2097152, @@ -1909,14 +1909,14 @@ } }, { - "id": 11806, + "id": 12108, "name": "FilterQuery", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11810, + "id": 12112, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1927,7 +1927,7 @@ } }, { - "id": 11811, + "id": 12113, "name": "Prev", "variant": "typeParam", "kind": 131072, @@ -1946,7 +1946,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 11811, + "target": 12113, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1967,7 +1967,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 11810, + "target": 12112, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1989,7 +1989,7 @@ }, "objectType": { "type": "reference", - "target": 11810, + "target": 12112, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2046,7 +2046,7 @@ }, "objectType": { "type": "reference", - "target": 11810, + "target": 12112, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2054,7 +2054,7 @@ }, { "type": "reference", - "target": 11662, + "target": 11964, "typeArguments": [ { "type": "indexedAccess", @@ -2070,7 +2070,7 @@ }, "objectType": { "type": "reference", - "target": 11810, + "target": 12112, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2098,7 +2098,7 @@ }, "objectType": { "type": "reference", - "target": 11810, + "target": 12112, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2123,21 +2123,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 11807, + "id": 12109, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 11808, + "id": 12110, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 11809, + "id": 12111, "name": "x", "variant": "param", "kind": 32768, @@ -2174,7 +2174,7 @@ }, "trueType": { "type": "reference", - "target": 11806, + "target": 12108, "typeArguments": [ { "type": "reference", @@ -2201,14 +2201,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 11811, + "target": 12113, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 11850, + "target": 12152, "name": "PrevLimit", "package": "@medusajs/types" } @@ -2238,7 +2238,7 @@ } }, { - "id": 11913, + "id": 12215, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -2268,14 +2268,14 @@ { "type": "reflection", "declaration": { - "id": 11914, + "id": 12216, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11915, + "id": 12217, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -2292,7 +2292,7 @@ { "title": "Properties", "children": [ - 11915 + 12217 ] } ] @@ -2302,14 +2302,14 @@ } }, { - "id": 11844, + "id": 12146, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11849, + "id": 12151, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2323,14 +2323,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11845, + "id": 12147, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11846, + "id": 12148, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2341,7 +2341,7 @@ } }, { - "id": 11847, + "id": 12149, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2350,20 +2350,20 @@ }, "type": { "type": "reference", - "target": 11913, + "target": 12215, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 11848, + "id": 12150, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 11849, + "target": 12151, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2374,9 +2374,9 @@ { "title": "Properties", "children": [ - 11846, - 11847, - 11848 + 12148, + 12149, + 12150 ] } ] @@ -2384,14 +2384,14 @@ } }, { - "id": 11770, + "id": 12072, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11773, + "id": 12075, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2407,11 +2407,11 @@ "types": [ { "type": "reference", - "target": 11844, + "target": 12146, "typeArguments": [ { "type": "reference", - "target": 11773, + "target": 12075, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2423,14 +2423,14 @@ { "type": "reflection", "declaration": { - "id": 11771, + "id": 12073, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11772, + "id": 12074, "name": "options", "variant": "declaration", "kind": 1024, @@ -2462,7 +2462,7 @@ { "title": "Properties", "children": [ - 11772 + 12074 ] } ] @@ -2472,14 +2472,14 @@ } }, { - "id": 11780, + "id": 12082, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 11789, + "id": 12091, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2493,14 +2493,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11781, + "id": 12083, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11782, + "id": 12084, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2511,21 +2511,21 @@ } }, { - "id": 11783, + "id": 12085, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 11789, + "target": 12091, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 11784, + "id": 12086, "name": "source", "variant": "declaration", "kind": 1024, @@ -2536,7 +2536,7 @@ } }, { - "id": 11785, + "id": 12087, "name": "object", "variant": "declaration", "kind": 1024, @@ -2547,7 +2547,7 @@ } }, { - "id": 11786, + "id": 12088, "name": "action", "variant": "declaration", "kind": 1024, @@ -2560,7 +2560,7 @@ } }, { - "id": 11787, + "id": 12089, "name": "context", "variant": "declaration", "kind": 1024, @@ -2576,7 +2576,7 @@ "typeArguments": [ { "type": "reference", - "target": 11598, + "target": 11900, "name": "Context", "package": "@medusajs/types" }, @@ -2590,7 +2590,7 @@ } }, { - "id": 11788, + "id": 12090, "name": "options", "variant": "declaration", "kind": 1024, @@ -2622,13 +2622,13 @@ { "title": "Properties", "children": [ - 11782, - 11783, - 11784, - 11785, - 11786, - 11787, - 11788 + 12084, + 12085, + 12086, + 12087, + 12088, + 12089, + 12090 ] } ] @@ -2636,7 +2636,7 @@ } }, { - "id": 11926, + "id": 12228, "name": "FulfillmentAddressDTO", "variant": "declaration", "kind": 256, @@ -2651,7 +2651,7 @@ }, "children": [ { - "id": 11927, + "id": 12229, "name": "id", "variant": "declaration", "kind": 1024, @@ -2670,7 +2670,7 @@ } }, { - "id": 11928, + "id": 12230, "name": "fulfillment_id", "variant": "declaration", "kind": 1024, @@ -2698,7 +2698,7 @@ } }, { - "id": 11929, + "id": 12231, "name": "company", "variant": "declaration", "kind": 1024, @@ -2726,7 +2726,7 @@ } }, { - "id": 11930, + "id": 12232, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -2754,7 +2754,7 @@ } }, { - "id": 11931, + "id": 12233, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -2782,7 +2782,7 @@ } }, { - "id": 11932, + "id": 12234, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -2810,7 +2810,7 @@ } }, { - "id": 11933, + "id": 12235, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -2838,7 +2838,7 @@ } }, { - "id": 11934, + "id": 12236, "name": "city", "variant": "declaration", "kind": 1024, @@ -2866,7 +2866,7 @@ } }, { - "id": 11935, + "id": 12237, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -2894,7 +2894,7 @@ } }, { - "id": 11936, + "id": 12238, "name": "province", "variant": "declaration", "kind": 1024, @@ -2922,7 +2922,7 @@ } }, { - "id": 11937, + "id": 12239, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -2950,7 +2950,7 @@ } }, { - "id": 11938, + "id": 12240, "name": "phone", "variant": "declaration", "kind": 1024, @@ -2978,7 +2978,7 @@ } }, { - "id": 11939, + "id": 12241, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3021,7 +3021,7 @@ } }, { - "id": 11940, + "id": 12242, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3045,7 +3045,7 @@ } }, { - "id": 11941, + "id": 12243, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3069,7 +3069,7 @@ } }, { - "id": 11942, + "id": 12244, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3106,28 +3106,28 @@ { "title": "Properties", "children": [ - 11927, - 11928, - 11929, - 11930, - 11931, - 11932, - 11933, - 11934, - 11935, - 11936, - 11937, - 11938, - 11939, - 11940, - 11941, - 11942 + 12229, + 12230, + 12231, + 12232, + 12233, + 12234, + 12235, + 12236, + 12237, + 12238, + 12239, + 12240, + 12241, + 12242, + 12243, + 12244 ] } ] }, { - "id": 11943, + "id": 12245, "name": "FulfillmentItemDTO", "variant": "declaration", "kind": 256, @@ -3142,7 +3142,7 @@ }, "children": [ { - "id": 11944, + "id": 12246, "name": "id", "variant": "declaration", "kind": 1024, @@ -3161,7 +3161,7 @@ } }, { - "id": 11945, + "id": 12247, "name": "title", "variant": "declaration", "kind": 1024, @@ -3180,7 +3180,7 @@ } }, { - "id": 11946, + "id": 12248, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -3199,7 +3199,7 @@ } }, { - "id": 11947, + "id": 12249, "name": "sku", "variant": "declaration", "kind": 1024, @@ -3218,7 +3218,7 @@ } }, { - "id": 11948, + "id": 12250, "name": "barcode", "variant": "declaration", "kind": 1024, @@ -3237,7 +3237,7 @@ } }, { - "id": 11949, + "id": 12251, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -3265,7 +3265,7 @@ } }, { - "id": 11950, + "id": 12252, "name": "inventory_item_id", "variant": "declaration", "kind": 1024, @@ -3293,7 +3293,7 @@ } }, { - "id": 11951, + "id": 12253, "name": "fulfillment_id", "variant": "declaration", "kind": 1024, @@ -3312,7 +3312,7 @@ } }, { - "id": 11952, + "id": 12254, "name": "fulfillment", "variant": "declaration", "kind": 1024, @@ -3327,13 +3327,13 @@ }, "type": { "type": "reference", - "target": 11894, + "target": 12196, "name": "FulfillmentDTO", "package": "@medusajs/types" } }, { - "id": 11953, + "id": 12255, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3357,7 +3357,7 @@ } }, { - "id": 11954, + "id": 12256, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3381,7 +3381,7 @@ } }, { - "id": 11955, + "id": 12257, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3418,24 +3418,24 @@ { "title": "Properties", "children": [ - 11944, - 11945, - 11946, - 11947, - 11948, - 11949, - 11950, - 11951, - 11952, - 11953, - 11954, - 11955 + 12246, + 12247, + 12248, + 12249, + 12250, + 12251, + 12252, + 12253, + 12254, + 12255, + 12256, + 12257 ] } ] }, { - "id": 11956, + "id": 12258, "name": "FulfillmentLabelDTO", "variant": "declaration", "kind": 256, @@ -3450,7 +3450,7 @@ }, "children": [ { - "id": 11957, + "id": 12259, "name": "id", "variant": "declaration", "kind": 1024, @@ -3469,7 +3469,7 @@ } }, { - "id": 11958, + "id": 12260, "name": "tracking_number", "variant": "declaration", "kind": 1024, @@ -3488,7 +3488,7 @@ } }, { - "id": 11959, + "id": 12261, "name": "tracking_url", "variant": "declaration", "kind": 1024, @@ -3507,7 +3507,7 @@ } }, { - "id": 11960, + "id": 12262, "name": "label_url", "variant": "declaration", "kind": 1024, @@ -3526,7 +3526,7 @@ } }, { - "id": 11961, + "id": 12263, "name": "fulfillment_id", "variant": "declaration", "kind": 1024, @@ -3545,7 +3545,7 @@ } }, { - "id": 11962, + "id": 12264, "name": "fulfillment", "variant": "declaration", "kind": 1024, @@ -3560,13 +3560,13 @@ }, "type": { "type": "reference", - "target": 11894, + "target": 12196, "name": "FulfillmentDTO", "package": "@medusajs/types" } }, { - "id": 11963, + "id": 12265, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3590,7 +3590,7 @@ } }, { - "id": 11964, + "id": 12266, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3614,7 +3614,7 @@ } }, { - "id": 11965, + "id": 12267, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3651,21 +3651,21 @@ { "title": "Properties", "children": [ - 11957, - 11958, - 11959, - 11960, - 11961, - 11962, - 11963, - 11964, - 11965 + 12259, + 12260, + 12261, + 12262, + 12263, + 12264, + 12265, + 12266, + 12267 ] } ] }, { - "id": 11864, + "id": 12166, "name": "FulfillmentProviderDTO", "variant": "declaration", "kind": 256, @@ -3680,7 +3680,7 @@ }, "children": [ { - "id": 11865, + "id": 12167, "name": "id", "variant": "declaration", "kind": 1024, @@ -3699,7 +3699,7 @@ } }, { - "id": 11866, + "id": 12168, "name": "name", "variant": "declaration", "kind": 1024, @@ -3718,7 +3718,7 @@ } }, { - "id": 11867, + "id": 12169, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3761,7 +3761,7 @@ } }, { - "id": 11868, + "id": 12170, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -3778,14 +3778,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11825, + "target": 12127, "name": "ShippingOptionDTO", "package": "@medusajs/types" } } }, { - "id": 11869, + "id": 12171, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3809,7 +3809,7 @@ } }, { - "id": 11870, + "id": 12172, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3833,7 +3833,7 @@ } }, { - "id": 11871, + "id": 12173, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3870,19 +3870,19 @@ { "title": "Properties", "children": [ - 11865, - 11866, - 11867, - 11868, - 11869, - 11870, - 11871 + 12167, + 12168, + 12169, + 12170, + 12171, + 12172, + 12173 ] } ] }, { - "id": 11699, + "id": 12001, "name": "FulfillmentSetDTO", "variant": "declaration", "kind": 256, @@ -3897,7 +3897,7 @@ }, "children": [ { - "id": 11700, + "id": 12002, "name": "id", "variant": "declaration", "kind": 1024, @@ -3916,7 +3916,7 @@ } }, { - "id": 11701, + "id": 12003, "name": "name", "variant": "declaration", "kind": 1024, @@ -3935,7 +3935,7 @@ } }, { - "id": 11702, + "id": 12004, "name": "type", "variant": "declaration", "kind": 1024, @@ -3954,7 +3954,7 @@ } }, { - "id": 11703, + "id": 12005, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3997,7 +3997,7 @@ } }, { - "id": 11704, + "id": 12006, "name": "service_zones", "variant": "declaration", "kind": 1024, @@ -4014,14 +4014,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11760, + "target": 12062, "name": "ServiceZoneDTO", "package": "@medusajs/types" } } }, { - "id": 11705, + "id": 12007, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4045,7 +4045,7 @@ } }, { - "id": 11706, + "id": 12008, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4069,7 +4069,7 @@ } }, { - "id": 11707, + "id": 12009, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -4106,20 +4106,20 @@ { "title": "Properties", "children": [ - 11700, - 11701, - 11702, - 11703, - 11704, - 11705, - 11706, - 11707 + 12002, + 12003, + 12004, + 12005, + 12006, + 12007, + 12008, + 12009 ] } ] }, { - "id": 11894, + "id": 12196, "name": "FulfillmentDTO", "variant": "declaration", "kind": 256, @@ -4134,7 +4134,7 @@ }, "children": [ { - "id": 11895, + "id": 12197, "name": "id", "variant": "declaration", "kind": 1024, @@ -4153,7 +4153,7 @@ } }, { - "id": 11896, + "id": 12198, "name": "location_id", "variant": "declaration", "kind": 1024, @@ -4172,7 +4172,7 @@ } }, { - "id": 11897, + "id": 12199, "name": "packed_at", "variant": "declaration", "kind": 1024, @@ -4205,7 +4205,7 @@ } }, { - "id": 11898, + "id": 12200, "name": "shipped_at", "variant": "declaration", "kind": 1024, @@ -4238,7 +4238,7 @@ } }, { - "id": 11899, + "id": 12201, "name": "delivered_at", "variant": "declaration", "kind": 1024, @@ -4271,7 +4271,7 @@ } }, { - "id": 11900, + "id": 12202, "name": "canceled_at", "variant": "declaration", "kind": 1024, @@ -4304,7 +4304,7 @@ } }, { - "id": 11901, + "id": 12203, "name": "data", "variant": "declaration", "kind": 1024, @@ -4347,7 +4347,7 @@ } }, { - "id": 11902, + "id": 12204, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -4366,7 +4366,7 @@ } }, { - "id": 11903, + "id": 12205, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -4394,7 +4394,7 @@ } }, { - "id": 11904, + "id": 12206, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4437,7 +4437,7 @@ } }, { - "id": 11905, + "id": 12207, "name": "shipping_option", "variant": "declaration", "kind": 1024, @@ -4459,7 +4459,7 @@ }, { "type": "reference", - "target": 11825, + "target": 12127, "name": "ShippingOptionDTO", "package": "@medusajs/types" } @@ -4467,7 +4467,7 @@ } }, { - "id": 11906, + "id": 12208, "name": "provider", "variant": "declaration", "kind": 1024, @@ -4482,13 +4482,13 @@ }, "type": { "type": "reference", - "target": 11864, + "target": 12166, "name": "FulfillmentProviderDTO", "package": "@medusajs/types" } }, { - "id": 11907, + "id": 12209, "name": "delivery_address", "variant": "declaration", "kind": 1024, @@ -4503,13 +4503,13 @@ }, "type": { "type": "reference", - "target": 11926, + "target": 12228, "name": "FulfillmentAddressDTO", "package": "@medusajs/types" } }, { - "id": 11908, + "id": 12210, "name": "items", "variant": "declaration", "kind": 1024, @@ -4526,14 +4526,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11943, + "target": 12245, "name": "FulfillmentItemDTO", "package": "@medusajs/types" } } }, { - "id": 11909, + "id": 12211, "name": "labels", "variant": "declaration", "kind": 1024, @@ -4550,14 +4550,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11956, + "target": 12258, "name": "FulfillmentLabelDTO", "package": "@medusajs/types" } } }, { - "id": 11910, + "id": 12212, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4581,7 +4581,7 @@ } }, { - "id": 11911, + "id": 12213, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4605,7 +4605,7 @@ } }, { - "id": 11912, + "id": 12214, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -4642,30 +4642,30 @@ { "title": "Properties", "children": [ - 11895, - 11896, - 11897, - 11898, - 11899, - 11900, - 11901, - 11902, - 11903, - 11904, - 11905, - 11906, - 11907, - 11908, - 11909, - 11910, - 11911, - 11912 + 12197, + 12198, + 12199, + 12200, + 12201, + 12202, + 12203, + 12204, + 12205, + 12206, + 12207, + 12208, + 12209, + 12210, + 12211, + 12212, + 12213, + 12214 ] } ] }, { - "id": 11853, + "id": 12155, "name": "GeoZoneType", "variant": "declaration", "kind": 2097152, @@ -4701,7 +4701,7 @@ } }, { - "id": 11814, + "id": 12116, "name": "GeoZoneDTO", "variant": "declaration", "kind": 256, @@ -4716,7 +4716,7 @@ }, "children": [ { - "id": 11815, + "id": 12117, "name": "id", "variant": "declaration", "kind": 1024, @@ -4735,7 +4735,7 @@ } }, { - "id": 11816, + "id": 12118, "name": "type", "variant": "declaration", "kind": 1024, @@ -4750,13 +4750,13 @@ }, "type": { "type": "reference", - "target": 11853, + "target": 12155, "name": "GeoZoneType", "package": "@medusajs/types" } }, { - "id": 11817, + "id": 12119, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -4775,7 +4775,7 @@ } }, { - "id": 11818, + "id": 12120, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -4803,7 +4803,7 @@ } }, { - "id": 11819, + "id": 12121, "name": "city", "variant": "declaration", "kind": 1024, @@ -4831,7 +4831,7 @@ } }, { - "id": 11820, + "id": 12122, "name": "postal_expression", "variant": "declaration", "kind": 1024, @@ -4874,7 +4874,7 @@ } }, { - "id": 11821, + "id": 12123, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4917,7 +4917,7 @@ } }, { - "id": 11822, + "id": 12124, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4941,7 +4941,7 @@ } }, { - "id": 11823, + "id": 12125, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4965,7 +4965,7 @@ } }, { - "id": 11824, + "id": 12126, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -5002,22 +5002,22 @@ { "title": "Properties", "children": [ - 11815, - 11816, - 11817, - 11818, - 11819, - 11820, - 11821, - 11822, - 11823, - 11824 + 12117, + 12118, + 12119, + 12120, + 12121, + 12122, + 12123, + 12124, + 12125, + 12126 ] } ] }, { - "id": 11760, + "id": 12062, "name": "ServiceZoneDTO", "variant": "declaration", "kind": 256, @@ -5032,7 +5032,7 @@ }, "children": [ { - "id": 11761, + "id": 12063, "name": "id", "variant": "declaration", "kind": 1024, @@ -5051,7 +5051,7 @@ } }, { - "id": 11762, + "id": 12064, "name": "name", "variant": "declaration", "kind": 1024, @@ -5070,7 +5070,7 @@ } }, { - "id": 11763, + "id": 12065, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5113,7 +5113,7 @@ } }, { - "id": 11764, + "id": 12066, "name": "fulfillment_sets", "variant": "declaration", "kind": 1024, @@ -5130,14 +5130,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11699, + "target": 12001, "name": "FulfillmentSetDTO", "package": "@medusajs/types" } } }, { - "id": 11765, + "id": 12067, "name": "geo_zones", "variant": "declaration", "kind": 1024, @@ -5154,14 +5154,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11814, + "target": 12116, "name": "GeoZoneDTO", "package": "@medusajs/types" } } }, { - "id": 11766, + "id": 12068, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -5178,14 +5178,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11825, + "target": 12127, "name": "ShippingOptionDTO", "package": "@medusajs/types" } } }, { - "id": 11767, + "id": 12069, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5209,7 +5209,7 @@ } }, { - "id": 11768, + "id": 12070, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5233,7 +5233,7 @@ } }, { - "id": 11769, + "id": 12071, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -5270,21 +5270,21 @@ { "title": "Properties", "children": [ - 11761, - 11762, - 11763, - 11764, - 11765, - 11766, - 11767, - 11768, - 11769 + 12063, + 12064, + 12065, + 12066, + 12067, + 12068, + 12069, + 12070, + 12071 ] } ] }, { - "id": 11882, + "id": 12184, "name": "ShippingOptionRuleDTO", "variant": "declaration", "kind": 256, @@ -5299,7 +5299,7 @@ }, "children": [ { - "id": 11883, + "id": 12185, "name": "id", "variant": "declaration", "kind": 1024, @@ -5318,7 +5318,7 @@ } }, { - "id": 11884, + "id": 12186, "name": "attribute", "variant": "declaration", "kind": 1024, @@ -5337,7 +5337,7 @@ } }, { - "id": 11885, + "id": 12187, "name": "operator", "variant": "declaration", "kind": 1024, @@ -5367,7 +5367,7 @@ } }, { - "id": 11886, + "id": 12188, "name": "value", "variant": "declaration", "kind": 1024, @@ -5390,14 +5390,14 @@ { "type": "reflection", "declaration": { - "id": 11887, + "id": 12189, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11888, + "id": 12190, "name": "value", "variant": "declaration", "kind": 1024, @@ -5432,7 +5432,7 @@ { "title": "Properties", "children": [ - 11888 + 12190 ] } ] @@ -5442,7 +5442,7 @@ } }, { - "id": 11889, + "id": 12191, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -5461,7 +5461,7 @@ } }, { - "id": 11890, + "id": 12192, "name": "shipping_option", "variant": "declaration", "kind": 1024, @@ -5476,13 +5476,13 @@ }, "type": { "type": "reference", - "target": 11825, + "target": 12127, "name": "ShippingOptionDTO", "package": "@medusajs/types" } }, { - "id": 11891, + "id": 12193, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5506,7 +5506,7 @@ } }, { - "id": 11892, + "id": 12194, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5530,7 +5530,7 @@ } }, { - "id": 11893, + "id": 12195, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -5567,21 +5567,21 @@ { "title": "Properties", "children": [ - 11883, - 11884, - 11885, - 11886, - 11889, - 11890, - 11891, - 11892, - 11893 + 12185, + 12186, + 12187, + 12188, + 12191, + 12192, + 12193, + 12194, + 12195 ] } ] }, { - "id": 11872, + "id": 12174, "name": "ShippingOptionTypeDTO", "variant": "declaration", "kind": 256, @@ -5596,7 +5596,7 @@ }, "children": [ { - "id": 11873, + "id": 12175, "name": "id", "variant": "declaration", "kind": 1024, @@ -5615,7 +5615,7 @@ } }, { - "id": 11874, + "id": 12176, "name": "label", "variant": "declaration", "kind": 1024, @@ -5634,7 +5634,7 @@ } }, { - "id": 11875, + "id": 12177, "name": "description", "variant": "declaration", "kind": 1024, @@ -5653,7 +5653,7 @@ } }, { - "id": 11876, + "id": 12178, "name": "code", "variant": "declaration", "kind": 1024, @@ -5672,7 +5672,7 @@ } }, { - "id": 11877, + "id": 12179, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -5691,7 +5691,7 @@ } }, { - "id": 11878, + "id": 12180, "name": "shipping_option", "variant": "declaration", "kind": 1024, @@ -5706,13 +5706,13 @@ }, "type": { "type": "reference", - "target": 11825, + "target": 12127, "name": "ShippingOptionDTO", "package": "@medusajs/types" } }, { - "id": 11879, + "id": 12181, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5736,7 +5736,7 @@ } }, { - "id": 11880, + "id": 12182, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5760,7 +5760,7 @@ } }, { - "id": 11881, + "id": 12183, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -5797,21 +5797,21 @@ { "title": "Properties", "children": [ - 11873, - 11874, - 11875, - 11876, - 11877, - 11878, - 11879, - 11880, - 11881 + 12175, + 12176, + 12177, + 12178, + 12179, + 12180, + 12181, + 12182, + 12183 ] } ] }, { - "id": 11854, + "id": 12156, "name": "ShippingOptionPriceType", "variant": "declaration", "kind": 2097152, @@ -5855,7 +5855,7 @@ } }, { - "id": 11825, + "id": 12127, "name": "ShippingOptionDTO", "variant": "declaration", "kind": 256, @@ -5870,7 +5870,7 @@ }, "children": [ { - "id": 11826, + "id": 12128, "name": "id", "variant": "declaration", "kind": 1024, @@ -5889,7 +5889,7 @@ } }, { - "id": 11827, + "id": 12129, "name": "name", "variant": "declaration", "kind": 1024, @@ -5908,7 +5908,7 @@ } }, { - "id": 11828, + "id": 12130, "name": "price_type", "variant": "declaration", "kind": 1024, @@ -5923,13 +5923,13 @@ }, "type": { "type": "reference", - "target": 11854, + "target": 12156, "name": "ShippingOptionPriceType", "package": "@medusajs/types" } }, { - "id": 11829, + "id": 12131, "name": "service_zone_id", "variant": "declaration", "kind": 1024, @@ -5948,7 +5948,7 @@ } }, { - "id": 11830, + "id": 12132, "name": "shipping_profile_id", "variant": "declaration", "kind": 1024, @@ -5967,7 +5967,7 @@ } }, { - "id": 11831, + "id": 12133, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -5986,7 +5986,7 @@ } }, { - "id": 11832, + "id": 12134, "name": "shipping_option_type_id", "variant": "declaration", "kind": 1024, @@ -6014,7 +6014,7 @@ } }, { - "id": 11833, + "id": 12135, "name": "data", "variant": "declaration", "kind": 1024, @@ -6057,7 +6057,7 @@ } }, { - "id": 11834, + "id": 12136, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6100,7 +6100,7 @@ } }, { - "id": 11835, + "id": 12137, "name": "service_zone", "variant": "declaration", "kind": 1024, @@ -6115,13 +6115,13 @@ }, "type": { "type": "reference", - "target": 11760, + "target": 12062, "name": "ServiceZoneDTO", "package": "@medusajs/types" } }, { - "id": 11836, + "id": 12138, "name": "shipping_profile", "variant": "declaration", "kind": 1024, @@ -6136,13 +6136,13 @@ }, "type": { "type": "reference", - "target": 11855, + "target": 12157, "name": "ShippingProfileDTO", "package": "@medusajs/types" } }, { - "id": 11837, + "id": 12139, "name": "fulfillment_provider", "variant": "declaration", "kind": 1024, @@ -6157,13 +6157,13 @@ }, "type": { "type": "reference", - "target": 11864, + "target": 12166, "name": "FulfillmentProviderDTO", "package": "@medusajs/types" } }, { - "id": 11838, + "id": 12140, "name": "type", "variant": "declaration", "kind": 1024, @@ -6178,13 +6178,13 @@ }, "type": { "type": "reference", - "target": 11872, + "target": 12174, "name": "ShippingOptionTypeDTO", "package": "@medusajs/types" } }, { - "id": 11839, + "id": 12141, "name": "rules", "variant": "declaration", "kind": 1024, @@ -6201,14 +6201,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11882, + "target": 12184, "name": "ShippingOptionRuleDTO", "package": "@medusajs/types" } } }, { - "id": 11840, + "id": 12142, "name": "fulfillments", "variant": "declaration", "kind": 1024, @@ -6225,14 +6225,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11894, + "target": 12196, "name": "FulfillmentDTO", "package": "@medusajs/types" } } }, { - "id": 11841, + "id": 12143, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6256,7 +6256,7 @@ } }, { - "id": 11842, + "id": 12144, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6280,7 +6280,7 @@ } }, { - "id": 11843, + "id": 12145, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -6317,30 +6317,30 @@ { "title": "Properties", "children": [ - 11826, - 11827, - 11828, - 11829, - 11830, - 11831, - 11832, - 11833, - 11834, - 11835, - 11836, - 11837, - 11838, - 11839, - 11840, - 11841, - 11842, - 11843 + 12128, + 12129, + 12130, + 12131, + 12132, + 12133, + 12134, + 12135, + 12136, + 12137, + 12138, + 12139, + 12140, + 12141, + 12142, + 12143, + 12144, + 12145 ] } ] }, { - "id": 11855, + "id": 12157, "name": "ShippingProfileDTO", "variant": "declaration", "kind": 256, @@ -6355,7 +6355,7 @@ }, "children": [ { - "id": 11856, + "id": 12158, "name": "id", "variant": "declaration", "kind": 1024, @@ -6374,7 +6374,7 @@ } }, { - "id": 11857, + "id": 12159, "name": "name", "variant": "declaration", "kind": 1024, @@ -6393,7 +6393,7 @@ } }, { - "id": 11858, + "id": 12160, "name": "type", "variant": "declaration", "kind": 1024, @@ -6412,7 +6412,7 @@ } }, { - "id": 11859, + "id": 12161, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6455,7 +6455,7 @@ } }, { - "id": 11860, + "id": 12162, "name": "shipping_options", "variant": "declaration", "kind": 1024, @@ -6472,14 +6472,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11825, + "target": 12127, "name": "ShippingOptionDTO", "package": "@medusajs/types" } } }, { - "id": 11861, + "id": 12163, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6503,7 +6503,7 @@ } }, { - "id": 11862, + "id": 12164, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6527,7 +6527,7 @@ } }, { - "id": 11863, + "id": 12165, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -6564,20 +6564,20 @@ { "title": "Properties", "children": [ - 11856, - 11857, - 11858, - 11859, - 11860, - 11861, - 11862, - 11863 + 12158, + 12159, + 12160, + 12161, + 12162, + 12163, + 12164, + 12165 ] } ] }, { - "id": 11793, + "id": 12095, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -6585,14 +6585,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11794, + "id": 12096, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11795, + "id": 12097, "name": "alias", "variant": "declaration", "kind": 1024, @@ -6603,7 +6603,7 @@ } }, { - "id": 11796, + "id": 12098, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -6614,7 +6614,7 @@ } }, { - "id": 11797, + "id": 12099, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -6625,7 +6625,7 @@ } }, { - "id": 11798, + "id": 12100, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -6636,7 +6636,7 @@ } }, { - "id": 11799, + "id": 12101, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -6657,7 +6657,7 @@ } }, { - "id": 11800, + "id": 12102, "name": "isList", "variant": "declaration", "kind": 1024, @@ -6678,7 +6678,7 @@ } }, { - "id": 11801, + "id": 12103, "name": "args", "variant": "declaration", "kind": 1024, @@ -6718,13 +6718,13 @@ { "title": "Properties", "children": [ - 11795, - 11796, - 11797, - 11798, - 11799, - 11800, - 11801 + 12097, + 12098, + 12099, + 12100, + 12101, + 12102, + 12103 ] } ] @@ -6732,14 +6732,14 @@ } }, { - "id": 11790, + "id": 12092, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 11791, + "id": 12093, "name": "name", "variant": "declaration", "kind": 1024, @@ -6762,7 +6762,7 @@ } }, { - "id": 11792, + "id": 12094, "name": "args", "variant": "declaration", "kind": 1024, @@ -6802,21 +6802,21 @@ { "title": "Properties", "children": [ - 11791, - 11792 + 12093, + 12094 ] } ] }, { - "id": 11733, + "id": 12035, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 11734, + "id": 12036, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -6827,7 +6827,7 @@ } }, { - "id": 11735, + "id": 12037, "name": "alias", "variant": "declaration", "kind": 1024, @@ -6847,7 +6847,7 @@ "types": [ { "type": "reference", - "target": 11790, + "target": 12092, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -6855,7 +6855,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11790, + "target": 12092, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -6864,7 +6864,7 @@ } }, { - "id": 11736, + "id": 12038, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -6900,14 +6900,14 @@ { "type": "reflection", "declaration": { - "id": 11737, + "id": 12039, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11738, + "id": 12040, "name": "path", "variant": "declaration", "kind": 1024, @@ -6918,7 +6918,7 @@ } }, { - "id": 11739, + "id": 12041, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -6936,8 +6936,8 @@ { "title": "Properties", "children": [ - 11738, - 11739 + 12040, + 12041 ] } ] @@ -6951,7 +6951,7 @@ } }, { - "id": 11740, + "id": 12042, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -6965,7 +6965,7 @@ } }, { - "id": 11741, + "id": 12043, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -6976,14 +6976,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11793, + "target": 12095, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 11742, + "id": 12044, "name": "extends", "variant": "declaration", "kind": 1024, @@ -6995,14 +6995,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 11743, + "id": 12045, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11744, + "id": 12046, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -7013,14 +7013,14 @@ } }, { - "id": 11745, + "id": 12047, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 11793, + "target": 12095, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -7030,8 +7030,8 @@ { "title": "Properties", "children": [ - 11744, - 11745 + 12046, + 12047 ] } ] @@ -7040,7 +7040,7 @@ } }, { - "id": 11746, + "id": 12048, "name": "args", "variant": "declaration", "kind": 1024, @@ -7080,19 +7080,19 @@ { "title": "Properties", "children": [ - 11734, - 11735, - 11736, - 11740, - 11741, - 11742, - 11746 + 12036, + 12037, + 12038, + 12042, + 12043, + 12044, + 12048 ] } ] }, { - "id": 11750, + "id": 12052, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -7111,14 +7111,14 @@ { "type": "reflection", "declaration": { - "id": 11751, + "id": 12053, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11752, + "id": 12054, "name": "type", "variant": "declaration", "kind": 1024, @@ -7214,7 +7214,7 @@ } }, { - "id": 11753, + "id": 12055, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -7227,7 +7227,7 @@ } }, { - "id": 11754, + "id": 12056, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -7240,7 +7240,7 @@ } }, { - "id": 11755, + "id": 12057, "name": "options", "variant": "declaration", "kind": 1024, @@ -7280,10 +7280,10 @@ { "title": "Properties", "children": [ - 11752, - 11753, - 11754, - 11755 + 12054, + 12055, + 12056, + 12057 ] } ] @@ -7295,7 +7295,7 @@ } }, { - "id": 11634, + "id": 11936, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -7312,7 +7312,7 @@ "typeArguments": [ { "type": "reference", - "target": 11733, + "target": 12035, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -7344,14 +7344,14 @@ { "type": "reflection", "declaration": { - "id": 11635, + "id": 11937, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11636, + "id": 11938, "name": "schema", "variant": "declaration", "kind": 1024, @@ -7372,7 +7372,7 @@ } }, { - "id": 11637, + "id": 11939, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -7383,14 +7383,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11747, + "target": 12049, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 11638, + "id": 11940, "name": "extends", "variant": "declaration", "kind": 1024, @@ -7402,14 +7402,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 11639, + "id": 11941, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11640, + "id": 11942, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -7420,7 +7420,7 @@ } }, { - "id": 11641, + "id": 11943, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -7448,14 +7448,14 @@ { "type": "reflection", "declaration": { - "id": 11642, + "id": 11944, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11643, + "id": 11945, "name": "path", "variant": "declaration", "kind": 1024, @@ -7466,7 +7466,7 @@ } }, { - "id": 11644, + "id": 11946, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -7482,7 +7482,7 @@ } }, { - "id": 11645, + "id": 11947, "name": "isList", "variant": "declaration", "kind": 1024, @@ -7499,9 +7499,9 @@ { "title": "Properties", "children": [ - 11643, - 11644, - 11645 + 11945, + 11946, + 11947 ] } ] @@ -7515,14 +7515,14 @@ } }, { - "id": 11646, + "id": 11948, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 11747, + "target": 12049, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -7532,9 +7532,9 @@ { "title": "Properties", "children": [ - 11640, - 11641, - 11646 + 11942, + 11943, + 11948 ] } ] @@ -7543,7 +7543,7 @@ } }, { - "id": 11647, + "id": 11949, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -7556,7 +7556,7 @@ } }, { - "id": 11648, + "id": 11950, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -7572,7 +7572,7 @@ } }, { - "id": 11649, + "id": 11951, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -7593,7 +7593,7 @@ } }, { - "id": 11650, + "id": 11952, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -7629,7 +7629,7 @@ } }, { - "id": 11651, + "id": 11953, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -7650,7 +7650,7 @@ } }, { - "id": 11652, + "id": 11954, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -7674,7 +7674,7 @@ } }, { - "id": 11653, + "id": 11955, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -7684,14 +7684,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11654, + "id": 11956, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11655, + "id": 11957, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -7712,7 +7712,7 @@ } }, { - "id": 11656, + "id": 11958, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -7733,7 +7733,7 @@ } }, { - "id": 11657, + "id": 11959, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -7742,7 +7742,7 @@ }, "type": { "type": "reference", - "target": 11750, + "target": 12052, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -7752,9 +7752,9 @@ { "title": "Properties", "children": [ - 11655, - 11656, - 11657 + 11957, + 11958, + 11959 ] } ] @@ -7766,16 +7766,16 @@ { "title": "Properties", "children": [ - 11636, - 11637, - 11638, - 11647, - 11648, - 11649, - 11650, - 11651, - 11652, - 11653 + 11938, + 11939, + 11940, + 11949, + 11950, + 11951, + 11952, + 11953, + 11954, + 11955 ] } ] @@ -7785,7 +7785,7 @@ } }, { - "id": 11747, + "id": 12049, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -7795,21 +7795,21 @@ "types": [ { "type": "reference", - "target": 11793, + "target": 12095, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 11748, + "id": 12050, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11749, + "id": 12051, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -7834,7 +7834,7 @@ { "title": "Properties", "children": [ - 11749 + 12051 ] } ] @@ -7844,7 +7844,7 @@ } }, { - "id": 11554, + "id": 11856, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -7852,20 +7852,20 @@ "extendedBy": [ { "type": "reference", - "target": 11486, + "target": 11788, "name": "IStockLocationService" } ] }, { - "id": 11774, + "id": 12076, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 11775, + "id": 12077, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -7881,7 +7881,7 @@ } }, { - "id": 11776, + "id": 12078, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -7891,21 +7891,21 @@ "type": { "type": "reflection", "declaration": { - "id": 11777, + "id": 12079, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 11778, + "id": 12080, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 11779, + "id": 12081, "name": "key", "variant": "param", "kind": 32768, @@ -7946,35 +7946,35 @@ { "title": "Properties", "children": [ - 11775, - 11776 + 12077, + 12078 ] } ] }, { - "id": 11708, + "id": 12010, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 11709, + "id": 12011, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11710, + "id": 12012, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 11711, + "id": 12013, "name": "msg", "variant": "param", "kind": 32768, @@ -7984,7 +7984,7 @@ "types": [ { "type": "reference", - "target": 11770, + "target": 12072, "name": "Message", "package": "@medusajs/types" }, @@ -7992,7 +7992,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11770, + "target": 12072, "name": "Message", "package": "@medusajs/types" } @@ -8009,21 +8009,21 @@ ] }, { - "id": 11712, + "id": 12014, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11713, + "id": 12015, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 11714, + "id": 12016, "name": "format", "variant": "param", "kind": 32768, @@ -8032,7 +8032,7 @@ }, "type": { "type": "reference", - "target": 11774, + "target": 12076, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -8053,7 +8053,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11770, + "target": 12072, "name": "Message", "package": "@medusajs/types" } @@ -8066,14 +8066,14 @@ ] }, { - "id": 11715, + "id": 12017, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11716, + "id": 12018, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -8086,21 +8086,21 @@ ] }, { - "id": 11717, + "id": 12019, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11718, + "id": 12020, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 11719, + "id": 12021, "name": "T", "variant": "typeParam", "kind": 131072, @@ -8109,7 +8109,7 @@ ], "parameters": [ { - "id": 11720, + "id": 12022, "name": "messageData", "variant": "param", "kind": 32768, @@ -8119,11 +8119,11 @@ "types": [ { "type": "reference", - "target": 11780, + "target": 12082, "typeArguments": [ { "type": "reference", - "target": 11719, + "target": 12021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -8136,11 +8136,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 11780, + "target": 12082, "typeArguments": [ { "type": "reference", - "target": 11719, + "target": 12021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -8154,7 +8154,7 @@ } }, { - "id": 11721, + "id": 12023, "name": "options", "variant": "param", "kind": 32768, @@ -8194,16 +8194,16 @@ { "title": "Methods", "children": [ - 11709, - 11712, - 11715, - 11717 + 12011, + 12014, + 12017, + 12019 ] } ] }, { - "id": 11598, + "id": 11900, "name": "Context", "variant": "declaration", "kind": 256, @@ -8218,7 +8218,7 @@ }, "children": [ { - "id": 11599, + "id": 11901, "name": "__type", "variant": "declaration", "kind": 1024, @@ -8231,7 +8231,7 @@ } }, { - "id": 11600, + "id": 11902, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -8264,14 +8264,14 @@ }, "type": { "type": "reference", - "target": 11609, + "target": 11911, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 11601, + "id": 11903, "name": "manager", "variant": "declaration", "kind": 1024, @@ -8304,14 +8304,14 @@ }, "type": { "type": "reference", - "target": 11609, + "target": 11911, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 11602, + "id": 11904, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -8364,7 +8364,7 @@ } }, { - "id": 11603, + "id": 11905, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -8385,7 +8385,7 @@ } }, { - "id": 11604, + "id": 11906, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -8406,7 +8406,7 @@ } }, { - "id": 11605, + "id": 11907, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -8427,7 +8427,7 @@ } }, { - "id": 11606, + "id": 11908, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -8444,13 +8444,13 @@ }, "type": { "type": "reference", - "target": 11708, + "target": 12010, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 11607, + "id": 11909, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -8471,7 +8471,7 @@ } }, { - "id": 11608, + "id": 11910, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -8496,22 +8496,22 @@ { "title": "Properties", "children": [ - 11599, - 11600, - 11601, - 11602, - 11603, - 11604, - 11605, - 11606, - 11607, - 11608 + 11901, + 11902, + 11903, + 11904, + 11905, + 11906, + 11907, + 11908, + 11909, + 11910 ] } ], "typeParameters": [ { - "id": 11609, + "id": 11911, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -8524,7 +8524,7 @@ ] }, { - "id": 11684, + "id": 11986, "name": "StockLocationAddressDTO", "variant": "declaration", "kind": 2097152, @@ -8546,14 +8546,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11685, + "id": 11987, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11686, + "id": 11988, "name": "id", "variant": "declaration", "kind": 1024, @@ -8574,7 +8574,7 @@ } }, { - "id": 11687, + "id": 11989, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -8593,7 +8593,7 @@ } }, { - "id": 11688, + "id": 11990, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -8623,7 +8623,7 @@ } }, { - "id": 11689, + "id": 11991, "name": "company", "variant": "declaration", "kind": 1024, @@ -8653,7 +8653,7 @@ } }, { - "id": 11690, + "id": 11992, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -8672,7 +8672,7 @@ } }, { - "id": 11691, + "id": 11993, "name": "city", "variant": "declaration", "kind": 1024, @@ -8702,7 +8702,7 @@ } }, { - "id": 11692, + "id": 11994, "name": "phone", "variant": "declaration", "kind": 1024, @@ -8732,7 +8732,7 @@ } }, { - "id": 11693, + "id": 11995, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -8762,7 +8762,7 @@ } }, { - "id": 11694, + "id": 11996, "name": "province", "variant": "declaration", "kind": 1024, @@ -8792,7 +8792,7 @@ } }, { - "id": 11695, + "id": 11997, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -8809,13 +8809,13 @@ }, "type": { "type": "reference", - "target": 11732, + "target": 12034, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 11696, + "id": 11998, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -8848,7 +8848,7 @@ } }, { - "id": 11697, + "id": 11999, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -8881,7 +8881,7 @@ } }, { - "id": 11698, + "id": 12000, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -8922,19 +8922,19 @@ { "title": "Properties", "children": [ - 11686, - 11687, - 11688, - 11689, - 11690, - 11691, - 11692, - 11693, - 11694, - 11695, - 11696, - 11697, - 11698 + 11988, + 11989, + 11990, + 11991, + 11992, + 11993, + 11994, + 11995, + 11996, + 11997, + 11998, + 11999, + 12000 ] } ] @@ -8942,7 +8942,7 @@ } }, { - "id": 11587, + "id": 11889, "name": "StockLocationDTO", "variant": "declaration", "kind": 2097152, @@ -8964,14 +8964,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11588, + "id": 11890, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11589, + "id": 11891, "name": "id", "variant": "declaration", "kind": 1024, @@ -8990,7 +8990,7 @@ } }, { - "id": 11590, + "id": 11892, "name": "name", "variant": "declaration", "kind": 1024, @@ -9009,7 +9009,7 @@ } }, { - "id": 11591, + "id": 11893, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -9052,7 +9052,7 @@ } }, { - "id": 11592, + "id": 11894, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -9071,7 +9071,7 @@ } }, { - "id": 11593, + "id": 11895, "name": "address", "variant": "declaration", "kind": 1024, @@ -9088,13 +9088,13 @@ }, "type": { "type": "reference", - "target": 11684, + "target": 11986, "name": "StockLocationAddressDTO", "package": "@medusajs/types" } }, { - "id": 11594, + "id": 11896, "name": "fulfillment_sets", "variant": "declaration", "kind": 1024, @@ -9111,14 +9111,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11699, + "target": 12001, "name": "FulfillmentSetDTO", "package": "@medusajs/types" } } }, { - "id": 11595, + "id": 11897, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -9151,7 +9151,7 @@ } }, { - "id": 11596, + "id": 11898, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -9184,7 +9184,7 @@ } }, { - "id": 11597, + "id": 11899, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -9225,15 +9225,15 @@ { "title": "Properties", "children": [ - 11589, - 11590, - 11591, - 11592, - 11593, - 11594, - 11595, - 11596, - 11597 + 11891, + 11892, + 11893, + 11894, + 11895, + 11896, + 11897, + 11898, + 11899 ] } ] @@ -9241,7 +9241,7 @@ } }, { - "id": 11568, + "id": 11870, "name": "FilterableStockLocationProps", "variant": "declaration", "kind": 256, @@ -9256,7 +9256,7 @@ }, "children": [ { - "id": 11572, + "id": 11874, "name": "$and", "variant": "declaration", "kind": 1024, @@ -9279,17 +9279,17 @@ "types": [ { "type": "reference", - "target": 11568, + "target": 11870, "name": "FilterableStockLocationProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 11658, + "target": 11960, "typeArguments": [ { "type": "reference", - "target": 11568, + "target": 11870, "name": "FilterableStockLocationProps", "package": "@medusajs/types" } @@ -9302,12 +9302,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 11659, + "target": 11961, "name": "BaseFilterable.$and" } }, { - "id": 11573, + "id": 11875, "name": "$or", "variant": "declaration", "kind": 1024, @@ -9330,17 +9330,17 @@ "types": [ { "type": "reference", - "target": 11568, + "target": 11870, "name": "FilterableStockLocationProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 11658, + "target": 11960, "typeArguments": [ { "type": "reference", - "target": 11568, + "target": 11870, "name": "FilterableStockLocationProps", "package": "@medusajs/types" } @@ -9353,12 +9353,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 11660, + "target": 11962, "name": "BaseFilterable.$or" } }, { - "id": 11569, + "id": 11871, "name": "q", "variant": "declaration", "kind": 1024, @@ -9379,7 +9379,7 @@ } }, { - "id": 11570, + "id": 11872, "name": "id", "variant": "declaration", "kind": 1024, @@ -9412,7 +9412,7 @@ } }, { - "id": 11571, + "id": 11873, "name": "name", "variant": "declaration", "kind": 1024, @@ -9443,7 +9443,7 @@ }, { "type": "reference", - "target": 11662, + "target": 11964, "typeArguments": [ { "type": "intrinsic", @@ -9461,22 +9461,22 @@ { "title": "Properties", "children": [ - 11572, - 11573, - 11569, - 11570, - 11571 + 11874, + 11875, + 11871, + 11872, + 11873 ] } ], "extendedTypes": [ { "type": "reference", - "target": 11658, + "target": 11960, "typeArguments": [ { "type": "reference", - "target": 11568, + "target": 11870, "name": "FilterableStockLocationProps", "package": "@medusajs/types" } @@ -9487,7 +9487,7 @@ ] }, { - "id": 11722, + "id": 12024, "name": "StockLocationAddressInput", "variant": "declaration", "kind": 2097152, @@ -9509,14 +9509,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11723, + "id": 12025, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11724, + "id": 12026, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -9535,7 +9535,7 @@ } }, { - "id": 11725, + "id": 12027, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -9565,7 +9565,7 @@ } }, { - "id": 11726, + "id": 12028, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -9584,7 +9584,7 @@ } }, { - "id": 11727, + "id": 12029, "name": "city", "variant": "declaration", "kind": 1024, @@ -9614,7 +9614,7 @@ } }, { - "id": 11728, + "id": 12030, "name": "phone", "variant": "declaration", "kind": 1024, @@ -9644,7 +9644,7 @@ } }, { - "id": 11729, + "id": 12031, "name": "province", "variant": "declaration", "kind": 1024, @@ -9674,7 +9674,7 @@ } }, { - "id": 11730, + "id": 12032, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -9704,7 +9704,7 @@ } }, { - "id": 11731, + "id": 12033, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -9721,7 +9721,7 @@ }, "type": { "type": "reference", - "target": 11732, + "target": 12034, "name": "MetadataType", "package": "@medusajs/types" } @@ -9731,14 +9731,14 @@ { "title": "Properties", "children": [ - 11724, - 11725, - 11726, - 11727, - 11728, - 11729, - 11730, - 11731 + 12026, + 12027, + 12028, + 12029, + 12030, + 12031, + 12032, + 12033 ] } ] @@ -9746,7 +9746,7 @@ } }, { - "id": 11610, + "id": 11912, "name": "CreateStockLocationInput", "variant": "declaration", "kind": 2097152, @@ -9768,14 +9768,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11611, + "id": 11913, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11612, + "id": 11914, "name": "name", "variant": "declaration", "kind": 1024, @@ -9794,7 +9794,7 @@ } }, { - "id": 11613, + "id": 11915, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -9824,7 +9824,7 @@ } }, { - "id": 11614, + "id": 11916, "name": "address", "variant": "declaration", "kind": 1024, @@ -9848,7 +9848,7 @@ }, { "type": "reference", - "target": 11722, + "target": 12024, "name": "StockLocationAddressInput", "package": "@medusajs/types" } @@ -9856,7 +9856,7 @@ } }, { - "id": 11615, + "id": 11917, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -9873,7 +9873,7 @@ }, "type": { "type": "reference", - "target": 11732, + "target": 12034, "name": "MetadataType", "package": "@medusajs/types" } @@ -9883,10 +9883,10 @@ { "title": "Properties", "children": [ - 11612, - 11613, - 11614, - 11615 + 11914, + 11915, + 11916, + 11917 ] } ] @@ -9894,7 +9894,7 @@ } }, { - "id": 11622, + "id": 11924, "name": "UpdateStockLocationInput", "variant": "declaration", "kind": 2097152, @@ -9916,14 +9916,14 @@ "type": { "type": "reflection", "declaration": { - "id": 11623, + "id": 11925, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 11624, + "id": 11926, "name": "name", "variant": "declaration", "kind": 1024, @@ -9944,7 +9944,7 @@ } }, { - "id": 11625, + "id": 11927, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -9974,7 +9974,7 @@ } }, { - "id": 11626, + "id": 11928, "name": "address", "variant": "declaration", "kind": 1024, @@ -9991,13 +9991,13 @@ }, "type": { "type": "reference", - "target": 11722, + "target": 12024, "name": "StockLocationAddressInput", "package": "@medusajs/types" } }, { - "id": 11627, + "id": 11929, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -10014,7 +10014,7 @@ }, "type": { "type": "reference", - "target": 11732, + "target": 12034, "name": "MetadataType", "package": "@medusajs/types" } @@ -10024,10 +10024,10 @@ { "title": "Properties", "children": [ - 11624, - 11625, - 11626, - 11627 + 11926, + 11927, + 11928, + 11929 ] } ] @@ -10035,7 +10035,7 @@ } }, { - "id": 11616, + "id": 11918, "name": "UpsertStockLocationInput", "variant": "declaration", "kind": 256, @@ -10066,7 +10066,7 @@ }, "children": [ { - "id": 11617, + "id": 11919, "name": "name", "variant": "declaration", "kind": 1024, @@ -10087,7 +10087,7 @@ } }, { - "id": 11618, + "id": 11920, "name": "address_id", "variant": "declaration", "kind": 1024, @@ -10117,7 +10117,7 @@ } }, { - "id": 11619, + "id": 11921, "name": "address", "variant": "declaration", "kind": 1024, @@ -10134,13 +10134,13 @@ }, "type": { "type": "reference", - "target": 11722, + "target": 12024, "name": "StockLocationAddressInput", "package": "@medusajs/types" } }, { - "id": 11620, + "id": 11922, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -10157,13 +10157,13 @@ }, "type": { "type": "reference", - "target": 11732, + "target": 12034, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 11621, + "id": 11923, "name": "id", "variant": "declaration", "kind": 1024, @@ -10188,17 +10188,17 @@ { "title": "Properties", "children": [ - 11617, - 11618, - 11619, - 11620, - 11621 + 11919, + 11920, + 11921, + 11922, + 11923 ] } ] }, { - "id": 11486, + "id": 11788, "name": "IStockLocationService", "variant": "declaration", "kind": 256, @@ -10213,14 +10213,14 @@ }, "children": [ { - "id": 11487, + "id": 11789, "name": "listStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11488, + "id": 11790, "name": "listStockLocations", "variant": "signature", "kind": 4096, @@ -10307,7 +10307,7 @@ }, "parameters": [ { - "id": 11489, + "id": 11791, "name": "selector", "variant": "param", "kind": 32768, @@ -10322,13 +10322,13 @@ }, "type": { "type": "reference", - "target": 11568, + "target": 11870, "name": "FilterableStockLocationProps", "package": "@medusajs/types" } }, { - "id": 11490, + "id": 11792, "name": "config", "variant": "param", "kind": 32768, @@ -10361,11 +10361,11 @@ }, "type": { "type": "reference", - "target": 11574, + "target": 11876, "typeArguments": [ { "type": "reference", - "target": 11587, + "target": 11889, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -10375,7 +10375,7 @@ } }, { - "id": 11491, + "id": 11793, "name": "context", "variant": "param", "kind": 32768, @@ -10392,7 +10392,7 @@ }, "type": { "type": "reference", - "target": 11598, + "target": 11900, "name": "Context", "package": "@medusajs/types" } @@ -10409,7 +10409,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11587, + "target": 11889, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -10422,14 +10422,14 @@ ] }, { - "id": 11492, + "id": 11794, "name": "listAndCountStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11493, + "id": 11795, "name": "listAndCountStockLocations", "variant": "signature", "kind": 4096, @@ -10516,7 +10516,7 @@ }, "parameters": [ { - "id": 11494, + "id": 11796, "name": "selector", "variant": "param", "kind": 32768, @@ -10531,13 +10531,13 @@ }, "type": { "type": "reference", - "target": 11568, + "target": 11870, "name": "FilterableStockLocationProps", "package": "@medusajs/types" } }, { - "id": 11495, + "id": 11797, "name": "config", "variant": "param", "kind": 32768, @@ -10570,11 +10570,11 @@ }, "type": { "type": "reference", - "target": 11574, + "target": 11876, "typeArguments": [ { "type": "reference", - "target": 11587, + "target": 11889, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -10584,7 +10584,7 @@ } }, { - "id": 11496, + "id": 11798, "name": "context", "variant": "param", "kind": 32768, @@ -10601,7 +10601,7 @@ }, "type": { "type": "reference", - "target": 11598, + "target": 11900, "name": "Context", "package": "@medusajs/types" } @@ -10621,7 +10621,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11587, + "target": 11889, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -10640,14 +10640,14 @@ ] }, { - "id": 11497, + "id": 11799, "name": "retrieveStockLocation", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11498, + "id": 11800, "name": "retrieveStockLocation", "variant": "signature", "kind": 4096, @@ -10682,7 +10682,7 @@ }, "parameters": [ { - "id": 11499, + "id": 11801, "name": "id", "variant": "param", "kind": 32768, @@ -10701,7 +10701,7 @@ } }, { - "id": 11500, + "id": 11802, "name": "config", "variant": "param", "kind": 32768, @@ -10734,11 +10734,11 @@ }, "type": { "type": "reference", - "target": 11574, + "target": 11876, "typeArguments": [ { "type": "reference", - "target": 11587, + "target": 11889, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -10748,7 +10748,7 @@ } }, { - "id": 11501, + "id": 11803, "name": "context", "variant": "param", "kind": 32768, @@ -10765,7 +10765,7 @@ }, "type": { "type": "reference", - "target": 11598, + "target": 11900, "name": "Context", "package": "@medusajs/types" } @@ -10780,7 +10780,7 @@ "typeArguments": [ { "type": "reference", - "target": 11587, + "target": 11889, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -10792,14 +10792,14 @@ ] }, { - "id": 11502, + "id": 11804, "name": "createStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11503, + "id": 11805, "name": "createStockLocations", "variant": "signature", "kind": 4096, @@ -10834,7 +10834,7 @@ }, "parameters": [ { - "id": 11504, + "id": 11806, "name": "input", "variant": "param", "kind": 32768, @@ -10849,13 +10849,13 @@ }, "type": { "type": "reference", - "target": 11610, + "target": 11912, "name": "CreateStockLocationInput", "package": "@medusajs/types" } }, { - "id": 11505, + "id": 11807, "name": "context", "variant": "param", "kind": 32768, @@ -10872,7 +10872,7 @@ }, "type": { "type": "reference", - "target": 11598, + "target": 11900, "name": "Context", "package": "@medusajs/types" } @@ -10887,7 +10887,7 @@ "typeArguments": [ { "type": "reference", - "target": 11587, + "target": 11889, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -10897,7 +10897,7 @@ } }, { - "id": 11506, + "id": 11808, "name": "createStockLocations", "variant": "signature", "kind": 4096, @@ -10932,7 +10932,7 @@ }, "parameters": [ { - "id": 11507, + "id": 11809, "name": "input", "variant": "param", "kind": 32768, @@ -10949,14 +10949,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11610, + "target": 11912, "name": "CreateStockLocationInput", "package": "@medusajs/types" } } }, { - "id": 11508, + "id": 11810, "name": "context", "variant": "param", "kind": 32768, @@ -10973,7 +10973,7 @@ }, "type": { "type": "reference", - "target": 11598, + "target": 11900, "name": "Context", "package": "@medusajs/types" } @@ -10990,7 +10990,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11587, + "target": 11889, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -11003,14 +11003,14 @@ ] }, { - "id": 11509, + "id": 11811, "name": "upsertStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11510, + "id": 11812, "name": "upsertStockLocations", "variant": "signature", "kind": 4096, @@ -11045,7 +11045,7 @@ }, "parameters": [ { - "id": 11511, + "id": 11813, "name": "data", "variant": "param", "kind": 32768, @@ -11062,14 +11062,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 11616, + "target": 11918, "name": "UpsertStockLocationInput", "package": "@medusajs/types" } } }, { - "id": 11512, + "id": 11814, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11086,7 +11086,7 @@ }, "type": { "type": "reference", - "target": 11598, + "target": 11900, "name": "Context", "package": "@medusajs/types" } @@ -11103,7 +11103,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11587, + "target": 11889, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -11114,7 +11114,7 @@ } }, { - "id": 11513, + "id": 11815, "name": "upsertStockLocations", "variant": "signature", "kind": 4096, @@ -11149,7 +11149,7 @@ }, "parameters": [ { - "id": 11514, + "id": 11816, "name": "data", "variant": "param", "kind": 32768, @@ -11164,13 +11164,13 @@ }, "type": { "type": "reference", - "target": 11616, + "target": 11918, "name": "UpsertStockLocationInput", "package": "@medusajs/types" } }, { - "id": 11515, + "id": 11817, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11187,7 +11187,7 @@ }, "type": { "type": "reference", - "target": 11598, + "target": 11900, "name": "Context", "package": "@medusajs/types" } @@ -11202,7 +11202,7 @@ "typeArguments": [ { "type": "reference", - "target": 11587, + "target": 11889, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -11214,14 +11214,14 @@ ] }, { - "id": 11516, + "id": 11818, "name": "updateStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11517, + "id": 11819, "name": "updateStockLocations", "variant": "signature", "kind": 4096, @@ -11256,7 +11256,7 @@ }, "parameters": [ { - "id": 11518, + "id": 11820, "name": "id", "variant": "param", "kind": 32768, @@ -11267,7 +11267,7 @@ } }, { - "id": 11519, + "id": 11821, "name": "input", "variant": "param", "kind": 32768, @@ -11282,13 +11282,13 @@ }, "type": { "type": "reference", - "target": 11622, + "target": 11924, "name": "UpdateStockLocationInput", "package": "@medusajs/types" } }, { - "id": 11520, + "id": 11822, "name": "context", "variant": "param", "kind": 32768, @@ -11305,7 +11305,7 @@ }, "type": { "type": "reference", - "target": 11598, + "target": 11900, "name": "Context", "package": "@medusajs/types" } @@ -11320,7 +11320,7 @@ "typeArguments": [ { "type": "reference", - "target": 11587, + "target": 11889, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -11330,7 +11330,7 @@ } }, { - "id": 11521, + "id": 11823, "name": "updateStockLocations", "variant": "signature", "kind": 4096, @@ -11365,7 +11365,7 @@ }, "parameters": [ { - "id": 11522, + "id": 11824, "name": "selector", "variant": "param", "kind": 32768, @@ -11380,13 +11380,13 @@ }, "type": { "type": "reference", - "target": 11568, + "target": 11870, "name": "FilterableStockLocationProps", "package": "@medusajs/types" } }, { - "id": 11523, + "id": 11825, "name": "input", "variant": "param", "kind": 32768, @@ -11401,13 +11401,13 @@ }, "type": { "type": "reference", - "target": 11622, + "target": 11924, "name": "UpdateStockLocationInput", "package": "@medusajs/types" } }, { - "id": 11524, + "id": 11826, "name": "context", "variant": "param", "kind": 32768, @@ -11424,7 +11424,7 @@ }, "type": { "type": "reference", - "target": 11598, + "target": 11900, "name": "Context", "package": "@medusajs/types" } @@ -11441,7 +11441,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 11587, + "target": 11889, "name": "StockLocationDTO", "package": "@medusajs/types" } @@ -11454,14 +11454,14 @@ ] }, { - "id": 11525, + "id": 11827, "name": "deleteStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11526, + "id": 11828, "name": "deleteStockLocations", "variant": "signature", "kind": 4096, @@ -11496,7 +11496,7 @@ }, "parameters": [ { - "id": 11527, + "id": 11829, "name": "id", "variant": "param", "kind": 32768, @@ -11527,7 +11527,7 @@ } }, { - "id": 11528, + "id": 11830, "name": "context", "variant": "param", "kind": 32768, @@ -11544,7 +11544,7 @@ }, "type": { "type": "reference", - "target": 11598, + "target": 11900, "name": "Context", "package": "@medusajs/types" } @@ -11569,14 +11569,14 @@ ] }, { - "id": 11529, + "id": 11831, "name": "softDeleteStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11530, + "id": 11832, "name": "softDeleteStockLocations", "variant": "signature", "kind": 4096, @@ -11627,7 +11627,7 @@ }, "typeParameters": [ { - "id": 11531, + "id": 11833, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -11644,7 +11644,7 @@ ], "parameters": [ { - "id": 11532, + "id": 11834, "name": "stockLocationIds", "variant": "param", "kind": 32768, @@ -11666,7 +11666,7 @@ } }, { - "id": 11533, + "id": 11835, "name": "config", "variant": "param", "kind": 32768, @@ -11683,11 +11683,11 @@ }, "type": { "type": "reference", - "target": 11628, + "target": 11930, "typeArguments": [ { "type": "reference", - "target": 11531, + "target": 11833, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11698,7 +11698,7 @@ } }, { - "id": 11534, + "id": 11836, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11715,7 +11715,7 @@ }, "type": { "type": "reference", - "target": 11598, + "target": 11900, "name": "Context", "package": "@medusajs/types" } @@ -11767,14 +11767,14 @@ ] }, { - "id": 11535, + "id": 11837, "name": "restoreStockLocations", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 11536, + "id": 11838, "name": "restoreStockLocations", "variant": "signature", "kind": 4096, @@ -11825,7 +11825,7 @@ }, "typeParameters": [ { - "id": 11537, + "id": 11839, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -11842,7 +11842,7 @@ ], "parameters": [ { - "id": 11538, + "id": 11840, "name": "stockLocationIds", "variant": "param", "kind": 32768, @@ -11864,7 +11864,7 @@ } }, { - "id": 11539, + "id": 11841, "name": "config", "variant": "param", "kind": 32768, @@ -11897,11 +11897,11 @@ }, "type": { "type": "reference", - "target": 11631, + "target": 11933, "typeArguments": [ { "type": "reference", - "target": 11537, + "target": 11839, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11912,7 +11912,7 @@ } }, { - "id": 11540, + "id": 11842, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11929,7 +11929,7 @@ }, "type": { "type": "reference", - "target": 11598, + "target": 11900, "name": "Context", "package": "@medusajs/types" } @@ -11985,22 +11985,22 @@ { "title": "Methods", "children": [ - 11487, - 11492, - 11497, - 11502, - 11509, - 11516, - 11525, - 11529, - 11535 + 11789, + 11794, + 11799, + 11804, + 11811, + 11818, + 11827, + 11831, + 11837 ] } ], "extendedTypes": [ { "type": "reference", - "target": 11554, + "target": 11856, "name": "IModuleService", "package": "@medusajs/types" } @@ -12011,1880 +12011,1880 @@ { "title": "Interfaces", "children": [ - 11574, - 11658, - 11628, - 11631, - 11926, - 11943, - 11956, - 11864, - 11699, - 11894, - 11814, - 11760, - 11882, - 11872, - 11825, - 11855, - 11790, - 11733, - 11554, - 11774, - 11708, - 11598, - 11568, - 11616, - 11486 + 11876, + 11960, + 11930, + 11933, + 12228, + 12245, + 12258, + 12166, + 12001, + 12196, + 12116, + 12062, + 12184, + 12174, + 12127, + 12157, + 12092, + 12035, + 11856, + 12076, + 12010, + 11900, + 11870, + 11918, + 11788 ] }, { "title": "Type Aliases", "children": [ - 11732, - 11756, - 11758, - 11802, - 11966, - 11916, - 11662, - 11851, - 11812, - 11850, - 11806, - 11913, - 11844, - 11770, - 11780, - 11853, - 11854, - 11793, - 11750, - 11634, - 11747, - 11684, - 11587, - 11722, - 11610, - 11622 + 12034, + 12058, + 12060, + 12104, + 12268, + 12218, + 11964, + 12153, + 12114, + 12152, + 12108, + 12215, + 12146, + 12072, + 12082, + 12155, + 12156, + 12095, + 12052, + 11936, + 12049, + 11986, + 11889, + 12024, + 11912, + 11924 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "11485": { + "11787": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "" }, - "11486": { + "11788": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService" }, - "11487": { + "11789": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.listStockLocations" }, - "11488": { + "11790": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.listStockLocations" }, - "11489": { + "11791": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "selector" }, - "11490": { + "11792": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "config" }, - "11491": { + "11793": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "11492": { + "11794": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.listAndCountStockLocations" }, - "11493": { + "11795": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.listAndCountStockLocations" }, - "11494": { + "11796": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "selector" }, - "11495": { + "11797": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "config" }, - "11496": { + "11798": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "11497": { + "11799": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.retrieveStockLocation" }, - "11498": { + "11800": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.retrieveStockLocation" }, - "11499": { + "11801": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "id" }, - "11500": { + "11802": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "config" }, - "11501": { + "11803": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "11502": { + "11804": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.createStockLocations" }, - "11503": { + "11805": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.createStockLocations" }, - "11504": { + "11806": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "input" }, - "11505": { + "11807": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "11506": { + "11808": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.createStockLocations" }, - "11507": { + "11809": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "input" }, - "11508": { + "11810": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "11509": { + "11811": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.upsertStockLocations" }, - "11510": { + "11812": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.upsertStockLocations" }, - "11511": { + "11813": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "data" }, - "11512": { + "11814": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "sharedContext" }, - "11513": { + "11815": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.upsertStockLocations" }, - "11514": { + "11816": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "data" }, - "11515": { + "11817": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "sharedContext" }, - "11516": { + "11818": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.updateStockLocations" }, - "11517": { + "11819": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.updateStockLocations" }, - "11518": { + "11820": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "id" }, - "11519": { + "11821": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "input" }, - "11520": { + "11822": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "11521": { + "11823": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.updateStockLocations" }, - "11522": { + "11824": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "selector" }, - "11523": { + "11825": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "input" }, - "11524": { + "11826": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "11525": { + "11827": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.deleteStockLocations" }, - "11526": { + "11828": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.deleteStockLocations" }, - "11527": { + "11829": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "id" }, - "11528": { + "11830": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "context" }, - "11529": { + "11831": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.softDeleteStockLocations" }, - "11530": { + "11832": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.softDeleteStockLocations" }, - "11531": { + "11833": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "11532": { + "11834": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "stockLocationIds" }, - "11533": { + "11835": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "config" }, - "11534": { + "11836": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "sharedContext" }, - "11535": { + "11837": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.restoreStockLocations" }, - "11536": { + "11838": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "IStockLocationService.restoreStockLocations" }, - "11537": { + "11839": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "11538": { + "11840": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "stockLocationIds" }, - "11539": { + "11841": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "config" }, - "11540": { + "11842": { "sourceFileName": "../../../../packages/core/types/src/stock-location/service.ts", "qualifiedName": "sharedContext" }, - "11554": { + "11856": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "11568": { + "11870": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "FilterableStockLocationProps" }, - "11569": { + "11871": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "FilterableStockLocationProps.q" }, - "11570": { + "11872": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "FilterableStockLocationProps.id" }, - "11571": { + "11873": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "FilterableStockLocationProps.name" }, - "11572": { + "11874": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "11573": { + "11875": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "11574": { + "11876": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "11575": { + "11877": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "11576": { + "11878": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "11577": { + "11879": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "11578": { + "11880": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "11579": { + "11881": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "11580": { + "11882": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "11581": { + "11883": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "11583": { + "11885": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "11584": { + "11886": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "11585": { + "11887": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "11586": { + "11888": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "11587": { + "11889": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "StockLocationDTO" }, - "11588": { + "11890": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type" }, - "11589": { + "11891": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.id" }, - "11590": { + "11892": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.name" }, - "11591": { + "11893": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.metadata" }, - "11592": { + "11894": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_id" }, - "11593": { + "11895": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address" }, - "11594": { + "11896": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.fulfillment_sets" }, - "11595": { + "11897": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.created_at" }, - "11596": { + "11898": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.updated_at" }, - "11597": { + "11899": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.deleted_at" }, - "11598": { + "11900": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "11599": { + "11901": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "11600": { + "11902": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "11601": { + "11903": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "11602": { + "11904": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "11603": { + "11905": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "11604": { + "11906": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "11605": { + "11907": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "11606": { + "11908": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "11607": { + "11909": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "11608": { + "11910": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "11609": { + "11911": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "11610": { + "11912": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "CreateStockLocationInput" }, - "11611": { + "11913": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type" }, - "11612": { + "11914": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.name" }, - "11613": { + "11915": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_id" }, - "11614": { + "11916": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address" }, - "11615": { + "11917": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.metadata" }, - "11616": { + "11918": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "UpsertStockLocationInput" }, - "11617": { + "11919": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "name" }, - "11618": { + "11920": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "address_id" }, - "11619": { + "11921": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "address" }, - "11620": { + "11922": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "metadata" }, - "11621": { + "11923": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.id" }, - "11622": { + "11924": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "UpdateStockLocationInput" }, - "11623": { + "11925": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type" }, - "11624": { + "11926": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.name" }, - "11625": { + "11927": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_id" }, - "11626": { + "11928": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address" }, - "11627": { + "11929": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.metadata" }, - "11628": { + "11930": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "SoftDeleteReturn" }, - "11629": { + "11931": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "11630": { + "11932": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "11631": { + "11933": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RestoreReturn" }, - "11632": { + "11934": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "11633": { + "11935": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "11634": { + "11936": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "11635": { + "11937": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "11636": { + "11938": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "11637": { + "11939": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "11638": { + "11940": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "11639": { + "11941": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "11640": { + "11942": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "11641": { + "11943": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "11642": { + "11944": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "11643": { + "11945": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "11644": { + "11946": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "11645": { + "11947": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "11646": { + "11948": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "11647": { + "11949": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "11648": { + "11950": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "11649": { + "11951": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "11650": { + "11952": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "11651": { + "11953": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "11652": { + "11954": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "11653": { + "11955": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "11654": { + "11956": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "11655": { + "11957": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "11656": { + "11958": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "11657": { + "11959": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "11658": { + "11960": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "11659": { + "11961": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "11660": { + "11962": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "11661": { + "11963": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "11662": { + "11964": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "OperatorMap" }, - "11663": { + "11965": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "11664": { + "11966": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$and" }, - "11665": { + "11967": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$or" }, - "11666": { + "11968": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$eq" }, - "11667": { + "11969": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ne" }, - "11668": { + "11970": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$in" }, - "11669": { + "11971": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$nin" }, - "11670": { + "11972": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$not" }, - "11671": { + "11973": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gt" }, - "11672": { + "11974": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gte" }, - "11673": { + "11975": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lt" }, - "11674": { + "11976": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lte" }, - "11675": { + "11977": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$like" }, - "11676": { + "11978": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$re" }, - "11677": { + "11979": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ilike" }, - "11678": { + "11980": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$fulltext" }, - "11679": { + "11981": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$overlap" }, - "11680": { + "11982": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contains" }, - "11681": { + "11983": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contained" }, - "11682": { + "11984": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$exists" }, - "11683": { + "11985": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "11684": { + "11986": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "StockLocationAddressDTO" }, - "11685": { + "11987": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type" }, - "11686": { + "11988": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.id" }, - "11687": { + "11989": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_1" }, - "11688": { + "11990": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_2" }, - "11689": { + "11991": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.company" }, - "11690": { + "11992": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.country_code" }, - "11691": { + "11993": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.city" }, - "11692": { + "11994": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.phone" }, - "11693": { + "11995": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.postal_code" }, - "11694": { + "11996": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.province" }, - "11695": { + "11997": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.metadata" }, - "11696": { + "11998": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.created_at" }, - "11697": { + "11999": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.updated_at" }, - "11698": { + "12000": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.deleted_at" }, - "11699": { + "12001": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", "qualifiedName": "FulfillmentSetDTO" }, - "11700": { + "12002": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", "qualifiedName": "FulfillmentSetDTO.id" }, - "11701": { + "12003": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", "qualifiedName": "FulfillmentSetDTO.name" }, - "11702": { + "12004": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", "qualifiedName": "FulfillmentSetDTO.type" }, - "11703": { + "12005": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", "qualifiedName": "FulfillmentSetDTO.metadata" }, - "11704": { + "12006": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", "qualifiedName": "FulfillmentSetDTO.service_zones" }, - "11705": { + "12007": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", "qualifiedName": "FulfillmentSetDTO.created_at" }, - "11706": { + "12008": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", "qualifiedName": "FulfillmentSetDTO.updated_at" }, - "11707": { + "12009": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-set.ts", "qualifiedName": "FulfillmentSetDTO.deleted_at" }, - "11708": { + "12010": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "11709": { + "12011": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "11710": { + "12012": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "11711": { + "12013": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "11712": { + "12014": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "11713": { + "12015": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "11714": { + "12016": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "11715": { + "12017": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "11716": { + "12018": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "11717": { + "12019": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "11718": { + "12020": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "11719": { + "12021": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "11720": { + "12022": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "11721": { + "12023": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "11722": { + "12024": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "StockLocationAddressInput" }, - "11723": { + "12025": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type" }, - "11724": { + "12026": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_1" }, - "11725": { + "12027": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.address_2" }, - "11726": { + "12028": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.country_code" }, - "11727": { + "12029": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.city" }, - "11728": { + "12030": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.phone" }, - "11729": { + "12031": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.province" }, - "11730": { + "12032": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.postal_code" }, - "11731": { + "12033": { "sourceFileName": "../../../../packages/core/types/src/stock-location/common.ts", "qualifiedName": "__type.metadata" }, - "11732": { + "12034": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "MetadataType" }, - "11733": { + "12035": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "11734": { + "12036": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "11735": { + "12037": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "11736": { + "12038": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "11737": { + "12039": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "11738": { + "12040": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "11739": { + "12041": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "11740": { + "12042": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "11741": { + "12043": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "11742": { + "12044": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "11743": { + "12045": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "11744": { + "12046": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "11745": { + "12047": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "11746": { + "12048": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "11747": { + "12049": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "11748": { + "12050": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "11749": { + "12051": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "11750": { + "12052": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "11751": { + "12053": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "11752": { + "12054": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "11753": { + "12055": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "11754": { + "12056": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "11755": { + "12057": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "11756": { + "12058": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Query" }, - "11757": { + "12059": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "11758": { + "12060": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ExpandScalar" }, - "11759": { + "12061": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "11760": { + "12062": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", "qualifiedName": "ServiceZoneDTO" }, - "11761": { + "12063": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", "qualifiedName": "ServiceZoneDTO.id" }, - "11762": { + "12064": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", "qualifiedName": "ServiceZoneDTO.name" }, - "11763": { + "12065": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", "qualifiedName": "ServiceZoneDTO.metadata" }, - "11764": { + "12066": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", "qualifiedName": "ServiceZoneDTO.fulfillment_sets" }, - "11765": { + "12067": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", "qualifiedName": "ServiceZoneDTO.geo_zones" }, - "11766": { + "12068": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", "qualifiedName": "ServiceZoneDTO.shipping_options" }, - "11767": { + "12069": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", "qualifiedName": "ServiceZoneDTO.created_at" }, - "11768": { + "12070": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", "qualifiedName": "ServiceZoneDTO.updated_at" }, - "11769": { + "12071": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/service-zone.ts", "qualifiedName": "ServiceZoneDTO.deleted_at" }, - "11770": { + "12072": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "11771": { + "12073": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "11772": { + "12074": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "11773": { + "12075": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "11774": { + "12076": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "11775": { + "12077": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "11776": { + "12078": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "11777": { + "12079": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "11778": { + "12080": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "11780": { + "12082": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "11781": { + "12083": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "11782": { + "12084": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "11783": { + "12085": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "11784": { + "12086": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "11785": { + "12087": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "11786": { + "12088": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "11787": { + "12089": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "11788": { + "12090": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "11789": { + "12091": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "11790": { + "12092": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "11791": { + "12093": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "11792": { + "12094": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "11793": { + "12095": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "11794": { + "12096": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "11795": { + "12097": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "11796": { + "12098": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "11797": { + "12099": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "11798": { + "12100": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "11799": { + "12101": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "11800": { + "12102": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "11801": { + "12103": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "11802": { + "12104": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Scalar" }, - "11803": { + "12105": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "11804": { + "12106": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "11805": { + "12107": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "11806": { + "12108": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterQuery" }, - "11807": { + "12109": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "11808": { + "12110": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "11810": { + "12112": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "11811": { + "12113": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Prev" }, - "11812": { + "12114": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue" }, - "11813": { + "12115": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "11814": { + "12116": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", "qualifiedName": "GeoZoneDTO" }, - "11815": { + "12117": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", "qualifiedName": "GeoZoneDTO.id" }, - "11816": { + "12118": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", "qualifiedName": "GeoZoneDTO.type" }, - "11817": { + "12119": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", "qualifiedName": "GeoZoneDTO.country_code" }, - "11818": { + "12120": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", "qualifiedName": "GeoZoneDTO.province_code" }, - "11819": { + "12121": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", "qualifiedName": "GeoZoneDTO.city" }, - "11820": { + "12122": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", "qualifiedName": "GeoZoneDTO.postal_expression" }, - "11821": { + "12123": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", "qualifiedName": "GeoZoneDTO.metadata" }, - "11822": { + "12124": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", "qualifiedName": "GeoZoneDTO.created_at" }, - "11823": { + "12125": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", "qualifiedName": "GeoZoneDTO.updated_at" }, - "11824": { + "12126": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", "qualifiedName": "GeoZoneDTO.deleted_at" }, - "11825": { + "12127": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO" }, - "11826": { + "12128": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.id" }, - "11827": { + "12129": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.name" }, - "11828": { + "12130": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.price_type" }, - "11829": { + "12131": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.service_zone_id" }, - "11830": { + "12132": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.shipping_profile_id" }, - "11831": { + "12133": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.provider_id" }, - "11832": { + "12134": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.shipping_option_type_id" }, - "11833": { + "12135": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.data" }, - "11834": { + "12136": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.metadata" }, - "11835": { + "12137": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.service_zone" }, - "11836": { + "12138": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.shipping_profile" }, - "11837": { + "12139": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.fulfillment_provider" }, - "11838": { + "12140": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.type" }, - "11839": { + "12141": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.rules" }, - "11840": { + "12142": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.fulfillments" }, - "11841": { + "12143": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.created_at" }, - "11842": { + "12144": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.updated_at" }, - "11843": { + "12145": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionDTO.deleted_at" }, - "11844": { + "12146": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "11845": { + "12147": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "11846": { + "12148": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "11847": { + "12149": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "11848": { + "12150": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "11849": { + "12151": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "11850": { + "12152": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "PrevLimit" }, - "11851": { + "12153": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue2" }, - "11852": { + "12154": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "11853": { + "12155": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/geo-zone.ts", "qualifiedName": "GeoZoneType" }, - "11854": { + "12156": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option.ts", "qualifiedName": "ShippingOptionPriceType" }, - "11855": { + "12157": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", "qualifiedName": "ShippingProfileDTO" }, - "11856": { + "12158": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", "qualifiedName": "ShippingProfileDTO.id" }, - "11857": { + "12159": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", "qualifiedName": "ShippingProfileDTO.name" }, - "11858": { + "12160": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", "qualifiedName": "ShippingProfileDTO.type" }, - "11859": { + "12161": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", "qualifiedName": "ShippingProfileDTO.metadata" }, - "11860": { + "12162": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", "qualifiedName": "ShippingProfileDTO.shipping_options" }, - "11861": { + "12163": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", "qualifiedName": "ShippingProfileDTO.created_at" }, - "11862": { + "12164": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", "qualifiedName": "ShippingProfileDTO.updated_at" }, - "11863": { + "12165": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-profile.ts", "qualifiedName": "ShippingProfileDTO.deleted_at" }, - "11864": { + "12166": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", "qualifiedName": "FulfillmentProviderDTO" }, - "11865": { + "12167": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", "qualifiedName": "FulfillmentProviderDTO.id" }, - "11866": { + "12168": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", "qualifiedName": "FulfillmentProviderDTO.name" }, - "11867": { + "12169": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", "qualifiedName": "FulfillmentProviderDTO.metadata" }, - "11868": { + "12170": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", "qualifiedName": "FulfillmentProviderDTO.shipping_options" }, - "11869": { + "12171": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", "qualifiedName": "FulfillmentProviderDTO.created_at" }, - "11870": { + "12172": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", "qualifiedName": "FulfillmentProviderDTO.updated_at" }, - "11871": { + "12173": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-provider.ts", "qualifiedName": "FulfillmentProviderDTO.deleted_at" }, - "11872": { + "12174": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", "qualifiedName": "ShippingOptionTypeDTO" }, - "11873": { + "12175": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", "qualifiedName": "ShippingOptionTypeDTO.id" }, - "11874": { + "12176": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", "qualifiedName": "ShippingOptionTypeDTO.label" }, - "11875": { + "12177": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", "qualifiedName": "ShippingOptionTypeDTO.description" }, - "11876": { + "12178": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", "qualifiedName": "ShippingOptionTypeDTO.code" }, - "11877": { + "12179": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", "qualifiedName": "ShippingOptionTypeDTO.shipping_option_id" }, - "11878": { + "12180": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", "qualifiedName": "ShippingOptionTypeDTO.shipping_option" }, - "11879": { + "12181": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", "qualifiedName": "ShippingOptionTypeDTO.created_at" }, - "11880": { + "12182": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", "qualifiedName": "ShippingOptionTypeDTO.updated_at" }, - "11881": { + "12183": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-type.ts", "qualifiedName": "ShippingOptionTypeDTO.deleted_at" }, - "11882": { + "12184": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", "qualifiedName": "ShippingOptionRuleDTO" }, - "11883": { + "12185": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", "qualifiedName": "ShippingOptionRuleDTO.id" }, - "11884": { + "12186": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", "qualifiedName": "ShippingOptionRuleDTO.attribute" }, - "11885": { + "12187": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", "qualifiedName": "ShippingOptionRuleDTO.operator" }, - "11886": { + "12188": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", "qualifiedName": "ShippingOptionRuleDTO.value" }, - "11887": { + "12189": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", "qualifiedName": "__type" }, - "11888": { + "12190": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", "qualifiedName": "__type.value" }, - "11889": { + "12191": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", "qualifiedName": "ShippingOptionRuleDTO.shipping_option_id" }, - "11890": { + "12192": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", "qualifiedName": "ShippingOptionRuleDTO.shipping_option" }, - "11891": { + "12193": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", "qualifiedName": "ShippingOptionRuleDTO.created_at" }, - "11892": { + "12194": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", "qualifiedName": "ShippingOptionRuleDTO.updated_at" }, - "11893": { + "12195": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/shipping-option-rule.ts", "qualifiedName": "ShippingOptionRuleDTO.deleted_at" }, - "11894": { + "12196": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO" }, - "11895": { + "12197": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.id" }, - "11896": { + "12198": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.location_id" }, - "11897": { + "12199": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.packed_at" }, - "11898": { + "12200": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.shipped_at" }, - "11899": { + "12201": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.delivered_at" }, - "11900": { + "12202": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.canceled_at" }, - "11901": { + "12203": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.data" }, - "11902": { + "12204": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.provider_id" }, - "11903": { + "12205": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.shipping_option_id" }, - "11904": { + "12206": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.metadata" }, - "11905": { + "12207": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.shipping_option" }, - "11906": { + "12208": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.provider" }, - "11907": { + "12209": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.delivery_address" }, - "11908": { + "12210": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.items" }, - "11909": { + "12211": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.labels" }, - "11910": { + "12212": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.created_at" }, - "11911": { + "12213": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.updated_at" }, - "11912": { + "12214": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment.ts", "qualifiedName": "FulfillmentDTO.deleted_at" }, - "11913": { + "12215": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "11914": { + "12216": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "11915": { + "12217": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" }, - "11916": { + "12218": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Primary" }, - "11917": { + "12219": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "11918": { + "12220": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.[PrimaryKeyType]" }, - "11919": { + "12221": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "11920": { + "12222": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type._id" }, - "11921": { + "12223": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "11922": { + "12224": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.uuid" }, - "11923": { + "12225": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "11924": { + "12226": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.id" }, - "11925": { + "12227": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "11926": { + "12228": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO" }, - "11927": { + "12229": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.id" }, - "11928": { + "12230": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.fulfillment_id" }, - "11929": { + "12231": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.company" }, - "11930": { + "12232": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.first_name" }, - "11931": { + "12233": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.last_name" }, - "11932": { + "12234": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.address_1" }, - "11933": { + "12235": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.address_2" }, - "11934": { + "12236": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.city" }, - "11935": { + "12237": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.country_code" }, - "11936": { + "12238": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.province" }, - "11937": { + "12239": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.postal_code" }, - "11938": { + "12240": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.phone" }, - "11939": { + "12241": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.metadata" }, - "11940": { + "12242": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.created_at" }, - "11941": { + "12243": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.updated_at" }, - "11942": { + "12244": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/address.ts", "qualifiedName": "FulfillmentAddressDTO.deleted_at" }, - "11943": { + "12245": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", "qualifiedName": "FulfillmentItemDTO" }, - "11944": { + "12246": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", "qualifiedName": "FulfillmentItemDTO.id" }, - "11945": { + "12247": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", "qualifiedName": "FulfillmentItemDTO.title" }, - "11946": { + "12248": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", "qualifiedName": "FulfillmentItemDTO.quantity" }, - "11947": { + "12249": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", "qualifiedName": "FulfillmentItemDTO.sku" }, - "11948": { + "12250": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", "qualifiedName": "FulfillmentItemDTO.barcode" }, - "11949": { + "12251": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", "qualifiedName": "FulfillmentItemDTO.line_item_id" }, - "11950": { + "12252": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", "qualifiedName": "FulfillmentItemDTO.inventory_item_id" }, - "11951": { + "12253": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", "qualifiedName": "FulfillmentItemDTO.fulfillment_id" }, - "11952": { + "12254": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", "qualifiedName": "FulfillmentItemDTO.fulfillment" }, - "11953": { + "12255": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", "qualifiedName": "FulfillmentItemDTO.created_at" }, - "11954": { + "12256": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", "qualifiedName": "FulfillmentItemDTO.updated_at" }, - "11955": { + "12257": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-item.ts", "qualifiedName": "FulfillmentItemDTO.deleted_at" }, - "11956": { + "12258": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", "qualifiedName": "FulfillmentLabelDTO" }, - "11957": { + "12259": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", "qualifiedName": "FulfillmentLabelDTO.id" }, - "11958": { + "12260": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", "qualifiedName": "FulfillmentLabelDTO.tracking_number" }, - "11959": { + "12261": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", "qualifiedName": "FulfillmentLabelDTO.tracking_url" }, - "11960": { + "12262": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", "qualifiedName": "FulfillmentLabelDTO.label_url" }, - "11961": { + "12263": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", "qualifiedName": "FulfillmentLabelDTO.fulfillment_id" }, - "11962": { + "12264": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", "qualifiedName": "FulfillmentLabelDTO.fulfillment" }, - "11963": { + "12265": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", "qualifiedName": "FulfillmentLabelDTO.created_at" }, - "11964": { + "12266": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", "qualifiedName": "FulfillmentLabelDTO.updated_at" }, - "11965": { + "12267": { "sourceFileName": "../../../../packages/core/types/src/fulfillment/common/fulfillment-label.ts", "qualifiedName": "FulfillmentLabelDTO.deleted_at" }, - "11966": { + "12268": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ReadonlyPrimary" }, - "11967": { + "12269": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" } @@ -13894,7 +13894,7 @@ "1": "../../../../packages/core/types/src/stock-location/service.ts" }, "reflections": { - "1": 11485 + "1": 11787 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/store-models.json b/www/utils/generated/typedoc-json-output/store-models.json index 30b1c99d62c1f..f8628cb676ebe 100644 --- a/www/utils/generated/typedoc-json-output/store-models.json +++ b/www/utils/generated/typedoc-json-output/store-models.json @@ -1,5 +1,5 @@ { - "id": 12276, + "id": 12578, "name": "store-models", "variant": "project", "kind": 1, @@ -18,28 +18,28 @@ }, "children": [ { - "id": 12295, + "id": 12597, "name": "StoreCurrency", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 12296, + "id": 12598, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 12297, + "id": 12599, "name": "new StoreCurrency", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 12295, + "target": 12597, "name": "StoreCurrency", "package": "@medusajs/store", "qualifiedName": "default" @@ -48,7 +48,7 @@ ] }, { - "id": 12298, + "id": 12600, "name": "id", "variant": "declaration", "kind": 1024, @@ -59,7 +59,7 @@ } }, { - "id": 12299, + "id": 12601, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -70,7 +70,7 @@ } }, { - "id": 12300, + "id": 12602, "name": "is_default", "variant": "declaration", "kind": 1024, @@ -83,7 +83,7 @@ } }, { - "id": 12301, + "id": 12603, "name": "store_id", "variant": "declaration", "kind": 1024, @@ -103,7 +103,7 @@ } }, { - "id": 12302, + "id": 12604, "name": "store", "variant": "declaration", "kind": 1024, @@ -117,7 +117,7 @@ }, { "type": "reference", - "target": 12277, + "target": 12579, "name": "Store", "package": "@medusajs/store", "qualifiedName": "default" @@ -126,7 +126,7 @@ } }, { - "id": 12303, + "id": 12605, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -142,7 +142,7 @@ } }, { - "id": 12304, + "id": 12606, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -158,7 +158,7 @@ } }, { - "id": 12305, + "id": 12607, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -184,14 +184,14 @@ "defaultValue": "null" }, { - "id": 12306, + "id": 12608, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12307, + "id": 12609, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -204,14 +204,14 @@ ] }, { - "id": 12308, + "id": 12610, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12309, + "id": 12611, "name": "onInit", "variant": "signature", "kind": 4096, @@ -228,54 +228,54 @@ { "title": "Constructors", "children": [ - 12296 + 12598 ] }, { "title": "Properties", "children": [ - 12298, - 12299, - 12300, - 12301, - 12302, - 12303, - 12304, - 12305 + 12600, + 12601, + 12602, + 12603, + 12604, + 12605, + 12606, + 12607 ] }, { "title": "Methods", "children": [ - 12306, - 12308 + 12608, + 12610 ] } ] }, { - "id": 12277, + "id": 12579, "name": "Store", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 12278, + "id": 12580, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 12279, + "id": 12581, "name": "new Store", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 12277, + "target": 12579, "name": "Store", "package": "@medusajs/store", "qualifiedName": "default" @@ -284,7 +284,7 @@ ] }, { - "id": 12294, + "id": 12596, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -295,14 +295,14 @@ "type": "reference", "target": { "sourceFileName": "../../../../packages/core/types/src/dal/entity.ts", - "qualifiedName": "SoftDeletableEntityDateColumns" + "qualifiedName": "SoftDeletableModelDateColumns" }, - "name": "SoftDeletableEntityDateColumns", + "name": "SoftDeletableModelDateColumns", "package": "@medusajs/types" } }, { - "id": 12280, + "id": 12582, "name": "id", "variant": "declaration", "kind": 1024, @@ -313,7 +313,7 @@ } }, { - "id": 12281, + "id": 12583, "name": "name", "variant": "declaration", "kind": 1024, @@ -324,7 +324,7 @@ } }, { - "id": 12282, + "id": 12584, "name": "supported_currencies", "variant": "declaration", "kind": 1024, @@ -338,7 +338,7 @@ "typeArguments": [ { "type": "reference", - "target": 12295, + "target": 12597, "name": "StoreCurrency", "package": "@medusajs/store", "qualifiedName": "default" @@ -354,7 +354,7 @@ "defaultValue": "..." }, { - "id": 12283, + "id": 12585, "name": "default_sales_channel_id", "variant": "declaration", "kind": 1024, @@ -375,7 +375,7 @@ "defaultValue": "null" }, { - "id": 12284, + "id": 12586, "name": "default_region_id", "variant": "declaration", "kind": 1024, @@ -396,7 +396,7 @@ "defaultValue": "null" }, { - "id": 12285, + "id": 12587, "name": "default_location_id", "variant": "declaration", "kind": 1024, @@ -417,7 +417,7 @@ "defaultValue": "null" }, { - "id": 12286, + "id": 12588, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -453,7 +453,7 @@ "defaultValue": "null" }, { - "id": 12287, + "id": 12589, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -469,7 +469,7 @@ } }, { - "id": 12288, + "id": 12590, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -485,7 +485,7 @@ } }, { - "id": 12289, + "id": 12591, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -511,14 +511,14 @@ "defaultValue": "null" }, { - "id": 12290, + "id": 12592, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12291, + "id": 12593, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -531,14 +531,14 @@ ] }, { - "id": 12292, + "id": 12594, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12293, + "id": 12595, "name": "onInit", "variant": "signature", "kind": 4096, @@ -555,30 +555,30 @@ { "title": "Constructors", "children": [ - 12278 + 12580 ] }, { "title": "Properties", "children": [ - 12294, - 12280, - 12281, - 12282, - 12283, - 12284, - 12285, - 12286, - 12287, - 12288, - 12289 + 12596, + 12582, + 12583, + 12584, + 12585, + 12586, + 12587, + 12588, + 12589, + 12590, + 12591 ] }, { "title": "Methods", "children": [ - 12290, - 12292 + 12592, + 12594 ] } ] @@ -588,130 +588,130 @@ { "title": "Classes", "children": [ - 12295, - 12277 + 12597, + 12579 ] } ], "packageName": "@medusajs/store", "symbolIdMap": { - "12276": { + "12578": { "sourceFileName": "../../../../packages/modules/store/src/models/index.ts", "qualifiedName": "" }, - "12277": { + "12579": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default" }, - "12280": { + "12582": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.id" }, - "12281": { + "12583": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.name" }, - "12282": { + "12584": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.supported_currencies" }, - "12283": { + "12585": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.default_sales_channel_id" }, - "12284": { + "12586": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.default_region_id" }, - "12285": { + "12587": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.default_location_id" }, - "12286": { + "12588": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.metadata" }, - "12287": { + "12589": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.created_at" }, - "12288": { + "12590": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.updated_at" }, - "12289": { + "12591": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.deleted_at" }, - "12290": { + "12592": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.onCreate" }, - "12291": { + "12593": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.onCreate" }, - "12292": { + "12594": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.onInit" }, - "12293": { + "12595": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.onInit" }, - "12294": { + "12596": { "sourceFileName": "../../../../packages/modules/store/src/models/store.ts", "qualifiedName": "default.[OptionalProps]" }, - "12295": { + "12597": { "sourceFileName": "../../../../packages/modules/store/src/models/currency.ts", "qualifiedName": "default" }, - "12298": { + "12600": { "sourceFileName": "../../../../packages/modules/store/src/models/currency.ts", "qualifiedName": "default.id" }, - "12299": { + "12601": { "sourceFileName": "../../../../packages/modules/store/src/models/currency.ts", "qualifiedName": "default.currency_code" }, - "12300": { + "12602": { "sourceFileName": "../../../../packages/modules/store/src/models/currency.ts", "qualifiedName": "default.is_default" }, - "12301": { + "12603": { "sourceFileName": "../../../../packages/modules/store/src/models/currency.ts", "qualifiedName": "default.store_id" }, - "12302": { + "12604": { "sourceFileName": "../../../../packages/modules/store/src/models/currency.ts", "qualifiedName": "default.store" }, - "12303": { + "12605": { "sourceFileName": "../../../../packages/modules/store/src/models/currency.ts", "qualifiedName": "default.created_at" }, - "12304": { + "12606": { "sourceFileName": "../../../../packages/modules/store/src/models/currency.ts", "qualifiedName": "default.updated_at" }, - "12305": { + "12607": { "sourceFileName": "../../../../packages/modules/store/src/models/currency.ts", "qualifiedName": "default.deleted_at" }, - "12306": { + "12608": { "sourceFileName": "../../../../packages/modules/store/src/models/currency.ts", "qualifiedName": "default.onCreate" }, - "12307": { + "12609": { "sourceFileName": "../../../../packages/modules/store/src/models/currency.ts", "qualifiedName": "default.onCreate" }, - "12308": { + "12610": { "sourceFileName": "../../../../packages/modules/store/src/models/currency.ts", "qualifiedName": "default.onInit" }, - "12309": { + "12611": { "sourceFileName": "../../../../packages/modules/store/src/models/currency.ts", "qualifiedName": "default.onInit" } @@ -721,7 +721,7 @@ "1": "../../../../packages/modules/store/src/models/index.ts" }, "reflections": { - "1": 12276 + "1": 12578 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/store.json b/www/utils/generated/typedoc-json-output/store.json index b2ba1be9edae8..fa132950e2dff 100644 --- a/www/utils/generated/typedoc-json-output/store.json +++ b/www/utils/generated/typedoc-json-output/store.json @@ -1,12 +1,12 @@ { - "id": 12004, + "id": 12306, "name": "store", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 12140, + "id": 12442, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 12141, + "id": 12443, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 12152, + "target": 12454, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 12142, + "id": 12444, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 12143, + "id": 12445, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 12144, + "id": 12446, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 12145, + "id": 12447, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 12146, + "id": 12448, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 12147, + "id": 12449, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 12148, + "id": 12450, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 12149, + "id": 12451, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 12150, + "id": 12452, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 12151, + "id": 12453, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 12141, - 12142, - 12143, - 12144, - 12145, - 12149, - 12150, - 12151 + 12443, + 12444, + 12445, + 12446, + 12447, + 12451, + 12452, + 12453 ] } ], "typeParameters": [ { - "id": 12152, + "id": 12454, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 12208, + "id": 12510, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -374,7 +374,7 @@ }, "children": [ { - "id": 12209, + "id": 12511, "name": "$and", "variant": "declaration", "kind": 1024, @@ -396,11 +396,11 @@ "types": [ { "type": "reference", - "target": 12208, + "target": 12510, "typeArguments": [ { "type": "reference", - "target": 12211, + "target": 12513, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -412,7 +412,7 @@ }, { "type": "reference", - "target": 12211, + "target": 12513, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -423,7 +423,7 @@ } }, { - "id": 12210, + "id": 12512, "name": "$or", "variant": "declaration", "kind": 1024, @@ -445,11 +445,11 @@ "types": [ { "type": "reference", - "target": 12208, + "target": 12510, "typeArguments": [ { "type": "reference", - "target": 12211, + "target": 12513, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -461,7 +461,7 @@ }, { "type": "reference", - "target": 12211, + "target": 12513, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -476,14 +476,14 @@ { "title": "Properties", "children": [ - 12209, - 12210 + 12511, + 12512 ] } ], "typeParameters": [ { - "id": 12211, + "id": 12513, "name": "T", "variant": "typeParam", "kind": 131072, @@ -493,13 +493,13 @@ "extendedBy": [ { "type": "reference", - "target": 12134, + "target": 12436, "name": "FilterableStoreProps" } ] }, { - "id": 12153, + "id": 12455, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -514,7 +514,7 @@ }, "children": [ { - "id": 12154, + "id": 12456, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -533,7 +533,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12155, + "target": 12457, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -545,13 +545,13 @@ { "title": "Properties", "children": [ - 12154 + 12456 ] } ], "typeParameters": [ { - "id": 12155, + "id": 12457, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -564,7 +564,7 @@ ] }, { - "id": 12156, + "id": 12458, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -579,7 +579,7 @@ }, "children": [ { - "id": 12157, + "id": 12459, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -598,7 +598,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12158, + "target": 12460, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -610,13 +610,13 @@ { "title": "Properties", "children": [ - 12157 + 12459 ] } ], "typeParameters": [ { - "id": 12158, + "id": 12460, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -629,7 +629,7 @@ ] }, { - "id": 12273, + "id": 12575, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -659,14 +659,14 @@ { "type": "reflection", "declaration": { - "id": 12274, + "id": 12576, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12275, + "id": 12577, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -683,7 +683,7 @@ { "title": "Properties", "children": [ - 12275 + 12577 ] } ] @@ -693,14 +693,14 @@ } }, { - "id": 12267, + "id": 12569, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12272, + "id": 12574, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -714,14 +714,14 @@ "type": { "type": "reflection", "declaration": { - "id": 12268, + "id": 12570, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12269, + "id": 12571, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -732,7 +732,7 @@ } }, { - "id": 12270, + "id": 12572, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -741,20 +741,20 @@ }, "type": { "type": "reference", - "target": 12273, + "target": 12575, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 12271, + "id": 12573, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 12272, + "target": 12574, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -765,9 +765,9 @@ { "title": "Properties", "children": [ - 12269, - 12270, - 12271 + 12571, + 12572, + 12573 ] } ] @@ -775,14 +775,14 @@ } }, { - "id": 12235, + "id": 12537, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12238, + "id": 12540, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -798,11 +798,11 @@ "types": [ { "type": "reference", - "target": 12267, + "target": 12569, "typeArguments": [ { "type": "reference", - "target": 12238, + "target": 12540, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -814,14 +814,14 @@ { "type": "reflection", "declaration": { - "id": 12236, + "id": 12538, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12237, + "id": 12539, "name": "options", "variant": "declaration", "kind": 1024, @@ -853,7 +853,7 @@ { "title": "Properties", "children": [ - 12237 + 12539 ] } ] @@ -863,14 +863,14 @@ } }, { - "id": 12245, + "id": 12547, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12254, + "id": 12556, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -884,14 +884,14 @@ "type": { "type": "reflection", "declaration": { - "id": 12246, + "id": 12548, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12247, + "id": 12549, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -902,21 +902,21 @@ } }, { - "id": 12248, + "id": 12550, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 12254, + "target": 12556, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 12249, + "id": 12551, "name": "source", "variant": "declaration", "kind": 1024, @@ -927,7 +927,7 @@ } }, { - "id": 12250, + "id": 12552, "name": "object", "variant": "declaration", "kind": 1024, @@ -938,7 +938,7 @@ } }, { - "id": 12251, + "id": 12553, "name": "action", "variant": "declaration", "kind": 1024, @@ -951,7 +951,7 @@ } }, { - "id": 12252, + "id": 12554, "name": "context", "variant": "declaration", "kind": 1024, @@ -967,7 +967,7 @@ "typeArguments": [ { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" }, @@ -981,7 +981,7 @@ } }, { - "id": 12253, + "id": 12555, "name": "options", "variant": "declaration", "kind": 1024, @@ -1013,13 +1013,13 @@ { "title": "Properties", "children": [ - 12247, - 12248, - 12249, - 12250, - 12251, - 12252, - 12253 + 12549, + 12550, + 12551, + 12552, + 12553, + 12554, + 12555 ] } ] @@ -1027,7 +1027,7 @@ } }, { - "id": 12258, + "id": 12560, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -1035,14 +1035,14 @@ "type": { "type": "reflection", "declaration": { - "id": 12259, + "id": 12561, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12260, + "id": 12562, "name": "alias", "variant": "declaration", "kind": 1024, @@ -1053,7 +1053,7 @@ } }, { - "id": 12261, + "id": 12563, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -1064,7 +1064,7 @@ } }, { - "id": 12262, + "id": 12564, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -1075,7 +1075,7 @@ } }, { - "id": 12263, + "id": 12565, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -1086,7 +1086,7 @@ } }, { - "id": 12264, + "id": 12566, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -1107,7 +1107,7 @@ } }, { - "id": 12265, + "id": 12567, "name": "isList", "variant": "declaration", "kind": 1024, @@ -1128,7 +1128,7 @@ } }, { - "id": 12266, + "id": 12568, "name": "args", "variant": "declaration", "kind": 1024, @@ -1168,13 +1168,13 @@ { "title": "Properties", "children": [ - 12260, - 12261, - 12262, - 12263, - 12264, - 12265, - 12266 + 12562, + 12563, + 12564, + 12565, + 12566, + 12567, + 12568 ] } ] @@ -1182,14 +1182,14 @@ } }, { - "id": 12255, + "id": 12557, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 12256, + "id": 12558, "name": "name", "variant": "declaration", "kind": 1024, @@ -1212,7 +1212,7 @@ } }, { - "id": 12257, + "id": 12559, "name": "args", "variant": "declaration", "kind": 1024, @@ -1252,21 +1252,21 @@ { "title": "Properties", "children": [ - 12256, - 12257 + 12558, + 12559 ] } ] }, { - "id": 12212, + "id": 12514, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 12213, + "id": 12515, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -1277,7 +1277,7 @@ } }, { - "id": 12214, + "id": 12516, "name": "alias", "variant": "declaration", "kind": 1024, @@ -1297,7 +1297,7 @@ "types": [ { "type": "reference", - "target": 12255, + "target": 12557, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -1305,7 +1305,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12255, + "target": 12557, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -1314,7 +1314,7 @@ } }, { - "id": 12215, + "id": 12517, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -1350,14 +1350,14 @@ { "type": "reflection", "declaration": { - "id": 12216, + "id": 12518, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12217, + "id": 12519, "name": "path", "variant": "declaration", "kind": 1024, @@ -1368,7 +1368,7 @@ } }, { - "id": 12218, + "id": 12520, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -1386,8 +1386,8 @@ { "title": "Properties", "children": [ - 12217, - 12218 + 12519, + 12520 ] } ] @@ -1401,7 +1401,7 @@ } }, { - "id": 12219, + "id": 12521, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -1415,7 +1415,7 @@ } }, { - "id": 12220, + "id": 12522, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -1426,14 +1426,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 12258, + "target": 12560, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 12221, + "id": 12523, "name": "extends", "variant": "declaration", "kind": 1024, @@ -1445,14 +1445,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 12222, + "id": 12524, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12223, + "id": 12525, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -1463,14 +1463,14 @@ } }, { - "id": 12224, + "id": 12526, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 12258, + "target": 12560, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -1480,8 +1480,8 @@ { "title": "Properties", "children": [ - 12223, - 12224 + 12525, + 12526 ] } ] @@ -1490,7 +1490,7 @@ } }, { - "id": 12225, + "id": 12527, "name": "args", "variant": "declaration", "kind": 1024, @@ -1530,19 +1530,19 @@ { "title": "Properties", "children": [ - 12213, - 12214, - 12215, - 12219, - 12220, - 12221, - 12225 + 12515, + 12516, + 12517, + 12521, + 12522, + 12523, + 12527 ] } ] }, { - "id": 12229, + "id": 12531, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -1561,14 +1561,14 @@ { "type": "reflection", "declaration": { - "id": 12230, + "id": 12532, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12231, + "id": 12533, "name": "type", "variant": "declaration", "kind": 1024, @@ -1664,7 +1664,7 @@ } }, { - "id": 12232, + "id": 12534, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -1677,7 +1677,7 @@ } }, { - "id": 12233, + "id": 12535, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -1690,7 +1690,7 @@ } }, { - "id": 12234, + "id": 12536, "name": "options", "variant": "declaration", "kind": 1024, @@ -1730,10 +1730,10 @@ { "title": "Properties", "children": [ - 12231, - 12232, - 12233, - 12234 + 12533, + 12534, + 12535, + 12536 ] } ] @@ -1745,7 +1745,7 @@ } }, { - "id": 12159, + "id": 12461, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -1762,7 +1762,7 @@ "typeArguments": [ { "type": "reference", - "target": 12212, + "target": 12514, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -1794,14 +1794,14 @@ { "type": "reflection", "declaration": { - "id": 12160, + "id": 12462, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12161, + "id": 12463, "name": "schema", "variant": "declaration", "kind": 1024, @@ -1822,7 +1822,7 @@ } }, { - "id": 12162, + "id": 12464, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -1833,14 +1833,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 12226, + "target": 12528, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 12163, + "id": 12465, "name": "extends", "variant": "declaration", "kind": 1024, @@ -1852,14 +1852,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 12164, + "id": 12466, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12165, + "id": 12467, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -1870,7 +1870,7 @@ } }, { - "id": 12166, + "id": 12468, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -1898,14 +1898,14 @@ { "type": "reflection", "declaration": { - "id": 12167, + "id": 12469, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12168, + "id": 12470, "name": "path", "variant": "declaration", "kind": 1024, @@ -1916,7 +1916,7 @@ } }, { - "id": 12169, + "id": 12471, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -1932,7 +1932,7 @@ } }, { - "id": 12170, + "id": 12472, "name": "isList", "variant": "declaration", "kind": 1024, @@ -1949,9 +1949,9 @@ { "title": "Properties", "children": [ - 12168, - 12169, - 12170 + 12470, + 12471, + 12472 ] } ] @@ -1965,14 +1965,14 @@ } }, { - "id": 12171, + "id": 12473, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 12226, + "target": 12528, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -1982,9 +1982,9 @@ { "title": "Properties", "children": [ - 12165, - 12166, - 12171 + 12467, + 12468, + 12473 ] } ] @@ -1993,7 +1993,7 @@ } }, { - "id": 12172, + "id": 12474, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2006,7 +2006,7 @@ } }, { - "id": 12173, + "id": 12475, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -2022,7 +2022,7 @@ } }, { - "id": 12174, + "id": 12476, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -2043,7 +2043,7 @@ } }, { - "id": 12175, + "id": 12477, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -2079,7 +2079,7 @@ } }, { - "id": 12176, + "id": 12478, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -2100,7 +2100,7 @@ } }, { - "id": 12177, + "id": 12479, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -2124,7 +2124,7 @@ } }, { - "id": 12178, + "id": 12480, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -2134,14 +2134,14 @@ "type": { "type": "reflection", "declaration": { - "id": 12179, + "id": 12481, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12180, + "id": 12482, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -2162,7 +2162,7 @@ } }, { - "id": 12181, + "id": 12483, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -2183,7 +2183,7 @@ } }, { - "id": 12182, + "id": 12484, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -2192,7 +2192,7 @@ }, "type": { "type": "reference", - "target": 12229, + "target": 12531, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -2202,9 +2202,9 @@ { "title": "Properties", "children": [ - 12180, - 12181, - 12182 + 12482, + 12483, + 12484 ] } ] @@ -2216,16 +2216,16 @@ { "title": "Properties", "children": [ - 12161, - 12162, - 12163, - 12172, - 12173, - 12174, - 12175, - 12176, - 12177, - 12178 + 12463, + 12464, + 12465, + 12474, + 12475, + 12476, + 12477, + 12478, + 12479, + 12480 ] } ] @@ -2235,7 +2235,7 @@ } }, { - "id": 12226, + "id": 12528, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -2245,21 +2245,21 @@ "types": [ { "type": "reference", - "target": 12258, + "target": 12560, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 12227, + "id": 12529, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12228, + "id": 12530, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -2284,7 +2284,7 @@ { "title": "Properties", "children": [ - 12228 + 12530 ] } ] @@ -2294,7 +2294,7 @@ } }, { - "id": 12076, + "id": 12378, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -2302,20 +2302,20 @@ "extendedBy": [ { "type": "reference", - "target": 12005, + "target": 12307, "name": "IStoreModuleService" } ] }, { - "id": 12239, + "id": 12541, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 12240, + "id": 12542, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -2331,7 +2331,7 @@ } }, { - "id": 12241, + "id": 12543, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -2341,21 +2341,21 @@ "type": { "type": "reflection", "declaration": { - "id": 12242, + "id": 12544, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 12243, + "id": 12545, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 12244, + "id": 12546, "name": "key", "variant": "param", "kind": 32768, @@ -2396,35 +2396,35 @@ { "title": "Properties", "children": [ - 12240, - 12241 + 12542, + 12543 ] } ] }, { - "id": 12186, + "id": 12488, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 12187, + "id": 12489, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12188, + "id": 12490, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 12189, + "id": 12491, "name": "msg", "variant": "param", "kind": 32768, @@ -2434,7 +2434,7 @@ "types": [ { "type": "reference", - "target": 12235, + "target": 12537, "name": "Message", "package": "@medusajs/types" }, @@ -2442,7 +2442,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12235, + "target": 12537, "name": "Message", "package": "@medusajs/types" } @@ -2459,21 +2459,21 @@ ] }, { - "id": 12190, + "id": 12492, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12191, + "id": 12493, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 12192, + "id": 12494, "name": "format", "variant": "param", "kind": 32768, @@ -2482,7 +2482,7 @@ }, "type": { "type": "reference", - "target": 12239, + "target": 12541, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -2503,7 +2503,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12235, + "target": 12537, "name": "Message", "package": "@medusajs/types" } @@ -2516,14 +2516,14 @@ ] }, { - "id": 12193, + "id": 12495, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12194, + "id": 12496, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -2536,21 +2536,21 @@ ] }, { - "id": 12195, + "id": 12497, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12196, + "id": 12498, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 12197, + "id": 12499, "name": "T", "variant": "typeParam", "kind": 131072, @@ -2559,7 +2559,7 @@ ], "parameters": [ { - "id": 12198, + "id": 12500, "name": "messageData", "variant": "param", "kind": 32768, @@ -2569,11 +2569,11 @@ "types": [ { "type": "reference", - "target": 12245, + "target": 12547, "typeArguments": [ { "type": "reference", - "target": 12197, + "target": 12499, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2586,11 +2586,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 12245, + "target": 12547, "typeArguments": [ { "type": "reference", - "target": 12197, + "target": 12499, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2604,7 +2604,7 @@ } }, { - "id": 12199, + "id": 12501, "name": "options", "variant": "param", "kind": 32768, @@ -2644,16 +2644,16 @@ { "title": "Methods", "children": [ - 12187, - 12190, - 12193, - 12195 + 12489, + 12492, + 12495, + 12497 ] } ] }, { - "id": 12097, + "id": 12399, "name": "Context", "variant": "declaration", "kind": 256, @@ -2668,7 +2668,7 @@ }, "children": [ { - "id": 12098, + "id": 12400, "name": "__type", "variant": "declaration", "kind": 1024, @@ -2681,7 +2681,7 @@ } }, { - "id": 12099, + "id": 12401, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -2714,14 +2714,14 @@ }, "type": { "type": "reference", - "target": 12108, + "target": 12410, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 12100, + "id": 12402, "name": "manager", "variant": "declaration", "kind": 1024, @@ -2754,14 +2754,14 @@ }, "type": { "type": "reference", - "target": 12108, + "target": 12410, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 12101, + "id": 12403, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -2814,7 +2814,7 @@ } }, { - "id": 12102, + "id": 12404, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -2835,7 +2835,7 @@ } }, { - "id": 12103, + "id": 12405, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -2856,7 +2856,7 @@ } }, { - "id": 12104, + "id": 12406, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -2877,7 +2877,7 @@ } }, { - "id": 12105, + "id": 12407, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -2894,13 +2894,13 @@ }, "type": { "type": "reference", - "target": 12186, + "target": 12488, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 12106, + "id": 12408, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -2921,7 +2921,7 @@ } }, { - "id": 12107, + "id": 12409, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -2946,22 +2946,22 @@ { "title": "Properties", "children": [ - 12098, - 12099, - 12100, - 12101, - 12102, - 12103, - 12104, - 12105, - 12106, - 12107 + 12400, + 12401, + 12402, + 12403, + 12404, + 12405, + 12406, + 12407, + 12408, + 12409 ] } ], "typeParameters": [ { - "id": 12108, + "id": 12410, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -2974,14 +2974,14 @@ ] }, { - "id": 12200, + "id": 12502, "name": "StoreCurrencyDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 12201, + "id": 12503, "name": "id", "variant": "declaration", "kind": 1024, @@ -3000,7 +3000,7 @@ } }, { - "id": 12202, + "id": 12504, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -3019,7 +3019,7 @@ } }, { - "id": 12203, + "id": 12505, "name": "is_default", "variant": "declaration", "kind": 1024, @@ -3038,7 +3038,7 @@ } }, { - "id": 12204, + "id": 12506, "name": "store_id", "variant": "declaration", "kind": 1024, @@ -3057,7 +3057,7 @@ } }, { - "id": 12205, + "id": 12507, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3076,7 +3076,7 @@ } }, { - "id": 12206, + "id": 12508, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3095,7 +3095,7 @@ } }, { - "id": 12207, + "id": 12509, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3127,19 +3127,19 @@ { "title": "Properties", "children": [ - 12201, - 12202, - 12203, - 12204, - 12205, - 12206, - 12207 + 12503, + 12504, + 12505, + 12506, + 12507, + 12508, + 12509 ] } ] }, { - "id": 12109, + "id": 12411, "name": "StoreDTO", "variant": "declaration", "kind": 256, @@ -3154,7 +3154,7 @@ }, "children": [ { - "id": 12110, + "id": 12412, "name": "id", "variant": "declaration", "kind": 1024, @@ -3173,7 +3173,7 @@ } }, { - "id": 12111, + "id": 12413, "name": "name", "variant": "declaration", "kind": 1024, @@ -3192,7 +3192,7 @@ } }, { - "id": 12112, + "id": 12414, "name": "supported_currencies", "variant": "declaration", "kind": 1024, @@ -3211,14 +3211,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 12200, + "target": 12502, "name": "StoreCurrencyDTO", "package": "@medusajs/types" } } }, { - "id": 12113, + "id": 12415, "name": "default_sales_channel_id", "variant": "declaration", "kind": 1024, @@ -3239,7 +3239,7 @@ } }, { - "id": 12114, + "id": 12416, "name": "default_region_id", "variant": "declaration", "kind": 1024, @@ -3260,7 +3260,7 @@ } }, { - "id": 12115, + "id": 12417, "name": "default_location_id", "variant": "declaration", "kind": 1024, @@ -3281,7 +3281,7 @@ } }, { - "id": 12116, + "id": 12418, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3324,7 +3324,7 @@ } }, { - "id": 12117, + "id": 12419, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3343,7 +3343,7 @@ } }, { - "id": 12118, + "id": 12420, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3366,21 +3366,21 @@ { "title": "Properties", "children": [ - 12110, - 12111, - 12112, - 12113, - 12114, - 12115, - 12116, - 12117, - 12118 + 12412, + 12413, + 12414, + 12415, + 12416, + 12417, + 12418, + 12419, + 12420 ] } ] }, { - "id": 12134, + "id": 12436, "name": "FilterableStoreProps", "variant": "declaration", "kind": 256, @@ -3395,7 +3395,7 @@ }, "children": [ { - "id": 12138, + "id": 12440, "name": "$and", "variant": "declaration", "kind": 1024, @@ -3418,17 +3418,17 @@ "types": [ { "type": "reference", - "target": 12134, + "target": 12436, "name": "FilterableStoreProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 12208, + "target": 12510, "typeArguments": [ { "type": "reference", - "target": 12134, + "target": 12436, "name": "FilterableStoreProps", "package": "@medusajs/types" } @@ -3441,12 +3441,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12209, + "target": 12511, "name": "BaseFilterable.$and" } }, { - "id": 12139, + "id": 12441, "name": "$or", "variant": "declaration", "kind": 1024, @@ -3469,17 +3469,17 @@ "types": [ { "type": "reference", - "target": 12134, + "target": 12436, "name": "FilterableStoreProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 12208, + "target": 12510, "typeArguments": [ { "type": "reference", - "target": 12134, + "target": 12436, "name": "FilterableStoreProps", "package": "@medusajs/types" } @@ -3492,12 +3492,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12210, + "target": 12512, "name": "BaseFilterable.$or" } }, { - "id": 12135, + "id": 12437, "name": "q", "variant": "declaration", "kind": 1024, @@ -3518,7 +3518,7 @@ } }, { - "id": 12136, + "id": 12438, "name": "id", "variant": "declaration", "kind": 1024, @@ -3551,7 +3551,7 @@ } }, { - "id": 12137, + "id": 12439, "name": "name", "variant": "declaration", "kind": 1024, @@ -3588,22 +3588,22 @@ { "title": "Properties", "children": [ - 12138, - 12139, - 12135, - 12136, - 12137 + 12440, + 12441, + 12437, + 12438, + 12439 ] } ], "extendedTypes": [ { "type": "reference", - "target": 12208, + "target": 12510, "typeArguments": [ { "type": "reference", - "target": 12134, + "target": 12436, "name": "FilterableStoreProps", "package": "@medusajs/types" } @@ -3614,14 +3614,14 @@ ] }, { - "id": 12183, + "id": 12485, "name": "CreateStoreCurrencyDTO", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 12184, + "id": 12486, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -3640,7 +3640,7 @@ } }, { - "id": 12185, + "id": 12487, "name": "is_default", "variant": "declaration", "kind": 1024, @@ -3665,14 +3665,14 @@ { "title": "Properties", "children": [ - 12184, - 12185 + 12486, + 12487 ] } ] }, { - "id": 12090, + "id": 12392, "name": "CreateStoreDTO", "variant": "declaration", "kind": 256, @@ -3687,7 +3687,7 @@ }, "children": [ { - "id": 12091, + "id": 12393, "name": "name", "variant": "declaration", "kind": 1024, @@ -3708,7 +3708,7 @@ } }, { - "id": 12092, + "id": 12394, "name": "supported_currencies", "variant": "declaration", "kind": 1024, @@ -3727,14 +3727,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 12183, + "target": 12485, "name": "CreateStoreCurrencyDTO", "package": "@medusajs/types" } } }, { - "id": 12093, + "id": 12395, "name": "default_sales_channel_id", "variant": "declaration", "kind": 1024, @@ -3755,7 +3755,7 @@ } }, { - "id": 12094, + "id": 12396, "name": "default_region_id", "variant": "declaration", "kind": 1024, @@ -3776,7 +3776,7 @@ } }, { - "id": 12095, + "id": 12397, "name": "default_location_id", "variant": "declaration", "kind": 1024, @@ -3797,7 +3797,7 @@ } }, { - "id": 12096, + "id": 12398, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3837,18 +3837,18 @@ { "title": "Properties", "children": [ - 12091, - 12092, - 12093, - 12094, - 12095, - 12096 + 12393, + 12394, + 12395, + 12396, + 12397, + 12398 ] } ] }, { - "id": 12119, + "id": 12421, "name": "UpsertStoreDTO", "variant": "declaration", "kind": 256, @@ -3863,7 +3863,7 @@ }, "children": [ { - "id": 12120, + "id": 12422, "name": "id", "variant": "declaration", "kind": 1024, @@ -3884,7 +3884,7 @@ } }, { - "id": 12121, + "id": 12423, "name": "name", "variant": "declaration", "kind": 1024, @@ -3906,12 +3906,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12128, + "target": 12430, "name": "UpdateStoreDTO.name" } }, { - "id": 12122, + "id": 12424, "name": "supported_currencies", "variant": "declaration", "kind": 1024, @@ -3931,19 +3931,19 @@ "type": "array", "elementType": { "type": "reference", - "target": 12183, + "target": 12485, "name": "CreateStoreCurrencyDTO", "package": "@medusajs/types" } }, "inheritedFrom": { "type": "reference", - "target": 12129, + "target": 12431, "name": "UpdateStoreDTO.supported_currencies" } }, { - "id": 12123, + "id": 12425, "name": "default_sales_channel_id", "variant": "declaration", "kind": 1024, @@ -3960,17 +3960,26 @@ ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] }, "inheritedFrom": { "type": "reference", - "target": 12130, + "target": 12432, "name": "UpdateStoreDTO.default_sales_channel_id" } }, { - "id": 12124, + "id": 12426, "name": "default_region_id", "variant": "declaration", "kind": 1024, @@ -3987,17 +3996,26 @@ ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] }, "inheritedFrom": { "type": "reference", - "target": 12131, + "target": 12433, "name": "UpdateStoreDTO.default_region_id" } }, { - "id": 12125, + "id": 12427, "name": "default_location_id", "variant": "declaration", "kind": 1024, @@ -4014,17 +4032,26 @@ ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] }, "inheritedFrom": { "type": "reference", - "target": 12132, + "target": 12434, "name": "UpdateStoreDTO.default_location_id" } }, { - "id": 12126, + "id": 12428, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4041,27 +4068,36 @@ ] }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ + "type": "union", + "types": [ { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": null }, { - "type": "intrinsic", - "name": "any" + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record", + "package": "typescript" } - ], - "name": "Record", - "package": "typescript" + ] }, "inheritedFrom": { "type": "reference", - "target": 12133, + "target": 12435, "name": "UpdateStoreDTO.metadata" } } @@ -4070,27 +4106,27 @@ { "title": "Properties", "children": [ - 12120, - 12121, - 12122, - 12123, - 12124, - 12125, - 12126 + 12422, + 12423, + 12424, + 12425, + 12426, + 12427, + 12428 ] } ], "extendedTypes": [ { "type": "reference", - "target": 12127, + "target": 12429, "name": "UpdateStoreDTO", "package": "@medusajs/types" } ] }, { - "id": 12127, + "id": 12429, "name": "UpdateStoreDTO", "variant": "declaration", "kind": 256, @@ -4105,7 +4141,7 @@ }, "children": [ { - "id": 12128, + "id": 12430, "name": "name", "variant": "declaration", "kind": 1024, @@ -4126,7 +4162,7 @@ } }, { - "id": 12129, + "id": 12431, "name": "supported_currencies", "variant": "declaration", "kind": 1024, @@ -4145,14 +4181,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 12183, + "target": 12485, "name": "CreateStoreCurrencyDTO", "package": "@medusajs/types" } } }, { - "id": 12130, + "id": 12432, "name": "default_sales_channel_id", "variant": "declaration", "kind": 1024, @@ -4168,12 +4204,21 @@ ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] } }, { - "id": 12131, + "id": 12433, "name": "default_region_id", "variant": "declaration", "kind": 1024, @@ -4189,12 +4234,21 @@ ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] } }, { - "id": 12132, + "id": 12434, "name": "default_location_id", "variant": "declaration", "kind": 1024, @@ -4210,12 +4264,21 @@ ] }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] } }, { - "id": 12133, + "id": 12435, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4231,23 +4294,32 @@ ] }, "type": { - "type": "reference", - "target": { - "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", - "qualifiedName": "Record" - }, - "typeArguments": [ + "type": "union", + "types": [ { - "type": "intrinsic", - "name": "string" + "type": "literal", + "value": null }, { - "type": "intrinsic", - "name": "any" + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Record" + }, + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record", + "package": "typescript" } - ], - "name": "Record", - "package": "typescript" + ] } } ], @@ -4255,25 +4327,25 @@ { "title": "Properties", "children": [ - 12128, - 12129, - 12130, - 12131, - 12132, - 12133 + 12430, + 12431, + 12432, + 12433, + 12434, + 12435 ] } ], "extendedBy": [ { "type": "reference", - "target": 12119, + "target": 12421, "name": "UpsertStoreDTO" } ] }, { - "id": 12005, + "id": 12307, "name": "IStoreModuleService", "variant": "declaration", "kind": 256, @@ -4288,14 +4360,14 @@ }, "children": [ { - "id": 12006, + "id": 12308, "name": "createStores", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12007, + "id": 12309, "name": "createStores", "variant": "signature", "kind": 4096, @@ -4330,7 +4402,7 @@ }, "parameters": [ { - "id": 12008, + "id": 12310, "name": "data", "variant": "param", "kind": 32768, @@ -4347,14 +4419,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 12090, + "target": 12392, "name": "CreateStoreDTO", "package": "@medusajs/types" } } }, { - "id": 12009, + "id": 12311, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4371,7 +4443,7 @@ }, "type": { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" } @@ -4388,7 +4460,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12109, + "target": 12411, "name": "StoreDTO", "package": "@medusajs/types" } @@ -4399,7 +4471,7 @@ } }, { - "id": 12010, + "id": 12312, "name": "createStores", "variant": "signature", "kind": 4096, @@ -4434,7 +4506,7 @@ }, "parameters": [ { - "id": 12011, + "id": 12313, "name": "data", "variant": "param", "kind": 32768, @@ -4449,13 +4521,13 @@ }, "type": { "type": "reference", - "target": 12090, + "target": 12392, "name": "CreateStoreDTO", "package": "@medusajs/types" } }, { - "id": 12012, + "id": 12314, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4472,7 +4544,7 @@ }, "type": { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" } @@ -4487,7 +4559,7 @@ "typeArguments": [ { "type": "reference", - "target": 12109, + "target": 12411, "name": "StoreDTO", "package": "@medusajs/types" } @@ -4499,14 +4571,14 @@ ] }, { - "id": 12013, + "id": 12315, "name": "upsertStores", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12014, + "id": 12316, "name": "upsertStores", "variant": "signature", "kind": 4096, @@ -4541,7 +4613,7 @@ }, "parameters": [ { - "id": 12015, + "id": 12317, "name": "data", "variant": "param", "kind": 32768, @@ -4558,14 +4630,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 12119, + "target": 12421, "name": "UpsertStoreDTO", "package": "@medusajs/types" } } }, { - "id": 12016, + "id": 12318, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4582,7 +4654,7 @@ }, "type": { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" } @@ -4599,7 +4671,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12109, + "target": 12411, "name": "StoreDTO", "package": "@medusajs/types" } @@ -4610,7 +4682,7 @@ } }, { - "id": 12017, + "id": 12319, "name": "upsertStores", "variant": "signature", "kind": 4096, @@ -4645,7 +4717,7 @@ }, "parameters": [ { - "id": 12018, + "id": 12320, "name": "data", "variant": "param", "kind": 32768, @@ -4660,13 +4732,13 @@ }, "type": { "type": "reference", - "target": 12119, + "target": 12421, "name": "UpsertStoreDTO", "package": "@medusajs/types" } }, { - "id": 12019, + "id": 12321, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4683,7 +4755,7 @@ }, "type": { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" } @@ -4698,7 +4770,7 @@ "typeArguments": [ { "type": "reference", - "target": 12109, + "target": 12411, "name": "StoreDTO", "package": "@medusajs/types" } @@ -4710,14 +4782,14 @@ ] }, { - "id": 12020, + "id": 12322, "name": "updateStores", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12021, + "id": 12323, "name": "updateStores", "variant": "signature", "kind": 4096, @@ -4752,7 +4824,7 @@ }, "parameters": [ { - "id": 12022, + "id": 12324, "name": "id", "variant": "param", "kind": 32768, @@ -4771,7 +4843,7 @@ } }, { - "id": 12023, + "id": 12325, "name": "data", "variant": "param", "kind": 32768, @@ -4786,13 +4858,13 @@ }, "type": { "type": "reference", - "target": 12127, + "target": 12429, "name": "UpdateStoreDTO", "package": "@medusajs/types" } }, { - "id": 12024, + "id": 12326, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4809,7 +4881,7 @@ }, "type": { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" } @@ -4824,7 +4896,7 @@ "typeArguments": [ { "type": "reference", - "target": 12109, + "target": 12411, "name": "StoreDTO", "package": "@medusajs/types" } @@ -4834,7 +4906,7 @@ } }, { - "id": 12025, + "id": 12327, "name": "updateStores", "variant": "signature", "kind": 4096, @@ -4869,7 +4941,7 @@ }, "parameters": [ { - "id": 12026, + "id": 12328, "name": "selector", "variant": "param", "kind": 32768, @@ -4884,13 +4956,13 @@ }, "type": { "type": "reference", - "target": 12134, + "target": 12436, "name": "FilterableStoreProps", "package": "@medusajs/types" } }, { - "id": 12027, + "id": 12329, "name": "data", "variant": "param", "kind": 32768, @@ -4905,13 +4977,13 @@ }, "type": { "type": "reference", - "target": 12127, + "target": 12429, "name": "UpdateStoreDTO", "package": "@medusajs/types" } }, { - "id": 12028, + "id": 12330, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4928,7 +5000,7 @@ }, "type": { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" } @@ -4945,7 +5017,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12109, + "target": 12411, "name": "StoreDTO", "package": "@medusajs/types" } @@ -4958,14 +5030,14 @@ ] }, { - "id": 12029, + "id": 12331, "name": "deleteStores", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12030, + "id": 12332, "name": "deleteStores", "variant": "signature", "kind": 4096, @@ -5000,7 +5072,7 @@ }, "parameters": [ { - "id": 12031, + "id": 12333, "name": "ids", "variant": "param", "kind": 32768, @@ -5022,7 +5094,7 @@ } }, { - "id": 12032, + "id": 12334, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5039,7 +5111,7 @@ }, "type": { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" } @@ -5062,7 +5134,7 @@ } }, { - "id": 12033, + "id": 12335, "name": "deleteStores", "variant": "signature", "kind": 4096, @@ -5097,7 +5169,7 @@ }, "parameters": [ { - "id": 12034, + "id": 12336, "name": "id", "variant": "param", "kind": 32768, @@ -5116,7 +5188,7 @@ } }, { - "id": 12035, + "id": 12337, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5133,7 +5205,7 @@ }, "type": { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" } @@ -5158,14 +5230,14 @@ ] }, { - "id": 12036, + "id": 12338, "name": "retrieveStore", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12037, + "id": 12339, "name": "retrieveStore", "variant": "signature", "kind": 4096, @@ -5200,7 +5272,7 @@ }, "parameters": [ { - "id": 12038, + "id": 12340, "name": "id", "variant": "param", "kind": 32768, @@ -5219,7 +5291,7 @@ } }, { - "id": 12039, + "id": 12341, "name": "config", "variant": "param", "kind": 32768, @@ -5252,11 +5324,11 @@ }, "type": { "type": "reference", - "target": 12140, + "target": 12442, "typeArguments": [ { "type": "reference", - "target": 12109, + "target": 12411, "name": "StoreDTO", "package": "@medusajs/types" } @@ -5266,7 +5338,7 @@ } }, { - "id": 12040, + "id": 12342, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5283,7 +5355,7 @@ }, "type": { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" } @@ -5298,7 +5370,7 @@ "typeArguments": [ { "type": "reference", - "target": 12109, + "target": 12411, "name": "StoreDTO", "package": "@medusajs/types" } @@ -5310,14 +5382,14 @@ ] }, { - "id": 12041, + "id": 12343, "name": "listStores", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12042, + "id": 12344, "name": "listStores", "variant": "signature", "kind": 4096, @@ -5396,7 +5468,7 @@ }, "parameters": [ { - "id": 12043, + "id": 12345, "name": "filters", "variant": "param", "kind": 32768, @@ -5413,13 +5485,13 @@ }, "type": { "type": "reference", - "target": 12134, + "target": 12436, "name": "FilterableStoreProps", "package": "@medusajs/types" } }, { - "id": 12044, + "id": 12346, "name": "config", "variant": "param", "kind": 32768, @@ -5452,11 +5524,11 @@ }, "type": { "type": "reference", - "target": 12140, + "target": 12442, "typeArguments": [ { "type": "reference", - "target": 12109, + "target": 12411, "name": "StoreDTO", "package": "@medusajs/types" } @@ -5466,7 +5538,7 @@ } }, { - "id": 12045, + "id": 12347, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5483,7 +5555,7 @@ }, "type": { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" } @@ -5500,7 +5572,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12109, + "target": 12411, "name": "StoreDTO", "package": "@medusajs/types" } @@ -5513,14 +5585,14 @@ ] }, { - "id": 12046, + "id": 12348, "name": "listAndCountStores", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12047, + "id": 12349, "name": "listAndCountStores", "variant": "signature", "kind": 4096, @@ -5599,7 +5671,7 @@ }, "parameters": [ { - "id": 12048, + "id": 12350, "name": "filters", "variant": "param", "kind": 32768, @@ -5616,13 +5688,13 @@ }, "type": { "type": "reference", - "target": 12134, + "target": 12436, "name": "FilterableStoreProps", "package": "@medusajs/types" } }, { - "id": 12049, + "id": 12351, "name": "config", "variant": "param", "kind": 32768, @@ -5655,11 +5727,11 @@ }, "type": { "type": "reference", - "target": 12140, + "target": 12442, "typeArguments": [ { "type": "reference", - "target": 12109, + "target": 12411, "name": "StoreDTO", "package": "@medusajs/types" } @@ -5669,7 +5741,7 @@ } }, { - "id": 12050, + "id": 12352, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5686,7 +5758,7 @@ }, "type": { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" } @@ -5706,7 +5778,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12109, + "target": 12411, "name": "StoreDTO", "package": "@medusajs/types" } @@ -5725,14 +5797,14 @@ ] }, { - "id": 12051, + "id": 12353, "name": "softDeleteStores", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12052, + "id": 12354, "name": "softDeleteStores", "variant": "signature", "kind": 4096, @@ -5775,7 +5847,7 @@ }, "typeParameters": [ { - "id": 12053, + "id": 12355, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -5792,7 +5864,7 @@ ], "parameters": [ { - "id": 12054, + "id": 12356, "name": "storeIds", "variant": "param", "kind": 32768, @@ -5814,7 +5886,7 @@ } }, { - "id": 12055, + "id": 12357, "name": "config", "variant": "param", "kind": 32768, @@ -5831,11 +5903,11 @@ }, "type": { "type": "reference", - "target": 12153, + "target": 12455, "typeArguments": [ { "type": "reference", - "target": 12053, + "target": 12355, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -5846,7 +5918,7 @@ } }, { - "id": 12056, + "id": 12358, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5863,7 +5935,7 @@ }, "type": { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" } @@ -5915,14 +5987,14 @@ ] }, { - "id": 12057, + "id": 12359, "name": "restoreStores", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12058, + "id": 12360, "name": "restoreStores", "variant": "signature", "kind": 4096, @@ -5965,7 +6037,7 @@ }, "typeParameters": [ { - "id": 12059, + "id": 12361, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -5982,7 +6054,7 @@ ], "parameters": [ { - "id": 12060, + "id": 12362, "name": "storeIds", "variant": "param", "kind": 32768, @@ -6004,7 +6076,7 @@ } }, { - "id": 12061, + "id": 12363, "name": "config", "variant": "param", "kind": 32768, @@ -6029,11 +6101,11 @@ }, "type": { "type": "reference", - "target": 12156, + "target": 12458, "typeArguments": [ { "type": "reference", - "target": 12059, + "target": 12361, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -6044,7 +6116,7 @@ } }, { - "id": 12062, + "id": 12364, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6061,7 +6133,7 @@ }, "type": { "type": "reference", - "target": 12097, + "target": 12399, "name": "Context", "package": "@medusajs/types" } @@ -6117,22 +6189,22 @@ { "title": "Methods", "children": [ - 12006, - 12013, - 12020, - 12029, - 12036, - 12041, - 12046, - 12051, - 12057 + 12308, + 12315, + 12322, + 12331, + 12338, + 12343, + 12348, + 12353, + 12359 ] } ], "extendedTypes": [ { "type": "reference", - "target": 12076, + "target": 12378, "name": "IModuleService", "package": "@medusajs/types" } @@ -6143,1015 +6215,1015 @@ { "title": "Interfaces", "children": [ - 12140, - 12208, - 12153, - 12156, - 12255, - 12212, - 12076, - 12239, - 12186, - 12097, - 12200, - 12109, - 12134, - 12183, - 12090, - 12119, - 12127, - 12005 + 12442, + 12510, + 12455, + 12458, + 12557, + 12514, + 12378, + 12541, + 12488, + 12399, + 12502, + 12411, + 12436, + 12485, + 12392, + 12421, + 12429, + 12307 ] }, { "title": "Type Aliases", "children": [ - 12273, - 12267, - 12235, - 12245, - 12258, - 12229, - 12159, - 12226 + 12575, + 12569, + 12537, + 12547, + 12560, + 12531, + 12461, + 12528 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "12004": { + "12306": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "" }, - "12005": { + "12307": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService" }, - "12006": { + "12308": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.createStores" }, - "12007": { + "12309": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.createStores" }, - "12008": { + "12310": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "data" }, - "12009": { + "12311": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "sharedContext" }, - "12010": { + "12312": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.createStores" }, - "12011": { + "12313": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "data" }, - "12012": { + "12314": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "sharedContext" }, - "12013": { + "12315": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.upsertStores" }, - "12014": { + "12316": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.upsertStores" }, - "12015": { + "12317": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "data" }, - "12016": { + "12318": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "sharedContext" }, - "12017": { + "12319": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.upsertStores" }, - "12018": { + "12320": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "data" }, - "12019": { + "12321": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "sharedContext" }, - "12020": { + "12322": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.updateStores" }, - "12021": { + "12323": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.updateStores" }, - "12022": { + "12324": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "id" }, - "12023": { + "12325": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "data" }, - "12024": { + "12326": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "sharedContext" }, - "12025": { + "12327": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.updateStores" }, - "12026": { + "12328": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "selector" }, - "12027": { + "12329": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "data" }, - "12028": { + "12330": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "sharedContext" }, - "12029": { + "12331": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.deleteStores" }, - "12030": { + "12332": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.deleteStores" }, - "12031": { + "12333": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "ids" }, - "12032": { + "12334": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "sharedContext" }, - "12033": { + "12335": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.deleteStores" }, - "12034": { + "12336": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "id" }, - "12035": { + "12337": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "sharedContext" }, - "12036": { + "12338": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.retrieveStore" }, - "12037": { + "12339": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.retrieveStore" }, - "12038": { + "12340": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "id" }, - "12039": { + "12341": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "config" }, - "12040": { + "12342": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "sharedContext" }, - "12041": { + "12343": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.listStores" }, - "12042": { + "12344": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.listStores" }, - "12043": { + "12345": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "filters" }, - "12044": { + "12346": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "config" }, - "12045": { + "12347": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "sharedContext" }, - "12046": { + "12348": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.listAndCountStores" }, - "12047": { + "12349": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.listAndCountStores" }, - "12048": { + "12350": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "filters" }, - "12049": { + "12351": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "config" }, - "12050": { + "12352": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "sharedContext" }, - "12051": { + "12353": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.softDeleteStores" }, - "12052": { + "12354": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.softDeleteStores" }, - "12053": { + "12355": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12054": { + "12356": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "storeIds" }, - "12055": { + "12357": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "config" }, - "12056": { + "12358": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "sharedContext" }, - "12057": { + "12359": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.restoreStores" }, - "12058": { + "12360": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "IStoreModuleService.restoreStores" }, - "12059": { + "12361": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12060": { + "12362": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "storeIds" }, - "12061": { + "12363": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "config" }, - "12062": { + "12364": { "sourceFileName": "../../../../packages/core/types/src/store/service.ts", "qualifiedName": "sharedContext" }, - "12076": { + "12378": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "12090": { + "12392": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "CreateStoreDTO" }, - "12091": { + "12393": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "CreateStoreDTO.name" }, - "12092": { + "12394": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "CreateStoreDTO.supported_currencies" }, - "12093": { + "12395": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "CreateStoreDTO.default_sales_channel_id" }, - "12094": { + "12396": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "CreateStoreDTO.default_region_id" }, - "12095": { + "12397": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "CreateStoreDTO.default_location_id" }, - "12096": { + "12398": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "CreateStoreDTO.metadata" }, - "12097": { + "12399": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "12098": { + "12400": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "12099": { + "12401": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "12100": { + "12402": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "12101": { + "12403": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "12102": { + "12404": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "12103": { + "12405": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "12104": { + "12406": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "12105": { + "12407": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "12106": { + "12408": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "12107": { + "12409": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "12108": { + "12410": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "12109": { + "12411": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreDTO" }, - "12110": { + "12412": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreDTO.id" }, - "12111": { + "12413": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreDTO.name" }, - "12112": { + "12414": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreDTO.supported_currencies" }, - "12113": { + "12415": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreDTO.default_sales_channel_id" }, - "12114": { + "12416": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreDTO.default_region_id" }, - "12115": { + "12417": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreDTO.default_location_id" }, - "12116": { + "12418": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreDTO.metadata" }, - "12117": { + "12419": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreDTO.created_at" }, - "12118": { + "12420": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreDTO.updated_at" }, - "12119": { + "12421": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpsertStoreDTO" }, - "12120": { + "12422": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpsertStoreDTO.id" }, - "12121": { + "12423": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpdateStoreDTO.name" }, - "12122": { + "12424": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpdateStoreDTO.supported_currencies" }, - "12123": { + "12425": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpdateStoreDTO.default_sales_channel_id" }, - "12124": { + "12426": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpdateStoreDTO.default_region_id" }, - "12125": { + "12427": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpdateStoreDTO.default_location_id" }, - "12126": { + "12428": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpdateStoreDTO.metadata" }, - "12127": { + "12429": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpdateStoreDTO" }, - "12128": { + "12430": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpdateStoreDTO.name" }, - "12129": { + "12431": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpdateStoreDTO.supported_currencies" }, - "12130": { + "12432": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpdateStoreDTO.default_sales_channel_id" }, - "12131": { + "12433": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpdateStoreDTO.default_region_id" }, - "12132": { + "12434": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpdateStoreDTO.default_location_id" }, - "12133": { + "12435": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "UpdateStoreDTO.metadata" }, - "12134": { + "12436": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "FilterableStoreProps" }, - "12135": { + "12437": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "FilterableStoreProps.q" }, - "12136": { + "12438": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "FilterableStoreProps.id" }, - "12137": { + "12439": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "FilterableStoreProps.name" }, - "12138": { + "12440": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "12139": { + "12441": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "12140": { + "12442": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "12141": { + "12443": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "12142": { + "12444": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "12143": { + "12445": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "12144": { + "12446": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "12145": { + "12447": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "12146": { + "12448": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "12147": { + "12449": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "12149": { + "12451": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "12150": { + "12452": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "12151": { + "12453": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "12152": { + "12454": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "12153": { + "12455": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "SoftDeleteReturn" }, - "12154": { + "12456": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "12155": { + "12457": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12156": { + "12458": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RestoreReturn" }, - "12157": { + "12459": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "12158": { + "12460": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12159": { + "12461": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "12160": { + "12462": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "12161": { + "12463": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "12162": { + "12464": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "12163": { + "12465": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "12164": { + "12466": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "12165": { + "12467": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "12166": { + "12468": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "12167": { + "12469": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "12168": { + "12470": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "12169": { + "12471": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "12170": { + "12472": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "12171": { + "12473": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "12172": { + "12474": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "12173": { + "12475": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "12174": { + "12476": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "12175": { + "12477": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "12176": { + "12478": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "12177": { + "12479": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "12178": { + "12480": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "12179": { + "12481": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "12180": { + "12482": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "12181": { + "12483": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "12182": { + "12484": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "12183": { + "12485": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "CreateStoreCurrencyDTO" }, - "12184": { + "12486": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "CreateStoreCurrencyDTO.currency_code" }, - "12185": { + "12487": { "sourceFileName": "../../../../packages/core/types/src/store/mutations/store.ts", "qualifiedName": "CreateStoreCurrencyDTO.is_default" }, - "12186": { + "12488": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "12187": { + "12489": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "12188": { + "12490": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "12189": { + "12491": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "12190": { + "12492": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "12191": { + "12493": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "12192": { + "12494": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "12193": { + "12495": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "12194": { + "12496": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "12195": { + "12497": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "12196": { + "12498": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "12197": { + "12499": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "12198": { + "12500": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "12199": { + "12501": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "12200": { + "12502": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreCurrencyDTO" }, - "12201": { + "12503": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreCurrencyDTO.id" }, - "12202": { + "12504": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreCurrencyDTO.currency_code" }, - "12203": { + "12505": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreCurrencyDTO.is_default" }, - "12204": { + "12506": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreCurrencyDTO.store_id" }, - "12205": { + "12507": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreCurrencyDTO.created_at" }, - "12206": { + "12508": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreCurrencyDTO.updated_at" }, - "12207": { + "12509": { "sourceFileName": "../../../../packages/core/types/src/store/common/store.ts", "qualifiedName": "StoreCurrencyDTO.deleted_at" }, - "12208": { + "12510": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "12209": { + "12511": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "12210": { + "12512": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "12211": { + "12513": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "12212": { + "12514": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "12213": { + "12515": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "12214": { + "12516": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "12215": { + "12517": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "12216": { + "12518": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "12217": { + "12519": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "12218": { + "12520": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "12219": { + "12521": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "12220": { + "12522": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "12221": { + "12523": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "12222": { + "12524": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "12223": { + "12525": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "12224": { + "12526": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "12225": { + "12527": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "12226": { + "12528": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "12227": { + "12529": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "12228": { + "12530": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "12229": { + "12531": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "12230": { + "12532": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "12231": { + "12533": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "12232": { + "12534": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "12233": { + "12535": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "12234": { + "12536": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "12235": { + "12537": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "12236": { + "12538": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "12237": { + "12539": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "12238": { + "12540": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "12239": { + "12541": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "12240": { + "12542": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "12241": { + "12543": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "12242": { + "12544": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "12243": { + "12545": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "12245": { + "12547": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "12246": { + "12548": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "12247": { + "12549": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "12248": { + "12550": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "12249": { + "12551": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "12250": { + "12552": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "12251": { + "12553": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "12252": { + "12554": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "12253": { + "12555": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "12254": { + "12556": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "12255": { + "12557": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "12256": { + "12558": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "12257": { + "12559": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "12258": { + "12560": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "12259": { + "12561": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "12260": { + "12562": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "12261": { + "12563": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "12262": { + "12564": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "12263": { + "12565": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "12264": { + "12566": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "12265": { + "12567": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "12266": { + "12568": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "12267": { + "12569": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "12268": { + "12570": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "12269": { + "12571": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "12270": { + "12572": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "12271": { + "12573": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "12272": { + "12574": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "12273": { + "12575": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "12274": { + "12576": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "12275": { + "12577": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" } @@ -7161,7 +7233,7 @@ "1": "../../../../packages/core/types/src/store/service.ts" }, "reflections": { - "1": 12004 + "1": 12306 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/tax-provider.json b/www/utils/generated/typedoc-json-output/tax-provider.json index 1e9a65b1642f3..dadc014971304 100644 --- a/www/utils/generated/typedoc-json-output/tax-provider.json +++ b/www/utils/generated/typedoc-json-output/tax-provider.json @@ -1,12 +1,12 @@ { - "id": 13878, + "id": 13761, "name": "tax-provider", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 13879, + "id": 13762, "name": "ShippingTaxCalculationLine", "variant": "declaration", "kind": 2097152, @@ -22,14 +22,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13880, + "id": 13763, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13881, + "id": 13764, "name": "shipping_line", "variant": "declaration", "kind": 1024, @@ -53,7 +53,7 @@ } }, { - "id": 13882, + "id": 13765, "name": "rates", "variant": "declaration", "kind": 1024, @@ -84,8 +84,8 @@ { "title": "Properties", "children": [ - 13881, - 13882 + 13764, + 13765 ] } ] @@ -93,7 +93,7 @@ } }, { - "id": 13883, + "id": 13766, "name": "ItemTaxCalculationLine", "variant": "declaration", "kind": 2097152, @@ -109,14 +109,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13884, + "id": 13767, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13885, + "id": 13768, "name": "line_item", "variant": "declaration", "kind": 1024, @@ -140,7 +140,7 @@ } }, { - "id": 13886, + "id": 13769, "name": "rates", "variant": "declaration", "kind": 1024, @@ -171,8 +171,8 @@ { "title": "Properties", "children": [ - 13885, - 13886 + 13768, + 13769 ] } ] @@ -180,7 +180,7 @@ } }, { - "id": 13887, + "id": 13770, "name": "ITaxProvider", "variant": "declaration", "kind": 256, @@ -283,14 +283,14 @@ }, "children": [ { - "id": 13890, + "id": 13773, "name": "getTaxLines", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 13891, + "id": 13774, "name": "getTaxLines", "variant": "signature", "kind": 4096, @@ -361,7 +361,7 @@ }, "parameters": [ { - "id": 13892, + "id": 13775, "name": "itemLines", "variant": "param", "kind": 32768, @@ -378,14 +378,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 13883, + "target": 13766, "name": "ItemTaxCalculationLine", "package": "@medusajs/types" } } }, { - "id": 13893, + "id": 13776, "name": "shippingLines", "variant": "param", "kind": 32768, @@ -402,14 +402,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 13879, + "target": 13762, "name": "ShippingTaxCalculationLine", "package": "@medusajs/types" } } }, { - "id": 13894, + "id": 13777, "name": "context", "variant": "param", "kind": 32768, @@ -478,7 +478,7 @@ { "title": "Methods", "children": [ - 13890 + 13773 ] } ] @@ -488,76 +488,76 @@ { "title": "Interfaces", "children": [ - 13887 + 13770 ] }, { "title": "Type Aliases", "children": [ - 13879, - 13883 + 13762, + 13766 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "13878": { + "13761": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "" }, - "13879": { + "13762": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "ShippingTaxCalculationLine" }, - "13880": { + "13763": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "__type" }, - "13881": { + "13764": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "__type.shipping_line" }, - "13882": { + "13765": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "__type.rates" }, - "13883": { + "13766": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "ItemTaxCalculationLine" }, - "13884": { + "13767": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "__type" }, - "13885": { + "13768": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "__type.line_item" }, - "13886": { + "13769": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "__type.rates" }, - "13887": { + "13770": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "ITaxProvider" }, - "13890": { + "13773": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "ITaxProvider.getTaxLines" }, - "13891": { + "13774": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "ITaxProvider.getTaxLines" }, - "13892": { + "13775": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "itemLines" }, - "13893": { + "13776": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "shippingLines" }, - "13894": { + "13777": { "sourceFileName": "../../../../packages/core/types/src/tax/provider.ts", "qualifiedName": "context" } @@ -567,7 +567,7 @@ "1": "../../../../packages/core/types/src/tax/provider.ts" }, "reflections": { - "1": 13878 + "1": 13761 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/tax.json b/www/utils/generated/typedoc-json-output/tax.json index 10d279bbd5355..10f36984520d1 100644 --- a/www/utils/generated/typedoc-json-output/tax.json +++ b/www/utils/generated/typedoc-json-output/tax.json @@ -1,12 +1,12 @@ { - "id": 12310, + "id": 12612, "name": "tax", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 12467, + "id": 12769, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 12468, + "id": 12770, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 12479, + "target": 12781, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 12469, + "id": 12771, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 12470, + "id": 12772, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 12471, + "id": 12773, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 12472, + "id": 12774, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 12473, + "id": 12775, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 12474, + "id": 12776, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 12475, + "id": 12777, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 12476, + "id": 12778, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 12477, + "id": 12779, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 12478, + "id": 12780, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 12468, - 12469, - 12470, - 12471, - 12472, - 12476, - 12477, - 12478 + 12770, + 12771, + 12772, + 12773, + 12774, + 12778, + 12779, + 12780 ] } ], "typeParameters": [ { - "id": 12479, + "id": 12781, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 12720, + "id": 13022, "name": "MetadataType", "variant": "declaration", "kind": 2097152, @@ -394,7 +394,7 @@ } }, { - "id": 12694, + "id": 12996, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -409,7 +409,7 @@ }, "children": [ { - "id": 12695, + "id": 12997, "name": "$and", "variant": "declaration", "kind": 1024, @@ -431,11 +431,11 @@ "types": [ { "type": "reference", - "target": 12694, + "target": 12996, "typeArguments": [ { "type": "reference", - "target": 12697, + "target": 12999, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -447,7 +447,7 @@ }, { "type": "reference", - "target": 12697, + "target": 12999, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -458,7 +458,7 @@ } }, { - "id": 12696, + "id": 12998, "name": "$or", "variant": "declaration", "kind": 1024, @@ -480,11 +480,11 @@ "types": [ { "type": "reference", - "target": 12694, + "target": 12996, "typeArguments": [ { "type": "reference", - "target": 12697, + "target": 12999, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -496,7 +496,7 @@ }, { "type": "reference", - "target": 12697, + "target": 12999, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -511,14 +511,14 @@ { "title": "Properties", "children": [ - 12695, - 12696 + 12997, + 12998 ] } ], "typeParameters": [ { - "id": 12697, + "id": 12999, "name": "T", "variant": "typeParam", "kind": 131072, @@ -528,23 +528,23 @@ "extendedBy": [ { "type": "reference", - "target": 12505, + "target": 12807, "name": "FilterableTaxRateProps" }, { "type": "reference", - "target": 12568, + "target": 12870, "name": "FilterableTaxRegionProps" }, { "type": "reference", - "target": 12596, + "target": 12898, "name": "FilterableTaxRateRuleProps" } ] }, { - "id": 12653, + "id": 12955, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -559,7 +559,7 @@ }, "children": [ { - "id": 12654, + "id": 12956, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -578,7 +578,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12655, + "target": 12957, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -590,13 +590,13 @@ { "title": "Properties", "children": [ - 12654 + 12956 ] } ], "typeParameters": [ { - "id": 12655, + "id": 12957, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -609,7 +609,7 @@ ] }, { - "id": 12543, + "id": 12845, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -624,7 +624,7 @@ }, "children": [ { - "id": 12544, + "id": 12846, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -643,7 +643,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12545, + "target": 12847, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -655,13 +655,13 @@ { "title": "Properties", "children": [ - 12544 + 12846 ] } ], "typeParameters": [ { - "id": 12545, + "id": 12847, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -674,14 +674,14 @@ ] }, { - "id": 12771, + "id": 13073, "name": "Query", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12772, + "id": 13074, "name": "T", "variant": "typeParam", "kind": 131072, @@ -692,7 +692,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 12772, + "target": 13074, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -705,14 +705,14 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 12772, + "target": 13074, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 12798, + "target": 13100, "name": "Scalar", "package": "@medusajs/types" }, @@ -722,11 +722,11 @@ }, "falseType": { "type": "reference", - "target": 12802, + "target": 13104, "typeArguments": [ { "type": "reference", - "target": 12772, + "target": 13074, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -738,11 +738,11 @@ }, "falseType": { "type": "reference", - "target": 12808, + "target": 13110, "typeArguments": [ { "type": "reference", - "target": 12772, + "target": 13074, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -754,14 +754,14 @@ } }, { - "id": 12773, + "id": 13075, "name": "ExpandScalar", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12774, + "id": 13076, "name": "T", "variant": "typeParam", "kind": 131072, @@ -779,7 +779,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 12774, + "target": 13076, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -810,7 +810,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 12774, + "target": 13076, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -844,7 +844,7 @@ }, "falseType": { "type": "reference", - "target": 12774, + "target": 13076, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -855,7 +855,7 @@ } }, { - "id": 12798, + "id": 13100, "name": "Scalar", "variant": "declaration", "kind": 2097152, @@ -914,21 +914,21 @@ { "type": "reflection", "declaration": { - "id": 12799, + "id": 13101, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12800, + "id": 13102, "name": "toHexString", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12801, + "id": 13103, "name": "toHexString", "variant": "signature", "kind": 4096, @@ -945,7 +945,7 @@ { "title": "Methods", "children": [ - 12800 + 13102 ] } ] @@ -955,14 +955,14 @@ } }, { - "id": 12826, + "id": 13128, "name": "ReadonlyPrimary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12827, + "id": 13129, "name": "T", "variant": "typeParam", "kind": 131072, @@ -973,7 +973,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 12827, + "target": 13129, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -994,7 +994,7 @@ "typeArguments": [ { "type": "reference", - "target": 12827, + "target": 13129, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1005,7 +1005,7 @@ }, "falseType": { "type": "reference", - "target": 12827, + "target": 13129, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1013,14 +1013,14 @@ } }, { - "id": 12816, + "id": 13118, "name": "Primary", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12825, + "id": 13127, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1031,7 +1031,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 12825, + "target": 13127, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1039,14 +1039,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 12817, + "id": 13119, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12818, + "id": 13120, "name": "[PrimaryKeyType]", "variant": "declaration", "kind": 1024, @@ -1063,7 +1063,7 @@ { "title": "Properties", "children": [ - 12818 + 13120 ] } ] @@ -1071,7 +1071,7 @@ }, "trueType": { "type": "reference", - "target": 12826, + "target": 13128, "typeArguments": [ { "type": "reference", @@ -1091,7 +1091,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 12825, + "target": 13127, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1099,14 +1099,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 12819, + "id": 13121, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12820, + "id": 13122, "name": "_id", "variant": "declaration", "kind": 1024, @@ -1123,7 +1123,7 @@ { "title": "Properties", "children": [ - 12820 + 13122 ] } ] @@ -1134,7 +1134,7 @@ "types": [ { "type": "reference", - "target": 12826, + "target": 13128, "typeArguments": [ { "type": "reference", @@ -1160,7 +1160,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 12825, + "target": 13127, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1168,14 +1168,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 12821, + "id": 13123, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12822, + "id": 13124, "name": "uuid", "variant": "declaration", "kind": 1024, @@ -1192,7 +1192,7 @@ { "title": "Properties", "children": [ - 12822 + 13124 ] } ] @@ -1200,7 +1200,7 @@ }, "trueType": { "type": "reference", - "target": 12826, + "target": 13128, "typeArguments": [ { "type": "reference", @@ -1220,7 +1220,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 12825, + "target": 13127, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1228,14 +1228,14 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 12823, + "id": 13125, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12824, + "id": 13126, "name": "id", "variant": "declaration", "kind": 1024, @@ -1252,7 +1252,7 @@ { "title": "Properties", "children": [ - 12824 + 13126 ] } ] @@ -1260,7 +1260,7 @@ }, "trueType": { "type": "reference", - "target": 12826, + "target": 13128, "typeArguments": [ { "type": "reference", @@ -1286,14 +1286,14 @@ } }, { - "id": 12698, + "id": 13000, "name": "OperatorMap", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12719, + "id": 13021, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1303,14 +1303,14 @@ "type": { "type": "reflection", "declaration": { - "id": 12699, + "id": 13001, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12700, + "id": 13002, "name": "$and", "variant": "declaration", "kind": 1024, @@ -1321,11 +1321,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 12771, + "target": 13073, "typeArguments": [ { "type": "reference", - "target": 12719, + "target": 13021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1337,7 +1337,7 @@ } }, { - "id": 12701, + "id": 13003, "name": "$or", "variant": "declaration", "kind": 1024, @@ -1348,11 +1348,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 12771, + "target": 13073, "typeArguments": [ { "type": "reference", - "target": 12719, + "target": 13021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1364,7 +1364,7 @@ } }, { - "id": 12702, + "id": 13004, "name": "$eq", "variant": "declaration", "kind": 1024, @@ -1376,11 +1376,11 @@ "types": [ { "type": "reference", - "target": 12773, + "target": 13075, "typeArguments": [ { "type": "reference", - "target": 12719, + "target": 13021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1393,11 +1393,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 12773, + "target": 13075, "typeArguments": [ { "type": "reference", - "target": 12719, + "target": 13021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1411,7 +1411,7 @@ } }, { - "id": 12703, + "id": 13005, "name": "$ne", "variant": "declaration", "kind": 1024, @@ -1420,11 +1420,11 @@ }, "type": { "type": "reference", - "target": 12773, + "target": 13075, "typeArguments": [ { "type": "reference", - "target": 12719, + "target": 13021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1435,7 +1435,7 @@ } }, { - "id": 12704, + "id": 13006, "name": "$in", "variant": "declaration", "kind": 1024, @@ -1446,11 +1446,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 12773, + "target": 13075, "typeArguments": [ { "type": "reference", - "target": 12719, + "target": 13021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1462,7 +1462,7 @@ } }, { - "id": 12705, + "id": 13007, "name": "$nin", "variant": "declaration", "kind": 1024, @@ -1473,11 +1473,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 12773, + "target": 13075, "typeArguments": [ { "type": "reference", - "target": 12719, + "target": 13021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1489,7 +1489,7 @@ } }, { - "id": 12706, + "id": 13008, "name": "$not", "variant": "declaration", "kind": 1024, @@ -1498,11 +1498,11 @@ }, "type": { "type": "reference", - "target": 12771, + "target": 13073, "typeArguments": [ { "type": "reference", - "target": 12719, + "target": 13021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1513,7 +1513,7 @@ } }, { - "id": 12707, + "id": 13009, "name": "$gt", "variant": "declaration", "kind": 1024, @@ -1522,11 +1522,11 @@ }, "type": { "type": "reference", - "target": 12773, + "target": 13075, "typeArguments": [ { "type": "reference", - "target": 12719, + "target": 13021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1537,7 +1537,7 @@ } }, { - "id": 12708, + "id": 13010, "name": "$gte", "variant": "declaration", "kind": 1024, @@ -1546,11 +1546,11 @@ }, "type": { "type": "reference", - "target": 12773, + "target": 13075, "typeArguments": [ { "type": "reference", - "target": 12719, + "target": 13021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1561,7 +1561,7 @@ } }, { - "id": 12709, + "id": 13011, "name": "$lt", "variant": "declaration", "kind": 1024, @@ -1570,11 +1570,11 @@ }, "type": { "type": "reference", - "target": 12773, + "target": 13075, "typeArguments": [ { "type": "reference", - "target": 12719, + "target": 13021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1585,7 +1585,7 @@ } }, { - "id": 12710, + "id": 13012, "name": "$lte", "variant": "declaration", "kind": 1024, @@ -1594,11 +1594,11 @@ }, "type": { "type": "reference", - "target": 12773, + "target": 13075, "typeArguments": [ { "type": "reference", - "target": 12719, + "target": 13021, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1609,7 +1609,7 @@ } }, { - "id": 12711, + "id": 13013, "name": "$like", "variant": "declaration", "kind": 1024, @@ -1622,7 +1622,7 @@ } }, { - "id": 12712, + "id": 13014, "name": "$re", "variant": "declaration", "kind": 1024, @@ -1635,7 +1635,7 @@ } }, { - "id": 12713, + "id": 13015, "name": "$ilike", "variant": "declaration", "kind": 1024, @@ -1648,7 +1648,7 @@ } }, { - "id": 12714, + "id": 13016, "name": "$fulltext", "variant": "declaration", "kind": 1024, @@ -1661,7 +1661,7 @@ } }, { - "id": 12715, + "id": 13017, "name": "$overlap", "variant": "declaration", "kind": 1024, @@ -1677,7 +1677,7 @@ } }, { - "id": 12716, + "id": 13018, "name": "$contains", "variant": "declaration", "kind": 1024, @@ -1693,7 +1693,7 @@ } }, { - "id": 12717, + "id": 13019, "name": "$contained", "variant": "declaration", "kind": 1024, @@ -1709,7 +1709,7 @@ } }, { - "id": 12718, + "id": 13020, "name": "$exists", "variant": "declaration", "kind": 1024, @@ -1726,25 +1726,25 @@ { "title": "Properties", "children": [ - 12700, - 12701, - 12702, - 12703, - 12704, - 12705, - 12706, - 12707, - 12708, - 12709, - 12710, - 12711, - 12712, - 12713, - 12714, - 12715, - 12716, - 12717, - 12718 + 13002, + 13003, + 13004, + 13005, + 13006, + 13007, + 13008, + 13009, + 13010, + 13011, + 13012, + 13013, + 13014, + 13015, + 13016, + 13017, + 13018, + 13019, + 13020 ] } ] @@ -1752,14 +1752,14 @@ } }, { - "id": 12814, + "id": 13116, "name": "FilterValue2", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12815, + "id": 13117, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1771,18 +1771,18 @@ "types": [ { "type": "reference", - "target": 12815, + "target": 13117, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true }, { "type": "reference", - "target": 12773, + "target": 13075, "typeArguments": [ { "type": "reference", - "target": 12815, + "target": 13117, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1793,11 +1793,11 @@ }, { "type": "reference", - "target": 12816, + "target": 13118, "typeArguments": [ { "type": "reference", - "target": 12815, + "target": 13117, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1810,14 +1810,14 @@ } }, { - "id": 12808, + "id": 13110, "name": "FilterValue", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12809, + "id": 13111, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1829,15 +1829,15 @@ "types": [ { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "reference", - "target": 12814, + "target": 13116, "typeArguments": [ { "type": "reference", - "target": 12809, + "target": 13111, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1852,11 +1852,11 @@ }, { "type": "reference", - "target": 12814, + "target": 13116, "typeArguments": [ { "type": "reference", - "target": 12809, + "target": 13111, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1869,11 +1869,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 12814, + "target": 13116, "typeArguments": [ { "type": "reference", - "target": 12809, + "target": 13111, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1891,7 +1891,7 @@ } }, { - "id": 12813, + "id": 13115, "name": "PrevLimit", "variant": "declaration", "kind": 2097152, @@ -1919,14 +1919,14 @@ } }, { - "id": 12802, + "id": 13104, "name": "FilterQuery", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12806, + "id": 13108, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1937,7 +1937,7 @@ } }, { - "id": 12807, + "id": 13109, "name": "Prev", "variant": "typeParam", "kind": 131072, @@ -1956,7 +1956,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 12807, + "target": 13109, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1977,7 +1977,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 12806, + "target": 13108, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -1999,7 +1999,7 @@ }, "objectType": { "type": "reference", - "target": 12806, + "target": 13108, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2056,7 +2056,7 @@ }, "objectType": { "type": "reference", - "target": 12806, + "target": 13108, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2064,7 +2064,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "indexedAccess", @@ -2080,7 +2080,7 @@ }, "objectType": { "type": "reference", - "target": 12806, + "target": 13108, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2108,7 +2108,7 @@ }, "objectType": { "type": "reference", - "target": 12806, + "target": 13108, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2133,21 +2133,21 @@ "extendsType": { "type": "reflection", "declaration": { - "id": 12803, + "id": 13105, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 12804, + "id": 13106, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 12805, + "id": 13107, "name": "x", "variant": "param", "kind": 32768, @@ -2184,7 +2184,7 @@ }, "trueType": { "type": "reference", - "target": 12802, + "target": 13104, "typeArguments": [ { "type": "reference", @@ -2211,14 +2211,14 @@ "type": "indexedAccess", "indexType": { "type": "reference", - "target": 12807, + "target": 13109, "name": "Prev", "package": "@medusajs/types", "refersToTypeParameter": true }, "objectType": { "type": "reference", - "target": 12813, + "target": 13115, "name": "PrevLimit", "package": "@medusajs/types" } @@ -2248,7 +2248,7 @@ } }, { - "id": 12810, + "id": 13112, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -2278,14 +2278,14 @@ { "type": "reflection", "declaration": { - "id": 12811, + "id": 13113, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12812, + "id": 13114, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -2302,7 +2302,7 @@ { "title": "Properties", "children": [ - 12812 + 13114 ] } ] @@ -2312,14 +2312,14 @@ } }, { - "id": 12792, + "id": 13094, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12797, + "id": 13099, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2333,14 +2333,14 @@ "type": { "type": "reflection", "declaration": { - "id": 12793, + "id": 13095, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12794, + "id": 13096, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2351,7 +2351,7 @@ } }, { - "id": 12795, + "id": 13097, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -2360,20 +2360,20 @@ }, "type": { "type": "reference", - "target": 12810, + "target": 13112, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 12796, + "id": 13098, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 12797, + "target": 13099, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2384,9 +2384,9 @@ { "title": "Properties", "children": [ - 12794, - 12795, - 12796 + 13096, + 13097, + 13098 ] } ] @@ -2394,14 +2394,14 @@ } }, { - "id": 12751, + "id": 13053, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12754, + "id": 13056, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2417,11 +2417,11 @@ "types": [ { "type": "reference", - "target": 12792, + "target": 13094, "typeArguments": [ { "type": "reference", - "target": 12754, + "target": 13056, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2433,14 +2433,14 @@ { "type": "reflection", "declaration": { - "id": 12752, + "id": 13054, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12753, + "id": 13055, "name": "options", "variant": "declaration", "kind": 1024, @@ -2472,7 +2472,7 @@ { "title": "Properties", "children": [ - 12753 + 13055 ] } ] @@ -2482,14 +2482,14 @@ } }, { - "id": 12761, + "id": 13063, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 12770, + "id": 13072, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -2503,14 +2503,14 @@ "type": { "type": "reflection", "declaration": { - "id": 12762, + "id": 13064, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12763, + "id": 13065, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -2521,21 +2521,21 @@ } }, { - "id": 12764, + "id": 13066, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 12770, + "target": 13072, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 12765, + "id": 13067, "name": "source", "variant": "declaration", "kind": 1024, @@ -2546,7 +2546,7 @@ } }, { - "id": 12766, + "id": 13068, "name": "object", "variant": "declaration", "kind": 1024, @@ -2557,7 +2557,7 @@ } }, { - "id": 12767, + "id": 13069, "name": "action", "variant": "declaration", "kind": 1024, @@ -2570,7 +2570,7 @@ } }, { - "id": 12768, + "id": 13070, "name": "context", "variant": "declaration", "kind": 1024, @@ -2586,7 +2586,7 @@ "typeArguments": [ { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" }, @@ -2600,7 +2600,7 @@ } }, { - "id": 12769, + "id": 13071, "name": "options", "variant": "declaration", "kind": 1024, @@ -2632,13 +2632,13 @@ { "title": "Properties", "children": [ - 12763, - 12764, - 12765, - 12766, - 12767, - 12768, - 12769 + 13065, + 13066, + 13067, + 13068, + 13069, + 13070, + 13071 ] } ] @@ -2646,7 +2646,7 @@ } }, { - "id": 12783, + "id": 13085, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -2654,14 +2654,14 @@ "type": { "type": "reflection", "declaration": { - "id": 12784, + "id": 13086, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12785, + "id": 13087, "name": "alias", "variant": "declaration", "kind": 1024, @@ -2672,7 +2672,7 @@ } }, { - "id": 12786, + "id": 13088, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -2683,7 +2683,7 @@ } }, { - "id": 12787, + "id": 13089, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -2694,7 +2694,7 @@ } }, { - "id": 12788, + "id": 13090, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2705,7 +2705,7 @@ } }, { - "id": 12789, + "id": 13091, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -2726,7 +2726,7 @@ } }, { - "id": 12790, + "id": 13092, "name": "isList", "variant": "declaration", "kind": 1024, @@ -2747,7 +2747,7 @@ } }, { - "id": 12791, + "id": 13093, "name": "args", "variant": "declaration", "kind": 1024, @@ -2787,13 +2787,13 @@ { "title": "Properties", "children": [ - 12785, - 12786, - 12787, - 12788, - 12789, - 12790, - 12791 + 13087, + 13088, + 13089, + 13090, + 13091, + 13092, + 13093 ] } ] @@ -2801,14 +2801,14 @@ } }, { - "id": 12780, + "id": 13082, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 12781, + "id": 13083, "name": "name", "variant": "declaration", "kind": 1024, @@ -2831,7 +2831,7 @@ } }, { - "id": 12782, + "id": 13084, "name": "args", "variant": "declaration", "kind": 1024, @@ -2871,21 +2871,21 @@ { "title": "Properties", "children": [ - 12781, - 12782 + 13083, + 13084 ] } ] }, { - "id": 12728, + "id": 13030, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 12729, + "id": 13031, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2896,7 +2896,7 @@ } }, { - "id": 12730, + "id": 13032, "name": "alias", "variant": "declaration", "kind": 1024, @@ -2916,7 +2916,7 @@ "types": [ { "type": "reference", - "target": 12780, + "target": 13082, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -2924,7 +2924,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12780, + "target": 13082, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -2933,7 +2933,7 @@ } }, { - "id": 12731, + "id": 13033, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -2969,14 +2969,14 @@ { "type": "reflection", "declaration": { - "id": 12732, + "id": 13034, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12733, + "id": 13035, "name": "path", "variant": "declaration", "kind": 1024, @@ -2987,7 +2987,7 @@ } }, { - "id": 12734, + "id": 13036, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -3005,8 +3005,8 @@ { "title": "Properties", "children": [ - 12733, - 12734 + 13035, + 13036 ] } ] @@ -3020,7 +3020,7 @@ } }, { - "id": 12735, + "id": 13037, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -3034,7 +3034,7 @@ } }, { - "id": 12736, + "id": 13038, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -3045,14 +3045,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 12783, + "target": 13085, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 12737, + "id": 13039, "name": "extends", "variant": "declaration", "kind": 1024, @@ -3064,14 +3064,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 12738, + "id": 13040, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12739, + "id": 13041, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3082,14 +3082,14 @@ } }, { - "id": 12740, + "id": 13042, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 12783, + "target": 13085, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -3099,8 +3099,8 @@ { "title": "Properties", "children": [ - 12739, - 12740 + 13041, + 13042 ] } ] @@ -3109,7 +3109,7 @@ } }, { - "id": 12741, + "id": 13043, "name": "args", "variant": "declaration", "kind": 1024, @@ -3149,19 +3149,19 @@ { "title": "Properties", "children": [ - 12729, - 12730, - 12731, - 12735, - 12736, - 12737, - 12741 + 13031, + 13032, + 13033, + 13037, + 13038, + 13039, + 13043 ] } ] }, { - "id": 12745, + "id": 13047, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -3180,14 +3180,14 @@ { "type": "reflection", "declaration": { - "id": 12746, + "id": 13048, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12747, + "id": 13049, "name": "type", "variant": "declaration", "kind": 1024, @@ -3283,7 +3283,7 @@ } }, { - "id": 12748, + "id": 13050, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -3296,7 +3296,7 @@ } }, { - "id": 12749, + "id": 13051, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -3309,7 +3309,7 @@ } }, { - "id": 12750, + "id": 13052, "name": "options", "variant": "declaration", "kind": 1024, @@ -3349,10 +3349,10 @@ { "title": "Properties", "children": [ - 12747, - 12748, - 12749, - 12750 + 13049, + 13050, + 13051, + 13052 ] } ] @@ -3364,7 +3364,7 @@ } }, { - "id": 12656, + "id": 12958, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -3381,7 +3381,7 @@ "typeArguments": [ { "type": "reference", - "target": 12728, + "target": 13030, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -3413,14 +3413,14 @@ { "type": "reflection", "declaration": { - "id": 12657, + "id": 12959, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12658, + "id": 12960, "name": "schema", "variant": "declaration", "kind": 1024, @@ -3441,7 +3441,7 @@ } }, { - "id": 12659, + "id": 12961, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -3452,14 +3452,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 12742, + "target": 13044, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 12660, + "id": 12962, "name": "extends", "variant": "declaration", "kind": 1024, @@ -3471,14 +3471,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 12661, + "id": 12963, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12662, + "id": 12964, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3489,7 +3489,7 @@ } }, { - "id": 12663, + "id": 12965, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -3517,14 +3517,14 @@ { "type": "reflection", "declaration": { - "id": 12664, + "id": 12966, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12665, + "id": 12967, "name": "path", "variant": "declaration", "kind": 1024, @@ -3535,7 +3535,7 @@ } }, { - "id": 12666, + "id": 12968, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -3551,7 +3551,7 @@ } }, { - "id": 12667, + "id": 12969, "name": "isList", "variant": "declaration", "kind": 1024, @@ -3568,9 +3568,9 @@ { "title": "Properties", "children": [ - 12665, - 12666, - 12667 + 12967, + 12968, + 12969 ] } ] @@ -3584,14 +3584,14 @@ } }, { - "id": 12668, + "id": 12970, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 12742, + "target": 13044, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -3601,9 +3601,9 @@ { "title": "Properties", "children": [ - 12662, - 12663, - 12668 + 12964, + 12965, + 12970 ] } ] @@ -3612,7 +3612,7 @@ } }, { - "id": 12669, + "id": 12971, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -3625,7 +3625,7 @@ } }, { - "id": 12670, + "id": 12972, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -3641,7 +3641,7 @@ } }, { - "id": 12671, + "id": 12973, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -3662,7 +3662,7 @@ } }, { - "id": 12672, + "id": 12974, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -3698,7 +3698,7 @@ } }, { - "id": 12673, + "id": 12975, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -3719,7 +3719,7 @@ } }, { - "id": 12674, + "id": 12976, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -3743,7 +3743,7 @@ } }, { - "id": 12675, + "id": 12977, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -3753,14 +3753,14 @@ "type": { "type": "reflection", "declaration": { - "id": 12676, + "id": 12978, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12677, + "id": 12979, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -3781,7 +3781,7 @@ } }, { - "id": 12678, + "id": 12980, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -3802,7 +3802,7 @@ } }, { - "id": 12679, + "id": 12981, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -3811,7 +3811,7 @@ }, "type": { "type": "reference", - "target": 12745, + "target": 13047, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -3821,9 +3821,9 @@ { "title": "Properties", "children": [ - 12677, - 12678, - 12679 + 12979, + 12980, + 12981 ] } ] @@ -3835,16 +3835,16 @@ { "title": "Properties", "children": [ - 12658, - 12659, - 12660, - 12669, - 12670, - 12671, - 12672, - 12673, - 12674, - 12675 + 12960, + 12961, + 12962, + 12971, + 12972, + 12973, + 12974, + 12975, + 12976, + 12977 ] } ] @@ -3854,7 +3854,7 @@ } }, { - "id": 12742, + "id": 13044, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -3864,21 +3864,21 @@ "types": [ { "type": "reference", - "target": 12783, + "target": 13085, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 12743, + "id": 13045, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12744, + "id": 13046, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -3903,7 +3903,7 @@ { "title": "Properties", "children": [ - 12744 + 13046 ] } ] @@ -3913,7 +3913,7 @@ } }, { - "id": 12453, + "id": 12755, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -3921,20 +3921,20 @@ "extendedBy": [ { "type": "reference", - "target": 12311, + "target": 12613, "name": "ITaxModuleService" } ] }, { - "id": 12755, + "id": 13057, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 12756, + "id": 13058, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -3950,7 +3950,7 @@ } }, { - "id": 12757, + "id": 13059, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -3960,21 +3960,21 @@ "type": { "type": "reflection", "declaration": { - "id": 12758, + "id": 13060, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 12759, + "id": 13061, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 12760, + "id": 13062, "name": "key", "variant": "param", "kind": 32768, @@ -4015,35 +4015,35 @@ { "title": "Properties", "children": [ - 12756, - 12757 + 13058, + 13059 ] } ] }, { - "id": 12680, + "id": 12982, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 12681, + "id": 12983, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12682, + "id": 12984, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 12683, + "id": 12985, "name": "msg", "variant": "param", "kind": 32768, @@ -4053,7 +4053,7 @@ "types": [ { "type": "reference", - "target": 12751, + "target": 13053, "name": "Message", "package": "@medusajs/types" }, @@ -4061,7 +4061,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12751, + "target": 13053, "name": "Message", "package": "@medusajs/types" } @@ -4078,21 +4078,21 @@ ] }, { - "id": 12684, + "id": 12986, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12685, + "id": 12987, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 12686, + "id": 12988, "name": "format", "variant": "param", "kind": 32768, @@ -4101,7 +4101,7 @@ }, "type": { "type": "reference", - "target": 12755, + "target": 13057, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -4122,7 +4122,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12751, + "target": 13053, "name": "Message", "package": "@medusajs/types" } @@ -4135,14 +4135,14 @@ ] }, { - "id": 12687, + "id": 12989, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12688, + "id": 12990, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -4155,21 +4155,21 @@ ] }, { - "id": 12689, + "id": 12991, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12690, + "id": 12992, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 12691, + "id": 12993, "name": "T", "variant": "typeParam", "kind": 131072, @@ -4178,7 +4178,7 @@ ], "parameters": [ { - "id": 12692, + "id": 12994, "name": "messageData", "variant": "param", "kind": 32768, @@ -4188,11 +4188,11 @@ "types": [ { "type": "reference", - "target": 12761, + "target": 13063, "typeArguments": [ { "type": "reference", - "target": 12691, + "target": 12993, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -4205,11 +4205,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 12761, + "target": 13063, "typeArguments": [ { "type": "reference", - "target": 12691, + "target": 12993, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -4223,7 +4223,7 @@ } }, { - "id": 12693, + "id": 12995, "name": "options", "variant": "param", "kind": 32768, @@ -4263,16 +4263,16 @@ { "title": "Methods", "children": [ - 12681, - 12684, - 12687, - 12689 + 12983, + 12986, + 12989, + 12991 ] } ] }, { - "id": 12493, + "id": 12795, "name": "Context", "variant": "declaration", "kind": 256, @@ -4287,7 +4287,7 @@ }, "children": [ { - "id": 12494, + "id": 12796, "name": "__type", "variant": "declaration", "kind": 1024, @@ -4300,7 +4300,7 @@ } }, { - "id": 12495, + "id": 12797, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -4333,14 +4333,14 @@ }, "type": { "type": "reference", - "target": 12504, + "target": 12806, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 12496, + "id": 12798, "name": "manager", "variant": "declaration", "kind": 1024, @@ -4373,14 +4373,14 @@ }, "type": { "type": "reference", - "target": 12504, + "target": 12806, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 12497, + "id": 12799, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -4433,7 +4433,7 @@ } }, { - "id": 12498, + "id": 12800, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -4454,7 +4454,7 @@ } }, { - "id": 12499, + "id": 12801, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -4475,7 +4475,7 @@ } }, { - "id": 12500, + "id": 12802, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -4496,7 +4496,7 @@ } }, { - "id": 12501, + "id": 12803, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -4513,13 +4513,13 @@ }, "type": { "type": "reference", - "target": 12680, + "target": 12982, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 12502, + "id": 12804, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -4540,7 +4540,7 @@ } }, { - "id": 12503, + "id": 12805, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -4565,22 +4565,22 @@ { "title": "Properties", "children": [ - 12494, - 12495, - 12496, - 12497, - 12498, - 12499, - 12500, - 12501, - 12502, - 12503 + 12796, + 12797, + 12798, + 12799, + 12800, + 12801, + 12802, + 12803, + 12804, + 12805 ] } ], "typeParameters": [ { - "id": 12504, + "id": 12806, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -4593,7 +4593,7 @@ ] }, { - "id": 12480, + "id": 12782, "name": "TaxRateDTO", "variant": "declaration", "kind": 256, @@ -4608,7 +4608,7 @@ }, "children": [ { - "id": 12481, + "id": 12783, "name": "id", "variant": "declaration", "kind": 1024, @@ -4627,7 +4627,7 @@ } }, { - "id": 12482, + "id": 12784, "name": "rate", "variant": "declaration", "kind": 1024, @@ -4666,7 +4666,7 @@ } }, { - "id": 12483, + "id": 12785, "name": "code", "variant": "declaration", "kind": 1024, @@ -4694,7 +4694,7 @@ } }, { - "id": 12484, + "id": 12786, "name": "name", "variant": "declaration", "kind": 1024, @@ -4724,7 +4724,7 @@ } }, { - "id": 12485, + "id": 12787, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4767,7 +4767,7 @@ } }, { - "id": 12486, + "id": 12788, "name": "tax_region_id", "variant": "declaration", "kind": 1024, @@ -4786,7 +4786,7 @@ } }, { - "id": 12487, + "id": 12789, "name": "is_combinable", "variant": "declaration", "kind": 1024, @@ -4805,7 +4805,7 @@ } }, { - "id": 12488, + "id": 12790, "name": "is_default", "variant": "declaration", "kind": 1024, @@ -4824,7 +4824,7 @@ } }, { - "id": 12489, + "id": 12791, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -4857,7 +4857,7 @@ } }, { - "id": 12490, + "id": 12792, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -4890,7 +4890,7 @@ } }, { - "id": 12491, + "id": 12793, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -4923,7 +4923,7 @@ } }, { - "id": 12492, + "id": 12794, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -4955,24 +4955,24 @@ { "title": "Properties", "children": [ - 12481, - 12482, - 12483, - 12484, - 12485, - 12486, - 12487, - 12488, - 12489, - 12490, - 12491, - 12492 + 12783, + 12784, + 12785, + 12786, + 12787, + 12788, + 12789, + 12790, + 12791, + 12792, + 12793, + 12794 ] } ] }, { - "id": 12505, + "id": 12807, "name": "FilterableTaxRateProps", "variant": "declaration", "kind": 256, @@ -4987,7 +4987,7 @@ }, "children": [ { - "id": 12515, + "id": 12817, "name": "$and", "variant": "declaration", "kind": 1024, @@ -5010,17 +5010,17 @@ "types": [ { "type": "reference", - "target": 12505, + "target": 12807, "name": "FilterableTaxRateProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 12694, + "target": 12996, "typeArguments": [ { "type": "reference", - "target": 12505, + "target": 12807, "name": "FilterableTaxRateProps", "package": "@medusajs/types" } @@ -5033,12 +5033,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12695, + "target": 12997, "name": "BaseFilterable.$and" } }, { - "id": 12516, + "id": 12818, "name": "$or", "variant": "declaration", "kind": 1024, @@ -5061,17 +5061,17 @@ "types": [ { "type": "reference", - "target": 12505, + "target": 12807, "name": "FilterableTaxRateProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 12694, + "target": 12996, "typeArguments": [ { "type": "reference", - "target": 12505, + "target": 12807, "name": "FilterableTaxRateProps", "package": "@medusajs/types" } @@ -5084,12 +5084,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12696, + "target": 12998, "name": "BaseFilterable.$or" } }, { - "id": 12506, + "id": 12808, "name": "q", "variant": "declaration", "kind": 1024, @@ -5110,7 +5110,7 @@ } }, { - "id": 12507, + "id": 12809, "name": "id", "variant": "declaration", "kind": 1024, @@ -5143,7 +5143,7 @@ } }, { - "id": 12508, + "id": 12810, "name": "tax_region_id", "variant": "declaration", "kind": 1024, @@ -5176,7 +5176,7 @@ } }, { - "id": 12509, + "id": 12811, "name": "rate", "variant": "declaration", "kind": 1024, @@ -5200,7 +5200,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -5221,7 +5221,7 @@ } }, { - "id": 12510, + "id": 12812, "name": "code", "variant": "declaration", "kind": 1024, @@ -5252,7 +5252,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -5266,7 +5266,7 @@ } }, { - "id": 12511, + "id": 12813, "name": "name", "variant": "declaration", "kind": 1024, @@ -5297,7 +5297,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -5311,7 +5311,7 @@ } }, { - "id": 12512, + "id": 12814, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5328,7 +5328,7 @@ }, "type": { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -5340,7 +5340,7 @@ } }, { - "id": 12513, + "id": 12815, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5357,7 +5357,7 @@ }, "type": { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -5369,7 +5369,7 @@ } }, { - "id": 12514, + "id": 12816, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -5400,7 +5400,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -5418,28 +5418,28 @@ { "title": "Properties", "children": [ - 12515, - 12516, - 12506, - 12507, - 12508, - 12509, - 12510, - 12511, - 12512, - 12513, - 12514 + 12817, + 12818, + 12808, + 12809, + 12810, + 12811, + 12812, + 12813, + 12814, + 12815, + 12816 ] } ], "extendedTypes": [ { "type": "reference", - "target": 12694, + "target": 12996, "typeArguments": [ { "type": "reference", - "target": 12505, + "target": 12807, "name": "FilterableTaxRateProps", "package": "@medusajs/types" } @@ -5450,7 +5450,7 @@ ] }, { - "id": 12558, + "id": 12860, "name": "TaxRegionDTO", "variant": "declaration", "kind": 256, @@ -5465,7 +5465,7 @@ }, "children": [ { - "id": 12559, + "id": 12861, "name": "id", "variant": "declaration", "kind": 1024, @@ -5484,7 +5484,7 @@ } }, { - "id": 12560, + "id": 12862, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -5503,7 +5503,7 @@ } }, { - "id": 12561, + "id": 12863, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -5531,7 +5531,7 @@ } }, { - "id": 12562, + "id": 12864, "name": "parent_id", "variant": "declaration", "kind": 1024, @@ -5559,7 +5559,7 @@ } }, { - "id": 12563, + "id": 12865, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -5602,7 +5602,7 @@ } }, { - "id": 12564, + "id": 12866, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -5635,7 +5635,7 @@ } }, { - "id": 12565, + "id": 12867, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -5668,7 +5668,7 @@ } }, { - "id": 12566, + "id": 12868, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -5696,7 +5696,7 @@ } }, { - "id": 12567, + "id": 12869, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -5737,21 +5737,21 @@ { "title": "Properties", "children": [ - 12559, - 12560, - 12561, - 12562, - 12563, - 12564, - 12565, - 12566, - 12567 + 12861, + 12862, + 12863, + 12864, + 12865, + 12866, + 12867, + 12868, + 12869 ] } ] }, { - "id": 12568, + "id": 12870, "name": "FilterableTaxRegionProps", "variant": "declaration", "kind": 256, @@ -5766,7 +5766,7 @@ }, "children": [ { - "id": 12578, + "id": 12880, "name": "$and", "variant": "declaration", "kind": 1024, @@ -5789,17 +5789,17 @@ "types": [ { "type": "reference", - "target": 12568, + "target": 12870, "name": "FilterableTaxRegionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 12694, + "target": 12996, "typeArguments": [ { "type": "reference", - "target": 12568, + "target": 12870, "name": "FilterableTaxRegionProps", "package": "@medusajs/types" } @@ -5812,12 +5812,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12695, + "target": 12997, "name": "BaseFilterable.$and" } }, { - "id": 12579, + "id": 12881, "name": "$or", "variant": "declaration", "kind": 1024, @@ -5840,17 +5840,17 @@ "types": [ { "type": "reference", - "target": 12568, + "target": 12870, "name": "FilterableTaxRegionProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 12694, + "target": 12996, "typeArguments": [ { "type": "reference", - "target": 12568, + "target": 12870, "name": "FilterableTaxRegionProps", "package": "@medusajs/types" } @@ -5863,12 +5863,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12696, + "target": 12998, "name": "BaseFilterable.$or" } }, { - "id": 12569, + "id": 12871, "name": "q", "variant": "declaration", "kind": 1024, @@ -5889,7 +5889,7 @@ } }, { - "id": 12570, + "id": 12872, "name": "id", "variant": "declaration", "kind": 1024, @@ -5922,7 +5922,7 @@ } }, { - "id": 12571, + "id": 12873, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -5953,7 +5953,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -5967,7 +5967,7 @@ } }, { - "id": 12572, + "id": 12874, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -5998,7 +5998,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -6012,7 +6012,7 @@ } }, { - "id": 12573, + "id": 12875, "name": "parent_id", "variant": "declaration", "kind": 1024, @@ -6043,7 +6043,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -6057,7 +6057,7 @@ } }, { - "id": 12574, + "id": 12876, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6096,7 +6096,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "reference", @@ -6147,7 +6147,7 @@ } }, { - "id": 12575, + "id": 12877, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6164,7 +6164,7 @@ }, "type": { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -6176,7 +6176,7 @@ } }, { - "id": 12576, + "id": 12878, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6193,7 +6193,7 @@ }, "type": { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -6205,7 +6205,7 @@ } }, { - "id": 12577, + "id": 12879, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -6236,7 +6236,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -6254,28 +6254,28 @@ { "title": "Properties", "children": [ - 12578, - 12579, - 12569, - 12570, - 12571, - 12572, - 12573, - 12574, - 12575, - 12576, - 12577 + 12880, + 12881, + 12871, + 12872, + 12873, + 12874, + 12875, + 12876, + 12877, + 12878, + 12879 ] } ], "extendedTypes": [ { "type": "reference", - "target": 12694, + "target": 12996, "typeArguments": [ { "type": "reference", - "target": 12568, + "target": 12870, "name": "FilterableTaxRegionProps", "package": "@medusajs/types" } @@ -6286,7 +6286,7 @@ ] }, { - "id": 12586, + "id": 12888, "name": "TaxRateRuleDTO", "variant": "declaration", "kind": 256, @@ -6301,7 +6301,7 @@ }, "children": [ { - "id": 12587, + "id": 12889, "name": "id", "variant": "declaration", "kind": 1024, @@ -6320,7 +6320,7 @@ } }, { - "id": 12588, + "id": 12890, "name": "reference", "variant": "declaration", "kind": 1024, @@ -6347,7 +6347,7 @@ } }, { - "id": 12589, + "id": 12891, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -6374,7 +6374,7 @@ } }, { - "id": 12590, + "id": 12892, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -6393,7 +6393,7 @@ } }, { - "id": 12591, + "id": 12893, "name": "tax_rate", "variant": "declaration", "kind": 1024, @@ -6410,13 +6410,13 @@ }, "type": { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } }, { - "id": 12592, + "id": 12894, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6461,7 +6461,7 @@ } }, { - "id": 12593, + "id": 12895, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6494,7 +6494,7 @@ } }, { - "id": 12594, + "id": 12896, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6527,7 +6527,7 @@ } }, { - "id": 12595, + "id": 12897, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -6559,21 +6559,21 @@ { "title": "Properties", "children": [ - 12587, - 12588, - 12589, - 12590, - 12591, - 12592, - 12593, - 12594, - 12595 + 12889, + 12890, + 12891, + 12892, + 12893, + 12894, + 12895, + 12896, + 12897 ] } ] }, { - "id": 12596, + "id": 12898, "name": "FilterableTaxRateRuleProps", "variant": "declaration", "kind": 256, @@ -6588,7 +6588,7 @@ }, "children": [ { - "id": 12605, + "id": 12907, "name": "$and", "variant": "declaration", "kind": 1024, @@ -6611,17 +6611,17 @@ "types": [ { "type": "reference", - "target": 12596, + "target": 12898, "name": "FilterableTaxRateRuleProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 12694, + "target": 12996, "typeArguments": [ { "type": "reference", - "target": 12596, + "target": 12898, "name": "FilterableTaxRateRuleProps", "package": "@medusajs/types" } @@ -6634,12 +6634,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12695, + "target": 12997, "name": "BaseFilterable.$and" } }, { - "id": 12606, + "id": 12908, "name": "$or", "variant": "declaration", "kind": 1024, @@ -6662,17 +6662,17 @@ "types": [ { "type": "reference", - "target": 12596, + "target": 12898, "name": "FilterableTaxRateRuleProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 12694, + "target": 12996, "typeArguments": [ { "type": "reference", - "target": 12596, + "target": 12898, "name": "FilterableTaxRateRuleProps", "package": "@medusajs/types" } @@ -6685,12 +6685,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12696, + "target": 12998, "name": "BaseFilterable.$or" } }, { - "id": 12597, + "id": 12899, "name": "reference", "variant": "declaration", "kind": 1024, @@ -6721,7 +6721,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -6735,7 +6735,7 @@ } }, { - "id": 12598, + "id": 12900, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -6766,7 +6766,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -6780,7 +6780,7 @@ } }, { - "id": 12599, + "id": 12901, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -6811,7 +6811,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -6825,7 +6825,7 @@ } }, { - "id": 12600, + "id": 12902, "name": "tax_rate", "variant": "declaration", "kind": 1024, @@ -6842,13 +6842,13 @@ }, "type": { "type": "reference", - "target": 12505, + "target": 12807, "name": "FilterableTaxRateProps", "package": "@medusajs/types" } }, { - "id": 12601, + "id": 12903, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -6887,7 +6887,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "reference", @@ -6938,7 +6938,7 @@ } }, { - "id": 12602, + "id": 12904, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -6955,7 +6955,7 @@ }, "type": { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -6967,7 +6967,7 @@ } }, { - "id": 12603, + "id": 12905, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -6984,7 +6984,7 @@ }, "type": { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -6996,7 +6996,7 @@ } }, { - "id": 12604, + "id": 12906, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -7027,7 +7027,7 @@ }, { "type": "reference", - "target": 12698, + "target": 13000, "typeArguments": [ { "type": "intrinsic", @@ -7045,27 +7045,27 @@ { "title": "Properties", "children": [ - 12605, - 12606, - 12597, - 12598, - 12599, - 12600, - 12601, - 12602, - 12603, - 12604 + 12907, + 12908, + 12899, + 12900, + 12901, + 12902, + 12903, + 12904, + 12905, + 12906 ] } ], "extendedTypes": [ { "type": "reference", - "target": 12694, + "target": 12996, "typeArguments": [ { "type": "reference", - "target": 12596, + "target": 12898, "name": "FilterableTaxRateRuleProps", "package": "@medusajs/types" } @@ -7076,7 +7076,7 @@ ] }, { - "id": 12607, + "id": 12909, "name": "TaxableItemDTO", "variant": "declaration", "kind": 256, @@ -7091,7 +7091,7 @@ }, "children": [ { - "id": 12608, + "id": 12910, "name": "id", "variant": "declaration", "kind": 1024, @@ -7110,7 +7110,7 @@ } }, { - "id": 12609, + "id": 12911, "name": "product_id", "variant": "declaration", "kind": 1024, @@ -7129,7 +7129,7 @@ } }, { - "id": 12610, + "id": 12912, "name": "product_name", "variant": "declaration", "kind": 1024, @@ -7150,7 +7150,7 @@ } }, { - "id": 12611, + "id": 12913, "name": "product_category_id", "variant": "declaration", "kind": 1024, @@ -7171,7 +7171,7 @@ } }, { - "id": 12612, + "id": 12914, "name": "product_categories", "variant": "declaration", "kind": 1024, @@ -7195,7 +7195,7 @@ } }, { - "id": 12613, + "id": 12915, "name": "product_sku", "variant": "declaration", "kind": 1024, @@ -7216,7 +7216,7 @@ } }, { - "id": 12614, + "id": 12916, "name": "product_type", "variant": "declaration", "kind": 1024, @@ -7237,7 +7237,7 @@ } }, { - "id": 12615, + "id": 12917, "name": "product_type_id", "variant": "declaration", "kind": 1024, @@ -7258,7 +7258,7 @@ } }, { - "id": 12616, + "id": 12918, "name": "quantity", "variant": "declaration", "kind": 1024, @@ -7275,13 +7275,13 @@ }, "type": { "type": "reference", - "target": 12721, + "target": 13023, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 12617, + "id": 12919, "name": "unit_price", "variant": "declaration", "kind": 1024, @@ -7298,13 +7298,13 @@ }, "type": { "type": "reference", - "target": 12721, + "target": 13023, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 12618, + "id": 12920, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -7329,23 +7329,23 @@ { "title": "Properties", "children": [ - 12608, - 12609, - 12610, - 12611, - 12612, - 12613, - 12614, - 12615, - 12616, - 12617, - 12618 + 12910, + 12911, + 12912, + 12913, + 12914, + 12915, + 12916, + 12917, + 12918, + 12919, + 12920 ] } ] }, { - "id": 12619, + "id": 12921, "name": "TaxableShippingDTO", "variant": "declaration", "kind": 256, @@ -7360,7 +7360,7 @@ }, "children": [ { - "id": 12620, + "id": 12922, "name": "id", "variant": "declaration", "kind": 1024, @@ -7379,7 +7379,7 @@ } }, { - "id": 12621, + "id": 12923, "name": "shipping_option_id", "variant": "declaration", "kind": 1024, @@ -7398,7 +7398,7 @@ } }, { - "id": 12622, + "id": 12924, "name": "unit_price", "variant": "declaration", "kind": 1024, @@ -7415,13 +7415,13 @@ }, "type": { "type": "reference", - "target": 12721, + "target": 13023, "name": "BigNumberInput", "package": "@medusajs/types" } }, { - "id": 12623, + "id": 12925, "name": "currency_code", "variant": "declaration", "kind": 1024, @@ -7446,16 +7446,16 @@ { "title": "Properties", "children": [ - 12620, - 12621, - 12622, - 12623 + 12922, + 12923, + 12924, + 12925 ] } ] }, { - "id": 12624, + "id": 12926, "name": "TaxCalculationContext", "variant": "declaration", "kind": 256, @@ -7470,7 +7470,7 @@ }, "children": [ { - "id": 12625, + "id": 12927, "name": "address", "variant": "declaration", "kind": 1024, @@ -7486,14 +7486,14 @@ "type": { "type": "reflection", "declaration": { - "id": 12626, + "id": 12928, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12627, + "id": 12929, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -7512,7 +7512,7 @@ } }, { - "id": 12628, + "id": 12930, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -7542,7 +7542,7 @@ } }, { - "id": 12629, + "id": 12931, "name": "address_1", "variant": "declaration", "kind": 1024, @@ -7563,7 +7563,7 @@ } }, { - "id": 12630, + "id": 12932, "name": "address_2", "variant": "declaration", "kind": 1024, @@ -7593,7 +7593,7 @@ } }, { - "id": 12631, + "id": 12933, "name": "city", "variant": "declaration", "kind": 1024, @@ -7614,7 +7614,7 @@ } }, { - "id": 12632, + "id": 12934, "name": "postal_code", "variant": "declaration", "kind": 1024, @@ -7639,12 +7639,12 @@ { "title": "Properties", "children": [ - 12627, - 12628, - 12629, - 12630, - 12631, - 12632 + 12929, + 12930, + 12931, + 12932, + 12933, + 12934 ] } ] @@ -7652,7 +7652,7 @@ } }, { - "id": 12633, + "id": 12935, "name": "customer", "variant": "declaration", "kind": 1024, @@ -7670,14 +7670,14 @@ "type": { "type": "reflection", "declaration": { - "id": 12634, + "id": 12936, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12635, + "id": 12937, "name": "id", "variant": "declaration", "kind": 1024, @@ -7696,7 +7696,7 @@ } }, { - "id": 12636, + "id": 12938, "name": "email", "variant": "declaration", "kind": 1024, @@ -7715,7 +7715,7 @@ } }, { - "id": 12637, + "id": 12939, "name": "customer_groups", "variant": "declaration", "kind": 1024, @@ -7741,9 +7741,9 @@ { "title": "Properties", "children": [ - 12635, - 12636, - 12637 + 12937, + 12938, + 12939 ] } ] @@ -7751,7 +7751,7 @@ } }, { - "id": 12638, + "id": 12940, "name": "is_return", "variant": "declaration", "kind": 1024, @@ -7776,15 +7776,15 @@ { "title": "Properties", "children": [ - 12625, - 12633, - 12638 + 12927, + 12935, + 12940 ] } ] }, { - "id": 12722, + "id": 13024, "name": "TaxLineDTO", "variant": "declaration", "kind": 256, @@ -7799,7 +7799,7 @@ }, "children": [ { - "id": 12723, + "id": 13025, "name": "rate_id", "variant": "declaration", "kind": 1024, @@ -7820,7 +7820,7 @@ } }, { - "id": 12724, + "id": 13026, "name": "rate", "variant": "declaration", "kind": 1024, @@ -7834,21 +7834,12 @@ ] }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "number" } }, { - "id": 12725, + "id": 13027, "name": "code", "variant": "declaration", "kind": 1024, @@ -7876,7 +7867,7 @@ } }, { - "id": 12726, + "id": 13028, "name": "name", "variant": "declaration", "kind": 1024, @@ -7895,7 +7886,7 @@ } }, { - "id": 12727, + "id": 13029, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -7918,29 +7909,29 @@ { "title": "Properties", "children": [ - 12723, - 12724, - 12725, - 12726, - 12727 + 13025, + 13026, + 13027, + 13028, + 13029 ] } ], "extendedBy": [ { "type": "reference", - "target": 12639, + "target": 12941, "name": "ItemTaxLineDTO" }, { "type": "reference", - "target": 12646, + "target": 12948, "name": "ShippingTaxLineDTO" } ] }, { - "id": 12639, + "id": 12941, "name": "ItemTaxLineDTO", "variant": "declaration", "kind": 256, @@ -7955,7 +7946,7 @@ }, "children": [ { - "id": 12641, + "id": 12943, "name": "rate_id", "variant": "declaration", "kind": 1024, @@ -7977,12 +7968,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12723, + "target": 13025, "name": "TaxLineDTO.rate_id" } }, { - "id": 12642, + "id": 12944, "name": "rate", "variant": "declaration", "kind": 1024, @@ -7998,26 +7989,17 @@ ] }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "number" }, "inheritedFrom": { "type": "reference", - "target": 12724, + "target": 13026, "name": "TaxLineDTO.rate" } }, { - "id": 12643, + "id": 12945, "name": "code", "variant": "declaration", "kind": 1024, @@ -8047,12 +8029,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12725, + "target": 13027, "name": "TaxLineDTO.code" } }, { - "id": 12644, + "id": 12946, "name": "name", "variant": "declaration", "kind": 1024, @@ -8073,12 +8055,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12726, + "target": 13028, "name": "TaxLineDTO.name" } }, { - "id": 12645, + "id": 12947, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -8099,12 +8081,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12727, + "target": 13029, "name": "TaxLineDTO.provider_id" } }, { - "id": 12640, + "id": 12942, "name": "line_item_id", "variant": "declaration", "kind": 1024, @@ -8127,26 +8109,26 @@ { "title": "Properties", "children": [ - 12641, - 12642, - 12643, - 12644, - 12645, - 12640 + 12943, + 12944, + 12945, + 12946, + 12947, + 12942 ] } ], "extendedTypes": [ { "type": "reference", - "target": 12722, + "target": 13024, "name": "TaxLineDTO", "package": "@medusajs/types" } ] }, { - "id": 12646, + "id": 12948, "name": "ShippingTaxLineDTO", "variant": "declaration", "kind": 256, @@ -8161,7 +8143,7 @@ }, "children": [ { - "id": 12648, + "id": 12950, "name": "rate_id", "variant": "declaration", "kind": 1024, @@ -8183,12 +8165,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12723, + "target": 13025, "name": "TaxLineDTO.rate_id" } }, { - "id": 12649, + "id": 12951, "name": "rate", "variant": "declaration", "kind": 1024, @@ -8204,26 +8186,17 @@ ] }, "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "number" }, "inheritedFrom": { "type": "reference", - "target": 12724, + "target": 13026, "name": "TaxLineDTO.rate" } }, { - "id": 12650, + "id": 12952, "name": "code", "variant": "declaration", "kind": 1024, @@ -8253,12 +8226,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12725, + "target": 13027, "name": "TaxLineDTO.code" } }, { - "id": 12651, + "id": 12953, "name": "name", "variant": "declaration", "kind": 1024, @@ -8279,12 +8252,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12726, + "target": 13028, "name": "TaxLineDTO.name" } }, { - "id": 12652, + "id": 12954, "name": "provider_id", "variant": "declaration", "kind": 1024, @@ -8305,12 +8278,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 12727, + "target": 13029, "name": "TaxLineDTO.provider_id" } }, { - "id": 12647, + "id": 12949, "name": "shipping_line_id", "variant": "declaration", "kind": 1024, @@ -8333,26 +8306,26 @@ { "title": "Properties", "children": [ - 12648, - 12649, - 12650, - 12651, - 12652, - 12647 + 12950, + 12951, + 12952, + 12953, + 12954, + 12949 ] } ], "extendedTypes": [ { "type": "reference", - "target": 12722, + "target": 13024, "name": "TaxLineDTO", "package": "@medusajs/types" } ] }, { - "id": 12517, + "id": 12819, "name": "CreateTaxRateDTO", "variant": "declaration", "kind": 256, @@ -8367,7 +8340,7 @@ }, "children": [ { - "id": 12518, + "id": 12820, "name": "tax_region_id", "variant": "declaration", "kind": 1024, @@ -8386,7 +8359,7 @@ } }, { - "id": 12519, + "id": 12821, "name": "rate", "variant": "declaration", "kind": 1024, @@ -8427,7 +8400,7 @@ } }, { - "id": 12520, + "id": 12822, "name": "code", "variant": "declaration", "kind": 1024, @@ -8457,7 +8430,7 @@ } }, { - "id": 12521, + "id": 12823, "name": "name", "variant": "declaration", "kind": 1024, @@ -8476,7 +8449,7 @@ } }, { - "id": 12522, + "id": 12824, "name": "rules", "variant": "declaration", "kind": 1024, @@ -8502,7 +8475,7 @@ "typeArguments": [ { "type": "reference", - "target": 12580, + "target": 12882, "name": "CreateTaxRateRuleDTO", "package": "@medusajs/types" }, @@ -8517,7 +8490,7 @@ } }, { - "id": 12523, + "id": 12825, "name": "is_default", "variant": "declaration", "kind": 1024, @@ -8538,7 +8511,7 @@ } }, { - "id": 12524, + "id": 12826, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -8559,7 +8532,7 @@ } }, { - "id": 12525, + "id": 12827, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -8576,7 +8549,7 @@ }, "type": { "type": "reference", - "target": 12720, + "target": 13022, "name": "MetadataType", "package": "@medusajs/types" } @@ -8586,20 +8559,20 @@ { "title": "Properties", "children": [ - 12518, - 12519, - 12520, - 12521, - 12522, - 12523, - 12524, - 12525 + 12820, + 12821, + 12822, + 12823, + 12824, + 12825, + 12826, + 12827 ] } ] }, { - "id": 12535, + "id": 12837, "name": "UpsertTaxRateDTO", "variant": "declaration", "kind": 256, @@ -8614,7 +8587,7 @@ }, "children": [ { - "id": 12536, + "id": 12838, "name": "id", "variant": "declaration", "kind": 1024, @@ -8635,7 +8608,7 @@ } }, { - "id": 12537, + "id": 12839, "name": "rate", "variant": "declaration", "kind": 1024, @@ -8676,7 +8649,7 @@ } }, { - "id": 12538, + "id": 12840, "name": "code", "variant": "declaration", "kind": 1024, @@ -8706,7 +8679,7 @@ } }, { - "id": 12539, + "id": 12841, "name": "name", "variant": "declaration", "kind": 1024, @@ -8727,7 +8700,7 @@ } }, { - "id": 12540, + "id": 12842, "name": "is_default", "variant": "declaration", "kind": 1024, @@ -8748,7 +8721,7 @@ } }, { - "id": 12541, + "id": 12843, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -8778,7 +8751,7 @@ } }, { - "id": 12542, + "id": 12844, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -8795,7 +8768,7 @@ }, "type": { "type": "reference", - "target": 12720, + "target": 13022, "name": "MetadataType", "package": "@medusajs/types" } @@ -8805,19 +8778,19 @@ { "title": "Properties", "children": [ - 12536, - 12537, - 12538, - 12539, - 12540, - 12541, - 12542 + 12838, + 12839, + 12840, + 12841, + 12842, + 12843, + 12844 ] } ] }, { - "id": 12526, + "id": 12828, "name": "UpdateTaxRateDTO", "variant": "declaration", "kind": 256, @@ -8832,7 +8805,7 @@ }, "children": [ { - "id": 12527, + "id": 12829, "name": "rate", "variant": "declaration", "kind": 1024, @@ -8873,7 +8846,7 @@ } }, { - "id": 12528, + "id": 12830, "name": "code", "variant": "declaration", "kind": 1024, @@ -8903,7 +8876,7 @@ } }, { - "id": 12529, + "id": 12831, "name": "name", "variant": "declaration", "kind": 1024, @@ -8924,7 +8897,7 @@ } }, { - "id": 12530, + "id": 12832, "name": "rules", "variant": "declaration", "kind": 1024, @@ -8950,7 +8923,7 @@ "typeArguments": [ { "type": "reference", - "target": 12580, + "target": 12882, "name": "CreateTaxRateRuleDTO", "package": "@medusajs/types" }, @@ -8965,7 +8938,7 @@ } }, { - "id": 12531, + "id": 12833, "name": "is_default", "variant": "declaration", "kind": 1024, @@ -8986,7 +8959,7 @@ } }, { - "id": 12532, + "id": 12834, "name": "is_combinable", "variant": "declaration", "kind": 1024, @@ -9007,7 +8980,7 @@ } }, { - "id": 12534, + "id": 12836, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -9024,7 +8997,7 @@ }, "type": { "type": "reference", - "target": 12720, + "target": 13022, "name": "MetadataType", "package": "@medusajs/types" } @@ -9034,19 +9007,19 @@ { "title": "Properties", "children": [ - 12527, - 12528, - 12529, - 12530, - 12531, - 12532, - 12534 + 12829, + 12830, + 12831, + 12832, + 12833, + 12834, + 12836 ] } ] }, { - "id": 12546, + "id": 12848, "name": "CreateTaxRegionDTO", "variant": "declaration", "kind": 256, @@ -9061,7 +9034,7 @@ }, "children": [ { - "id": 12547, + "id": 12849, "name": "country_code", "variant": "declaration", "kind": 1024, @@ -9080,7 +9053,7 @@ } }, { - "id": 12548, + "id": 12850, "name": "province_code", "variant": "declaration", "kind": 1024, @@ -9110,7 +9083,7 @@ } }, { - "id": 12549, + "id": 12851, "name": "parent_id", "variant": "declaration", "kind": 1024, @@ -9140,7 +9113,7 @@ } }, { - "id": 12550, + "id": 12852, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -9157,13 +9130,13 @@ }, "type": { "type": "reference", - "target": 12720, + "target": 13022, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 12551, + "id": 12853, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -9184,7 +9157,7 @@ } }, { - "id": 12552, + "id": 12854, "name": "default_tax_rate", "variant": "declaration", "kind": 1024, @@ -9202,14 +9175,14 @@ "type": { "type": "reflection", "declaration": { - "id": 12553, + "id": 12855, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12554, + "id": 12856, "name": "rate", "variant": "declaration", "kind": 1024, @@ -9250,7 +9223,7 @@ } }, { - "id": 12555, + "id": 12857, "name": "code", "variant": "declaration", "kind": 1024, @@ -9280,7 +9253,7 @@ } }, { - "id": 12556, + "id": 12858, "name": "name", "variant": "declaration", "kind": 1024, @@ -9299,7 +9272,7 @@ } }, { - "id": 12557, + "id": 12859, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -9316,7 +9289,7 @@ }, "type": { "type": "reference", - "target": 12720, + "target": 13022, "name": "MetadataType", "package": "@medusajs/types" } @@ -9326,10 +9299,10 @@ { "title": "Properties", "children": [ - 12554, - 12555, - 12556, - 12557 + 12856, + 12857, + 12858, + 12859 ] } ] @@ -9341,18 +9314,18 @@ { "title": "Properties", "children": [ - 12547, - 12548, - 12549, - 12550, - 12551, - 12552 + 12849, + 12850, + 12851, + 12852, + 12853, + 12854 ] } ] }, { - "id": 12580, + "id": 12882, "name": "CreateTaxRateRuleDTO", "variant": "declaration", "kind": 256, @@ -9367,7 +9340,7 @@ }, "children": [ { - "id": 12581, + "id": 12883, "name": "reference", "variant": "declaration", "kind": 1024, @@ -9394,7 +9367,7 @@ } }, { - "id": 12582, + "id": 12884, "name": "reference_id", "variant": "declaration", "kind": 1024, @@ -9421,7 +9394,7 @@ } }, { - "id": 12583, + "id": 12885, "name": "tax_rate_id", "variant": "declaration", "kind": 1024, @@ -9440,7 +9413,7 @@ } }, { - "id": 12584, + "id": 12886, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -9457,13 +9430,13 @@ }, "type": { "type": "reference", - "target": 12720, + "target": 13022, "name": "MetadataType", "package": "@medusajs/types" } }, { - "id": 12585, + "id": 12887, "name": "created_by", "variant": "declaration", "kind": 1024, @@ -9497,17 +9470,17 @@ { "title": "Properties", "children": [ - 12581, - 12582, - 12583, - 12584, - 12585 + 12883, + 12884, + 12885, + 12886, + 12887 ] } ] }, { - "id": 12311, + "id": 12613, "name": "ITaxModuleService", "variant": "declaration", "kind": 256, @@ -9522,14 +9495,14 @@ }, "children": [ { - "id": 12312, + "id": 12614, "name": "retrieveTaxRate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12313, + "id": 12615, "name": "retrieveTaxRate", "variant": "signature", "kind": 4096, @@ -9576,7 +9549,7 @@ }, "parameters": [ { - "id": 12314, + "id": 12616, "name": "taxRateId", "variant": "param", "kind": 32768, @@ -9595,7 +9568,7 @@ } }, { - "id": 12315, + "id": 12617, "name": "config", "variant": "param", "kind": 32768, @@ -9628,11 +9601,11 @@ }, "type": { "type": "reference", - "target": 12467, + "target": 12769, "typeArguments": [ { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } @@ -9642,7 +9615,7 @@ } }, { - "id": 12316, + "id": 12618, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -9659,7 +9632,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -9674,7 +9647,7 @@ "typeArguments": [ { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } @@ -9686,14 +9659,14 @@ ] }, { - "id": 12317, + "id": 12619, "name": "listTaxRates", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12318, + "id": 12620, "name": "listTaxRates", "variant": "signature", "kind": 4096, @@ -9780,7 +9753,7 @@ }, "parameters": [ { - "id": 12319, + "id": 12621, "name": "filters", "variant": "param", "kind": 32768, @@ -9797,13 +9770,13 @@ }, "type": { "type": "reference", - "target": 12505, + "target": 12807, "name": "FilterableTaxRateProps", "package": "@medusajs/types" } }, { - "id": 12320, + "id": 12622, "name": "config", "variant": "param", "kind": 32768, @@ -9836,11 +9809,11 @@ }, "type": { "type": "reference", - "target": 12467, + "target": 12769, "typeArguments": [ { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } @@ -9850,7 +9823,7 @@ } }, { - "id": 12321, + "id": 12623, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -9867,7 +9840,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -9884,7 +9857,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } @@ -9897,14 +9870,14 @@ ] }, { - "id": 12322, + "id": 12624, "name": "listAndCountTaxRates", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12323, + "id": 12625, "name": "listAndCountTaxRates", "variant": "signature", "kind": 4096, @@ -9991,7 +9964,7 @@ }, "parameters": [ { - "id": 12324, + "id": 12626, "name": "filters", "variant": "param", "kind": 32768, @@ -10008,13 +9981,13 @@ }, "type": { "type": "reference", - "target": 12505, + "target": 12807, "name": "FilterableTaxRateProps", "package": "@medusajs/types" } }, { - "id": 12325, + "id": 12627, "name": "config", "variant": "param", "kind": 32768, @@ -10047,11 +10020,11 @@ }, "type": { "type": "reference", - "target": 12467, + "target": 12769, "typeArguments": [ { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } @@ -10061,7 +10034,7 @@ } }, { - "id": 12326, + "id": 12628, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10078,7 +10051,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -10098,7 +10071,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } @@ -10117,14 +10090,14 @@ ] }, { - "id": 12327, + "id": 12629, "name": "createTaxRates", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12328, + "id": 12630, "name": "createTaxRates", "variant": "signature", "kind": 4096, @@ -10159,7 +10132,7 @@ }, "parameters": [ { - "id": 12329, + "id": 12631, "name": "data", "variant": "param", "kind": 32768, @@ -10176,14 +10149,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 12517, + "target": 12819, "name": "CreateTaxRateDTO", "package": "@medusajs/types" } } }, { - "id": 12330, + "id": 12632, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10200,7 +10173,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -10217,7 +10190,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } @@ -10228,7 +10201,7 @@ } }, { - "id": 12331, + "id": 12633, "name": "createTaxRates", "variant": "signature", "kind": 4096, @@ -10263,7 +10236,7 @@ }, "parameters": [ { - "id": 12332, + "id": 12634, "name": "data", "variant": "param", "kind": 32768, @@ -10278,13 +10251,13 @@ }, "type": { "type": "reference", - "target": 12517, + "target": 12819, "name": "CreateTaxRateDTO", "package": "@medusajs/types" } }, { - "id": 12333, + "id": 12635, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10301,7 +10274,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -10316,7 +10289,7 @@ "typeArguments": [ { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } @@ -10328,14 +10301,14 @@ ] }, { - "id": 12334, + "id": 12636, "name": "updateTaxRates", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12335, + "id": 12637, "name": "updateTaxRates", "variant": "signature", "kind": 4096, @@ -10370,7 +10343,7 @@ }, "parameters": [ { - "id": 12336, + "id": 12638, "name": "taxRateId", "variant": "param", "kind": 32768, @@ -10389,7 +10362,7 @@ } }, { - "id": 12337, + "id": 12639, "name": "data", "variant": "param", "kind": 32768, @@ -10404,13 +10377,13 @@ }, "type": { "type": "reference", - "target": 12526, + "target": 12828, "name": "UpdateTaxRateDTO", "package": "@medusajs/types" } }, { - "id": 12338, + "id": 12640, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10427,7 +10400,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -10442,7 +10415,7 @@ "typeArguments": [ { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } @@ -10452,7 +10425,7 @@ } }, { - "id": 12339, + "id": 12641, "name": "updateTaxRates", "variant": "signature", "kind": 4096, @@ -10487,7 +10460,7 @@ }, "parameters": [ { - "id": 12340, + "id": 12642, "name": "taxRateIds", "variant": "param", "kind": 32768, @@ -10509,7 +10482,7 @@ } }, { - "id": 12341, + "id": 12643, "name": "data", "variant": "param", "kind": 32768, @@ -10524,13 +10497,13 @@ }, "type": { "type": "reference", - "target": 12526, + "target": 12828, "name": "UpdateTaxRateDTO", "package": "@medusajs/types" } }, { - "id": 12342, + "id": 12644, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10547,7 +10520,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -10564,7 +10537,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } @@ -10575,7 +10548,7 @@ } }, { - "id": 12343, + "id": 12645, "name": "updateTaxRates", "variant": "signature", "kind": 4096, @@ -10610,7 +10583,7 @@ }, "parameters": [ { - "id": 12344, + "id": 12646, "name": "selector", "variant": "param", "kind": 32768, @@ -10625,13 +10598,13 @@ }, "type": { "type": "reference", - "target": 12505, + "target": 12807, "name": "FilterableTaxRateProps", "package": "@medusajs/types" } }, { - "id": 12345, + "id": 12647, "name": "data", "variant": "param", "kind": 32768, @@ -10646,13 +10619,13 @@ }, "type": { "type": "reference", - "target": 12526, + "target": 12828, "name": "UpdateTaxRateDTO", "package": "@medusajs/types" } }, { - "id": 12346, + "id": 12648, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10669,7 +10642,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -10686,7 +10659,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } @@ -10699,14 +10672,14 @@ ] }, { - "id": 12347, + "id": 12649, "name": "upsertTaxRates", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12348, + "id": 12650, "name": "upsertTaxRates", "variant": "signature", "kind": 4096, @@ -10741,7 +10714,7 @@ }, "parameters": [ { - "id": 12349, + "id": 12651, "name": "data", "variant": "param", "kind": 32768, @@ -10756,13 +10729,13 @@ }, "type": { "type": "reference", - "target": 12535, + "target": 12837, "name": "UpsertTaxRateDTO", "package": "@medusajs/types" } }, { - "id": 12350, + "id": 12652, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10779,7 +10752,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -10794,7 +10767,7 @@ "typeArguments": [ { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } @@ -10804,7 +10777,7 @@ } }, { - "id": 12351, + "id": 12653, "name": "upsertTaxRates", "variant": "signature", "kind": 4096, @@ -10839,7 +10812,7 @@ }, "parameters": [ { - "id": 12352, + "id": 12654, "name": "data", "variant": "param", "kind": 32768, @@ -10856,14 +10829,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 12535, + "target": 12837, "name": "UpsertTaxRateDTO", "package": "@medusajs/types" } } }, { - "id": 12353, + "id": 12655, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10880,7 +10853,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -10897,7 +10870,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12480, + "target": 12782, "name": "TaxRateDTO", "package": "@medusajs/types" } @@ -10910,14 +10883,14 @@ ] }, { - "id": 12354, + "id": 12656, "name": "deleteTaxRates", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12355, + "id": 12657, "name": "deleteTaxRates", "variant": "signature", "kind": 4096, @@ -10952,7 +10925,7 @@ }, "parameters": [ { - "id": 12356, + "id": 12658, "name": "taxRateIds", "variant": "param", "kind": 32768, @@ -10974,7 +10947,7 @@ } }, { - "id": 12357, + "id": 12659, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -10991,7 +10964,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -11014,7 +10987,7 @@ } }, { - "id": 12358, + "id": 12660, "name": "deleteTaxRates", "variant": "signature", "kind": 4096, @@ -11049,7 +11022,7 @@ }, "parameters": [ { - "id": 12359, + "id": 12661, "name": "taxRateId", "variant": "param", "kind": 32768, @@ -11068,7 +11041,7 @@ } }, { - "id": 12360, + "id": 12662, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11085,7 +11058,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -11110,14 +11083,14 @@ ] }, { - "id": 12361, + "id": 12663, "name": "restoreTaxRates", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12362, + "id": 12664, "name": "restoreTaxRates", "variant": "signature", "kind": 4096, @@ -11168,7 +11141,7 @@ }, "typeParameters": [ { - "id": 12363, + "id": 12665, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -11185,7 +11158,7 @@ ], "parameters": [ { - "id": 12364, + "id": 12666, "name": "taxRateIds", "variant": "param", "kind": 32768, @@ -11207,7 +11180,7 @@ } }, { - "id": 12365, + "id": 12667, "name": "config", "variant": "param", "kind": 32768, @@ -11240,11 +11213,11 @@ }, "type": { "type": "reference", - "target": 12543, + "target": 12845, "typeArguments": [ { "type": "reference", - "target": 12363, + "target": 12665, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -11255,7 +11228,7 @@ } }, { - "id": 12366, + "id": 12668, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11272,7 +11245,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -11324,14 +11297,14 @@ ] }, { - "id": 12367, + "id": 12669, "name": "createTaxRegions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12368, + "id": 12670, "name": "createTaxRegions", "variant": "signature", "kind": 4096, @@ -11366,7 +11339,7 @@ }, "parameters": [ { - "id": 12369, + "id": 12671, "name": "data", "variant": "param", "kind": 32768, @@ -11381,13 +11354,13 @@ }, "type": { "type": "reference", - "target": 12546, + "target": 12848, "name": "CreateTaxRegionDTO", "package": "@medusajs/types" } }, { - "id": 12370, + "id": 12672, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11404,7 +11377,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -11419,7 +11392,7 @@ "typeArguments": [ { "type": "reference", - "target": 12558, + "target": 12860, "name": "TaxRegionDTO", "package": "@medusajs/types" } @@ -11429,7 +11402,7 @@ } }, { - "id": 12371, + "id": 12673, "name": "createTaxRegions", "variant": "signature", "kind": 4096, @@ -11464,7 +11437,7 @@ }, "parameters": [ { - "id": 12372, + "id": 12674, "name": "data", "variant": "param", "kind": 32768, @@ -11481,14 +11454,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 12546, + "target": 12848, "name": "CreateTaxRegionDTO", "package": "@medusajs/types" } } }, { - "id": 12373, + "id": 12675, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11505,7 +11478,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -11522,7 +11495,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12558, + "target": 12860, "name": "TaxRegionDTO", "package": "@medusajs/types" } @@ -11535,14 +11508,14 @@ ] }, { - "id": 12374, + "id": 12676, "name": "deleteTaxRegions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12375, + "id": 12677, "name": "deleteTaxRegions", "variant": "signature", "kind": 4096, @@ -11577,7 +11550,7 @@ }, "parameters": [ { - "id": 12376, + "id": 12678, "name": "taxRegionIds", "variant": "param", "kind": 32768, @@ -11599,7 +11572,7 @@ } }, { - "id": 12377, + "id": 12679, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11616,7 +11589,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -11639,7 +11612,7 @@ } }, { - "id": 12378, + "id": 12680, "name": "deleteTaxRegions", "variant": "signature", "kind": 4096, @@ -11674,7 +11647,7 @@ }, "parameters": [ { - "id": 12379, + "id": 12681, "name": "taxRegionId", "variant": "param", "kind": 32768, @@ -11693,7 +11666,7 @@ } }, { - "id": 12380, + "id": 12682, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11710,7 +11683,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -11735,14 +11708,14 @@ ] }, { - "id": 12381, + "id": 12683, "name": "listTaxRegions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12382, + "id": 12684, "name": "listTaxRegions", "variant": "signature", "kind": 4096, @@ -11829,7 +11802,7 @@ }, "parameters": [ { - "id": 12383, + "id": 12685, "name": "filters", "variant": "param", "kind": 32768, @@ -11846,13 +11819,13 @@ }, "type": { "type": "reference", - "target": 12568, + "target": 12870, "name": "FilterableTaxRegionProps", "package": "@medusajs/types" } }, { - "id": 12384, + "id": 12686, "name": "config", "variant": "param", "kind": 32768, @@ -11885,11 +11858,11 @@ }, "type": { "type": "reference", - "target": 12467, + "target": 12769, "typeArguments": [ { "type": "reference", - "target": 12558, + "target": 12860, "name": "TaxRegionDTO", "package": "@medusajs/types" } @@ -11899,7 +11872,7 @@ } }, { - "id": 12385, + "id": 12687, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -11916,7 +11889,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -11933,7 +11906,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12558, + "target": 12860, "name": "TaxRegionDTO", "package": "@medusajs/types" } @@ -11946,14 +11919,14 @@ ] }, { - "id": 12386, + "id": 12688, "name": "createTaxRateRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12387, + "id": 12689, "name": "createTaxRateRules", "variant": "signature", "kind": 4096, @@ -11988,7 +11961,7 @@ }, "parameters": [ { - "id": 12388, + "id": 12690, "name": "data", "variant": "param", "kind": 32768, @@ -12003,13 +11976,13 @@ }, "type": { "type": "reference", - "target": 12580, + "target": 12882, "name": "CreateTaxRateRuleDTO", "package": "@medusajs/types" } }, { - "id": 12389, + "id": 12691, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12026,7 +11999,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -12041,7 +12014,7 @@ "typeArguments": [ { "type": "reference", - "target": 12586, + "target": 12888, "name": "TaxRateRuleDTO", "package": "@medusajs/types" } @@ -12051,7 +12024,7 @@ } }, { - "id": 12390, + "id": 12692, "name": "createTaxRateRules", "variant": "signature", "kind": 4096, @@ -12086,7 +12059,7 @@ }, "parameters": [ { - "id": 12391, + "id": 12693, "name": "data", "variant": "param", "kind": 32768, @@ -12103,14 +12076,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 12580, + "target": 12882, "name": "CreateTaxRateRuleDTO", "package": "@medusajs/types" } } }, { - "id": 12392, + "id": 12694, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12127,7 +12100,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -12144,7 +12117,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12586, + "target": 12888, "name": "TaxRateRuleDTO", "package": "@medusajs/types" } @@ -12157,14 +12130,14 @@ ] }, { - "id": 12393, + "id": 12695, "name": "deleteTaxRateRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12394, + "id": 12696, "name": "deleteTaxRateRules", "variant": "signature", "kind": 4096, @@ -12199,7 +12172,7 @@ }, "parameters": [ { - "id": 12395, + "id": 12697, "name": "taxRateRuleId", "variant": "param", "kind": 32768, @@ -12218,7 +12191,7 @@ } }, { - "id": 12396, + "id": 12698, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12235,7 +12208,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -12258,7 +12231,7 @@ } }, { - "id": 12397, + "id": 12699, "name": "deleteTaxRateRules", "variant": "signature", "kind": 4096, @@ -12293,7 +12266,7 @@ }, "parameters": [ { - "id": 12398, + "id": 12700, "name": "taxRateRuleIds", "variant": "param", "kind": 32768, @@ -12315,7 +12288,7 @@ } }, { - "id": 12399, + "id": 12701, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12332,7 +12305,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -12357,14 +12330,14 @@ ] }, { - "id": 12400, + "id": 12702, "name": "listTaxRateRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12401, + "id": 12703, "name": "listTaxRateRules", "variant": "signature", "kind": 4096, @@ -12451,7 +12424,7 @@ }, "parameters": [ { - "id": 12402, + "id": 12704, "name": "filters", "variant": "param", "kind": 32768, @@ -12468,13 +12441,13 @@ }, "type": { "type": "reference", - "target": 12596, + "target": 12898, "name": "FilterableTaxRateRuleProps", "package": "@medusajs/types" } }, { - "id": 12403, + "id": 12705, "name": "config", "variant": "param", "kind": 32768, @@ -12507,11 +12480,11 @@ }, "type": { "type": "reference", - "target": 12467, + "target": 12769, "typeArguments": [ { "type": "reference", - "target": 12586, + "target": 12888, "name": "TaxRateRuleDTO", "package": "@medusajs/types" } @@ -12521,7 +12494,7 @@ } }, { - "id": 12404, + "id": 12706, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12538,7 +12511,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -12555,7 +12528,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 12586, + "target": 12888, "name": "TaxRateRuleDTO", "package": "@medusajs/types" } @@ -12568,14 +12541,14 @@ ] }, { - "id": 12405, + "id": 12707, "name": "getTaxLines", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12406, + "id": 12708, "name": "getTaxLines", "variant": "signature", "kind": 4096, @@ -12610,7 +12583,7 @@ }, "parameters": [ { - "id": 12407, + "id": 12709, "name": "items", "variant": "param", "kind": 32768, @@ -12630,13 +12603,13 @@ "types": [ { "type": "reference", - "target": 12607, + "target": 12909, "name": "TaxableItemDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 12619, + "target": 12921, "name": "TaxableShippingDTO", "package": "@medusajs/types" } @@ -12645,7 +12618,7 @@ } }, { - "id": 12408, + "id": 12710, "name": "calculationContext", "variant": "param", "kind": 32768, @@ -12660,13 +12633,13 @@ }, "type": { "type": "reference", - "target": 12624, + "target": 12926, "name": "TaxCalculationContext", "package": "@medusajs/types" } }, { - "id": 12409, + "id": 12711, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12683,7 +12656,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -12703,13 +12676,13 @@ "types": [ { "type": "reference", - "target": 12639, + "target": 12941, "name": "ItemTaxLineDTO", "package": "@medusajs/types" }, { "type": "reference", - "target": 12646, + "target": 12948, "name": "ShippingTaxLineDTO", "package": "@medusajs/types" } @@ -12724,14 +12697,14 @@ ] }, { - "id": 12410, + "id": 12712, "name": "softDeleteTaxRates", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12411, + "id": 12713, "name": "softDeleteTaxRates", "variant": "signature", "kind": 4096, @@ -12782,7 +12755,7 @@ }, "typeParameters": [ { - "id": 12412, + "id": 12714, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -12799,7 +12772,7 @@ ], "parameters": [ { - "id": 12413, + "id": 12715, "name": "taxRateIds", "variant": "param", "kind": 32768, @@ -12821,7 +12794,7 @@ } }, { - "id": 12414, + "id": 12716, "name": "config", "variant": "param", "kind": 32768, @@ -12838,11 +12811,11 @@ }, "type": { "type": "reference", - "target": 12653, + "target": 12955, "typeArguments": [ { "type": "reference", - "target": 12412, + "target": 12714, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -12853,7 +12826,7 @@ } }, { - "id": 12415, + "id": 12717, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -12870,7 +12843,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -12922,14 +12895,14 @@ ] }, { - "id": 12416, + "id": 12718, "name": "softDeleteTaxRegions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12417, + "id": 12719, "name": "softDeleteTaxRegions", "variant": "signature", "kind": 4096, @@ -12980,7 +12953,7 @@ }, "typeParameters": [ { - "id": 12418, + "id": 12720, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -12997,7 +12970,7 @@ ], "parameters": [ { - "id": 12419, + "id": 12721, "name": "taxRegionIds", "variant": "param", "kind": 32768, @@ -13019,7 +12992,7 @@ } }, { - "id": 12420, + "id": 12722, "name": "config", "variant": "param", "kind": 32768, @@ -13036,11 +13009,11 @@ }, "type": { "type": "reference", - "target": 12653, + "target": 12955, "typeArguments": [ { "type": "reference", - "target": 12418, + "target": 12720, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13051,7 +13024,7 @@ } }, { - "id": 12421, + "id": 12723, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13068,7 +13041,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -13120,14 +13093,14 @@ ] }, { - "id": 12422, + "id": 12724, "name": "restoreTaxRegions", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12423, + "id": 12725, "name": "restoreTaxRegions", "variant": "signature", "kind": 4096, @@ -13178,7 +13151,7 @@ }, "typeParameters": [ { - "id": 12424, + "id": 12726, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -13195,7 +13168,7 @@ ], "parameters": [ { - "id": 12425, + "id": 12727, "name": "taxRegionIds", "variant": "param", "kind": 32768, @@ -13217,7 +13190,7 @@ } }, { - "id": 12426, + "id": 12728, "name": "config", "variant": "param", "kind": 32768, @@ -13250,11 +13223,11 @@ }, "type": { "type": "reference", - "target": 12543, + "target": 12845, "typeArguments": [ { "type": "reference", - "target": 12424, + "target": 12726, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13265,7 +13238,7 @@ } }, { - "id": 12427, + "id": 12729, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13282,7 +13255,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -13334,14 +13307,14 @@ ] }, { - "id": 12428, + "id": 12730, "name": "softDeleteTaxRateRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12429, + "id": 12731, "name": "softDeleteTaxRateRules", "variant": "signature", "kind": 4096, @@ -13384,7 +13357,7 @@ }, "typeParameters": [ { - "id": 12430, + "id": 12732, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -13401,7 +13374,7 @@ ], "parameters": [ { - "id": 12431, + "id": 12733, "name": "taxRateRuleIds", "variant": "param", "kind": 32768, @@ -13423,7 +13396,7 @@ } }, { - "id": 12432, + "id": 12734, "name": "config", "variant": "param", "kind": 32768, @@ -13440,11 +13413,11 @@ }, "type": { "type": "reference", - "target": 12653, + "target": 12955, "typeArguments": [ { "type": "reference", - "target": 12430, + "target": 12732, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13455,7 +13428,7 @@ } }, { - "id": 12433, + "id": 12735, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13472,7 +13445,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -13524,14 +13497,14 @@ ] }, { - "id": 12434, + "id": 12736, "name": "restoreTaxRateRules", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12435, + "id": 12737, "name": "restoreTaxRateRules", "variant": "signature", "kind": 4096, @@ -13574,7 +13547,7 @@ }, "typeParameters": [ { - "id": 12436, + "id": 12738, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -13591,7 +13564,7 @@ ], "parameters": [ { - "id": 12437, + "id": 12739, "name": "taxRateRuleIds", "variant": "param", "kind": 32768, @@ -13613,7 +13586,7 @@ } }, { - "id": 12438, + "id": 12740, "name": "config", "variant": "param", "kind": 32768, @@ -13638,11 +13611,11 @@ }, "type": { "type": "reference", - "target": 12543, + "target": 12845, "typeArguments": [ { "type": "reference", - "target": 12436, + "target": 12738, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -13653,7 +13626,7 @@ } }, { - "id": 12439, + "id": 12741, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -13670,7 +13643,7 @@ }, "type": { "type": "reference", - "target": 12493, + "target": 12795, "name": "Context", "package": "@medusajs/types" } @@ -13726,40 +13699,40 @@ { "title": "Methods", "children": [ - 12312, - 12317, - 12322, - 12327, - 12334, - 12347, - 12354, - 12361, - 12367, - 12374, - 12381, - 12386, - 12393, - 12400, - 12405, - 12410, - 12416, - 12422, - 12428, - 12434 + 12614, + 12619, + 12624, + 12629, + 12636, + 12649, + 12656, + 12663, + 12669, + 12676, + 12683, + 12688, + 12695, + 12702, + 12707, + 12712, + 12718, + 12724, + 12730, + 12736 ] } ], "extendedTypes": [ { "type": "reference", - "target": 12453, + "target": 12755, "name": "IModuleService", "package": "@medusajs/types" } ] }, { - "id": 12775, + "id": 13077, "name": "BigNumberRawValue", "variant": "declaration", "kind": 2097152, @@ -13767,14 +13740,14 @@ "type": { "type": "reflection", "declaration": { - "id": 12776, + "id": 13078, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 12777, + "id": 13079, "name": "value", "variant": "declaration", "kind": 1024, @@ -13798,20 +13771,20 @@ { "title": "Properties", "children": [ - 12777 + 13079 ] } ], "indexSignatures": [ { - "id": 12778, + "id": 13080, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 12779, + "id": 13081, "name": "key", "variant": "param", "kind": 32768, @@ -13832,7 +13805,7 @@ } }, { - "id": 12721, + "id": 13023, "name": "BigNumberInput", "variant": "declaration", "kind": 2097152, @@ -13842,7 +13815,7 @@ "types": [ { "type": "reference", - "target": 12775, + "target": 13077, "name": "BigNumberRawValue", "package": "@medusajs/types" }, @@ -13872,2010 +13845,2010 @@ { "title": "Interfaces", "children": [ - 12467, - 12694, - 12653, - 12543, - 12780, - 12728, - 12453, + 12769, + 12996, + 12955, + 12845, + 13082, + 13030, 12755, - 12680, - 12493, - 12480, - 12505, - 12558, - 12568, - 12586, - 12596, - 12607, - 12619, - 12624, - 12722, - 12639, - 12646, - 12517, - 12535, - 12526, - 12546, - 12580, - 12311 + 13057, + 12982, + 12795, + 12782, + 12807, + 12860, + 12870, + 12888, + 12898, + 12909, + 12921, + 12926, + 13024, + 12941, + 12948, + 12819, + 12837, + 12828, + 12848, + 12882, + 12613 ] }, { "title": "Type Aliases", "children": [ - 12720, - 12771, - 12773, - 12798, - 12826, - 12816, - 12698, - 12814, - 12808, - 12813, - 12802, - 12810, - 12792, - 12751, - 12761, - 12783, - 12745, - 12656, - 12742, - 12775, - 12721 + 13022, + 13073, + 13075, + 13100, + 13128, + 13118, + 13000, + 13116, + 13110, + 13115, + 13104, + 13112, + 13094, + 13053, + 13063, + 13085, + 13047, + 12958, + 13044, + 13077, + 13023 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "12310": { + "12612": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "" }, - "12311": { + "12613": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService" }, - "12312": { + "12614": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.retrieveTaxRate" }, - "12313": { + "12615": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.retrieveTaxRate" }, - "12314": { + "12616": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRateId" }, - "12315": { + "12617": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "config" }, - "12316": { + "12618": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12317": { + "12619": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.listTaxRates" }, - "12318": { + "12620": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.listTaxRates" }, - "12319": { + "12621": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "filters" }, - "12320": { + "12622": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "config" }, - "12321": { + "12623": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12322": { + "12624": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.listAndCountTaxRates" }, - "12323": { + "12625": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.listAndCountTaxRates" }, - "12324": { + "12626": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "filters" }, - "12325": { + "12627": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "config" }, - "12326": { + "12628": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12327": { + "12629": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.createTaxRates" }, - "12328": { + "12630": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.createTaxRates" }, - "12329": { + "12631": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "data" }, - "12330": { + "12632": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12331": { + "12633": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.createTaxRates" }, - "12332": { + "12634": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "data" }, - "12333": { + "12635": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12334": { + "12636": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.updateTaxRates" }, - "12335": { + "12637": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.updateTaxRates" }, - "12336": { + "12638": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRateId" }, - "12337": { + "12639": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "data" }, - "12338": { + "12640": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12339": { + "12641": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.updateTaxRates" }, - "12340": { + "12642": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRateIds" }, - "12341": { + "12643": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "data" }, - "12342": { + "12644": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12343": { + "12645": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.updateTaxRates" }, - "12344": { + "12646": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "selector" }, - "12345": { + "12647": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "data" }, - "12346": { + "12648": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12347": { + "12649": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.upsertTaxRates" }, - "12348": { + "12650": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.upsertTaxRates" }, - "12349": { + "12651": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "data" }, - "12350": { + "12652": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12351": { + "12653": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.upsertTaxRates" }, - "12352": { + "12654": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "data" }, - "12353": { + "12655": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12354": { + "12656": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.deleteTaxRates" }, - "12355": { + "12657": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.deleteTaxRates" }, - "12356": { + "12658": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRateIds" }, - "12357": { + "12659": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12358": { + "12660": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.deleteTaxRates" }, - "12359": { + "12661": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRateId" }, - "12360": { + "12662": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12361": { + "12663": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.restoreTaxRates" }, - "12362": { + "12664": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.restoreTaxRates" }, - "12363": { + "12665": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12364": { + "12666": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRateIds" }, - "12365": { + "12667": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "config" }, - "12366": { + "12668": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12367": { + "12669": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.createTaxRegions" }, - "12368": { + "12670": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.createTaxRegions" }, - "12369": { + "12671": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "data" }, - "12370": { + "12672": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12371": { + "12673": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.createTaxRegions" }, - "12372": { + "12674": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "data" }, - "12373": { + "12675": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12374": { + "12676": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.deleteTaxRegions" }, - "12375": { + "12677": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.deleteTaxRegions" }, - "12376": { + "12678": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRegionIds" }, - "12377": { + "12679": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12378": { + "12680": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.deleteTaxRegions" }, - "12379": { + "12681": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRegionId" }, - "12380": { + "12682": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12381": { + "12683": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.listTaxRegions" }, - "12382": { + "12684": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.listTaxRegions" }, - "12383": { + "12685": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "filters" }, - "12384": { + "12686": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "config" }, - "12385": { + "12687": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12386": { + "12688": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.createTaxRateRules" }, - "12387": { + "12689": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.createTaxRateRules" }, - "12388": { + "12690": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "data" }, - "12389": { + "12691": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12390": { + "12692": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.createTaxRateRules" }, - "12391": { + "12693": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "data" }, - "12392": { + "12694": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12393": { + "12695": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.deleteTaxRateRules" }, - "12394": { + "12696": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.deleteTaxRateRules" }, - "12395": { + "12697": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRateRuleId" }, - "12396": { + "12698": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12397": { + "12699": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.deleteTaxRateRules" }, - "12398": { + "12700": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRateRuleIds" }, - "12399": { + "12701": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12400": { + "12702": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.listTaxRateRules" }, - "12401": { + "12703": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.listTaxRateRules" }, - "12402": { + "12704": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "filters" }, - "12403": { + "12705": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "config" }, - "12404": { + "12706": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12405": { + "12707": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.getTaxLines" }, - "12406": { + "12708": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.getTaxLines" }, - "12407": { + "12709": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "items" }, - "12408": { + "12710": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "calculationContext" }, - "12409": { + "12711": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12410": { + "12712": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.softDeleteTaxRates" }, - "12411": { + "12713": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.softDeleteTaxRates" }, - "12412": { + "12714": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12413": { + "12715": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRateIds" }, - "12414": { + "12716": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "config" }, - "12415": { + "12717": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12416": { + "12718": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.softDeleteTaxRegions" }, - "12417": { + "12719": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.softDeleteTaxRegions" }, - "12418": { + "12720": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12419": { + "12721": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRegionIds" }, - "12420": { + "12722": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "config" }, - "12421": { + "12723": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12422": { + "12724": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.restoreTaxRegions" }, - "12423": { + "12725": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.restoreTaxRegions" }, - "12424": { + "12726": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12425": { + "12727": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRegionIds" }, - "12426": { + "12728": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "config" }, - "12427": { + "12729": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12428": { + "12730": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.softDeleteTaxRateRules" }, - "12429": { + "12731": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.softDeleteTaxRateRules" }, - "12430": { + "12732": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12431": { + "12733": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRateRuleIds" }, - "12432": { + "12734": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "config" }, - "12433": { + "12735": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12434": { + "12736": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.restoreTaxRateRules" }, - "12435": { + "12737": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "ITaxModuleService.restoreTaxRateRules" }, - "12436": { + "12738": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12437": { + "12739": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "taxRateRuleIds" }, - "12438": { + "12740": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "config" }, - "12439": { + "12741": { "sourceFileName": "../../../../packages/core/types/src/tax/service.ts", "qualifiedName": "sharedContext" }, - "12453": { + "12755": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "12467": { + "12769": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "12468": { + "12770": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "12469": { + "12771": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "12470": { + "12772": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "12471": { + "12773": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "12472": { + "12774": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "12473": { + "12775": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "12474": { + "12776": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "12476": { + "12778": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "12477": { + "12779": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "12478": { + "12780": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "12479": { + "12781": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "12480": { + "12782": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateDTO" }, - "12481": { + "12783": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateDTO.id" }, - "12482": { + "12784": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateDTO.rate" }, - "12483": { + "12785": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateDTO.code" }, - "12484": { + "12786": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateDTO.name" }, - "12485": { + "12787": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateDTO.metadata" }, - "12486": { + "12788": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateDTO.tax_region_id" }, - "12487": { + "12789": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateDTO.is_combinable" }, - "12488": { + "12790": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateDTO.is_default" }, - "12489": { + "12791": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateDTO.created_at" }, - "12490": { + "12792": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateDTO.updated_at" }, - "12491": { + "12793": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateDTO.deleted_at" }, - "12492": { + "12794": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateDTO.created_by" }, - "12493": { + "12795": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "12494": { + "12796": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "12495": { + "12797": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "12496": { + "12798": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "12497": { + "12799": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "12498": { + "12800": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "12499": { + "12801": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "12500": { + "12802": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "12501": { + "12803": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "12502": { + "12804": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "12503": { + "12805": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "12504": { + "12806": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "12505": { + "12807": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateProps" }, - "12506": { + "12808": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateProps.q" }, - "12507": { + "12809": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateProps.id" }, - "12508": { + "12810": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateProps.tax_region_id" }, - "12509": { + "12811": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateProps.rate" }, - "12510": { + "12812": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateProps.code" }, - "12511": { + "12813": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateProps.name" }, - "12512": { + "12814": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateProps.created_at" }, - "12513": { + "12815": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateProps.updated_at" }, - "12514": { + "12816": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateProps.created_by" }, - "12515": { + "12817": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "12516": { + "12818": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "12517": { + "12819": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateDTO" }, - "12518": { + "12820": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateDTO.tax_region_id" }, - "12519": { + "12821": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateDTO.rate" }, - "12520": { + "12822": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateDTO.code" }, - "12521": { + "12823": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateDTO.name" }, - "12522": { + "12824": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateDTO.rules" }, - "12523": { + "12825": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateDTO.is_default" }, - "12524": { + "12826": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateDTO.created_by" }, - "12525": { + "12827": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateDTO.metadata" }, - "12526": { + "12828": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpdateTaxRateDTO" }, - "12527": { + "12829": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpdateTaxRateDTO.rate" }, - "12528": { + "12830": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpdateTaxRateDTO.code" }, - "12529": { + "12831": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpdateTaxRateDTO.name" }, - "12530": { + "12832": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpdateTaxRateDTO.rules" }, - "12531": { + "12833": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpdateTaxRateDTO.is_default" }, - "12532": { + "12834": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpdateTaxRateDTO.is_combinable" }, - "12534": { + "12836": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpdateTaxRateDTO.metadata" }, - "12535": { + "12837": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpsertTaxRateDTO" }, - "12536": { + "12838": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpsertTaxRateDTO.id" }, - "12537": { + "12839": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpsertTaxRateDTO.rate" }, - "12538": { + "12840": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpsertTaxRateDTO.code" }, - "12539": { + "12841": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpsertTaxRateDTO.name" }, - "12540": { + "12842": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpsertTaxRateDTO.is_default" }, - "12541": { + "12843": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpsertTaxRateDTO.created_by" }, - "12542": { + "12844": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "UpsertTaxRateDTO.metadata" }, - "12543": { + "12845": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RestoreReturn" }, - "12544": { + "12846": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "12545": { + "12847": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12546": { + "12848": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRegionDTO" }, - "12547": { + "12849": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRegionDTO.country_code" }, - "12548": { + "12850": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRegionDTO.province_code" }, - "12549": { + "12851": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRegionDTO.parent_id" }, - "12550": { + "12852": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRegionDTO.metadata" }, - "12551": { + "12853": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRegionDTO.created_by" }, - "12552": { + "12854": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRegionDTO.default_tax_rate" }, - "12553": { + "12855": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "__type" }, - "12554": { + "12856": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "__type.rate" }, - "12555": { + "12857": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "__type.code" }, - "12556": { + "12858": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "__type.name" }, - "12557": { + "12859": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "__type.metadata" }, - "12558": { + "12860": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRegionDTO" }, - "12559": { + "12861": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRegionDTO.id" }, - "12560": { + "12862": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRegionDTO.country_code" }, - "12561": { + "12863": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRegionDTO.province_code" }, - "12562": { + "12864": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRegionDTO.parent_id" }, - "12563": { + "12865": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRegionDTO.metadata" }, - "12564": { + "12866": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRegionDTO.created_at" }, - "12565": { + "12867": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRegionDTO.updated_at" }, - "12566": { + "12868": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRegionDTO.created_by" }, - "12567": { + "12869": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRegionDTO.deleted_at" }, - "12568": { + "12870": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRegionProps" }, - "12569": { + "12871": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRegionProps.q" }, - "12570": { + "12872": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRegionProps.id" }, - "12571": { + "12873": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRegionProps.country_code" }, - "12572": { + "12874": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRegionProps.province_code" }, - "12573": { + "12875": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRegionProps.parent_id" }, - "12574": { + "12876": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRegionProps.metadata" }, - "12575": { + "12877": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRegionProps.created_at" }, - "12576": { + "12878": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRegionProps.updated_at" }, - "12577": { + "12879": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRegionProps.created_by" }, - "12578": { + "12880": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "12579": { + "12881": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "12580": { + "12882": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateRuleDTO" }, - "12581": { + "12883": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateRuleDTO.reference" }, - "12582": { + "12884": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateRuleDTO.reference_id" }, - "12583": { + "12885": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateRuleDTO.tax_rate_id" }, - "12584": { + "12886": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateRuleDTO.metadata" }, - "12585": { + "12887": { "sourceFileName": "../../../../packages/core/types/src/tax/mutations.ts", "qualifiedName": "CreateTaxRateRuleDTO.created_by" }, - "12586": { + "12888": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateRuleDTO" }, - "12587": { + "12889": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateRuleDTO.id" }, - "12588": { + "12890": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateRuleDTO.reference" }, - "12589": { + "12891": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateRuleDTO.reference_id" }, - "12590": { + "12892": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateRuleDTO.tax_rate_id" }, - "12591": { + "12893": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateRuleDTO.tax_rate" }, - "12592": { + "12894": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateRuleDTO.metadata" }, - "12593": { + "12895": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateRuleDTO.created_at" }, - "12594": { + "12896": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateRuleDTO.updated_at" }, - "12595": { + "12897": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxRateRuleDTO.created_by" }, - "12596": { + "12898": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateRuleProps" }, - "12597": { + "12899": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateRuleProps.reference" }, - "12598": { + "12900": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateRuleProps.reference_id" }, - "12599": { + "12901": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateRuleProps.tax_rate_id" }, - "12600": { + "12902": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateRuleProps.tax_rate" }, - "12601": { + "12903": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateRuleProps.metadata" }, - "12602": { + "12904": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateRuleProps.created_at" }, - "12603": { + "12905": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateRuleProps.updated_at" }, - "12604": { + "12906": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "FilterableTaxRateRuleProps.created_by" }, - "12605": { + "12907": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "12606": { + "12908": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "12607": { + "12909": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableItemDTO" }, - "12608": { + "12910": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableItemDTO.id" }, - "12609": { + "12911": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableItemDTO.product_id" }, - "12610": { + "12912": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableItemDTO.product_name" }, - "12611": { + "12913": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableItemDTO.product_category_id" }, - "12612": { + "12914": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableItemDTO.product_categories" }, - "12613": { + "12915": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableItemDTO.product_sku" }, - "12614": { + "12916": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableItemDTO.product_type" }, - "12615": { + "12917": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableItemDTO.product_type_id" }, - "12616": { + "12918": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableItemDTO.quantity" }, - "12617": { + "12919": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableItemDTO.unit_price" }, - "12618": { + "12920": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableItemDTO.currency_code" }, - "12619": { + "12921": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableShippingDTO" }, - "12620": { + "12922": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableShippingDTO.id" }, - "12621": { + "12923": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableShippingDTO.shipping_option_id" }, - "12622": { + "12924": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableShippingDTO.unit_price" }, - "12623": { + "12925": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxableShippingDTO.currency_code" }, - "12624": { + "12926": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxCalculationContext" }, - "12625": { + "12927": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxCalculationContext.address" }, - "12626": { + "12928": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "__type" }, - "12627": { + "12929": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "__type.country_code" }, - "12628": { + "12930": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "__type.province_code" }, - "12629": { + "12931": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "__type.address_1" }, - "12630": { + "12932": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "__type.address_2" }, - "12631": { + "12933": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "__type.city" }, - "12632": { + "12934": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "__type.postal_code" }, - "12633": { + "12935": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxCalculationContext.customer" }, - "12634": { + "12936": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "__type" }, - "12635": { + "12937": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "__type.id" }, - "12636": { + "12938": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "__type.email" }, - "12637": { + "12939": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "__type.customer_groups" }, - "12638": { + "12940": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxCalculationContext.is_return" }, - "12639": { + "12941": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "ItemTaxLineDTO" }, - "12640": { + "12942": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "ItemTaxLineDTO.line_item_id" }, - "12641": { + "12943": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.rate_id" }, - "12642": { + "12944": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.rate" }, - "12643": { + "12945": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.code" }, - "12644": { + "12946": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.name" }, - "12645": { + "12947": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.provider_id" }, - "12646": { + "12948": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "ShippingTaxLineDTO" }, - "12647": { + "12949": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "ShippingTaxLineDTO.shipping_line_id" }, - "12648": { + "12950": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.rate_id" }, - "12649": { + "12951": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.rate" }, - "12650": { + "12952": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.code" }, - "12651": { + "12953": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.name" }, - "12652": { + "12954": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.provider_id" }, - "12653": { + "12955": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "SoftDeleteReturn" }, - "12654": { + "12956": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "12655": { + "12957": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12656": { + "12958": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "12657": { + "12959": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "12658": { + "12960": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "12659": { + "12961": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "12660": { + "12962": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "12661": { + "12963": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "12662": { + "12964": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "12663": { + "12965": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "12664": { + "12966": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "12665": { + "12967": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "12666": { + "12968": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "12667": { + "12969": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "12668": { + "12970": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "12669": { + "12971": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "12670": { + "12972": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "12671": { + "12973": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "12672": { + "12974": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "12673": { + "12975": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "12674": { + "12976": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "12675": { + "12977": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "12676": { + "12978": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "12677": { + "12979": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "12678": { + "12980": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "12679": { + "12981": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "12680": { + "12982": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "12681": { + "12983": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "12682": { + "12984": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "12683": { + "12985": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "12684": { + "12986": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "12685": { + "12987": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "12686": { + "12988": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "12687": { + "12989": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "12688": { + "12990": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "12689": { + "12991": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "12690": { + "12992": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "12691": { + "12993": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "12692": { + "12994": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "12693": { + "12995": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "12694": { + "12996": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "12695": { + "12997": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "12696": { + "12998": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "12697": { + "12999": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "12698": { + "13000": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "OperatorMap" }, - "12699": { + "13001": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "12700": { + "13002": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$and" }, - "12701": { + "13003": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$or" }, - "12702": { + "13004": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$eq" }, - "12703": { + "13005": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ne" }, - "12704": { + "13006": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$in" }, - "12705": { + "13007": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$nin" }, - "12706": { + "13008": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$not" }, - "12707": { + "13009": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gt" }, - "12708": { + "13010": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$gte" }, - "12709": { + "13011": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lt" }, - "12710": { + "13012": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$lte" }, - "12711": { + "13013": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$like" }, - "12712": { + "13014": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$re" }, - "12713": { + "13015": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$ilike" }, - "12714": { + "13016": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$fulltext" }, - "12715": { + "13017": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$overlap" }, - "12716": { + "13018": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contains" }, - "12717": { + "13019": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$contained" }, - "12718": { + "13020": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.$exists" }, - "12719": { + "13021": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "12720": { + "13022": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "MetadataType" }, - "12721": { + "13023": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberInput" }, - "12722": { + "13024": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO" }, - "12723": { + "13025": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.rate_id" }, - "12724": { + "13026": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.rate" }, - "12725": { + "13027": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.code" }, - "12726": { + "13028": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.name" }, - "12727": { + "13029": { "sourceFileName": "../../../../packages/core/types/src/tax/common.ts", "qualifiedName": "TaxLineDTO.provider_id" }, - "12728": { + "13030": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "12729": { + "13031": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "12730": { + "13032": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "12731": { + "13033": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "12732": { + "13034": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "12733": { + "13035": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "12734": { + "13036": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "12735": { + "13037": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "12736": { + "13038": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "12737": { + "13039": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "12738": { + "13040": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "12739": { + "13041": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "12740": { + "13042": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "12741": { + "13043": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "12742": { + "13044": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "12743": { + "13045": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "12744": { + "13046": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "12745": { + "13047": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "12746": { + "13048": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "12747": { + "13049": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "12748": { + "13050": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "12749": { + "13051": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "12750": { + "13052": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "12751": { + "13053": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "12752": { + "13054": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "12753": { + "13055": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "12754": { + "13056": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "12755": { + "13057": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "12756": { + "13058": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "12757": { + "13059": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "12758": { + "13060": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "12759": { + "13061": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "12761": { + "13063": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "12762": { + "13064": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "12763": { + "13065": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "12764": { + "13066": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "12765": { + "13067": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "12766": { + "13068": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "12767": { + "13069": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "12768": { + "13070": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "12769": { + "13071": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "12770": { + "13072": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "12771": { + "13073": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Query" }, - "12772": { + "13074": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "12773": { + "13075": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ExpandScalar" }, - "12774": { + "13076": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "12775": { + "13077": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "BigNumberRawValue" }, - "12776": { + "13078": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type" }, - "12777": { + "13079": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type.value" }, - "12778": { + "13080": { "sourceFileName": "../../../../packages/core/types/src/totals/big-number.ts", "qualifiedName": "__type.__index" }, - "12780": { + "13082": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "12781": { + "13083": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "12782": { + "13084": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "12783": { + "13085": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "12784": { + "13086": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "12785": { + "13087": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "12786": { + "13088": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "12787": { + "13089": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "12788": { + "13090": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "12789": { + "13091": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "12790": { + "13092": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "12791": { + "13093": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "12792": { + "13094": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "12793": { + "13095": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "12794": { + "13096": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "12795": { + "13097": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "12796": { + "13098": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "12797": { + "13099": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "12798": { + "13100": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Scalar" }, - "12799": { + "13101": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "12800": { + "13102": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "12801": { + "13103": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.toHexString" }, - "12802": { + "13104": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterQuery" }, - "12803": { + "13105": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "12804": { + "13106": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.__index" }, - "12806": { + "13108": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "12807": { + "13109": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Prev" }, - "12808": { + "13110": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue" }, - "12809": { + "13111": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "12810": { + "13112": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "12811": { + "13113": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "12812": { + "13114": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" }, - "12813": { + "13115": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "PrevLimit" }, - "12814": { + "13116": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "FilterValue2" }, - "12815": { + "13117": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "12816": { + "13118": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "Primary" }, - "12817": { + "13119": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "12818": { + "13120": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.[PrimaryKeyType]" }, - "12819": { + "13121": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "12820": { + "13122": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type._id" }, - "12821": { + "13123": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "12822": { + "13124": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.uuid" }, - "12823": { + "13125": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type" }, - "12824": { + "13126": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "__type.id" }, - "12825": { + "13127": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" }, - "12826": { + "13128": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "ReadonlyPrimary" }, - "12827": { + "13129": { "sourceFileName": "../../../../packages/core/types/src/dal/utils.ts", "qualifiedName": "T" } @@ -15885,7 +15858,7 @@ "1": "../../../../packages/core/types/src/tax/service.ts" }, "reflections": { - "1": 12310 + "1": 12612 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/user-models.json b/www/utils/generated/typedoc-json-output/user-models.json index 4ec690cb10e01..165957c2ed3ab 100644 --- a/www/utils/generated/typedoc-json-output/user-models.json +++ b/www/utils/generated/typedoc-json-output/user-models.json @@ -1,33 +1,33 @@ { - "id": 13209, + "id": 13442, "name": "user-models", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 13227, + "id": 13460, "name": "Invite", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 13228, + "id": 13461, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 13229, + "id": 13462, "name": "new Invite", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 13227, + "target": 13460, "name": "Invite", "package": "@medusajs/user", "qualifiedName": "default" @@ -36,7 +36,7 @@ ] }, { - "id": 13243, + "id": 13476, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -52,7 +52,7 @@ } }, { - "id": 13230, + "id": 13463, "name": "id", "variant": "declaration", "kind": 1024, @@ -63,7 +63,7 @@ } }, { - "id": 13231, + "id": 13464, "name": "email", "variant": "declaration", "kind": 1024, @@ -74,7 +74,7 @@ } }, { - "id": 13232, + "id": 13465, "name": "accepted", "variant": "declaration", "kind": 1024, @@ -86,7 +86,7 @@ "defaultValue": "false" }, { - "id": 13233, + "id": 13466, "name": "token", "variant": "declaration", "kind": 1024, @@ -97,7 +97,7 @@ } }, { - "id": 13234, + "id": 13467, "name": "expires_at", "variant": "declaration", "kind": 1024, @@ -113,7 +113,7 @@ } }, { - "id": 13235, + "id": 13468, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -149,7 +149,7 @@ "defaultValue": "null" }, { - "id": 13236, + "id": 13469, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -165,7 +165,7 @@ } }, { - "id": 13237, + "id": 13470, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -181,7 +181,7 @@ } }, { - "id": 13238, + "id": 13471, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -207,14 +207,14 @@ "defaultValue": "null" }, { - "id": 13239, + "id": 13472, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 13240, + "id": 13473, "name": "onInit", "variant": "signature", "kind": 4096, @@ -227,14 +227,14 @@ ] }, { - "id": 13241, + "id": 13474, "name": "beforeCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 13242, + "id": 13475, "name": "beforeCreate", "variant": "signature", "kind": 4096, @@ -251,56 +251,56 @@ { "title": "Constructors", "children": [ - 13228 + 13461 ] }, { "title": "Properties", "children": [ - 13243, - 13230, - 13231, - 13232, - 13233, - 13234, - 13235, - 13236, - 13237, - 13238 + 13476, + 13463, + 13464, + 13465, + 13466, + 13467, + 13468, + 13469, + 13470, + 13471 ] }, { "title": "Methods", "children": [ - 13239, - 13241 + 13472, + 13474 ] } ] }, { - "id": 13210, + "id": 13443, "name": "User", "variant": "declaration", "kind": 128, "flags": {}, "children": [ { - "id": 13211, + "id": 13444, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 13212, + "id": 13445, "name": "new User", "variant": "signature", "kind": 16384, "flags": {}, "type": { "type": "reference", - "target": 13210, + "target": 13443, "name": "User", "package": "@medusajs/user", "qualifiedName": "default" @@ -309,7 +309,7 @@ ] }, { - "id": 13226, + "id": 13459, "name": "[OptionalProps]", "variant": "declaration", "kind": 1024, @@ -327,7 +327,7 @@ } }, { - "id": 13213, + "id": 13446, "name": "id", "variant": "declaration", "kind": 1024, @@ -338,7 +338,7 @@ } }, { - "id": 13214, + "id": 13447, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -359,7 +359,7 @@ "defaultValue": "null" }, { - "id": 13215, + "id": 13448, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -380,7 +380,7 @@ "defaultValue": "null" }, { - "id": 13216, + "id": 13449, "name": "email", "variant": "declaration", "kind": 1024, @@ -391,7 +391,7 @@ } }, { - "id": 13217, + "id": 13450, "name": "avatar_url", "variant": "declaration", "kind": 1024, @@ -412,7 +412,7 @@ "defaultValue": "null" }, { - "id": 13218, + "id": 13451, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -448,7 +448,7 @@ "defaultValue": "null" }, { - "id": 13219, + "id": 13452, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -464,7 +464,7 @@ } }, { - "id": 13220, + "id": 13453, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -480,7 +480,7 @@ } }, { - "id": 13221, + "id": 13454, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -508,14 +508,14 @@ "defaultValue": "null" }, { - "id": 13222, + "id": 13455, "name": "onCreate", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 13223, + "id": 13456, "name": "onCreate", "variant": "signature", "kind": 4096, @@ -528,14 +528,14 @@ ] }, { - "id": 13224, + "id": 13457, "name": "onInit", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 13225, + "id": 13458, "name": "onInit", "variant": "signature", "kind": 4096, @@ -552,29 +552,29 @@ { "title": "Constructors", "children": [ - 13211 + 13444 ] }, { "title": "Properties", "children": [ - 13226, - 13213, - 13214, - 13215, - 13216, - 13217, - 13218, - 13219, - 13220, - 13221 + 13459, + 13446, + 13447, + 13448, + 13449, + 13450, + 13451, + 13452, + 13453, + 13454 ] }, { "title": "Methods", "children": [ - 13222, - 13224 + 13455, + 13457 ] } ] @@ -584,134 +584,134 @@ { "title": "Classes", "children": [ - 13227, - 13210 + 13460, + 13443 ] } ], "packageName": "@medusajs/user", "symbolIdMap": { - "13209": { + "13442": { "sourceFileName": "../../../../packages/modules/user/src/models/index.ts", "qualifiedName": "" }, - "13210": { + "13443": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default" }, - "13213": { + "13446": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.id" }, - "13214": { + "13447": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.first_name" }, - "13215": { + "13448": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.last_name" }, - "13216": { + "13449": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.email" }, - "13217": { + "13450": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.avatar_url" }, - "13218": { + "13451": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.metadata" }, - "13219": { + "13452": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.created_at" }, - "13220": { + "13453": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.updated_at" }, - "13221": { + "13454": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.deleted_at" }, - "13222": { + "13455": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.onCreate" }, - "13223": { + "13456": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.onCreate" }, - "13224": { + "13457": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.onInit" }, - "13225": { + "13458": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.onInit" }, - "13226": { + "13459": { "sourceFileName": "../../../../packages/modules/user/src/models/user.ts", "qualifiedName": "default.[OptionalProps]" }, - "13227": { + "13460": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default" }, - "13230": { + "13463": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.id" }, - "13231": { + "13464": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.email" }, - "13232": { + "13465": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.accepted" }, - "13233": { + "13466": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.token" }, - "13234": { + "13467": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.expires_at" }, - "13235": { + "13468": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.metadata" }, - "13236": { + "13469": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.created_at" }, - "13237": { + "13470": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.updated_at" }, - "13238": { + "13471": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.deleted_at" }, - "13239": { + "13472": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.onInit" }, - "13240": { + "13473": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.onInit" }, - "13241": { + "13474": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.beforeCreate" }, - "13242": { + "13475": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.beforeCreate" }, - "13243": { + "13476": { "sourceFileName": "../../../../packages/modules/user/src/models/invite.ts", "qualifiedName": "default.[OptionalProps]" } @@ -721,7 +721,7 @@ "1": "../../../../packages/modules/user/src/models/index.ts" }, "reflections": { - "1": 13209 + "1": 13442 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/user.json b/www/utils/generated/typedoc-json-output/user.json index aacf0d42f95c8..d945f1949bb9f 100644 --- a/www/utils/generated/typedoc-json-output/user.json +++ b/www/utils/generated/typedoc-json-output/user.json @@ -1,12 +1,12 @@ { - "id": 12897, + "id": 13130, "name": "user", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 13046, + "id": 13279, "name": "FindConfig", "variant": "declaration", "kind": 256, @@ -29,7 +29,7 @@ }, "children": [ { - "id": 13047, + "id": 13280, "name": "select", "variant": "declaration", "kind": 1024, @@ -58,7 +58,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 13058, + "target": 13291, "name": "Entity", "package": "@medusajs/types", "qualifiedName": "FindConfig.Entity", @@ -70,7 +70,7 @@ } }, { - "id": 13048, + "id": 13281, "name": "skip", "variant": "declaration", "kind": 1024, @@ -100,7 +100,7 @@ } }, { - "id": 13049, + "id": 13282, "name": "take", "variant": "declaration", "kind": 1024, @@ -130,7 +130,7 @@ } }, { - "id": 13050, + "id": 13283, "name": "relations", "variant": "declaration", "kind": 1024, @@ -154,7 +154,7 @@ } }, { - "id": 13051, + "id": 13284, "name": "order", "variant": "declaration", "kind": 1024, @@ -188,21 +188,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13052, + "id": 13285, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 13053, + "id": 13286, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 13054, + "id": 13287, "name": "K", "variant": "param", "kind": 32768, @@ -232,7 +232,7 @@ } }, { - "id": 13055, + "id": 13288, "name": "withDeleted", "variant": "declaration", "kind": 1024, @@ -261,7 +261,7 @@ } }, { - "id": 13056, + "id": 13289, "name": "filters", "variant": "declaration", "kind": 1024, @@ -297,7 +297,7 @@ } }, { - "id": 13057, + "id": 13290, "name": "options", "variant": "declaration", "kind": 1024, @@ -337,20 +337,20 @@ { "title": "Properties", "children": [ - 13047, - 13048, - 13049, - 13050, - 13051, - 13055, - 13056, - 13057 + 13280, + 13281, + 13282, + 13283, + 13284, + 13288, + 13289, + 13290 ] } ], "typeParameters": [ { - "id": 13058, + "id": 13291, "name": "Entity", "variant": "typeParam", "kind": 131072, @@ -359,7 +359,7 @@ ] }, { - "id": 13141, + "id": 13374, "name": "BaseFilterable", "variant": "declaration", "kind": 256, @@ -374,7 +374,7 @@ }, "children": [ { - "id": 13142, + "id": 13375, "name": "$and", "variant": "declaration", "kind": 1024, @@ -396,11 +396,11 @@ "types": [ { "type": "reference", - "target": 13141, + "target": 13374, "typeArguments": [ { "type": "reference", - "target": 13144, + "target": 13377, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -412,7 +412,7 @@ }, { "type": "reference", - "target": 13144, + "target": 13377, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -423,7 +423,7 @@ } }, { - "id": 13143, + "id": 13376, "name": "$or", "variant": "declaration", "kind": 1024, @@ -445,11 +445,11 @@ "types": [ { "type": "reference", - "target": 13141, + "target": 13374, "typeArguments": [ { "type": "reference", - "target": 13144, + "target": 13377, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -461,7 +461,7 @@ }, { "type": "reference", - "target": 13144, + "target": 13377, "name": "T", "package": "@medusajs/types", "qualifiedName": "BaseFilterable.T", @@ -476,14 +476,14 @@ { "title": "Properties", "children": [ - 13142, - 13143 + 13375, + 13376 ] } ], "typeParameters": [ { - "id": 13144, + "id": 13377, "name": "T", "variant": "typeParam", "kind": 131072, @@ -493,13 +493,13 @@ "extendedBy": [ { "type": "reference", - "target": 13069, + "target": 13302, "name": "FilterableUserProps" } ] }, { - "id": 13089, + "id": 13322, "name": "SoftDeleteReturn", "variant": "declaration", "kind": 256, @@ -514,7 +514,7 @@ }, "children": [ { - "id": 13090, + "id": 13323, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -533,7 +533,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13091, + "target": 13324, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -545,13 +545,13 @@ { "title": "Properties", "children": [ - 13090 + 13323 ] } ], "typeParameters": [ { - "id": 13091, + "id": 13324, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -564,7 +564,7 @@ ] }, { - "id": 13092, + "id": 13325, "name": "RestoreReturn", "variant": "declaration", "kind": 256, @@ -579,7 +579,7 @@ }, "children": [ { - "id": 13093, + "id": 13326, "name": "returnLinkableKeys", "variant": "declaration", "kind": 1024, @@ -598,7 +598,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13094, + "target": 13327, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -610,13 +610,13 @@ { "title": "Properties", "children": [ - 13093 + 13326 ] } ], "typeParameters": [ { - "id": 13094, + "id": 13327, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -629,7 +629,7 @@ ] }, { - "id": 13206, + "id": 13439, "name": "EventMetadata", "variant": "declaration", "kind": 2097152, @@ -659,14 +659,14 @@ { "type": "reflection", "declaration": { - "id": 13207, + "id": 13440, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13208, + "id": 13441, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -683,7 +683,7 @@ { "title": "Properties", "children": [ - 13208 + 13441 ] } ] @@ -693,14 +693,14 @@ } }, { - "id": 13200, + "id": 13433, "name": "MessageBody", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 13205, + "id": 13438, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -714,14 +714,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13201, + "id": 13434, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13202, + "id": 13435, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -732,7 +732,7 @@ } }, { - "id": 13203, + "id": 13436, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -741,20 +741,20 @@ }, "type": { "type": "reference", - "target": 13206, + "target": 13439, "name": "EventMetadata", "package": "@medusajs/types" } }, { - "id": 13204, + "id": 13437, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 13205, + "target": 13438, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -765,9 +765,9 @@ { "title": "Properties", "children": [ - 13202, - 13203, - 13204 + 13435, + 13436, + 13437 ] } ] @@ -775,14 +775,14 @@ } }, { - "id": 13168, + "id": 13401, "name": "Message", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 13171, + "id": 13404, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -798,11 +798,11 @@ "types": [ { "type": "reference", - "target": 13200, + "target": 13433, "typeArguments": [ { "type": "reference", - "target": 13171, + "target": 13404, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true @@ -814,14 +814,14 @@ { "type": "reflection", "declaration": { - "id": 13169, + "id": 13402, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13170, + "id": 13403, "name": "options", "variant": "declaration", "kind": 1024, @@ -853,7 +853,7 @@ { "title": "Properties", "children": [ - 13170 + 13403 ] } ] @@ -863,14 +863,14 @@ } }, { - "id": 13178, + "id": 13411, "name": "RawMessageFormat", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 13187, + "id": 13420, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -884,14 +884,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13179, + "id": 13412, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13180, + "id": 13413, "name": "eventName", "variant": "declaration", "kind": 1024, @@ -902,21 +902,21 @@ } }, { - "id": 13181, + "id": 13414, "name": "data", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 13187, + "target": 13420, "name": "TData", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 13182, + "id": 13415, "name": "source", "variant": "declaration", "kind": 1024, @@ -927,7 +927,7 @@ } }, { - "id": 13183, + "id": 13416, "name": "object", "variant": "declaration", "kind": 1024, @@ -938,7 +938,7 @@ } }, { - "id": 13184, + "id": 13417, "name": "action", "variant": "declaration", "kind": 1024, @@ -951,7 +951,7 @@ } }, { - "id": 13185, + "id": 13418, "name": "context", "variant": "declaration", "kind": 1024, @@ -967,7 +967,7 @@ "typeArguments": [ { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" }, @@ -981,7 +981,7 @@ } }, { - "id": 13186, + "id": 13419, "name": "options", "variant": "declaration", "kind": 1024, @@ -1013,13 +1013,13 @@ { "title": "Properties", "children": [ - 13180, - 13181, - 13182, - 13183, - 13184, - 13185, - 13186 + 13413, + 13414, + 13415, + 13416, + 13417, + 13418, + 13419 ] } ] @@ -1027,7 +1027,7 @@ } }, { - "id": 13191, + "id": 13424, "name": "JoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -1035,14 +1035,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13192, + "id": 13425, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13193, + "id": 13426, "name": "alias", "variant": "declaration", "kind": 1024, @@ -1053,7 +1053,7 @@ } }, { - "id": 13194, + "id": 13427, "name": "foreignKey", "variant": "declaration", "kind": 1024, @@ -1064,7 +1064,7 @@ } }, { - "id": 13195, + "id": 13428, "name": "primaryKey", "variant": "declaration", "kind": 1024, @@ -1075,7 +1075,7 @@ } }, { - "id": 13196, + "id": 13429, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -1086,7 +1086,7 @@ } }, { - "id": 13197, + "id": 13430, "name": "inverse", "variant": "declaration", "kind": 1024, @@ -1107,7 +1107,7 @@ } }, { - "id": 13198, + "id": 13431, "name": "isList", "variant": "declaration", "kind": 1024, @@ -1128,7 +1128,7 @@ } }, { - "id": 13199, + "id": 13432, "name": "args", "variant": "declaration", "kind": 1024, @@ -1168,13 +1168,13 @@ { "title": "Properties", "children": [ - 13193, - 13194, - 13195, - 13196, - 13197, - 13198, - 13199 + 13426, + 13427, + 13428, + 13429, + 13430, + 13431, + 13432 ] } ] @@ -1182,14 +1182,14 @@ } }, { - "id": 13188, + "id": 13421, "name": "JoinerServiceConfigAlias", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 13189, + "id": 13422, "name": "name", "variant": "declaration", "kind": 1024, @@ -1212,7 +1212,7 @@ } }, { - "id": 13190, + "id": 13423, "name": "args", "variant": "declaration", "kind": 1024, @@ -1252,21 +1252,21 @@ { "title": "Properties", "children": [ - 13189, - 13190 + 13422, + 13423 ] } ] }, { - "id": 13145, + "id": 13378, "name": "JoinerServiceConfig", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 13146, + "id": 13379, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -1277,7 +1277,7 @@ } }, { - "id": 13147, + "id": 13380, "name": "alias", "variant": "declaration", "kind": 1024, @@ -1297,7 +1297,7 @@ "types": [ { "type": "reference", - "target": 13188, + "target": 13421, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" }, @@ -1305,7 +1305,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13188, + "target": 13421, "name": "JoinerServiceConfigAlias", "package": "@medusajs/types" } @@ -1314,7 +1314,7 @@ } }, { - "id": 13148, + "id": 13381, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -1350,14 +1350,14 @@ { "type": "reflection", "declaration": { - "id": 13149, + "id": 13382, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13150, + "id": 13383, "name": "path", "variant": "declaration", "kind": 1024, @@ -1368,7 +1368,7 @@ } }, { - "id": 13151, + "id": 13384, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -1386,8 +1386,8 @@ { "title": "Properties", "children": [ - 13150, - 13151 + 13383, + 13384 ] } ] @@ -1401,7 +1401,7 @@ } }, { - "id": 13152, + "id": 13385, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -1415,7 +1415,7 @@ } }, { - "id": 13153, + "id": 13386, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -1426,14 +1426,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 13191, + "target": 13424, "name": "JoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 13154, + "id": 13387, "name": "extends", "variant": "declaration", "kind": 1024, @@ -1445,14 +1445,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 13155, + "id": 13388, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13156, + "id": 13389, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -1463,14 +1463,14 @@ } }, { - "id": 13157, + "id": 13390, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 13191, + "target": 13424, "name": "JoinerRelationship", "package": "@medusajs/types" } @@ -1480,8 +1480,8 @@ { "title": "Properties", "children": [ - 13156, - 13157 + 13389, + 13390 ] } ] @@ -1490,7 +1490,7 @@ } }, { - "id": 13158, + "id": 13391, "name": "args", "variant": "declaration", "kind": 1024, @@ -1530,19 +1530,19 @@ { "title": "Properties", "children": [ - 13146, - 13147, - 13148, - 13152, - 13153, - 13154, - 13158 + 13379, + 13380, + 13381, + 13385, + 13386, + 13387, + 13391 ] } ] }, { - "id": 13162, + "id": 13395, "name": "LinkModulesExtraFields", "variant": "declaration", "kind": 2097152, @@ -1561,14 +1561,14 @@ { "type": "reflection", "declaration": { - "id": 13163, + "id": 13396, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13164, + "id": 13397, "name": "type", "variant": "declaration", "kind": 1024, @@ -1664,7 +1664,7 @@ } }, { - "id": 13165, + "id": 13398, "name": "defaultValue", "variant": "declaration", "kind": 1024, @@ -1677,7 +1677,7 @@ } }, { - "id": 13166, + "id": 13399, "name": "nullable", "variant": "declaration", "kind": 1024, @@ -1690,7 +1690,7 @@ } }, { - "id": 13167, + "id": 13400, "name": "options", "variant": "declaration", "kind": 1024, @@ -1730,10 +1730,10 @@ { "title": "Properties", "children": [ - 13164, - 13165, - 13166, - 13167 + 13397, + 13398, + 13399, + 13400 ] } ] @@ -1745,7 +1745,7 @@ } }, { - "id": 13103, + "id": 13336, "name": "ModuleJoinerConfig", "variant": "declaration", "kind": 2097152, @@ -1762,7 +1762,7 @@ "typeArguments": [ { "type": "reference", - "target": 13145, + "target": 13378, "name": "JoinerServiceConfig", "package": "@medusajs/types" }, @@ -1794,14 +1794,14 @@ { "type": "reflection", "declaration": { - "id": 13104, + "id": 13337, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13105, + "id": 13338, "name": "schema", "variant": "declaration", "kind": 1024, @@ -1822,7 +1822,7 @@ } }, { - "id": 13106, + "id": 13339, "name": "relationships", "variant": "declaration", "kind": 1024, @@ -1833,14 +1833,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 13159, + "target": 13392, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } } }, { - "id": 13107, + "id": 13340, "name": "extends", "variant": "declaration", "kind": 1024, @@ -1852,14 +1852,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 13108, + "id": 13341, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13109, + "id": 13342, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -1870,7 +1870,7 @@ } }, { - "id": 13110, + "id": 13343, "name": "fieldAlias", "variant": "declaration", "kind": 1024, @@ -1898,14 +1898,14 @@ { "type": "reflection", "declaration": { - "id": 13111, + "id": 13344, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13112, + "id": 13345, "name": "path", "variant": "declaration", "kind": 1024, @@ -1916,7 +1916,7 @@ } }, { - "id": 13113, + "id": 13346, "name": "forwardArgumentsOnPath", "variant": "declaration", "kind": 1024, @@ -1932,7 +1932,7 @@ } }, { - "id": 13114, + "id": 13347, "name": "isList", "variant": "declaration", "kind": 1024, @@ -1949,9 +1949,9 @@ { "title": "Properties", "children": [ - 13112, - 13113, - 13114 + 13345, + 13346, + 13347 ] } ] @@ -1965,14 +1965,14 @@ } }, { - "id": 13115, + "id": 13348, "name": "relationship", "variant": "declaration", "kind": 1024, "flags": {}, "type": { "type": "reference", - "target": 13159, + "target": 13392, "name": "ModuleJoinerRelationship", "package": "@medusajs/types" } @@ -1982,9 +1982,9 @@ { "title": "Properties", "children": [ - 13109, - 13110, - 13115 + 13342, + 13343, + 13348 ] } ] @@ -1993,7 +1993,7 @@ } }, { - "id": 13116, + "id": 13349, "name": "serviceName", "variant": "declaration", "kind": 1024, @@ -2006,7 +2006,7 @@ } }, { - "id": 13117, + "id": 13350, "name": "primaryKeys", "variant": "declaration", "kind": 1024, @@ -2022,7 +2022,7 @@ } }, { - "id": 13118, + "id": 13351, "name": "isLink", "variant": "declaration", "kind": 1024, @@ -2043,7 +2043,7 @@ } }, { - "id": 13119, + "id": 13352, "name": "linkableKeys", "variant": "declaration", "kind": 1024, @@ -2079,7 +2079,7 @@ } }, { - "id": 13120, + "id": 13353, "name": "isReadOnlyLink", "variant": "declaration", "kind": 1024, @@ -2100,7 +2100,7 @@ } }, { - "id": 13121, + "id": 13354, "name": "extraDataFields", "variant": "declaration", "kind": 1024, @@ -2124,7 +2124,7 @@ } }, { - "id": 13122, + "id": 13355, "name": "databaseConfig", "variant": "declaration", "kind": 1024, @@ -2134,14 +2134,14 @@ "type": { "type": "reflection", "declaration": { - "id": 13123, + "id": 13356, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13124, + "id": 13357, "name": "tableName", "variant": "declaration", "kind": 1024, @@ -2162,7 +2162,7 @@ } }, { - "id": 13125, + "id": 13358, "name": "idPrefix", "variant": "declaration", "kind": 1024, @@ -2183,7 +2183,7 @@ } }, { - "id": 13126, + "id": 13359, "name": "extraFields", "variant": "declaration", "kind": 1024, @@ -2192,7 +2192,7 @@ }, "type": { "type": "reference", - "target": 13162, + "target": 13395, "name": "LinkModulesExtraFields", "package": "@medusajs/types" } @@ -2202,9 +2202,9 @@ { "title": "Properties", "children": [ - 13124, - 13125, - 13126 + 13357, + 13358, + 13359 ] } ] @@ -2216,16 +2216,16 @@ { "title": "Properties", "children": [ - 13105, - 13106, - 13107, - 13116, - 13117, - 13118, - 13119, - 13120, - 13121, - 13122 + 13338, + 13339, + 13340, + 13349, + 13350, + 13351, + 13352, + 13353, + 13354, + 13355 ] } ] @@ -2235,7 +2235,7 @@ } }, { - "id": 13159, + "id": 13392, "name": "ModuleJoinerRelationship", "variant": "declaration", "kind": 2097152, @@ -2245,21 +2245,21 @@ "types": [ { "type": "reference", - "target": 13191, + "target": 13424, "name": "JoinerRelationship", "package": "@medusajs/types" }, { "type": "reflection", "declaration": { - "id": 13160, + "id": 13393, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 13161, + "id": 13394, "name": "deleteCascade", "variant": "declaration", "kind": 1024, @@ -2284,7 +2284,7 @@ { "title": "Properties", "children": [ - 13161 + 13394 ] } ] @@ -2294,7 +2294,7 @@ } }, { - "id": 13010, + "id": 13243, "name": "IModuleService", "variant": "declaration", "kind": 256, @@ -2302,20 +2302,20 @@ "extendedBy": [ { "type": "reference", - "target": 12898, + "target": 13131, "name": "IUserModuleService" } ] }, { - "id": 13172, + "id": 13405, "name": "MessageAggregatorFormat", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 13173, + "id": 13406, "name": "groupBy", "variant": "declaration", "kind": 1024, @@ -2331,7 +2331,7 @@ } }, { - "id": 13174, + "id": 13407, "name": "sortBy", "variant": "declaration", "kind": 1024, @@ -2341,21 +2341,21 @@ "type": { "type": "reflection", "declaration": { - "id": 13175, + "id": 13408, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 13176, + "id": 13409, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 13177, + "id": 13410, "name": "key", "variant": "param", "kind": 32768, @@ -2396,35 +2396,35 @@ { "title": "Properties", "children": [ - 13173, - 13174 + 13406, + 13407 ] } ] }, { - "id": 13127, + "id": 13360, "name": "IMessageAggregator", "variant": "declaration", "kind": 256, "flags": {}, "children": [ { - "id": 13128, + "id": 13361, "name": "save", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 13129, + "id": 13362, "name": "save", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13130, + "id": 13363, "name": "msg", "variant": "param", "kind": 32768, @@ -2434,7 +2434,7 @@ "types": [ { "type": "reference", - "target": 13168, + "target": 13401, "name": "Message", "package": "@medusajs/types" }, @@ -2442,7 +2442,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13168, + "target": 13401, "name": "Message", "package": "@medusajs/types" } @@ -2459,21 +2459,21 @@ ] }, { - "id": 13131, + "id": 13364, "name": "getMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 13132, + "id": 13365, "name": "getMessages", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 13133, + "id": 13366, "name": "format", "variant": "param", "kind": 32768, @@ -2482,7 +2482,7 @@ }, "type": { "type": "reference", - "target": 13172, + "target": 13405, "name": "MessageAggregatorFormat", "package": "@medusajs/types" } @@ -2503,7 +2503,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13168, + "target": 13401, "name": "Message", "package": "@medusajs/types" } @@ -2516,14 +2516,14 @@ ] }, { - "id": 13134, + "id": 13367, "name": "clearMessages", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 13135, + "id": 13368, "name": "clearMessages", "variant": "signature", "kind": 4096, @@ -2536,21 +2536,21 @@ ] }, { - "id": 13136, + "id": 13369, "name": "saveRawMessageData", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 13137, + "id": 13370, "name": "saveRawMessageData", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 13138, + "id": 13371, "name": "T", "variant": "typeParam", "kind": 131072, @@ -2559,7 +2559,7 @@ ], "parameters": [ { - "id": 13139, + "id": 13372, "name": "messageData", "variant": "param", "kind": 32768, @@ -2569,11 +2569,11 @@ "types": [ { "type": "reference", - "target": 13178, + "target": 13411, "typeArguments": [ { "type": "reference", - "target": 13138, + "target": 13371, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2586,11 +2586,11 @@ "type": "array", "elementType": { "type": "reference", - "target": 13178, + "target": 13411, "typeArguments": [ { "type": "reference", - "target": 13138, + "target": 13371, "name": "T", "package": "@medusajs/types", "refersToTypeParameter": true @@ -2604,7 +2604,7 @@ } }, { - "id": 13140, + "id": 13373, "name": "options", "variant": "param", "kind": 32768, @@ -2644,16 +2644,16 @@ { "title": "Methods", "children": [ - 13128, - 13131, - 13134, - 13136 + 13361, + 13364, + 13367, + 13369 ] } ] }, { - "id": 13024, + "id": 13257, "name": "Context", "variant": "declaration", "kind": 256, @@ -2668,7 +2668,7 @@ }, "children": [ { - "id": 13025, + "id": 13258, "name": "__type", "variant": "declaration", "kind": 1024, @@ -2681,7 +2681,7 @@ } }, { - "id": 13026, + "id": 13259, "name": "transactionManager", "variant": "declaration", "kind": 1024, @@ -2714,14 +2714,14 @@ }, "type": { "type": "reference", - "target": 13035, + "target": 13268, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 13027, + "id": 13260, "name": "manager", "variant": "declaration", "kind": 1024, @@ -2754,14 +2754,14 @@ }, "type": { "type": "reference", - "target": 13035, + "target": 13268, "name": "TManager", "package": "@medusajs/types", "refersToTypeParameter": true } }, { - "id": 13028, + "id": 13261, "name": "isolationLevel", "variant": "declaration", "kind": 1024, @@ -2814,7 +2814,7 @@ } }, { - "id": 13029, + "id": 13262, "name": "enableNestedTransactions", "variant": "declaration", "kind": 1024, @@ -2835,7 +2835,7 @@ } }, { - "id": 13030, + "id": 13263, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -2856,7 +2856,7 @@ } }, { - "id": 13031, + "id": 13264, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -2877,7 +2877,7 @@ } }, { - "id": 13032, + "id": 13265, "name": "messageAggregator", "variant": "declaration", "kind": 1024, @@ -2894,13 +2894,13 @@ }, "type": { "type": "reference", - "target": 13127, + "target": 13360, "name": "IMessageAggregator", "package": "@medusajs/types" } }, { - "id": 13033, + "id": 13266, "name": "requestId", "variant": "declaration", "kind": 1024, @@ -2921,7 +2921,7 @@ } }, { - "id": 13034, + "id": 13267, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -2946,22 +2946,22 @@ { "title": "Properties", "children": [ - 13025, - 13026, - 13027, - 13028, - 13029, - 13030, - 13031, - 13032, - 13033, - 13034 + 13258, + 13259, + 13260, + 13261, + 13262, + 13263, + 13264, + 13265, + 13266, + 13267 ] } ], "typeParameters": [ { - "id": 13035, + "id": 13268, "name": "TManager", "variant": "typeParam", "kind": 131072, @@ -2974,7 +2974,7 @@ ] }, { - "id": 13059, + "id": 13292, "name": "UserDTO", "variant": "declaration", "kind": 256, @@ -2989,7 +2989,7 @@ }, "children": [ { - "id": 13060, + "id": 13293, "name": "id", "variant": "declaration", "kind": 1024, @@ -3008,7 +3008,7 @@ } }, { - "id": 13061, + "id": 13294, "name": "email", "variant": "declaration", "kind": 1024, @@ -3027,7 +3027,7 @@ } }, { - "id": 13062, + "id": 13295, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -3055,7 +3055,7 @@ } }, { - "id": 13063, + "id": 13296, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -3083,7 +3083,7 @@ } }, { - "id": 13064, + "id": 13297, "name": "avatar_url", "variant": "declaration", "kind": 1024, @@ -3111,7 +3111,7 @@ } }, { - "id": 13065, + "id": 13298, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3154,7 +3154,7 @@ } }, { - "id": 13066, + "id": 13299, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3178,7 +3178,7 @@ } }, { - "id": 13067, + "id": 13300, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3202,7 +3202,7 @@ } }, { - "id": 13068, + "id": 13301, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3239,21 +3239,21 @@ { "title": "Properties", "children": [ - 13060, - 13061, - 13062, - 13063, - 13064, - 13065, - 13066, - 13067, - 13068 + 13293, + 13294, + 13295, + 13296, + 13297, + 13298, + 13299, + 13300, + 13301 ] } ] }, { - "id": 13069, + "id": 13302, "name": "FilterableUserProps", "variant": "declaration", "kind": 256, @@ -3268,7 +3268,7 @@ }, "children": [ { - "id": 13075, + "id": 13308, "name": "$and", "variant": "declaration", "kind": 1024, @@ -3291,17 +3291,17 @@ "types": [ { "type": "reference", - "target": 13069, + "target": 13302, "name": "FilterableUserProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 13141, + "target": 13374, "typeArguments": [ { "type": "reference", - "target": 13069, + "target": 13302, "name": "FilterableUserProps", "package": "@medusajs/types" } @@ -3314,12 +3314,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13142, + "target": 13375, "name": "BaseFilterable.$and" } }, { - "id": 13076, + "id": 13309, "name": "$or", "variant": "declaration", "kind": 1024, @@ -3342,17 +3342,17 @@ "types": [ { "type": "reference", - "target": 13069, + "target": 13302, "name": "FilterableUserProps", "package": "@medusajs/types" }, { "type": "reference", - "target": 13141, + "target": 13374, "typeArguments": [ { "type": "reference", - "target": 13069, + "target": 13302, "name": "FilterableUserProps", "package": "@medusajs/types" } @@ -3365,12 +3365,12 @@ }, "inheritedFrom": { "type": "reference", - "target": 13143, + "target": 13376, "name": "BaseFilterable.$or" } }, { - "id": 13070, + "id": 13303, "name": "q", "variant": "declaration", "kind": 1024, @@ -3391,7 +3391,7 @@ } }, { - "id": 13071, + "id": 13304, "name": "id", "variant": "declaration", "kind": 1024, @@ -3424,7 +3424,7 @@ } }, { - "id": 13072, + "id": 13305, "name": "email", "variant": "declaration", "kind": 1024, @@ -3457,7 +3457,7 @@ } }, { - "id": 13073, + "id": 13306, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -3490,7 +3490,7 @@ } }, { - "id": 13074, + "id": 13307, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -3527,24 +3527,24 @@ { "title": "Properties", "children": [ - 13075, - 13076, - 13070, - 13071, - 13072, - 13073, - 13074 + 13308, + 13309, + 13303, + 13304, + 13305, + 13306, + 13307 ] } ], "extendedTypes": [ { "type": "reference", - "target": 13141, + "target": 13374, "typeArguments": [ { "type": "reference", - "target": 13069, + "target": 13302, "name": "FilterableUserProps", "package": "@medusajs/types" } @@ -3555,7 +3555,7 @@ ] }, { - "id": 13036, + "id": 13269, "name": "InviteDTO", "variant": "declaration", "kind": 256, @@ -3570,7 +3570,7 @@ }, "children": [ { - "id": 13037, + "id": 13270, "name": "id", "variant": "declaration", "kind": 1024, @@ -3589,7 +3589,7 @@ } }, { - "id": 13038, + "id": 13271, "name": "email", "variant": "declaration", "kind": 1024, @@ -3608,7 +3608,7 @@ } }, { - "id": 13039, + "id": 13272, "name": "accepted", "variant": "declaration", "kind": 1024, @@ -3627,7 +3627,7 @@ } }, { - "id": 13040, + "id": 13273, "name": "token", "variant": "declaration", "kind": 1024, @@ -3646,7 +3646,7 @@ } }, { - "id": 13041, + "id": 13274, "name": "expires_at", "variant": "declaration", "kind": 1024, @@ -3670,7 +3670,7 @@ } }, { - "id": 13042, + "id": 13275, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3713,7 +3713,7 @@ } }, { - "id": 13043, + "id": 13276, "name": "created_at", "variant": "declaration", "kind": 1024, @@ -3737,7 +3737,7 @@ } }, { - "id": 13044, + "id": 13277, "name": "updated_at", "variant": "declaration", "kind": 1024, @@ -3761,7 +3761,7 @@ } }, { - "id": 13045, + "id": 13278, "name": "deleted_at", "variant": "declaration", "kind": 1024, @@ -3798,21 +3798,21 @@ { "title": "Properties", "children": [ - 13037, - 13038, - 13039, - 13040, - 13041, - 13042, - 13043, - 13044, - 13045 + 13270, + 13271, + 13272, + 13273, + 13274, + 13275, + 13276, + 13277, + 13278 ] } ] }, { - "id": 13077, + "id": 13310, "name": "CreateUserDTO", "variant": "declaration", "kind": 256, @@ -3827,7 +3827,7 @@ }, "children": [ { - "id": 13078, + "id": 13311, "name": "email", "variant": "declaration", "kind": 1024, @@ -3846,7 +3846,7 @@ } }, { - "id": 13079, + "id": 13312, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -3876,7 +3876,7 @@ } }, { - "id": 13080, + "id": 13313, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -3906,7 +3906,7 @@ } }, { - "id": 13081, + "id": 13314, "name": "avatar_url", "variant": "declaration", "kind": 1024, @@ -3936,7 +3936,7 @@ } }, { - "id": 13082, + "id": 13315, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3985,17 +3985,17 @@ { "title": "Properties", "children": [ - 13078, - 13079, - 13080, - 13081, - 13082 + 13311, + 13312, + 13313, + 13314, + 13315 ] } ] }, { - "id": 13083, + "id": 13316, "name": "UpdateUserDTO", "variant": "declaration", "kind": 256, @@ -4010,7 +4010,7 @@ }, "children": [ { - "id": 13086, + "id": 13319, "name": "first_name", "variant": "declaration", "kind": 1024, @@ -4046,7 +4046,7 @@ } }, { - "id": 13087, + "id": 13320, "name": "last_name", "variant": "declaration", "kind": 1024, @@ -4082,7 +4082,7 @@ } }, { - "id": 13088, + "id": 13321, "name": "avatar_url", "variant": "declaration", "kind": 1024, @@ -4118,7 +4118,7 @@ } }, { - "id": 13085, + "id": 13318, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4169,7 +4169,7 @@ } }, { - "id": 13084, + "id": 13317, "name": "id", "variant": "declaration", "kind": 1024, @@ -4192,11 +4192,11 @@ { "title": "Properties", "children": [ - 13086, - 13087, - 13088, - 13085, - 13084 + 13319, + 13320, + 13321, + 13318, + 13317 ] } ], @@ -4217,7 +4217,7 @@ "typeArguments": [ { "type": "reference", - "target": 13077, + "target": 13310, "name": "CreateUserDTO", "package": "@medusajs/types" }, @@ -4236,7 +4236,7 @@ ] }, { - "id": 13095, + "id": 13328, "name": "CreateInviteDTO", "variant": "declaration", "kind": 256, @@ -4251,7 +4251,7 @@ }, "children": [ { - "id": 13096, + "id": 13329, "name": "email", "variant": "declaration", "kind": 1024, @@ -4270,7 +4270,7 @@ } }, { - "id": 13097, + "id": 13330, "name": "accepted", "variant": "declaration", "kind": 1024, @@ -4291,7 +4291,7 @@ } }, { - "id": 13098, + "id": 13331, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4340,15 +4340,15 @@ { "title": "Properties", "children": [ - 13096, - 13097, - 13098 + 13329, + 13330, + 13331 ] } ] }, { - "id": 13099, + "id": 13332, "name": "UpdateInviteDTO", "variant": "declaration", "kind": 256, @@ -4363,7 +4363,7 @@ }, "children": [ { - "id": 13102, + "id": 13335, "name": "accepted", "variant": "declaration", "kind": 1024, @@ -4390,7 +4390,7 @@ } }, { - "id": 13101, + "id": 13334, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -4441,7 +4441,7 @@ } }, { - "id": 13100, + "id": 13333, "name": "id", "variant": "declaration", "kind": 1024, @@ -4464,9 +4464,9 @@ { "title": "Properties", "children": [ - 13102, - 13101, - 13100 + 13335, + 13334, + 13333 ] } ], @@ -4487,7 +4487,7 @@ "typeArguments": [ { "type": "reference", - "target": 13095, + "target": 13328, "name": "CreateInviteDTO", "package": "@medusajs/types" }, @@ -4506,7 +4506,7 @@ ] }, { - "id": 12898, + "id": 13131, "name": "IUserModuleService", "variant": "declaration", "kind": 256, @@ -4521,14 +4521,14 @@ }, "children": [ { - "id": 12899, + "id": 13132, "name": "validateInviteToken", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12900, + "id": 13133, "name": "validateInviteToken", "variant": "signature", "kind": 4096, @@ -4563,7 +4563,7 @@ }, "parameters": [ { - "id": 12901, + "id": 13134, "name": "token", "variant": "param", "kind": 32768, @@ -4582,7 +4582,7 @@ } }, { - "id": 12902, + "id": 13135, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4599,7 +4599,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -4614,7 +4614,7 @@ "typeArguments": [ { "type": "reference", - "target": 13036, + "target": 13269, "name": "InviteDTO", "package": "@medusajs/types" } @@ -4626,14 +4626,14 @@ ] }, { - "id": 12903, + "id": 13136, "name": "refreshInviteTokens", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12904, + "id": 13137, "name": "refreshInviteTokens", "variant": "signature", "kind": 4096, @@ -4668,7 +4668,7 @@ }, "parameters": [ { - "id": 12905, + "id": 13138, "name": "inviteIds", "variant": "param", "kind": 32768, @@ -4690,7 +4690,7 @@ } }, { - "id": 12906, + "id": 13139, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4707,7 +4707,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -4724,7 +4724,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13036, + "target": 13269, "name": "InviteDTO", "package": "@medusajs/types" } @@ -4737,14 +4737,14 @@ ] }, { - "id": 12907, + "id": 13140, "name": "retrieveUser", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12908, + "id": 13141, "name": "retrieveUser", "variant": "signature", "kind": 4096, @@ -4779,7 +4779,7 @@ }, "parameters": [ { - "id": 12909, + "id": 13142, "name": "id", "variant": "param", "kind": 32768, @@ -4798,7 +4798,7 @@ } }, { - "id": 12910, + "id": 13143, "name": "config", "variant": "param", "kind": 32768, @@ -4831,11 +4831,11 @@ }, "type": { "type": "reference", - "target": 13046, + "target": 13279, "typeArguments": [ { "type": "reference", - "target": 13059, + "target": 13292, "name": "UserDTO", "package": "@medusajs/types" } @@ -4845,7 +4845,7 @@ } }, { - "id": 12911, + "id": 13144, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -4862,7 +4862,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -4877,7 +4877,7 @@ "typeArguments": [ { "type": "reference", - "target": 13059, + "target": 13292, "name": "UserDTO", "package": "@medusajs/types" } @@ -4889,14 +4889,14 @@ ] }, { - "id": 12912, + "id": 13145, "name": "listUsers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12913, + "id": 13146, "name": "listUsers", "variant": "signature", "kind": 4096, @@ -4975,7 +4975,7 @@ }, "parameters": [ { - "id": 12914, + "id": 13147, "name": "filters", "variant": "param", "kind": 32768, @@ -4992,13 +4992,13 @@ }, "type": { "type": "reference", - "target": 13069, + "target": 13302, "name": "FilterableUserProps", "package": "@medusajs/types" } }, { - "id": 12915, + "id": 13148, "name": "config", "variant": "param", "kind": 32768, @@ -5031,11 +5031,11 @@ }, "type": { "type": "reference", - "target": 13046, + "target": 13279, "typeArguments": [ { "type": "reference", - "target": 13059, + "target": 13292, "name": "UserDTO", "package": "@medusajs/types" } @@ -5045,7 +5045,7 @@ } }, { - "id": 12916, + "id": 13149, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5062,7 +5062,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -5079,7 +5079,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13059, + "target": 13292, "name": "UserDTO", "package": "@medusajs/types" } @@ -5092,14 +5092,14 @@ ] }, { - "id": 12917, + "id": 13150, "name": "listAndCountUsers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12918, + "id": 13151, "name": "listAndCountUsers", "variant": "signature", "kind": 4096, @@ -5178,7 +5178,7 @@ }, "parameters": [ { - "id": 12919, + "id": 13152, "name": "filters", "variant": "param", "kind": 32768, @@ -5195,13 +5195,13 @@ }, "type": { "type": "reference", - "target": 13069, + "target": 13302, "name": "FilterableUserProps", "package": "@medusajs/types" } }, { - "id": 12920, + "id": 13153, "name": "config", "variant": "param", "kind": 32768, @@ -5234,11 +5234,11 @@ }, "type": { "type": "reference", - "target": 13046, + "target": 13279, "typeArguments": [ { "type": "reference", - "target": 13059, + "target": 13292, "name": "UserDTO", "package": "@medusajs/types" } @@ -5248,7 +5248,7 @@ } }, { - "id": 12921, + "id": 13154, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5265,7 +5265,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -5285,7 +5285,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13059, + "target": 13292, "name": "UserDTO", "package": "@medusajs/types" } @@ -5304,14 +5304,14 @@ ] }, { - "id": 12922, + "id": 13155, "name": "createUsers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12923, + "id": 13156, "name": "createUsers", "variant": "signature", "kind": 4096, @@ -5346,7 +5346,7 @@ }, "parameters": [ { - "id": 12924, + "id": 13157, "name": "data", "variant": "param", "kind": 32768, @@ -5363,14 +5363,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 13077, + "target": 13310, "name": "CreateUserDTO", "package": "@medusajs/types" } } }, { - "id": 12925, + "id": 13158, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5387,7 +5387,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -5404,7 +5404,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13059, + "target": 13292, "name": "UserDTO", "package": "@medusajs/types" } @@ -5415,7 +5415,7 @@ } }, { - "id": 12926, + "id": 13159, "name": "createUsers", "variant": "signature", "kind": 4096, @@ -5450,7 +5450,7 @@ }, "parameters": [ { - "id": 12927, + "id": 13160, "name": "data", "variant": "param", "kind": 32768, @@ -5465,13 +5465,13 @@ }, "type": { "type": "reference", - "target": 13077, + "target": 13310, "name": "CreateUserDTO", "package": "@medusajs/types" } }, { - "id": 12928, + "id": 13161, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5488,7 +5488,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -5503,7 +5503,7 @@ "typeArguments": [ { "type": "reference", - "target": 13059, + "target": 13292, "name": "UserDTO", "package": "@medusajs/types" } @@ -5515,14 +5515,14 @@ ] }, { - "id": 12929, + "id": 13162, "name": "updateUsers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12930, + "id": 13163, "name": "updateUsers", "variant": "signature", "kind": 4096, @@ -5557,7 +5557,7 @@ }, "parameters": [ { - "id": 12931, + "id": 13164, "name": "data", "variant": "param", "kind": 32768, @@ -5574,14 +5574,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 13083, + "target": 13316, "name": "UpdateUserDTO", "package": "@medusajs/types" } } }, { - "id": 12932, + "id": 13165, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5598,7 +5598,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -5615,7 +5615,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13059, + "target": 13292, "name": "UserDTO", "package": "@medusajs/types" } @@ -5626,7 +5626,7 @@ } }, { - "id": 12933, + "id": 13166, "name": "updateUsers", "variant": "signature", "kind": 4096, @@ -5661,7 +5661,7 @@ }, "parameters": [ { - "id": 12934, + "id": 13167, "name": "data", "variant": "param", "kind": 32768, @@ -5676,13 +5676,13 @@ }, "type": { "type": "reference", - "target": 13083, + "target": 13316, "name": "UpdateUserDTO", "package": "@medusajs/types" } }, { - "id": 12935, + "id": 13168, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5699,7 +5699,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -5714,7 +5714,7 @@ "typeArguments": [ { "type": "reference", - "target": 13059, + "target": 13292, "name": "UserDTO", "package": "@medusajs/types" } @@ -5726,14 +5726,14 @@ ] }, { - "id": 12936, + "id": 13169, "name": "deleteUsers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12937, + "id": 13170, "name": "deleteUsers", "variant": "signature", "kind": 4096, @@ -5768,7 +5768,7 @@ }, "parameters": [ { - "id": 12938, + "id": 13171, "name": "ids", "variant": "param", "kind": 32768, @@ -5790,7 +5790,7 @@ } }, { - "id": 12939, + "id": 13172, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5807,7 +5807,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -5832,14 +5832,14 @@ ] }, { - "id": 12940, + "id": 13173, "name": "softDeleteUsers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12941, + "id": 13174, "name": "softDeleteUsers", "variant": "signature", "kind": 4096, @@ -5882,7 +5882,7 @@ }, "typeParameters": [ { - "id": 12942, + "id": 13175, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -5899,7 +5899,7 @@ ], "parameters": [ { - "id": 12943, + "id": 13176, "name": "userIds", "variant": "param", "kind": 32768, @@ -5921,7 +5921,7 @@ } }, { - "id": 12944, + "id": 13177, "name": "config", "variant": "param", "kind": 32768, @@ -5938,11 +5938,11 @@ }, "type": { "type": "reference", - "target": 13089, + "target": 13322, "typeArguments": [ { "type": "reference", - "target": 12942, + "target": 13175, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -5953,7 +5953,7 @@ } }, { - "id": 12945, + "id": 13178, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -5970,7 +5970,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -5999,7 +5999,7 @@ "typeArguments": [ { "type": "reference", - "target": 12942, + "target": 13175, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -6025,14 +6025,14 @@ ] }, { - "id": 12946, + "id": 13179, "name": "restoreUsers", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12947, + "id": 13180, "name": "restoreUsers", "variant": "signature", "kind": 4096, @@ -6075,7 +6075,7 @@ }, "typeParameters": [ { - "id": 12948, + "id": 13181, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -6092,7 +6092,7 @@ ], "parameters": [ { - "id": 12949, + "id": 13182, "name": "userIds", "variant": "param", "kind": 32768, @@ -6114,7 +6114,7 @@ } }, { - "id": 12950, + "id": 13183, "name": "config", "variant": "param", "kind": 32768, @@ -6139,11 +6139,11 @@ }, "type": { "type": "reference", - "target": 13092, + "target": 13325, "typeArguments": [ { "type": "reference", - "target": 12948, + "target": 13181, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -6154,7 +6154,7 @@ } }, { - "id": 12951, + "id": 13184, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6171,7 +6171,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -6200,7 +6200,7 @@ "typeArguments": [ { "type": "reference", - "target": 12948, + "target": 13181, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -6226,14 +6226,14 @@ ] }, { - "id": 12952, + "id": 13185, "name": "retrieveInvite", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12953, + "id": 13186, "name": "retrieveInvite", "variant": "signature", "kind": 4096, @@ -6268,7 +6268,7 @@ }, "parameters": [ { - "id": 12954, + "id": 13187, "name": "id", "variant": "param", "kind": 32768, @@ -6287,7 +6287,7 @@ } }, { - "id": 12955, + "id": 13188, "name": "config", "variant": "param", "kind": 32768, @@ -6320,11 +6320,11 @@ }, "type": { "type": "reference", - "target": 13046, + "target": 13279, "typeArguments": [ { "type": "reference", - "target": 13036, + "target": 13269, "name": "InviteDTO", "package": "@medusajs/types" } @@ -6334,7 +6334,7 @@ } }, { - "id": 12956, + "id": 13189, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6351,7 +6351,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -6366,7 +6366,7 @@ "typeArguments": [ { "type": "reference", - "target": 13036, + "target": 13269, "name": "InviteDTO", "package": "@medusajs/types" } @@ -6378,14 +6378,14 @@ ] }, { - "id": 12957, + "id": 13190, "name": "listInvites", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12958, + "id": 13191, "name": "listInvites", "variant": "signature", "kind": 4096, @@ -6464,7 +6464,7 @@ }, "parameters": [ { - "id": 12959, + "id": 13192, "name": "filters", "variant": "param", "kind": 32768, @@ -6481,13 +6481,13 @@ }, "type": { "type": "reference", - "target": 13069, + "target": 13302, "name": "FilterableUserProps", "package": "@medusajs/types" } }, { - "id": 12960, + "id": 13193, "name": "config", "variant": "param", "kind": 32768, @@ -6520,11 +6520,11 @@ }, "type": { "type": "reference", - "target": 13046, + "target": 13279, "typeArguments": [ { "type": "reference", - "target": 13036, + "target": 13269, "name": "InviteDTO", "package": "@medusajs/types" } @@ -6534,7 +6534,7 @@ } }, { - "id": 12961, + "id": 13194, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6551,7 +6551,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -6568,7 +6568,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13036, + "target": 13269, "name": "InviteDTO", "package": "@medusajs/types" } @@ -6581,14 +6581,14 @@ ] }, { - "id": 12962, + "id": 13195, "name": "listAndCountInvites", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12963, + "id": 13196, "name": "listAndCountInvites", "variant": "signature", "kind": 4096, @@ -6667,7 +6667,7 @@ }, "parameters": [ { - "id": 12964, + "id": 13197, "name": "filters", "variant": "param", "kind": 32768, @@ -6684,13 +6684,13 @@ }, "type": { "type": "reference", - "target": 13069, + "target": 13302, "name": "FilterableUserProps", "package": "@medusajs/types" } }, { - "id": 12965, + "id": 13198, "name": "config", "variant": "param", "kind": 32768, @@ -6723,11 +6723,11 @@ }, "type": { "type": "reference", - "target": 13046, + "target": 13279, "typeArguments": [ { "type": "reference", - "target": 13036, + "target": 13269, "name": "InviteDTO", "package": "@medusajs/types" } @@ -6737,7 +6737,7 @@ } }, { - "id": 12966, + "id": 13199, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6754,7 +6754,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -6774,7 +6774,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13036, + "target": 13269, "name": "InviteDTO", "package": "@medusajs/types" } @@ -6793,14 +6793,14 @@ ] }, { - "id": 12967, + "id": 13200, "name": "createInvites", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12968, + "id": 13201, "name": "createInvites", "variant": "signature", "kind": 4096, @@ -6835,7 +6835,7 @@ }, "parameters": [ { - "id": 12969, + "id": 13202, "name": "data", "variant": "param", "kind": 32768, @@ -6852,14 +6852,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 13095, + "target": 13328, "name": "CreateInviteDTO", "package": "@medusajs/types" } } }, { - "id": 12970, + "id": 13203, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6876,7 +6876,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -6893,7 +6893,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13036, + "target": 13269, "name": "InviteDTO", "package": "@medusajs/types" } @@ -6904,7 +6904,7 @@ } }, { - "id": 12971, + "id": 13204, "name": "createInvites", "variant": "signature", "kind": 4096, @@ -6939,7 +6939,7 @@ }, "parameters": [ { - "id": 12972, + "id": 13205, "name": "data", "variant": "param", "kind": 32768, @@ -6954,13 +6954,13 @@ }, "type": { "type": "reference", - "target": 13095, + "target": 13328, "name": "CreateInviteDTO", "package": "@medusajs/types" } }, { - "id": 12973, + "id": 13206, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -6977,7 +6977,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -6992,7 +6992,7 @@ "typeArguments": [ { "type": "reference", - "target": 13036, + "target": 13269, "name": "InviteDTO", "package": "@medusajs/types" } @@ -7004,14 +7004,14 @@ ] }, { - "id": 12974, + "id": 13207, "name": "updateInvites", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12975, + "id": 13208, "name": "updateInvites", "variant": "signature", "kind": 4096, @@ -7046,7 +7046,7 @@ }, "parameters": [ { - "id": 12976, + "id": 13209, "name": "data", "variant": "param", "kind": 32768, @@ -7063,14 +7063,14 @@ "type": "array", "elementType": { "type": "reference", - "target": 13099, + "target": 13332, "name": "UpdateInviteDTO", "package": "@medusajs/types" } } }, { - "id": 12977, + "id": 13210, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7087,7 +7087,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -7104,7 +7104,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 13036, + "target": 13269, "name": "InviteDTO", "package": "@medusajs/types" } @@ -7115,7 +7115,7 @@ } }, { - "id": 12978, + "id": 13211, "name": "updateInvites", "variant": "signature", "kind": 4096, @@ -7150,7 +7150,7 @@ }, "parameters": [ { - "id": 12979, + "id": 13212, "name": "data", "variant": "param", "kind": 32768, @@ -7165,13 +7165,13 @@ }, "type": { "type": "reference", - "target": 13099, + "target": 13332, "name": "UpdateInviteDTO", "package": "@medusajs/types" } }, { - "id": 12980, + "id": 13213, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7188,7 +7188,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -7203,7 +7203,7 @@ "typeArguments": [ { "type": "reference", - "target": 13036, + "target": 13269, "name": "InviteDTO", "package": "@medusajs/types" } @@ -7215,14 +7215,14 @@ ] }, { - "id": 12981, + "id": 13214, "name": "deleteInvites", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12982, + "id": 13215, "name": "deleteInvites", "variant": "signature", "kind": 4096, @@ -7257,7 +7257,7 @@ }, "parameters": [ { - "id": 12983, + "id": 13216, "name": "ids", "variant": "param", "kind": 32768, @@ -7279,7 +7279,7 @@ } }, { - "id": 12984, + "id": 13217, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7296,7 +7296,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -7321,14 +7321,14 @@ ] }, { - "id": 12985, + "id": 13218, "name": "softDeleteInvites", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12986, + "id": 13219, "name": "softDeleteInvites", "variant": "signature", "kind": 4096, @@ -7371,7 +7371,7 @@ }, "typeParameters": [ { - "id": 12987, + "id": 13220, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -7388,7 +7388,7 @@ ], "parameters": [ { - "id": 12988, + "id": 13221, "name": "inviteIds", "variant": "param", "kind": 32768, @@ -7410,7 +7410,7 @@ } }, { - "id": 12989, + "id": 13222, "name": "config", "variant": "param", "kind": 32768, @@ -7427,11 +7427,11 @@ }, "type": { "type": "reference", - "target": 13089, + "target": 13322, "typeArguments": [ { "type": "reference", - "target": 12987, + "target": 13220, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -7442,7 +7442,7 @@ } }, { - "id": 12990, + "id": 13223, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7459,7 +7459,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -7488,7 +7488,7 @@ "typeArguments": [ { "type": "reference", - "target": 12987, + "target": 13220, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -7514,14 +7514,14 @@ ] }, { - "id": 12991, + "id": 13224, "name": "restoreInvites", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 12992, + "id": 13225, "name": "restoreInvites", "variant": "signature", "kind": 4096, @@ -7564,7 +7564,7 @@ }, "typeParameters": [ { - "id": 12993, + "id": 13226, "name": "TReturnableLinkableKeys", "variant": "typeParam", "kind": 131072, @@ -7581,7 +7581,7 @@ ], "parameters": [ { - "id": 12994, + "id": 13227, "name": "inviteIds", "variant": "param", "kind": 32768, @@ -7603,7 +7603,7 @@ } }, { - "id": 12995, + "id": 13228, "name": "config", "variant": "param", "kind": 32768, @@ -7628,11 +7628,11 @@ }, "type": { "type": "reference", - "target": 13092, + "target": 13325, "typeArguments": [ { "type": "reference", - "target": 12993, + "target": 13226, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -7643,7 +7643,7 @@ } }, { - "id": 12996, + "id": 13229, "name": "sharedContext", "variant": "param", "kind": 32768, @@ -7660,7 +7660,7 @@ }, "type": { "type": "reference", - "target": 13024, + "target": 13257, "name": "Context", "package": "@medusajs/types" } @@ -7689,7 +7689,7 @@ "typeArguments": [ { "type": "reference", - "target": 12993, + "target": 13226, "name": "TReturnableLinkableKeys", "package": "@medusajs/types", "refersToTypeParameter": true @@ -7719,31 +7719,31 @@ { "title": "Methods", "children": [ - 12899, - 12903, - 12907, - 12912, - 12917, - 12922, - 12929, - 12936, - 12940, - 12946, - 12952, - 12957, - 12962, - 12967, - 12974, - 12981, - 12985, - 12991 + 13132, + 13136, + 13140, + 13145, + 13150, + 13155, + 13162, + 13169, + 13173, + 13179, + 13185, + 13190, + 13195, + 13200, + 13207, + 13214, + 13218, + 13224 ] } ], "extendedTypes": [ { "type": "reference", - "target": 13010, + "target": 13243, "name": "IModuleService", "package": "@medusajs/types" } @@ -7754,1175 +7754,1175 @@ { "title": "Interfaces", "children": [ - 13046, - 13141, - 13089, - 13092, - 13188, - 13145, - 13010, - 13172, - 13127, - 13024, - 13059, - 13069, - 13036, - 13077, - 13083, - 13095, - 13099, - 12898 + 13279, + 13374, + 13322, + 13325, + 13421, + 13378, + 13243, + 13405, + 13360, + 13257, + 13292, + 13302, + 13269, + 13310, + 13316, + 13328, + 13332, + 13131 ] }, { "title": "Type Aliases", "children": [ - 13206, - 13200, - 13168, - 13178, - 13191, - 13162, - 13103, - 13159 + 13439, + 13433, + 13401, + 13411, + 13424, + 13395, + 13336, + 13392 ] } ], "packageName": "@medusajs/types", "symbolIdMap": { - "12897": { + "13130": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "" }, - "12898": { + "13131": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService" }, - "12899": { + "13132": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.validateInviteToken" }, - "12900": { + "13133": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.validateInviteToken" }, - "12901": { + "13134": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "token" }, - "12902": { + "13135": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12903": { + "13136": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.refreshInviteTokens" }, - "12904": { + "13137": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.refreshInviteTokens" }, - "12905": { + "13138": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "inviteIds" }, - "12906": { + "13139": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12907": { + "13140": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.retrieveUser" }, - "12908": { + "13141": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.retrieveUser" }, - "12909": { + "13142": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "id" }, - "12910": { + "13143": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "config" }, - "12911": { + "13144": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12912": { + "13145": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.listUsers" }, - "12913": { + "13146": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.listUsers" }, - "12914": { + "13147": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "filters" }, - "12915": { + "13148": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "config" }, - "12916": { + "13149": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12917": { + "13150": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.listAndCountUsers" }, - "12918": { + "13151": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.listAndCountUsers" }, - "12919": { + "13152": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "filters" }, - "12920": { + "13153": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "config" }, - "12921": { + "13154": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12922": { + "13155": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.createUsers" }, - "12923": { + "13156": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.createUsers" }, - "12924": { + "13157": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "data" }, - "12925": { + "13158": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12926": { + "13159": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.createUsers" }, - "12927": { + "13160": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "data" }, - "12928": { + "13161": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12929": { + "13162": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.updateUsers" }, - "12930": { + "13163": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.updateUsers" }, - "12931": { + "13164": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "data" }, - "12932": { + "13165": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12933": { + "13166": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.updateUsers" }, - "12934": { + "13167": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "data" }, - "12935": { + "13168": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12936": { + "13169": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.deleteUsers" }, - "12937": { + "13170": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.deleteUsers" }, - "12938": { + "13171": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "ids" }, - "12939": { + "13172": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12940": { + "13173": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.softDeleteUsers" }, - "12941": { + "13174": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.softDeleteUsers" }, - "12942": { + "13175": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12943": { + "13176": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "userIds" }, - "12944": { + "13177": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "config" }, - "12945": { + "13178": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12946": { + "13179": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.restoreUsers" }, - "12947": { + "13180": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.restoreUsers" }, - "12948": { + "13181": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12949": { + "13182": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "userIds" }, - "12950": { + "13183": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "config" }, - "12951": { + "13184": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12952": { + "13185": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.retrieveInvite" }, - "12953": { + "13186": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.retrieveInvite" }, - "12954": { + "13187": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "id" }, - "12955": { + "13188": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "config" }, - "12956": { + "13189": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12957": { + "13190": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.listInvites" }, - "12958": { + "13191": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.listInvites" }, - "12959": { + "13192": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "filters" }, - "12960": { + "13193": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "config" }, - "12961": { + "13194": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12962": { + "13195": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.listAndCountInvites" }, - "12963": { + "13196": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.listAndCountInvites" }, - "12964": { + "13197": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "filters" }, - "12965": { + "13198": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "config" }, - "12966": { + "13199": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12967": { + "13200": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.createInvites" }, - "12968": { + "13201": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.createInvites" }, - "12969": { + "13202": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "data" }, - "12970": { + "13203": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12971": { + "13204": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.createInvites" }, - "12972": { + "13205": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "data" }, - "12973": { + "13206": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12974": { + "13207": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.updateInvites" }, - "12975": { + "13208": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.updateInvites" }, - "12976": { + "13209": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "data" }, - "12977": { + "13210": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12978": { + "13211": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.updateInvites" }, - "12979": { + "13212": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "data" }, - "12980": { + "13213": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12981": { + "13214": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.deleteInvites" }, - "12982": { + "13215": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.deleteInvites" }, - "12983": { + "13216": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "ids" }, - "12984": { + "13217": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12985": { + "13218": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.softDeleteInvites" }, - "12986": { + "13219": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.softDeleteInvites" }, - "12987": { + "13220": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12988": { + "13221": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "inviteIds" }, - "12989": { + "13222": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "config" }, - "12990": { + "13223": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "12991": { + "13224": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.restoreInvites" }, - "12992": { + "13225": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "IUserModuleService.restoreInvites" }, - "12993": { + "13226": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "12994": { + "13227": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "inviteIds" }, - "12995": { + "13228": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "config" }, - "12996": { + "13229": { "sourceFileName": "../../../../packages/core/types/src/user/service.ts", "qualifiedName": "sharedContext" }, - "13010": { + "13243": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "IModuleService" }, - "13024": { + "13257": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "Context" }, - "13025": { + "13258": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__type" }, - "13026": { + "13259": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionManager" }, - "13027": { + "13260": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.manager" }, - "13028": { + "13261": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.isolationLevel" }, - "13029": { + "13262": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.enableNestedTransactions" }, - "13030": { + "13263": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.eventGroupId" }, - "13031": { + "13264": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.transactionId" }, - "13032": { + "13265": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.messageAggregator" }, - "13033": { + "13266": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.requestId" }, - "13034": { + "13267": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.idempotencyKey" }, - "13035": { + "13268": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "TManager" }, - "13036": { + "13269": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "InviteDTO" }, - "13037": { + "13270": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "InviteDTO.id" }, - "13038": { + "13271": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "InviteDTO.email" }, - "13039": { + "13272": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "InviteDTO.accepted" }, - "13040": { + "13273": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "InviteDTO.token" }, - "13041": { + "13274": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "InviteDTO.expires_at" }, - "13042": { + "13275": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "InviteDTO.metadata" }, - "13043": { + "13276": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "InviteDTO.created_at" }, - "13044": { + "13277": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "InviteDTO.updated_at" }, - "13045": { + "13278": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "InviteDTO.deleted_at" }, - "13046": { + "13279": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig" }, - "13047": { + "13280": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.select" }, - "13048": { + "13281": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.skip" }, - "13049": { + "13282": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.take" }, - "13050": { + "13283": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.relations" }, - "13051": { + "13284": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.order" }, - "13052": { + "13285": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type" }, - "13053": { + "13286": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "__type.__index" }, - "13055": { + "13288": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.withDeleted" }, - "13056": { + "13289": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.filters" }, - "13057": { + "13290": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.options" }, - "13058": { + "13291": { "sourceFileName": "../../../../packages/core/types/src/common/common.ts", "qualifiedName": "FindConfig.Entity" }, - "13059": { + "13292": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "UserDTO" }, - "13060": { + "13293": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "UserDTO.id" }, - "13061": { + "13294": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "UserDTO.email" }, - "13062": { + "13295": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "UserDTO.first_name" }, - "13063": { + "13296": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "UserDTO.last_name" }, - "13064": { + "13297": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "UserDTO.avatar_url" }, - "13065": { + "13298": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "UserDTO.metadata" }, - "13066": { + "13299": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "UserDTO.created_at" }, - "13067": { + "13300": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "UserDTO.updated_at" }, - "13068": { + "13301": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "UserDTO.deleted_at" }, - "13069": { + "13302": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "FilterableUserProps" }, - "13070": { + "13303": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "FilterableUserProps.q" }, - "13071": { + "13304": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "FilterableUserProps.id" }, - "13072": { + "13305": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "FilterableUserProps.email" }, - "13073": { + "13306": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "FilterableUserProps.first_name" }, - "13074": { + "13307": { "sourceFileName": "../../../../packages/core/types/src/user/common.ts", "qualifiedName": "FilterableUserProps.last_name" }, - "13075": { + "13308": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "13076": { + "13309": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "13077": { + "13310": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "CreateUserDTO" }, - "13078": { + "13311": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "CreateUserDTO.email" }, - "13079": { + "13312": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "CreateUserDTO.first_name" }, - "13080": { + "13313": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "CreateUserDTO.last_name" }, - "13081": { + "13314": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "CreateUserDTO.avatar_url" }, - "13082": { + "13315": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "CreateUserDTO.metadata" }, - "13083": { + "13316": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "UpdateUserDTO" }, - "13084": { + "13317": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "UpdateUserDTO.id" }, - "13085": { + "13318": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "metadata" }, - "13086": { + "13319": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "first_name" }, - "13087": { + "13320": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "last_name" }, - "13088": { + "13321": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "avatar_url" }, - "13089": { + "13322": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "SoftDeleteReturn" }, - "13090": { + "13323": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "13091": { + "13324": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "13092": { + "13325": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "RestoreReturn" }, - "13093": { + "13326": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "__type.returnLinkableKeys" }, - "13094": { + "13327": { "sourceFileName": "../../../../packages/core/types/src/dal/repository-service.ts", "qualifiedName": "TReturnableLinkableKeys" }, - "13095": { + "13328": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "CreateInviteDTO" }, - "13096": { + "13329": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "CreateInviteDTO.email" }, - "13097": { + "13330": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "CreateInviteDTO.accepted" }, - "13098": { + "13331": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "CreateInviteDTO.metadata" }, - "13099": { + "13332": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "UpdateInviteDTO" }, - "13100": { + "13333": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "UpdateInviteDTO.id" }, - "13101": { + "13334": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "metadata" }, - "13102": { + "13335": { "sourceFileName": "../../../../packages/core/types/src/user/mutations.ts", "qualifiedName": "accepted" }, - "13103": { + "13336": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerConfig" }, - "13104": { + "13337": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "13105": { + "13338": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.schema" }, - "13106": { + "13339": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationships" }, - "13107": { + "13340": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extends" }, - "13108": { + "13341": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "13109": { + "13342": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "13110": { + "13343": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.fieldAlias" }, - "13111": { + "13344": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "13112": { + "13345": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.path" }, - "13113": { + "13346": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "13114": { + "13347": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isList" }, - "13115": { + "13348": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.relationship" }, - "13116": { + "13349": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.serviceName" }, - "13117": { + "13350": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.primaryKeys" }, - "13118": { + "13351": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isLink" }, - "13119": { + "13352": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.linkableKeys" }, - "13120": { + "13353": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.isReadOnlyLink" }, - "13121": { + "13354": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraDataFields" }, - "13122": { + "13355": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.databaseConfig" }, - "13123": { + "13356": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "13124": { + "13357": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.tableName" }, - "13125": { + "13358": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.idPrefix" }, - "13126": { + "13359": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.extraFields" }, - "13127": { + "13360": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator" }, - "13128": { + "13361": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "13129": { + "13362": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.save" }, - "13130": { + "13363": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "msg" }, - "13131": { + "13364": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "13132": { + "13365": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.getMessages" }, - "13133": { + "13366": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "format" }, - "13134": { + "13367": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "13135": { + "13368": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.clearMessages" }, - "13136": { + "13369": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "13137": { + "13370": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "IMessageAggregator.saveRawMessageData" }, - "13138": { + "13371": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "T" }, - "13139": { + "13372": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "messageData" }, - "13140": { + "13373": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "options" }, - "13141": { + "13374": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable" }, - "13142": { + "13375": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$and" }, - "13143": { + "13376": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.$or" }, - "13144": { + "13377": { "sourceFileName": "../../../../packages/core/types/src/dal/index.ts", "qualifiedName": "BaseFilterable.T" }, - "13145": { + "13378": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig" }, - "13146": { + "13379": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.serviceName" }, - "13147": { + "13380": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.alias" }, - "13148": { + "13381": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.fieldAlias" }, - "13149": { + "13382": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "13150": { + "13383": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.path" }, - "13151": { + "13384": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.forwardArgumentsOnPath" }, - "13152": { + "13385": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.primaryKeys" }, - "13153": { + "13386": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.relationships" }, - "13154": { + "13387": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.extends" }, - "13155": { + "13388": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "13156": { + "13389": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "13157": { + "13390": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.relationship" }, - "13158": { + "13391": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfig.args" }, - "13159": { + "13392": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "ModuleJoinerRelationship" }, - "13160": { + "13393": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "13161": { + "13394": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.deleteCascade" }, - "13162": { + "13395": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "LinkModulesExtraFields" }, - "13163": { + "13396": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "13164": { + "13397": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.type" }, - "13165": { + "13398": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.defaultValue" }, - "13166": { + "13399": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.nullable" }, - "13167": { + "13400": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.options" }, - "13168": { + "13401": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "Message" }, - "13169": { + "13402": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "13170": { + "13403": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "13171": { + "13404": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "13172": { + "13405": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat" }, - "13173": { + "13406": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.groupBy" }, - "13174": { + "13407": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "MessageAggregatorFormat.sortBy" }, - "13175": { + "13408": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type" }, - "13176": { + "13409": { "sourceFileName": "../../../../packages/core/types/src/shared-context.ts", "qualifiedName": "__type.__index" }, - "13178": { + "13411": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "RawMessageFormat" }, - "13179": { + "13412": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "13180": { + "13413": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "13181": { + "13414": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "13182": { + "13415": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.source" }, - "13183": { + "13416": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.object" }, - "13184": { + "13417": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.action" }, - "13185": { + "13418": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.context" }, - "13186": { + "13419": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.options" }, - "13187": { + "13420": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "13188": { + "13421": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias" }, - "13189": { + "13422": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.name" }, - "13190": { + "13423": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerServiceConfigAlias.args" }, - "13191": { + "13424": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "JoinerRelationship" }, - "13192": { + "13425": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type" }, - "13193": { + "13426": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.alias" }, - "13194": { + "13427": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.foreignKey" }, - "13195": { + "13428": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.primaryKey" }, - "13196": { + "13429": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.serviceName" }, - "13197": { + "13430": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.inverse" }, - "13198": { + "13431": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.isList" }, - "13199": { + "13432": { "sourceFileName": "../../../../packages/core/types/src/joiner/index.ts", "qualifiedName": "__type.args" }, - "13200": { + "13433": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "MessageBody" }, - "13201": { + "13434": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "13202": { + "13435": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventName" }, - "13203": { + "13436": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.metadata" }, - "13204": { + "13437": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.data" }, - "13205": { + "13438": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "TData" }, - "13206": { + "13439": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "EventMetadata" }, - "13207": { + "13440": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type" }, - "13208": { + "13441": { "sourceFileName": "../../../../packages/core/types/src/event-bus/common.ts", "qualifiedName": "__type.eventGroupId" } @@ -8932,7 +8932,7 @@ "1": "../../../../packages/core/types/src/user/service.ts" }, "reflections": { - "1": 12897 + "1": 13130 } } } \ No newline at end of file diff --git a/www/utils/generated/typedoc-json-output/workflows.json b/www/utils/generated/typedoc-json-output/workflows.json index d17f1024da7c9..9d2d414b278a4 100644 --- a/www/utils/generated/typedoc-json-output/workflows.json +++ b/www/utils/generated/typedoc-json-output/workflows.json @@ -1,19 +1,19 @@ { - "id": 17395, + "id": 17211, "name": "workflows", "variant": "project", "kind": 1, "flags": {}, "children": [ { - "id": 17396, + "id": 17212, "name": "createStep", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 17397, + "id": 17213, "name": "createStep", "variant": "signature", "kind": 4096, @@ -28,7 +28,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StepFunction", - "target": 17520, + "target": 17336, "tsLinkText": "" }, { @@ -39,7 +39,7 @@ "kind": "inline-tag", "tag": "@link", "text": "createWorkflow", - "target": 17406 + "target": 17222 }, { "kind": "text", @@ -69,7 +69,7 @@ }, "typeParameters": [ { - "id": 17398, + "id": 17214, "name": "TInvokeInput", "variant": "typeParam", "kind": 131072, @@ -84,7 +84,7 @@ } }, { - "id": 17399, + "id": 17215, "name": "TInvokeResultOutput", "variant": "typeParam", "kind": 131072, @@ -99,7 +99,7 @@ } }, { - "id": 17400, + "id": 17216, "name": "TInvokeResultCompensateInput", "variant": "typeParam", "kind": 131072, @@ -116,7 +116,7 @@ ], "parameters": [ { - "id": 17401, + "id": 17217, "name": "nameOrConfig", "variant": "param", "kind": 32768, @@ -142,14 +142,14 @@ { "type": "reflection", "declaration": { - "id": 17402, + "id": 17218, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17403, + "id": 17219, "name": "name", "variant": "declaration", "kind": 1024, @@ -164,7 +164,7 @@ { "title": "Properties", "children": [ - 17403 + 17219 ] } ] @@ -180,7 +180,7 @@ { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/orchestration/dist/transaction/types.d.ts", + "sourceFileName": "../../../../packages/core/orchestration/src/transaction/types.ts", "qualifiedName": "TransactionStepsDefinition" }, "name": "TransactionStepsDefinition", @@ -213,7 +213,7 @@ } }, { - "id": 17404, + "id": 17220, "name": "invokeFn", "variant": "param", "kind": 32768, @@ -228,7 +228,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StepResponse", - "target": 17431, + "target": 17238, "tsLinkText": "" }, { @@ -239,7 +239,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StepResponse", - "target": 17431, + "target": 17238, "tsLinkText": "" }, { @@ -257,21 +257,21 @@ "typeArguments": [ { "type": "reference", - "target": 17398, + "target": 17214, "name": "TInvokeInput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17399, + "target": 17215, "name": "TInvokeResultOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17400, + "target": 17216, "name": "TInvokeResultCompensateInput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -282,7 +282,7 @@ } }, { - "id": 17405, + "id": 17221, "name": "compensateFn", "variant": "param", "kind": 32768, @@ -299,7 +299,7 @@ "kind": "inline-tag", "tag": "@link", "text": "StepResponse", - "target": 17431, + "target": 17238, "tsLinkText": "" }, { @@ -333,7 +333,7 @@ "typeArguments": [ { "type": "reference", - "target": 17400, + "target": 17216, "name": "TInvokeResultCompensateInput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -346,18 +346,18 @@ ], "type": { "type": "reference", - "target": 17520, + "target": 17336, "typeArguments": [ { "type": "reference", - "target": 17398, + "target": 17214, "name": "TInvokeInput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17399, + "target": 17215, "name": "TInvokeResultOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -370,14 +370,14 @@ ] }, { - "id": 17406, + "id": 17222, "name": "createWorkflow", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 17407, + "id": 17223, "name": "createWorkflow", "variant": "signature", "kind": 4096, @@ -392,7 +392,7 @@ "kind": "inline-tag", "tag": "@link", "text": "createStep", - "target": 17396, + "target": 17212, "tsLinkText": "" }, { @@ -403,7 +403,7 @@ "kind": "inline-tag", "tag": "@link", "text": "ReturnWorkflow", - "target": 17598, + "target": 17414, "tsLinkText": "" }, { @@ -450,7 +450,7 @@ }, "typeParameters": [ { - "id": 17408, + "id": 17224, "name": "TData", "variant": "typeParam", "kind": 131072, @@ -465,7 +465,7 @@ } }, { - "id": 17409, + "id": 17225, "name": "TResult", "variant": "typeParam", "kind": 131072, @@ -480,7 +480,7 @@ } }, { - "id": 17410, + "id": 17226, "name": "THooks", "variant": "typeParam", "kind": 131072, @@ -545,7 +545,7 @@ ], "parameters": [ { - "id": 17411, + "id": 17227, "name": "nameOrConfig", "variant": "param", "kind": 32768, @@ -571,14 +571,14 @@ { "type": "reflection", "declaration": { - "id": 17412, + "id": 17228, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17413, + "id": 17229, "name": "name", "variant": "declaration", "kind": 1024, @@ -593,7 +593,7 @@ { "title": "Properties", "children": [ - 17413 + 17229 ] } ] @@ -602,7 +602,7 @@ { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/orchestration/dist/transaction/types.d.ts", + "sourceFileName": "../../../../packages/core/orchestration/src/transaction/types.ts", "qualifiedName": "TransactionModelOptions" }, "name": "TransactionModelOptions", @@ -614,7 +614,7 @@ } }, { - "id": 17414, + "id": 17230, "name": "composer", "variant": "param", "kind": 32768, @@ -637,7 +637,7 @@ "kind": "inline-tag", "tag": "@link", "text": "ReturnWorkflow", - "target": 17598, + "target": 17414, "tsLinkText": "" }, { @@ -648,7 +648,7 @@ "kind": "inline-tag", "tag": "@link", "text": "transform", - "target": 17458 + "target": 17274 }, { "kind": "text", @@ -659,32 +659,32 @@ "type": { "type": "reflection", "declaration": { - "id": 17415, + "id": 17231, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 17416, + "id": 17232, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 17417, + "id": 17233, "name": "input", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", - "target": 17408, + "target": 17224, "name": "TData", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -704,11 +704,11 @@ }, { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", - "target": 17409, + "target": 17225, "name": "TResult", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -742,7 +742,7 @@ "types": [ { "type": "reference", - "target": 17540, + "target": 17356, "typeArguments": [ { "type": "indexedAccess", @@ -758,7 +758,7 @@ }, "objectType": { "type": "reference", - "target": 17409, + "target": 17225, "name": "TResult", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -770,7 +770,7 @@ }, { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "indexedAccess", @@ -786,7 +786,7 @@ }, "objectType": { "type": "reference", - "target": 17409, + "target": 17225, "name": "TResult", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -809,25 +809,25 @@ ], "type": { "type": "reference", - "target": 17598, + "target": 17414, "typeArguments": [ { "type": "reference", - "target": 17408, + "target": 17224, "name": "TData", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17409, + "target": 17225, "name": "TResult", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17410, + "target": 17226, "name": "THooks", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -840,7 +840,7 @@ ] }, { - "id": 17431, + "id": 17238, "name": "StepResponse", "variant": "declaration", "kind": 128, @@ -863,14 +863,14 @@ }, "children": [ { - "id": 17435, + "id": 17242, "name": "constructor", "variant": "declaration", "kind": 512, "flags": {}, "signatures": [ { - "id": 17436, + "id": 17243, "name": "new StepResponse", "variant": "signature", "kind": 16384, @@ -885,7 +885,7 @@ }, "typeParameters": [ { - "id": 17437, + "id": 17244, "name": "TOutput", "variant": "typeParam", "kind": 131072, @@ -900,7 +900,7 @@ } }, { - "id": 17438, + "id": 17245, "name": "TCompensateInput", "variant": "typeParam", "kind": 131072, @@ -931,7 +931,7 @@ }, "default": { "type": "reference", - "target": 17437, + "target": 17244, "name": "TOutput", "package": "@medusajs/workflows-sdk", "qualifiedName": "StepResponse.TOutput", @@ -941,7 +941,7 @@ ], "parameters": [ { - "id": 17439, + "id": 17246, "name": "output", "variant": "param", "kind": 32768, @@ -958,7 +958,7 @@ }, "type": { "type": "reference", - "target": 17437, + "target": 17244, "name": "TOutput", "package": "@medusajs/workflows-sdk", "qualifiedName": "StepResponse.TOutput", @@ -966,7 +966,7 @@ } }, { - "id": 17440, + "id": 17247, "name": "compensateInput", "variant": "param", "kind": 32768, @@ -991,7 +991,7 @@ }, "type": { "type": "reference", - "target": 17438, + "target": 17245, "name": "TCompensateInput", "package": "@medusajs/workflows-sdk", "qualifiedName": "StepResponse.TCompensateInput", @@ -1001,11 +1001,11 @@ ], "type": { "type": "reference", - "target": 17431, + "target": 17238, "typeArguments": [ { "type": "reference", - "target": 17437, + "target": 17244, "name": "TOutput", "package": "@medusajs/workflows-sdk", "qualifiedName": "StepResponse.TOutput", @@ -1013,7 +1013,7 @@ }, { "type": "reference", - "target": 17438, + "target": 17245, "name": "TCompensateInput", "package": "@medusajs/workflows-sdk", "qualifiedName": "StepResponse.TCompensateInput", @@ -1027,7 +1027,7 @@ ] }, { - "id": 17432, + "id": 17239, "name": "permanentFailure", "variant": "declaration", "kind": 2048, @@ -1036,7 +1036,7 @@ }, "signatures": [ { - "id": 17433, + "id": 17240, "name": "permanentFailure", "variant": "signature", "kind": 4096, @@ -1062,7 +1062,7 @@ }, "parameters": [ { - "id": 17434, + "id": 17241, "name": "message", "variant": "param", "kind": 32768, @@ -1094,19 +1094,19 @@ { "title": "Constructors", "children": [ - 17435 + 17242 ] }, { "title": "Methods", "children": [ - 17432 + 17239 ] } ], "typeParameters": [ { - "id": 17456, + "id": 17263, "name": "TOutput", "variant": "typeParam", "kind": 131072, @@ -1121,7 +1121,7 @@ } }, { - "id": 17457, + "id": 17264, "name": "TCompensateInput", "variant": "typeParam", "kind": 131072, @@ -1152,7 +1152,7 @@ }, "default": { "type": "reference", - "target": 17437, + "target": 17244, "name": "TOutput", "package": "@medusajs/workflows-sdk", "qualifiedName": "StepResponse.TOutput", @@ -1162,14 +1162,14 @@ ] }, { - "id": 17423, + "id": 17270, "name": "parallelize", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 17424, + "id": 17271, "name": "parallelize", "variant": "signature", "kind": 4096, @@ -1204,7 +1204,7 @@ }, "typeParameters": [ { - "id": 17425, + "id": 17272, "name": "TResult", "variant": "typeParam", "kind": 131072, @@ -1221,7 +1221,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 17545, + "target": 17361, "name": "WorkflowData", "package": "@medusajs/workflows-sdk" } @@ -1230,7 +1230,7 @@ ], "parameters": [ { - "id": 17426, + "id": 17273, "name": "steps", "variant": "param", "kind": 32768, @@ -1239,7 +1239,7 @@ }, "type": { "type": "reference", - "target": 17425, + "target": 17272, "name": "TResult", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -1248,7 +1248,7 @@ ], "type": { "type": "reference", - "target": 17425, + "target": 17272, "name": "TResult", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -1257,14 +1257,14 @@ ] }, { - "id": 17458, + "id": 17274, "name": "transform", "variant": "declaration", "kind": 64, "flags": {}, "signatures": [ { - "id": 17459, + "id": 17275, "name": "transform", "variant": "signature", "kind": 4096, @@ -1279,7 +1279,7 @@ "kind": "inline-tag", "tag": "@link", "text": "createWorkflow", - "target": 17406 + "target": 17222 }, { "kind": "text", @@ -1325,7 +1325,7 @@ }, "typeParameters": [ { - "id": 17460, + "id": 17276, "name": "T", "variant": "typeParam", "kind": 131072, @@ -1339,7 +1339,7 @@ }, { "type": "reference", - "target": 17545, + "target": 17361, "name": "WorkflowData", "package": "@medusajs/workflows-sdk" } @@ -1347,7 +1347,7 @@ } }, { - "id": 17461, + "id": 17277, "name": "RFinal", "variant": "typeParam", "kind": 131072, @@ -1356,7 +1356,7 @@ ], "parameters": [ { - "id": 17462, + "id": 17278, "name": "values", "variant": "param", "kind": 32768, @@ -1371,14 +1371,14 @@ }, "type": { "type": "reference", - "target": 17460, + "target": 17276, "name": "T", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true } }, { - "id": 17463, + "id": 17279, "name": "func", "variant": "param", "kind": 32768, @@ -1413,14 +1413,14 @@ "typeArguments": [ { "type": "reference", - "target": 17460, + "target": 17276, "name": "T", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17461, + "target": 17277, "name": "RFinal", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -1435,11 +1435,11 @@ ], "type": { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", - "target": 17461, + "target": 17277, "name": "RFinal", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -1452,14 +1452,14 @@ ] }, { - "id": 17515, + "id": 17331, "name": "StepFunctionResult", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 17519, + "id": 17335, "name": "TOutput", "variant": "typeParam", "kind": 131072, @@ -1489,28 +1489,28 @@ "type": { "type": "reflection", "declaration": { - "id": 17516, + "id": 17332, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 17517, + "id": 17333, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 17518, + "id": 17334, "name": "this", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 17553, + "target": 17369, "name": "CreateWorkflowComposerContext", "package": "@medusajs/workflows-sdk" } @@ -1518,11 +1518,11 @@ ], "type": { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", - "target": 17519, + "target": 17335, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -1537,7 +1537,7 @@ } }, { - "id": 17520, + "id": 17336, "name": "StepFunction", "variant": "declaration", "kind": 2097152, @@ -1552,7 +1552,7 @@ }, "typeParameters": [ { - "id": 17538, + "id": 17354, "name": "TInput", "variant": "typeParam", "kind": 131072, @@ -1567,7 +1567,7 @@ } }, { - "id": 17539, + "id": 17355, "name": "TOutput", "variant": "typeParam", "kind": 131072, @@ -1600,7 +1600,7 @@ "typeArguments": [ { "type": "reference", - "target": 17538, + "target": 17354, "name": "TInput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -1615,14 +1615,14 @@ "trueType": { "type": "reflection", "declaration": { - "id": 17521, + "id": 17337, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 17522, + "id": 17338, "name": "__type", "variant": "signature", "kind": 4096, @@ -1634,7 +1634,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -1669,7 +1669,7 @@ }, { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", @@ -1692,7 +1692,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -1738,7 +1738,7 @@ }, "objectType": { "type": "reference", - "target": 17539, + "target": 17355, "typeArguments": [ { "type": "unknown", @@ -1752,7 +1752,7 @@ }, { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "indexedAccess", @@ -1777,18 +1777,18 @@ "types": [ { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17540, + "target": 17356, "typeArguments": [ { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -1803,18 +1803,18 @@ }, { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17540, + "target": 17356, "typeArguments": [ { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -1826,28 +1826,28 @@ { "type": "reflection", "declaration": { - "id": 17523, + "id": 17339, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17524, + "id": 17340, "name": "config", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 17525, + "id": 17341, "name": "config", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 17526, + "id": 17342, "name": "config", "variant": "param", "kind": 32768, @@ -1858,14 +1858,14 @@ { "type": "reflection", "declaration": { - "id": 17527, + "id": 17343, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17528, + "id": 17344, "name": "name", "variant": "declaration", "kind": 1024, @@ -1882,7 +1882,7 @@ { "title": "Properties", "children": [ - 17528 + 17344 ] } ] @@ -1898,7 +1898,7 @@ { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/orchestration/dist/transaction/types.d.ts", + "sourceFileName": "../../../../packages/core/orchestration/src/transaction/types.ts", "qualifiedName": "TransactionStepsDefinition" }, "name": "TransactionStepsDefinition", @@ -1931,11 +1931,11 @@ ], "type": { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -1952,7 +1952,7 @@ { "title": "Methods", "children": [ - 17524 + 17340 ] } ] @@ -1967,7 +1967,7 @@ "typeArguments": [ { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -1985,21 +1985,21 @@ "falseType": { "type": "reflection", "declaration": { - "id": 17529, + "id": 17345, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 17530, + "id": 17346, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 17531, + "id": 17347, "name": "input", "variant": "param", "kind": 32768, @@ -2009,18 +2009,18 @@ "types": [ { "type": "reference", - "target": 17538, + "target": 17354, "name": "TInput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", - "target": 17538, + "target": 17354, "name": "TInput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2040,7 +2040,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2075,7 +2075,7 @@ }, { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", @@ -2098,7 +2098,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2144,7 +2144,7 @@ }, "objectType": { "type": "reference", - "target": 17539, + "target": 17355, "typeArguments": [ { "type": "unknown", @@ -2158,7 +2158,7 @@ }, { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "indexedAccess", @@ -2183,18 +2183,18 @@ "types": [ { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17540, + "target": 17356, "typeArguments": [ { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2209,18 +2209,18 @@ }, { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17540, + "target": 17356, "typeArguments": [ { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2232,28 +2232,28 @@ { "type": "reflection", "declaration": { - "id": 17532, + "id": 17348, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17533, + "id": 17349, "name": "config", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 17534, + "id": 17350, "name": "config", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 17535, + "id": 17351, "name": "config", "variant": "param", "kind": 32768, @@ -2264,14 +2264,14 @@ { "type": "reflection", "declaration": { - "id": 17536, + "id": 17352, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17537, + "id": 17353, "name": "name", "variant": "declaration", "kind": 1024, @@ -2288,7 +2288,7 @@ { "title": "Properties", "children": [ - 17537 + 17353 ] } ] @@ -2304,7 +2304,7 @@ { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/orchestration/dist/transaction/types.d.ts", + "sourceFileName": "../../../../packages/core/orchestration/src/transaction/types.ts", "qualifiedName": "TransactionStepsDefinition" }, "name": "TransactionStepsDefinition", @@ -2337,11 +2337,11 @@ ], "type": { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2358,7 +2358,7 @@ { "title": "Methods", "children": [ - 17533 + 17349 ] } ] @@ -2373,7 +2373,7 @@ "typeArguments": [ { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2391,11 +2391,11 @@ }, { "type": "reference", - "target": 17540, + "target": 17356, "typeArguments": [ { "type": "reference", - "target": 17539, + "target": 17355, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2408,14 +2408,14 @@ } }, { - "id": 17540, + "id": 17356, "name": "WorkflowDataProperties", "variant": "declaration", "kind": 2097152, "flags": {}, "typeParameters": [ { - "id": 17544, + "id": 17360, "name": "T", "variant": "typeParam", "kind": 131072, @@ -2429,14 +2429,14 @@ "type": { "type": "reflection", "declaration": { - "id": 17541, + "id": 17357, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17542, + "id": 17358, "name": "__type", "variant": "declaration", "kind": 1024, @@ -2447,7 +2447,7 @@ } }, { - "id": 17543, + "id": 17359, "name": "__step__", "variant": "declaration", "kind": 1024, @@ -2462,8 +2462,8 @@ { "title": "Properties", "children": [ - 17542, - 17543 + 17358, + 17359 ] } ] @@ -2471,7 +2471,7 @@ } }, { - "id": 17545, + "id": 17361, "name": "WorkflowData", "variant": "declaration", "kind": 2097152, @@ -2486,7 +2486,7 @@ }, "typeParameters": [ { - "id": 17552, + "id": 17368, "name": "T", "variant": "typeParam", "kind": 131072, @@ -2512,7 +2512,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 17552, + "target": 17368, "name": "T", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2541,7 +2541,7 @@ }, { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", @@ -2564,7 +2564,7 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 17552, + "target": 17368, "name": "T", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2581,7 +2581,7 @@ "operator": "keyof", "target": { "type": "reference", - "target": 17552, + "target": 17368, "name": "T", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2604,7 +2604,7 @@ }, "objectType": { "type": "reference", - "target": 17552, + "target": 17368, "name": "T", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2612,7 +2612,7 @@ }, { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "indexedAccess", @@ -2628,7 +2628,7 @@ }, "objectType": { "type": "reference", - "target": 17552, + "target": 17368, "name": "T", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2646,18 +2646,18 @@ "types": [ { "type": "reference", - "target": 17552, + "target": 17368, "name": "T", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17540, + "target": 17356, "typeArguments": [ { "type": "reference", - "target": 17552, + "target": 17368, "name": "T", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2672,18 +2672,18 @@ }, { "type": "reference", - "target": 17552, + "target": 17368, "name": "T", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17540, + "target": 17356, "typeArguments": [ { "type": "reference", - "target": 17552, + "target": 17368, "name": "T", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2695,28 +2695,28 @@ { "type": "reflection", "declaration": { - "id": 17546, + "id": 17362, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17547, + "id": 17363, "name": "config", "variant": "declaration", "kind": 2048, "flags": {}, "signatures": [ { - "id": 17548, + "id": 17364, "name": "config", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 17549, + "id": 17365, "name": "config", "variant": "param", "kind": 32768, @@ -2727,14 +2727,14 @@ { "type": "reflection", "declaration": { - "id": 17550, + "id": 17366, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17551, + "id": 17367, "name": "name", "variant": "declaration", "kind": 1024, @@ -2751,7 +2751,7 @@ { "title": "Properties", "children": [ - 17551 + 17367 ] } ] @@ -2767,7 +2767,7 @@ { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/orchestration/dist/transaction/types.d.ts", + "sourceFileName": "../../../../packages/core/orchestration/src/transaction/types.ts", "qualifiedName": "TransactionStepsDefinition" }, "name": "TransactionStepsDefinition", @@ -2800,11 +2800,11 @@ ], "type": { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", - "target": 17552, + "target": 17368, "name": "T", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -2821,7 +2821,7 @@ { "title": "Methods", "children": [ - 17547 + 17363 ] } ] @@ -2831,7 +2831,7 @@ } }, { - "id": 17553, + "id": 17369, "name": "CreateWorkflowComposerContext", "variant": "declaration", "kind": 2097152, @@ -2839,14 +2839,14 @@ "type": { "type": "reflection", "declaration": { - "id": 17554, + "id": 17370, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17555, + "id": 17371, "name": "hooks_", "variant": "declaration", "kind": 1024, @@ -2860,7 +2860,7 @@ } }, { - "id": 17556, + "id": 17372, "name": "hooksCallback_", "variant": "declaration", "kind": 1024, @@ -2894,7 +2894,7 @@ } }, { - "id": 17557, + "id": 17373, "name": "workflowId", "variant": "declaration", "kind": 1024, @@ -2905,7 +2905,7 @@ } }, { - "id": 17558, + "id": 17374, "name": "flow", "variant": "declaration", "kind": 1024, @@ -2913,7 +2913,7 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/orchestration/dist/transaction/orchestrator-builder.d.ts", + "sourceFileName": "../../../../packages/core/orchestration/src/transaction/orchestrator-builder.ts", "qualifiedName": "OrchestratorBuilder" }, "name": "OrchestratorBuilder", @@ -2921,7 +2921,7 @@ } }, { - "id": 17559, + "id": 17375, "name": "handlers", "variant": "declaration", "kind": 1024, @@ -2929,7 +2929,7 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/orchestration/dist/workflow/workflow-manager.d.ts", + "sourceFileName": "../../../../packages/core/orchestration/src/workflow/workflow-manager.ts", "qualifiedName": "WorkflowHandler" }, "name": "WorkflowHandler", @@ -2937,7 +2937,7 @@ } }, { - "id": 17560, + "id": 17376, "name": "stepBinder", "variant": "declaration", "kind": 1024, @@ -2945,21 +2945,21 @@ "type": { "type": "reflection", "declaration": { - "id": 17561, + "id": 17377, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 17562, + "id": 17378, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 17564, + "id": 17380, "name": "TOutput", "variant": "typeParam", "kind": 131072, @@ -2972,14 +2972,14 @@ ], "parameters": [ { - "id": 17563, + "id": 17379, "name": "fn", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 17515, + "target": 17331, "name": "StepFunctionResult", "package": "@medusajs/workflows-sdk" } @@ -2987,11 +2987,11 @@ ], "type": { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", - "target": 17564, + "target": 17380, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -3006,7 +3006,7 @@ } }, { - "id": 17565, + "id": 17381, "name": "hookBinder", "variant": "declaration", "kind": 1024, @@ -3014,21 +3014,21 @@ "type": { "type": "reflection", "declaration": { - "id": 17566, + "id": 17382, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 17567, + "id": 17383, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 17570, + "id": 17386, "name": "TOutput", "variant": "typeParam", "kind": 131072, @@ -3041,7 +3041,7 @@ ], "parameters": [ { - "id": 17568, + "id": 17384, "name": "name", "variant": "param", "kind": 32768, @@ -3052,7 +3052,7 @@ } }, { - "id": 17569, + "id": 17385, "name": "fn", "variant": "param", "kind": 32768, @@ -3070,11 +3070,11 @@ ], "type": { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", - "target": 17570, + "target": 17386, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -3089,7 +3089,7 @@ } }, { - "id": 17571, + "id": 17387, "name": "parallelizeBinder", "variant": "declaration", "kind": 1024, @@ -3097,21 +3097,21 @@ "type": { "type": "reflection", "declaration": { - "id": 17572, + "id": 17388, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 17573, + "id": 17389, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 17578, + "id": 17394, "name": "TOutput", "variant": "typeParam", "kind": 131072, @@ -3120,7 +3120,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 17545, + "target": 17361, "name": "WorkflowData", "package": "@medusajs/workflows-sdk" } @@ -3129,7 +3129,7 @@ "type": "array", "elementType": { "type": "reference", - "target": 17545, + "target": 17361, "name": "WorkflowData", "package": "@medusajs/workflows-sdk" } @@ -3138,7 +3138,7 @@ ], "parameters": [ { - "id": 17574, + "id": 17390, "name": "fn", "variant": "param", "kind": 32768, @@ -3146,28 +3146,28 @@ "type": { "type": "reflection", "declaration": { - "id": 17575, + "id": 17391, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 17576, + "id": 17392, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 17577, + "id": 17393, "name": "this", "variant": "param", "kind": 32768, "flags": {}, "type": { "type": "reference", - "target": 17553, + "target": 17369, "name": "CreateWorkflowComposerContext", "package": "@medusajs/workflows-sdk" } @@ -3175,7 +3175,7 @@ ], "type": { "type": "reference", - "target": 17578, + "target": 17394, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -3188,7 +3188,7 @@ ], "type": { "type": "reference", - "target": 17578, + "target": 17394, "name": "TOutput", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -3203,14 +3203,14 @@ { "title": "Properties", "children": [ - 17555, - 17556, - 17557, - 17558, - 17559, - 17560, - 17565, - 17571 + 17371, + 17372, + 17373, + 17374, + 17375, + 17376, + 17381, + 17387 ] } ] @@ -3218,7 +3218,7 @@ } }, { - "id": 17579, + "id": 17395, "name": "StepExecutionContext", "variant": "declaration", "kind": 256, @@ -3233,7 +3233,7 @@ }, "children": [ { - "id": 17580, + "id": 17396, "name": "workflowId", "variant": "declaration", "kind": 1024, @@ -3252,7 +3252,7 @@ } }, { - "id": 17581, + "id": 17397, "name": "attempt", "variant": "declaration", "kind": 1024, @@ -3271,7 +3271,7 @@ } }, { - "id": 17582, + "id": 17398, "name": "idempotencyKey", "variant": "declaration", "kind": 1024, @@ -3290,7 +3290,7 @@ } }, { - "id": 17583, + "id": 17399, "name": "stepName", "variant": "declaration", "kind": 1024, @@ -3309,7 +3309,7 @@ } }, { - "id": 17584, + "id": 17400, "name": "action", "variant": "declaration", "kind": 1024, @@ -3337,7 +3337,7 @@ } }, { - "id": 17585, + "id": 17401, "name": "container", "variant": "declaration", "kind": 1024, @@ -3361,7 +3361,7 @@ } }, { - "id": 17586, + "id": 17402, "name": "metadata", "variant": "declaration", "kind": 1024, @@ -3377,7 +3377,7 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/orchestration/dist/transaction/distributed-transaction.d.ts", + "sourceFileName": "../../../../packages/core/orchestration/src/transaction/distributed-transaction.ts", "qualifiedName": "TransactionMetadata" }, "name": "TransactionMetadata", @@ -3385,7 +3385,7 @@ } }, { - "id": 17587, + "id": 17403, "name": "context", "variant": "declaration", "kind": 1024, @@ -3410,7 +3410,7 @@ } }, { - "id": 17588, + "id": 17404, "name": "eventGroupId", "variant": "declaration", "kind": 1024, @@ -3431,7 +3431,7 @@ } }, { - "id": 17589, + "id": 17405, "name": "transactionId", "variant": "declaration", "kind": 1024, @@ -3456,22 +3456,22 @@ { "title": "Properties", "children": [ - 17580, - 17581, - 17582, - 17583, - 17584, - 17585, - 17586, - 17587, - 17588, - 17589 + 17396, + 17397, + 17398, + 17399, + 17400, + 17401, + 17402, + 17403, + 17404, + 17405 ] } ] }, { - "id": 17590, + "id": 17406, "name": "WorkflowTransactionContext", "variant": "declaration", "kind": 2097152, @@ -3481,14 +3481,14 @@ "types": [ { "type": "reference", - "target": 17579, + "target": 17395, "name": "StepExecutionContext", "package": "@medusajs/workflows-sdk" }, { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/orchestration/dist/transaction/distributed-transaction.d.ts", + "sourceFileName": "../../../../packages/core/orchestration/src/transaction/distributed-transaction.ts", "qualifiedName": "TransactionContext" }, "name": "OriginalWorkflowTransactionContext", @@ -3498,14 +3498,14 @@ { "type": "reflection", "declaration": { - "id": 17591, + "id": 17407, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17592, + "id": 17408, "name": "invoke", "variant": "declaration", "kind": 1024, @@ -3513,21 +3513,21 @@ "type": { "type": "reflection", "declaration": { - "id": 17593, + "id": 17409, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "indexSignatures": [ { - "id": 17594, + "id": 17410, "name": "__index", "variant": "signature", "kind": 8192, "flags": {}, "parameters": [ { - "id": 17595, + "id": 17411, "name": "key", "variant": "param", "kind": 32768, @@ -3541,14 +3541,14 @@ "type": { "type": "reflection", "declaration": { - "id": 17596, + "id": 17412, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17597, + "id": 17413, "name": "output", "variant": "declaration", "kind": 1024, @@ -3563,7 +3563,7 @@ { "title": "Properties", "children": [ - 17597 + 17413 ] } ] @@ -3579,7 +3579,7 @@ { "title": "Properties", "children": [ - 17592 + 17408 ] } ] @@ -3589,7 +3589,7 @@ } }, { - "id": 17598, + "id": 17414, "name": "ReturnWorkflow", "variant": "declaration", "kind": 2097152, @@ -3604,7 +3604,7 @@ "kind": "inline-tag", "tag": "@link", "text": "createWorkflow", - "target": 17406 + "target": 17222 }, { "kind": "text", @@ -3645,21 +3645,21 @@ }, "typeParameters": [ { - "id": 17627, + "id": 17443, "name": "TData", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 17628, + "id": 17444, "name": "TResult", "variant": "typeParam", "kind": 131072, "flags": {} }, { - "id": 17629, + "id": 17445, "name": "THooks", "variant": "typeParam", "kind": 131072, @@ -3696,21 +3696,21 @@ { "type": "reflection", "declaration": { - "id": 17599, + "id": 17415, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 17600, + "id": 17416, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 17601, + "id": 17417, "name": "TDataOverride", "variant": "typeParam", "kind": 131072, @@ -3721,7 +3721,7 @@ } }, { - "id": 17602, + "id": 17418, "name": "TResultOverride", "variant": "typeParam", "kind": 131072, @@ -3734,7 +3734,7 @@ ], "parameters": [ { - "id": 17603, + "id": 17419, "name": "container", "variant": "param", "kind": 32768, @@ -3758,14 +3758,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 17604, + "id": 17420, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17605, + "id": 17421, "name": "__joinerConfig", "variant": "declaration", "kind": 1024, @@ -3781,7 +3781,7 @@ } }, { - "id": 17606, + "id": 17422, "name": "__definition", "variant": "declaration", "kind": 1024, @@ -3801,8 +3801,8 @@ { "title": "Properties", "children": [ - 17605, - 17606 + 17421, + 17422 ] } ] @@ -3826,7 +3826,7 @@ { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/orchestration/dist/workflow/local-workflow.d.ts", + "sourceFileName": "../../../../packages/core/orchestration/src/workflow/local-workflow.ts", "qualifiedName": "LocalWorkflow" }, "name": "LocalWorkflow", @@ -3866,28 +3866,28 @@ "typeArguments": [ { "type": "reference", - "target": 17627, + "target": 17443, "name": "TData", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17628, + "target": 17444, "name": "TResult", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17601, + "target": 17417, "name": "TDataOverride", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17602, + "target": 17418, "name": "TResultOverride", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -3904,7 +3904,7 @@ }, { "type": "reference", - "target": 17629, + "target": 17445, "name": "THooks", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -3912,14 +3912,14 @@ { "type": "reflection", "declaration": { - "id": 17607, + "id": 17423, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17608, + "id": 17424, "name": "runAsStep", "variant": "declaration", "kind": 1024, @@ -3927,21 +3927,21 @@ "type": { "type": "reflection", "declaration": { - "id": 17609, + "id": 17425, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 17610, + "id": 17426, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 17611, + "id": 17427, "name": "{\n input,\n }", "variant": "param", "kind": 32768, @@ -3949,14 +3949,14 @@ "type": { "type": "reflection", "declaration": { - "id": 17612, + "id": 17428, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "children": [ { - "id": 17613, + "id": 17429, "name": "input", "variant": "declaration", "kind": 1024, @@ -3966,18 +3966,18 @@ "types": [ { "type": "reference", - "target": 17627, + "target": 17443, "name": "TData", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17545, + "target": 17361, "typeArguments": [ { "type": "reference", - "target": 17627, + "target": 17443, "name": "TData", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -3994,7 +3994,7 @@ { "title": "Properties", "children": [ - 17613 + 17429 ] } ] @@ -4011,18 +4011,18 @@ "typeArguments": [ { "type": "reference", - "target": 17520, + "target": 17336, "typeArguments": [ { "type": "reference", - "target": 17627, + "target": 17443, "name": "TData", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17628, + "target": 17444, "name": "TResult", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -4041,7 +4041,7 @@ } }, { - "id": 17614, + "id": 17430, "name": "run", "variant": "declaration", "kind": 1024, @@ -4049,21 +4049,21 @@ "type": { "type": "reflection", "declaration": { - "id": 17615, + "id": 17431, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 17616, + "id": 17432, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "typeParameters": [ { - "id": 17618, + "id": 17434, "name": "TDataOverride", "variant": "typeParam", "kind": 131072, @@ -4074,7 +4074,7 @@ } }, { - "id": 17619, + "id": 17435, "name": "TResultOverride", "variant": "typeParam", "kind": 131072, @@ -4087,7 +4087,7 @@ ], "parameters": [ { - "id": 17617, + "id": 17433, "name": "args", "variant": "param", "kind": 32768, @@ -4116,28 +4116,28 @@ "typeArguments": [ { "type": "reference", - "target": 17627, + "target": 17443, "name": "TData", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17628, + "target": 17444, "name": "TResult", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17618, + "target": 17434, "name": "TDataOverride", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17619, + "target": 17435, "name": "TResultOverride", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -4175,28 +4175,28 @@ "typeArguments": [ { "type": "reference", - "target": 17627, + "target": 17443, "name": "TData", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17628, + "target": 17444, "name": "TResult", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17618, + "target": 17434, "name": "TDataOverride", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, { "type": "reference", - "target": 17619, + "target": 17435, "name": "TResultOverride", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true @@ -4216,7 +4216,7 @@ } }, { - "id": 17620, + "id": 17436, "name": "getName", "variant": "declaration", "kind": 1024, @@ -4224,14 +4224,14 @@ "type": { "type": "reflection", "declaration": { - "id": 17621, + "id": 17437, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 17622, + "id": 17438, "name": "__type", "variant": "signature", "kind": 4096, @@ -4246,7 +4246,7 @@ } }, { - "id": 17623, + "id": 17439, "name": "config", "variant": "declaration", "kind": 1024, @@ -4254,21 +4254,21 @@ "type": { "type": "reflection", "declaration": { - "id": 17624, + "id": 17440, "name": "__type", "variant": "declaration", "kind": 65536, "flags": {}, "signatures": [ { - "id": 17625, + "id": 17441, "name": "__type", "variant": "signature", "kind": 4096, "flags": {}, "parameters": [ { - "id": 17626, + "id": 17442, "name": "config", "variant": "param", "kind": 32768, @@ -4276,7 +4276,7 @@ "type": { "type": "reference", "target": { - "sourceFileName": "../../../../packages/core/orchestration/dist/transaction/types.d.ts", + "sourceFileName": "../../../../packages/core/orchestration/src/transaction/types.ts", "qualifiedName": "TransactionModelOptions" }, "name": "TransactionModelOptions", @@ -4298,10 +4298,10 @@ { "title": "Properties", "children": [ - 17608, - 17614, - 17620, - 17623 + 17424, + 17430, + 17436, + 17439 ] } ] @@ -4311,7 +4311,7 @@ } }, { - "id": 17630, + "id": 17446, "name": "UnwrapWorkflowInputDataType", "variant": "declaration", "kind": 2097152, @@ -4337,14 +4337,14 @@ }, "typeParameters": [ { - "id": 17631, + "id": 17447, "name": "T", "variant": "typeParam", "kind": 131072, "flags": {}, "type": { "type": "reference", - "target": 17598, + "target": 17414, "typeArguments": [ { "type": "intrinsic", @@ -4368,14 +4368,14 @@ "type": "conditional", "checkType": { "type": "reference", - "target": 17631, + "target": 17447, "name": "T", "package": "@medusajs/workflows-sdk", "refersToTypeParameter": true }, "extendsType": { "type": "reference", - "target": 17598, + "target": 17414, "typeArguments": [ { "type": "inferred", @@ -4408,685 +4408,851 @@ "name": "never" } } + }, + { + "id": 17448, + "name": "when", + "variant": "declaration", + "kind": 64, + "flags": {}, + "signatures": [ + { + "id": 17449, + "name": "when", + "variant": "signature", + "kind": 4096, + "flags": {}, + "typeParameters": [ + { + "id": 17450, + "name": "T", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "object" + }, + { + "type": "reference", + "target": 17361, + "name": "WorkflowData", + "package": "@medusajs/workflows-sdk" + } + ] + } + }, + { + "id": 17451, + "name": "Then", + "variant": "typeParam", + "kind": 131072, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../node_modules/typescript/lib/lib.es5.d.ts", + "qualifiedName": "Function" + }, + "name": "Function", + "package": "typescript" + } + } + ], + "parameters": [ + { + "id": 17452, + "name": "values", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": 17450, + "name": "T", + "package": "@medusajs/workflows-sdk", + "refersToTypeParameter": true + } + }, + { + "id": 17453, + "name": "condition", + "variant": "param", + "kind": 32768, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/when.ts", + "qualifiedName": "ConditionFunction" + }, + "typeArguments": [ + { + "type": "reference", + "target": 17450, + "name": "T", + "package": "@medusajs/workflows-sdk", + "refersToTypeParameter": true + } + ], + "name": "ConditionFunction", + "package": "@medusajs/workflows-sdk" + } + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 17454, + "name": "__type", + "variant": "declaration", + "kind": 65536, + "flags": {}, + "children": [ + { + "id": 17455, + "name": "then", + "variant": "declaration", + "kind": 1024, + "flags": {}, + "type": { + "type": "reference", + "target": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/when.ts", + "qualifiedName": "ThenFunc" + }, + "name": "ThenFunc", + "package": "@medusajs/workflows-sdk" + } + } + ], + "groups": [ + { + "title": "Properties", + "children": [ + 17455 + ] + } + ] + } + } + } + ] } ], "groups": [ { "title": "Classes", "children": [ - 17431 + 17238 ] }, { "title": "Interfaces", "children": [ - 17579 + 17395 ] }, { "title": "Type Aliases", "children": [ - 17515, - 17520, - 17540, - 17545, - 17553, - 17590, - 17598, - 17630 + 17331, + 17336, + 17356, + 17361, + 17369, + 17406, + 17414, + 17446 ] }, { "title": "Functions", "children": [ - 17396, - 17406, - 17423, - 17458 + 17212, + 17222, + 17270, + 17274, + 17448 ] } ], "packageName": "@medusajs/workflows-sdk", "symbolIdMap": { - "17395": { + "17211": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/index.ts", "qualifiedName": "" }, - "17396": { + "17212": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-step.ts", "qualifiedName": "createStep" }, - "17397": { + "17213": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-step.ts", "qualifiedName": "createStep" }, - "17398": { + "17214": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-step.ts", "qualifiedName": "TInvokeInput" }, - "17399": { + "17215": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-step.ts", "qualifiedName": "TInvokeResultOutput" }, - "17400": { + "17216": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-step.ts", "qualifiedName": "TInvokeResultCompensateInput" }, - "17401": { + "17217": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-step.ts", "qualifiedName": "nameOrConfig" }, - "17402": { + "17218": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-step.ts", "qualifiedName": "__type" }, - "17403": { + "17219": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-step.ts", "qualifiedName": "__type.name" }, - "17404": { + "17220": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-step.ts", "qualifiedName": "invokeFn" }, - "17405": { + "17221": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-step.ts", "qualifiedName": "compensateFn" }, - "17406": { + "17222": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-workflow.ts", "qualifiedName": "createWorkflow" }, - "17407": { + "17223": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-workflow.ts", "qualifiedName": "createWorkflow" }, - "17408": { + "17224": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-workflow.ts", "qualifiedName": "TData" }, - "17409": { + "17225": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-workflow.ts", "qualifiedName": "TResult" }, - "17410": { + "17226": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-workflow.ts", "qualifiedName": "THooks" }, - "17411": { + "17227": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-workflow.ts", "qualifiedName": "nameOrConfig" }, - "17412": { + "17228": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-workflow.ts", "qualifiedName": "__type" }, - "17413": { + "17229": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-workflow.ts", "qualifiedName": "__type.name" }, - "17414": { + "17230": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-workflow.ts", "qualifiedName": "composer" }, - "17415": { + "17231": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-workflow.ts", "qualifiedName": "__type" }, - "17416": { + "17232": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-workflow.ts", "qualifiedName": "__type" }, - "17417": { + "17233": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/create-workflow.ts", "qualifiedName": "input" }, - "17423": { - "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/parallelize.ts", - "qualifiedName": "parallelize" - }, - "17424": { - "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/parallelize.ts", - "qualifiedName": "parallelize" - }, - "17425": { - "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/parallelize.ts", - "qualifiedName": "TResult" - }, - "17426": { - "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/parallelize.ts", - "qualifiedName": "steps" - }, - "17431": { + "17238": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/helpers/step-response.ts", "qualifiedName": "StepResponse" }, - "17432": { + "17239": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/helpers/step-response.ts", "qualifiedName": "StepResponse.permanentFailure" }, - "17433": { + "17240": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/helpers/step-response.ts", "qualifiedName": "StepResponse.permanentFailure" }, - "17434": { + "17241": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/helpers/step-response.ts", "qualifiedName": "message" }, - "17435": { + "17242": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/helpers/step-response.ts", "qualifiedName": "StepResponse.__constructor" }, - "17436": { + "17243": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/helpers/step-response.ts", "qualifiedName": "StepResponse" }, - "17437": { + "17244": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/helpers/step-response.ts", "qualifiedName": "StepResponse.TOutput" }, - "17438": { + "17245": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/helpers/step-response.ts", "qualifiedName": "StepResponse.TCompensateInput" }, - "17439": { + "17246": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/helpers/step-response.ts", "qualifiedName": "output" }, - "17440": { + "17247": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/helpers/step-response.ts", "qualifiedName": "compensateInput" }, - "17456": { + "17263": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/helpers/step-response.ts", "qualifiedName": "StepResponse.TOutput" }, - "17457": { + "17264": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/helpers/step-response.ts", "qualifiedName": "StepResponse.TCompensateInput" }, - "17458": { + "17270": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/parallelize.ts", + "qualifiedName": "parallelize" + }, + "17271": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/parallelize.ts", + "qualifiedName": "parallelize" + }, + "17272": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/parallelize.ts", + "qualifiedName": "TResult" + }, + "17273": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/parallelize.ts", + "qualifiedName": "steps" + }, + "17274": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/transform.ts", "qualifiedName": "transform" }, - "17459": { + "17275": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/transform.ts", "qualifiedName": "transform" }, - "17460": { + "17276": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/transform.ts", "qualifiedName": "T" }, - "17461": { + "17277": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/transform.ts", "qualifiedName": "RFinal" }, - "17462": { + "17278": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/transform.ts", "qualifiedName": "values" }, - "17463": { + "17279": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/transform.ts", "qualifiedName": "func" }, - "17515": { + "17331": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "StepFunctionResult" }, - "17516": { + "17332": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17517": { + "17333": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17518": { + "17334": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "this" }, - "17519": { + "17335": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "TOutput" }, - "17520": { + "17336": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "StepFunction" }, - "17521": { + "17337": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17522": { + "17338": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17523": { + "17339": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17524": { + "17340": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.config" }, - "17525": { + "17341": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.config" }, - "17526": { + "17342": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "config" }, - "17527": { + "17343": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17528": { + "17344": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.name" }, - "17529": { + "17345": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17530": { + "17346": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17531": { + "17347": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "input" }, - "17532": { + "17348": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17533": { + "17349": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.config" }, - "17534": { + "17350": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.config" }, - "17535": { + "17351": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "config" }, - "17536": { + "17352": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17537": { + "17353": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.name" }, - "17538": { + "17354": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "TInput" }, - "17539": { + "17355": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "TOutput" }, - "17540": { + "17356": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "WorkflowDataProperties" }, - "17541": { + "17357": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17542": { + "17358": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.__type" }, - "17543": { + "17359": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.__step__" }, - "17544": { + "17360": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "T" }, - "17545": { + "17361": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "WorkflowData" }, - "17546": { + "17362": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17547": { + "17363": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.config" }, - "17548": { + "17364": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.config" }, - "17549": { + "17365": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "config" }, - "17550": { + "17366": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17551": { + "17367": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.name" }, - "17552": { + "17368": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "T" }, - "17553": { + "17369": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "CreateWorkflowComposerContext" }, - "17554": { + "17370": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17555": { + "17371": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.hooks_" }, - "17556": { + "17372": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.hooksCallback_" }, - "17557": { + "17373": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.workflowId" }, - "17558": { + "17374": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.flow" }, - "17559": { + "17375": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.handlers" }, - "17560": { + "17376": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.stepBinder" }, - "17561": { + "17377": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17562": { + "17378": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17563": { + "17379": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "fn" }, - "17564": { + "17380": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "TOutput" }, - "17565": { + "17381": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.hookBinder" }, - "17566": { + "17382": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17567": { + "17383": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17568": { + "17384": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "name" }, - "17569": { + "17385": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "fn" }, - "17570": { + "17386": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "TOutput" }, - "17571": { + "17387": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.parallelizeBinder" }, - "17572": { + "17388": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17573": { + "17389": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17574": { + "17390": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "fn" }, - "17575": { + "17391": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17576": { + "17392": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17577": { + "17393": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "this" }, - "17578": { + "17394": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "TOutput" }, - "17579": { + "17395": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "StepExecutionContext" }, - "17580": { + "17396": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "StepExecutionContext.workflowId" }, - "17581": { + "17397": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "StepExecutionContext.attempt" }, - "17582": { + "17398": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "StepExecutionContext.idempotencyKey" }, - "17583": { + "17399": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "StepExecutionContext.stepName" }, - "17584": { + "17400": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "StepExecutionContext.action" }, - "17585": { + "17401": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "StepExecutionContext.container" }, - "17586": { + "17402": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "StepExecutionContext.metadata" }, - "17587": { + "17403": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "StepExecutionContext.context" }, - "17588": { + "17404": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "StepExecutionContext.eventGroupId" }, - "17589": { + "17405": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "StepExecutionContext.transactionId" }, - "17590": { + "17406": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "WorkflowTransactionContext" }, - "17591": { + "17407": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17592": { + "17408": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.invoke" }, - "17593": { + "17409": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17594": { + "17410": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.__index" }, - "17596": { + "17412": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17597": { + "17413": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.output" }, - "17598": { + "17414": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "ReturnWorkflow" }, - "17599": { + "17415": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17600": { + "17416": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17601": { + "17417": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "TDataOverride" }, - "17602": { + "17418": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "TResultOverride" }, - "17603": { + "17419": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "container" }, - "17604": { + "17420": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type" }, - "17605": { + "17421": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.__joinerConfig" }, - "17606": { + "17422": { "sourceFileName": "../../../../packages/core/types/src/modules-sdk/index.ts", "qualifiedName": "__type.__definition" }, - "17607": { + "17423": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17608": { + "17424": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.runAsStep" }, - "17609": { + "17425": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17610": { + "17426": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17612": { + "17428": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17613": { + "17429": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.input" }, - "17614": { + "17430": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.run" }, - "17615": { + "17431": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17616": { + "17432": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17617": { + "17433": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "args" }, - "17618": { + "17434": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "TDataOverride" }, - "17619": { + "17435": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "TResultOverride" }, - "17620": { + "17436": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.getName" }, - "17621": { + "17437": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17622": { + "17438": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17623": { + "17439": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type.config" }, - "17624": { + "17440": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17625": { + "17441": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "__type" }, - "17626": { + "17442": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "config" }, - "17627": { + "17443": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "TData" }, - "17628": { + "17444": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "TResult" }, - "17629": { + "17445": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "THooks" }, - "17630": { + "17446": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "UnwrapWorkflowInputDataType" }, - "17631": { + "17447": { "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/type.ts", "qualifiedName": "T" + }, + "17448": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/when.ts", + "qualifiedName": "when" + }, + "17449": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/when.ts", + "qualifiedName": "when" + }, + "17450": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/when.ts", + "qualifiedName": "T" + }, + "17451": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/when.ts", + "qualifiedName": "Then" + }, + "17452": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/when.ts", + "qualifiedName": "values" + }, + "17453": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/when.ts", + "qualifiedName": "condition" + }, + "17454": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/when.ts", + "qualifiedName": "__type" + }, + "17455": { + "sourceFileName": "../../../../packages/core/workflows-sdk/src/utils/composer/when.ts", + "qualifiedName": "__type.then" } }, "files": { @@ -5094,7 +5260,7 @@ "1": "../../../../packages/core/workflows-sdk/src/utils/composer/index.ts" }, "reflections": { - "1": 17395 + "1": 17211 } } } \ No newline at end of file